2024-09-17T08:49:34.161 INFO:root:teuthology version: 1.2.2.dev2+g3752d38 2024-09-17T08:49:34.177 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-17T08:49:34.308 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908258 branch: reef 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: '7908258' kernel: kdb: 1 sha1: distro ktype: distro last_in_suite: false machine_type: smithi name: teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi no_nested_subset: false os_type: ubuntu os_version: '22.04' overrides: admin_socket: branch: reef 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: 19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 workunit: branch: reef sha1: 1cbdc9211df088cccbd94423c7cf3a2b85fe432b owner: scheduled_teuthology@teuthology priority: 930 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: 5234 sha1: 19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 sleep_before_teardown: 0 subset: 46/64 suite: orch suite_branch: reef suite_path: /home/teuthworker/src/git.ceph.com_ceph_1cbdc9211df088cccbd94423c7cf3a2b85fe432b/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: 1cbdc9211df088cccbd94423c7cf3a2b85fe432b targets: smithi098.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCc66oYNbfFiX1eFpOhB/g/5mK/n3jbF632VnHwslMTx1ASRj27oLo7iZAsBH64mslXHDmiYnKEe022H1kzr7CA= smithi134.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFmAMkyrmKXA+rVsarQxFTfAPqGi92IVwl7t2RKr6IZ3r58Ub9T5Wz/ACFhCW5GbyxVJCUKDg4BJwddvVkr6gmE= smithi165.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCE6WLRiNxbs1paTTz1xfwpG1j9F+cUW8cBJLujc+pBUhWTJDC7tZrRlgtFsh5UBb5ip35wNLh+r2zV2YoLyBcs= 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_22:08:02 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.3401856 2024-09-17T08:49:34.309 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_1cbdc9211df088cccbd94423c7cf3a2b85fe432b/qa; will attempt to use it 2024-09-17T08:49:34.309 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_1cbdc9211df088cccbd94423c7cf3a2b85fe432b/qa/tasks 2024-09-17T08:49:34.309 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-09-17T08:49:34.311 INFO:teuthology.task.internal:Checking packages... 2024-09-17T08:49:34.332 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash '19e2a2beb6f41a3ab62650e38614eb29b59dcbb9' 2024-09-17T08:49:34.332 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-09-17T08:49:34.332 INFO:teuthology.packaging:ref: None 2024-09-17T08:49:34.332 INFO:teuthology.packaging:tag: None 2024-09-17T08:49:34.332 INFO:teuthology.packaging:branch: reef 2024-09-17T08:49:34.333 INFO:teuthology.packaging:sha1: 19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T08:49:34.333 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&ref=reef 2024-09-17T08:49:34.619 INFO:teuthology.task.internal:Found packages for ceph version 18.2.4-855-g19e2a2be-1jammy 2024-09-17T08:49:34.622 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-09-17T08:49:34.629 INFO:teuthology.task.internal:no buildpackages task found 2024-09-17T08:49:34.629 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-09-17T08:49:34.677 INFO:teuthology.task.internal:Saving configuration 2024-09-17T08:49:34.689 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-09-17T08:49:34.696 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-09-17T08:49:34.722 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi098.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908258', '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-17 08:43:50.692376', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJFm9fhqKLJOAq621MQGYomLBZOzHRnsGUDc1CzcWoEg'} 2024-09-17T08:49:34.741 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi134.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908258', '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-17 08:43:50.693710', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMVkHg5yzhvWrOG+BpDLrlcsFsnQ+PFs48SiItxp9QZm'} 2024-09-17T08:49:34.765 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi165.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908258', '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-17 08:43:50.694823', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGRGkAakRxlwhB6Hr17d3UHFO4+/QXYdk+VNDI1zgcmg'} 2024-09-17T08:49:34.765 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-09-17T08:49:34.772 INFO:teuthology.task.internal:roles: ubuntu@smithi098.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-09-17T08:49:34.772 INFO:teuthology.task.internal:roles: ubuntu@smithi134.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-09-17T08:49:34.772 INFO:teuthology.task.internal:roles: ubuntu@smithi165.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-09-17T08:49:34.773 INFO:teuthology.run_tasks:Running task console_log... 2024-09-17T08:49:34.849 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7fa964fc6e60>, signals=[15]) 2024-09-17T08:49:34.849 INFO:teuthology.run_tasks:Running task internal.connect... 2024-09-17T08:49:34.855 INFO:teuthology.task.internal:Opening connections... 2024-09-17T08:49:34.855 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi098.front.sepia.ceph.com 2024-09-17T08:49:34.857 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi098.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T08:49:34.940 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi134.front.sepia.ceph.com 2024-09-17T08:49:34.941 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi134.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T08:49:35.022 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi165.front.sepia.ceph.com 2024-09-17T08:49:35.023 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi165.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T08:49:35.099 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-09-17T08:49:35.105 DEBUG:teuthology.orchestra.run.smithi098:> uname -m 2024-09-17T08:49:35.111 INFO:teuthology.orchestra.run.smithi098.stdout:x86_64 2024-09-17T08:49:35.111 DEBUG:teuthology.orchestra.run.smithi098:> cat /etc/os-release 2024-09-17T08:49:35.158 INFO:teuthology.orchestra.run.smithi098.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-17T08:49:35.158 INFO:teuthology.orchestra.run.smithi098.stdout:NAME="Ubuntu" 2024-09-17T08:49:35.158 INFO:teuthology.orchestra.run.smithi098.stdout:VERSION_ID="22.04" 2024-09-17T08:49:35.158 INFO:teuthology.orchestra.run.smithi098.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-17T08:49:35.158 INFO:teuthology.orchestra.run.smithi098.stdout:VERSION_CODENAME=jammy 2024-09-17T08:49:35.158 INFO:teuthology.orchestra.run.smithi098.stdout:ID=ubuntu 2024-09-17T08:49:35.158 INFO:teuthology.orchestra.run.smithi098.stdout:ID_LIKE=debian 2024-09-17T08:49:35.158 INFO:teuthology.orchestra.run.smithi098.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-17T08:49:35.158 INFO:teuthology.orchestra.run.smithi098.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-17T08:49:35.158 INFO:teuthology.orchestra.run.smithi098.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-17T08:49:35.159 INFO:teuthology.orchestra.run.smithi098.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-17T08:49:35.159 INFO:teuthology.orchestra.run.smithi098.stdout:UBUNTU_CODENAME=jammy 2024-09-17T08:49:35.159 INFO:teuthology.lock.ops:Updating smithi098.front.sepia.ceph.com on lock server 2024-09-17T08:49:35.187 DEBUG:teuthology.orchestra.run.smithi134:> uname -m 2024-09-17T08:49:35.193 INFO:teuthology.orchestra.run.smithi134.stdout:x86_64 2024-09-17T08:49:35.193 DEBUG:teuthology.orchestra.run.smithi134:> cat /etc/os-release 2024-09-17T08:49:35.239 INFO:teuthology.orchestra.run.smithi134.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-17T08:49:35.239 INFO:teuthology.orchestra.run.smithi134.stdout:NAME="Ubuntu" 2024-09-17T08:49:35.239 INFO:teuthology.orchestra.run.smithi134.stdout:VERSION_ID="22.04" 2024-09-17T08:49:35.239 INFO:teuthology.orchestra.run.smithi134.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-17T08:49:35.239 INFO:teuthology.orchestra.run.smithi134.stdout:VERSION_CODENAME=jammy 2024-09-17T08:49:35.239 INFO:teuthology.orchestra.run.smithi134.stdout:ID=ubuntu 2024-09-17T08:49:35.239 INFO:teuthology.orchestra.run.smithi134.stdout:ID_LIKE=debian 2024-09-17T08:49:35.239 INFO:teuthology.orchestra.run.smithi134.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-17T08:49:35.239 INFO:teuthology.orchestra.run.smithi134.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-17T08:49:35.239 INFO:teuthology.orchestra.run.smithi134.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-17T08:49:35.239 INFO:teuthology.orchestra.run.smithi134.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-17T08:49:35.240 INFO:teuthology.orchestra.run.smithi134.stdout:UBUNTU_CODENAME=jammy 2024-09-17T08:49:35.240 INFO:teuthology.lock.ops:Updating smithi134.front.sepia.ceph.com on lock server 2024-09-17T08:49:35.262 DEBUG:teuthology.orchestra.run.smithi165:> uname -m 2024-09-17T08:49:35.268 INFO:teuthology.orchestra.run.smithi165.stdout:x86_64 2024-09-17T08:49:35.268 DEBUG:teuthology.orchestra.run.smithi165:> cat /etc/os-release 2024-09-17T08:49:35.317 INFO:teuthology.orchestra.run.smithi165.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-17T08:49:35.317 INFO:teuthology.orchestra.run.smithi165.stdout:NAME="Ubuntu" 2024-09-17T08:49:35.318 INFO:teuthology.orchestra.run.smithi165.stdout:VERSION_ID="22.04" 2024-09-17T08:49:35.318 INFO:teuthology.orchestra.run.smithi165.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-17T08:49:35.318 INFO:teuthology.orchestra.run.smithi165.stdout:VERSION_CODENAME=jammy 2024-09-17T08:49:35.318 INFO:teuthology.orchestra.run.smithi165.stdout:ID=ubuntu 2024-09-17T08:49:35.318 INFO:teuthology.orchestra.run.smithi165.stdout:ID_LIKE=debian 2024-09-17T08:49:35.318 INFO:teuthology.orchestra.run.smithi165.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-17T08:49:35.318 INFO:teuthology.orchestra.run.smithi165.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-17T08:49:35.318 INFO:teuthology.orchestra.run.smithi165.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-17T08:49:35.318 INFO:teuthology.orchestra.run.smithi165.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-17T08:49:35.318 INFO:teuthology.orchestra.run.smithi165.stdout:UBUNTU_CODENAME=jammy 2024-09-17T08:49:35.318 INFO:teuthology.lock.ops:Updating smithi165.front.sepia.ceph.com on lock server 2024-09-17T08:49:35.346 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-09-17T08:49:35.354 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-09-17T08:49:35.369 INFO:teuthology.task.internal:Checking for old test directory... 2024-09-17T08:49:35.369 DEBUG:teuthology.orchestra.run.smithi098:> test '!' -e /home/ubuntu/cephtest 2024-09-17T08:49:35.372 DEBUG:teuthology.orchestra.run.smithi134:> test '!' -e /home/ubuntu/cephtest 2024-09-17T08:49:35.374 DEBUG:teuthology.orchestra.run.smithi165:> test '!' -e /home/ubuntu/cephtest 2024-09-17T08:49:35.379 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-09-17T08:49:35.385 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-09-17T08:49:35.385 DEBUG:teuthology.orchestra.run.smithi098:> test -z $(ls -A /var/lib/ceph) 2024-09-17T08:49:35.418 DEBUG:teuthology.orchestra.run.smithi134:> test -z $(ls -A /var/lib/ceph) 2024-09-17T08:49:35.420 DEBUG:teuthology.orchestra.run.smithi165:> test -z $(ls -A /var/lib/ceph) 2024-09-17T08:49:35.427 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-09-17T08:49:35.500 INFO:teuthology.run_tasks:Running task kernel... 2024-09-17T08:49:35.514 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-09-17T08:49:35.514 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-17T08:49:35.515 DEBUG:teuthology.orchestra.run.smithi098:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-17T08:49:35.515 DEBUG:teuthology.orchestra.run.smithi134:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-17T08:49:35.517 DEBUG:teuthology.orchestra.run.smithi165:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-17T08:49:35.521 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T08:49:35.522 DEBUG:teuthology.orchestra.run.smithi098:> uname -r 2024-09-17T08:49:35.522 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T08:49:35.523 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T08:49:35.523 DEBUG:teuthology.orchestra.run.smithi165:> uname -r 2024-09-17T08:49:35.524 DEBUG:teuthology.orchestra.run.smithi134:> uname -r 2024-09-17T08:49:35.570 INFO:teuthology.orchestra.run.smithi165.stdout:5.15.0-56-generic 2024-09-17T08:49:35.570 INFO:teuthology.orchestra.run.smithi098.stdout:5.15.0-56-generic 2024-09-17T08:49:35.571 INFO:teuthology.task.kernel:Running kernel on smithi165: 5.15.0-56-generic 2024-09-17T08:49:35.571 DEBUG:teuthology.orchestra.run.smithi165:> sudo apt-get clean 2024-09-17T08:49:35.571 INFO:teuthology.task.kernel:Running kernel on smithi098: 5.15.0-56-generic 2024-09-17T08:49:35.571 DEBUG:teuthology.orchestra.run.smithi098:> sudo apt-get clean 2024-09-17T08:49:35.576 INFO:teuthology.orchestra.run.smithi134.stdout:5.15.0-56-generic 2024-09-17T08:49:35.577 INFO:teuthology.task.kernel:Running kernel on smithi134: 5.15.0-56-generic 2024-09-17T08:49:35.577 DEBUG:teuthology.orchestra.run.smithi134:> sudo apt-get clean 2024-09-17T08:49:35.691 DEBUG:teuthology.orchestra.run.smithi134:> sudo apt-get update 2024-09-17T08:49:35.692 DEBUG:teuthology.orchestra.run.smithi165:> sudo apt-get update 2024-09-17T08:49:35.706 DEBUG:teuthology.orchestra.run.smithi098:> sudo apt-get update 2024-09-17T08:49:35.827 INFO:teuthology.orchestra.run.smithi134.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-17T08:49:35.828 INFO:teuthology.orchestra.run.smithi134.stdout:Get:2 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-17T08:49:35.829 INFO:teuthology.orchestra.run.smithi134.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-17T08:49:35.845 INFO:teuthology.orchestra.run.smithi098.stdout:Get:1 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-17T08:49:35.906 INFO:teuthology.orchestra.run.smithi134.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-17T08:49:35.917 INFO:teuthology.orchestra.run.smithi165.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-17T08:49:35.917 INFO:teuthology.orchestra.run.smithi165.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-17T08:49:35.956 INFO:teuthology.orchestra.run.smithi098.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-17T08:49:35.983 INFO:teuthology.orchestra.run.smithi165.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-17T08:49:35.986 INFO:teuthology.orchestra.run.smithi165.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-17T08:49:36.037 INFO:teuthology.orchestra.run.smithi098.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-17T08:49:36.050 INFO:teuthology.orchestra.run.smithi134.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,806 kB] 2024-09-17T08:49:36.053 INFO:teuthology.orchestra.run.smithi098.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [539 kB] 2024-09-17T08:49:36.122 INFO:teuthology.orchestra.run.smithi098.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,806 kB] 2024-09-17T08:49:36.122 INFO:teuthology.orchestra.run.smithi134.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [701 kB] 2024-09-17T08:49:36.152 INFO:teuthology.orchestra.run.smithi134.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [539 kB] 2024-09-17T08:49:36.156 INFO:teuthology.orchestra.run.smithi134.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [295 kB] 2024-09-17T08:49:36.158 INFO:teuthology.orchestra.run.smithi134.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-17T08:49:36.159 INFO:teuthology.orchestra.run.smithi134.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,377 kB] 2024-09-17T08:49:36.161 INFO:teuthology.orchestra.run.smithi098.stdout:Get:6 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [295 kB] 2024-09-17T08:49:36.163 INFO:teuthology.orchestra.run.smithi098.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-17T08:49:36.164 INFO:teuthology.orchestra.run.smithi098.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,377 kB] 2024-09-17T08:49:36.178 INFO:teuthology.orchestra.run.smithi134.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-17T08:49:36.178 INFO:teuthology.orchestra.run.smithi134.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [409 kB] 2024-09-17T08:49:36.182 INFO:teuthology.orchestra.run.smithi134.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-17T08:49:36.182 INFO:teuthology.orchestra.run.smithi134.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [902 kB] 2024-09-17T08:49:36.182 INFO:teuthology.orchestra.run.smithi098.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-17T08:49:36.182 INFO:teuthology.orchestra.run.smithi098.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [409 kB] 2024-09-17T08:49:36.183 INFO:teuthology.orchestra.run.smithi134.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [2,058 kB] 2024-09-17T08:49:36.187 INFO:teuthology.orchestra.run.smithi134.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [627 kB] 2024-09-17T08:49:36.188 INFO:teuthology.orchestra.run.smithi098.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-17T08:49:36.188 INFO:teuthology.orchestra.run.smithi098.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [627 kB] 2024-09-17T08:49:36.192 INFO:teuthology.orchestra.run.smithi134.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [176 kB] 2024-09-17T08:49:36.194 INFO:teuthology.orchestra.run.smithi098.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [902 kB] 2024-09-17T08:49:36.195 INFO:teuthology.orchestra.run.smithi165.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [2,058 kB] 2024-09-17T08:49:36.201 INFO:teuthology.orchestra.run.smithi098.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [176 kB] 2024-09-17T08:49:36.203 INFO:teuthology.orchestra.run.smithi098.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.3 kB] 2024-09-17T08:49:36.203 INFO:teuthology.orchestra.run.smithi098.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-17T08:49:36.204 INFO:teuthology.orchestra.run.smithi098.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-17T08:49:36.219 INFO:teuthology.orchestra.run.smithi134.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [355 kB] 2024-09-17T08:49:36.219 INFO:teuthology.orchestra.run.smithi134.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.3 kB] 2024-09-17T08:49:36.220 INFO:teuthology.orchestra.run.smithi134.stdout:Get:20 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-17T08:49:36.220 INFO:teuthology.orchestra.run.smithi134.stdout:Get:21 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-17T08:49:36.224 INFO:teuthology.orchestra.run.smithi134.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-17T08:49:36.225 INFO:teuthology.orchestra.run.smithi134.stdout:Get:23 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-17T08:49:36.225 INFO:teuthology.orchestra.run.smithi134.stdout:Get:24 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-17T08:49:36.225 INFO:teuthology.orchestra.run.smithi134.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,495 kB] 2024-09-17T08:49:36.234 INFO:teuthology.orchestra.run.smithi098.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-17T08:49:36.234 INFO:teuthology.orchestra.run.smithi098.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-17T08:49:36.239 INFO:teuthology.orchestra.run.smithi134.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-17T08:49:36.240 INFO:teuthology.orchestra.run.smithi134.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [429 kB] 2024-09-17T08:49:36.243 INFO:teuthology.orchestra.run.smithi134.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-17T08:49:36.243 INFO:teuthology.orchestra.run.smithi134.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [732 kB] 2024-09-17T08:49:36.247 INFO:teuthology.orchestra.run.smithi134.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,124 kB] 2024-09-17T08:49:36.254 INFO:teuthology.orchestra.run.smithi134.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-17T08:49:36.256 INFO:teuthology.orchestra.run.smithi134.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.2 kB] 2024-09-17T08:49:36.256 INFO:teuthology.orchestra.run.smithi134.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-17T08:49:36.256 INFO:teuthology.orchestra.run.smithi134.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-17T08:49:36.272 INFO:teuthology.orchestra.run.smithi134.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-17T08:49:36.273 INFO:teuthology.orchestra.run.smithi134.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-17T08:49:36.273 INFO:teuthology.orchestra.run.smithi134.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-17T08:49:36.273 INFO:teuthology.orchestra.run.smithi134.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-17T08:49:36.273 INFO:teuthology.orchestra.run.smithi134.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-17T08:49:36.289 INFO:teuthology.orchestra.run.smithi134.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-09-17T08:49:36.289 INFO:teuthology.orchestra.run.smithi134.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-17T08:49:36.290 INFO:teuthology.orchestra.run.smithi134.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-17T08:49:36.290 INFO:teuthology.orchestra.run.smithi134.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-17T08:49:36.290 INFO:teuthology.orchestra.run.smithi134.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [672 B] 2024-09-17T08:49:36.313 INFO:teuthology.orchestra.run.smithi165.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [701 kB] 2024-09-17T08:49:36.321 INFO:teuthology.orchestra.run.smithi165.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [355 kB] 2024-09-17T08:49:36.324 INFO:teuthology.orchestra.run.smithi165.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-17T08:49:36.324 INFO:teuthology.orchestra.run.smithi165.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-17T08:49:36.325 INFO:teuthology.orchestra.run.smithi165.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,495 kB] 2024-09-17T08:49:36.343 INFO:teuthology.orchestra.run.smithi165.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [429 kB] 2024-09-17T08:49:36.346 INFO:teuthology.orchestra.run.smithi165.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-17T08:49:36.374 INFO:teuthology.orchestra.run.smithi165.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [732 kB] 2024-09-17T08:49:36.379 INFO:teuthology.orchestra.run.smithi165.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,124 kB] 2024-09-17T08:49:36.387 INFO:teuthology.orchestra.run.smithi165.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-17T08:49:36.388 INFO:teuthology.orchestra.run.smithi165.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.2 kB] 2024-09-17T08:49:36.389 INFO:teuthology.orchestra.run.smithi165.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-17T08:49:36.389 INFO:teuthology.orchestra.run.smithi165.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-17T08:49:36.390 INFO:teuthology.orchestra.run.smithi165.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-17T08:49:36.390 INFO:teuthology.orchestra.run.smithi165.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-17T08:49:36.393 INFO:teuthology.orchestra.run.smithi165.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-17T08:49:36.394 INFO:teuthology.orchestra.run.smithi165.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-17T08:49:36.394 INFO:teuthology.orchestra.run.smithi098.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-17T08:49:36.407 INFO:teuthology.orchestra.run.smithi165.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-17T08:49:36.407 INFO:teuthology.orchestra.run.smithi165.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-09-17T08:49:36.407 INFO:teuthology.orchestra.run.smithi165.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-17T08:49:36.408 INFO:teuthology.orchestra.run.smithi165.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-17T08:49:36.408 INFO:teuthology.orchestra.run.smithi165.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-17T08:49:36.410 INFO:teuthology.orchestra.run.smithi165.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [672 B] 2024-09-17T08:49:36.470 INFO:teuthology.orchestra.run.smithi165.stdout:Get:29 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [539 kB] 2024-09-17T08:49:36.533 INFO:teuthology.orchestra.run.smithi098.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [2,058 kB] 2024-09-17T08:49:36.754 INFO:teuthology.orchestra.run.smithi165.stdout:Get:30 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,806 kB] 2024-09-17T08:49:36.853 INFO:teuthology.orchestra.run.smithi098.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [701 kB] 2024-09-17T08:49:36.890 INFO:teuthology.orchestra.run.smithi098.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [355 kB] 2024-09-17T08:49:36.904 INFO:teuthology.orchestra.run.smithi098.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-17T08:49:36.904 INFO:teuthology.orchestra.run.smithi098.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,495 kB] 2024-09-17T08:49:36.928 INFO:teuthology.orchestra.run.smithi165.stdout:Get:31 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [295 kB] 2024-09-17T08:49:36.940 INFO:teuthology.orchestra.run.smithi165.stdout:Get:32 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-17T08:49:36.941 INFO:teuthology.orchestra.run.smithi165.stdout:Get:33 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-17T08:49:36.942 INFO:teuthology.orchestra.run.smithi165.stdout:Get:34 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,377 kB] 2024-09-17T08:49:36.974 INFO:teuthology.orchestra.run.smithi098.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-17T08:49:36.978 INFO:teuthology.orchestra.run.smithi098.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [429 kB] 2024-09-17T08:49:36.992 INFO:teuthology.orchestra.run.smithi098.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-17T08:49:36.993 INFO:teuthology.orchestra.run.smithi098.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,124 kB] 2024-09-17T08:49:37.023 INFO:teuthology.orchestra.run.smithi098.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [732 kB] 2024-09-17T08:49:37.026 INFO:teuthology.orchestra.run.smithi165.stdout:Get:35 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [409 kB] 2024-09-17T08:49:37.035 INFO:teuthology.orchestra.run.smithi165.stdout:Get:36 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-17T08:49:37.035 INFO:teuthology.orchestra.run.smithi165.stdout:Get:37 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [627 kB] 2024-09-17T08:49:37.043 INFO:teuthology.orchestra.run.smithi098.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-17T08:49:37.048 INFO:teuthology.orchestra.run.smithi098.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.2 kB] 2024-09-17T08:49:37.049 INFO:teuthology.orchestra.run.smithi098.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-17T08:49:37.050 INFO:teuthology.orchestra.run.smithi098.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-17T08:49:37.062 INFO:teuthology.orchestra.run.smithi165.stdout:Get:38 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [902 kB] 2024-09-17T08:49:37.093 INFO:teuthology.orchestra.run.smithi165.stdout:Get:39 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [176 kB] 2024-09-17T08:49:37.097 INFO:teuthology.orchestra.run.smithi165.stdout:Get:40 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.3 kB] 2024-09-17T08:49:37.098 INFO:teuthology.orchestra.run.smithi165.stdout:Get:41 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-17T08:49:37.098 INFO:teuthology.orchestra.run.smithi165.stdout:Get:42 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-17T08:49:37.099 INFO:teuthology.orchestra.run.smithi165.stdout:Get:43 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-17T08:49:37.100 INFO:teuthology.orchestra.run.smithi098.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-17T08:49:37.101 INFO:teuthology.orchestra.run.smithi098.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-17T08:49:37.101 INFO:teuthology.orchestra.run.smithi098.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-17T08:49:37.103 INFO:teuthology.orchestra.run.smithi098.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-17T08:49:37.133 INFO:teuthology.orchestra.run.smithi098.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-17T08:49:37.133 INFO:teuthology.orchestra.run.smithi098.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-09-17T08:49:37.134 INFO:teuthology.orchestra.run.smithi098.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-17T08:49:37.135 INFO:teuthology.orchestra.run.smithi098.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-17T08:49:37.135 INFO:teuthology.orchestra.run.smithi098.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-17T08:49:37.173 INFO:teuthology.orchestra.run.smithi165.stdout:Get:44 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-17T08:49:37.181 INFO:teuthology.orchestra.run.smithi098.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [672 B] 2024-09-17T08:49:42.565 INFO:teuthology.orchestra.run.smithi134.stdout:Fetched 16.1 MB in 2s (7,480 kB/s) 2024-09-17T08:49:42.690 INFO:teuthology.orchestra.run.smithi098.stdout:Fetched 16.1 MB in 2s (7,636 kB/s) 2024-09-17T08:49:42.790 INFO:teuthology.orchestra.run.smithi165.stdout:Fetched 16.1 MB in 2s (7,183 kB/s) 2024-09-17T08:49:43.727 INFO:teuthology.orchestra.run.smithi098.stdout:Reading package lists... 2024-09-17T08:49:43.747 DEBUG:teuthology.orchestra.run.smithi098:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-17T08:49:43.803 INFO:teuthology.orchestra.run.smithi098.stdout:Reading package lists... 2024-09-17T08:49:43.978 INFO:teuthology.orchestra.run.smithi134.stdout:Reading package lists... 2024-09-17T08:49:43.990 INFO:teuthology.orchestra.run.smithi098.stdout:Building dependency tree... 2024-09-17T08:49:43.990 INFO:teuthology.orchestra.run.smithi098.stdout:Reading state information... 2024-09-17T08:49:43.996 DEBUG:teuthology.orchestra.run.smithi134:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-17T08:49:44.057 INFO:teuthology.orchestra.run.smithi134.stdout:Reading package lists... 2024-09-17T08:49:44.159 INFO:teuthology.orchestra.run.smithi098.stdout:The following packages were automatically installed and are no longer required: 2024-09-17T08:49:44.159 INFO:teuthology.orchestra.run.smithi098.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-17T08:49:44.159 INFO:teuthology.orchestra.run.smithi098.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-17T08:49:44.160 INFO:teuthology.orchestra.run.smithi098.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-17T08:49:44.160 INFO:teuthology.orchestra.run.smithi098.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-17T08:49:44.160 INFO:teuthology.orchestra.run.smithi098.stdout: python2.7-minimal 2024-09-17T08:49:44.160 INFO:teuthology.orchestra.run.smithi098.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-17T08:49:44.161 INFO:teuthology.orchestra.run.smithi098.stdout:The following additional packages will be installed: 2024-09-17T08:49:44.161 INFO:teuthology.orchestra.run.smithi098.stdout: linux-generic linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-17T08:49:44.161 INFO:teuthology.orchestra.run.smithi098.stdout: linux-headers-generic linux-image-5.15.0-122-generic 2024-09-17T08:49:44.162 INFO:teuthology.orchestra.run.smithi098.stdout: linux-modules-5.15.0-122-generic linux-modules-extra-5.15.0-122-generic 2024-09-17T08:49:44.163 INFO:teuthology.orchestra.run.smithi098.stdout:Suggested packages: 2024-09-17T08:49:44.163 INFO:teuthology.orchestra.run.smithi098.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-17T08:49:44.163 INFO:teuthology.orchestra.run.smithi098.stdout:Recommended packages: 2024-09-17T08:49:44.163 INFO:teuthology.orchestra.run.smithi098.stdout: thermald 2024-09-17T08:49:44.191 INFO:teuthology.orchestra.run.smithi098.stdout:The following NEW packages will be installed: 2024-09-17T08:49:44.191 INFO:teuthology.orchestra.run.smithi098.stdout: linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-17T08:49:44.191 INFO:teuthology.orchestra.run.smithi098.stdout: linux-image-5.15.0-122-generic linux-modules-5.15.0-122-generic 2024-09-17T08:49:44.192 INFO:teuthology.orchestra.run.smithi098.stdout: linux-modules-extra-5.15.0-122-generic 2024-09-17T08:49:44.193 INFO:teuthology.orchestra.run.smithi098.stdout:The following packages will be upgraded: 2024-09-17T08:49:44.193 INFO:teuthology.orchestra.run.smithi098.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-17T08:49:44.244 INFO:teuthology.orchestra.run.smithi134.stdout:Building dependency tree... 2024-09-17T08:49:44.245 INFO:teuthology.orchestra.run.smithi134.stdout:Reading state information... 2024-09-17T08:49:44.291 INFO:teuthology.orchestra.run.smithi165.stdout:Reading package lists... 2024-09-17T08:49:44.309 DEBUG:teuthology.orchestra.run.smithi165:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-17T08:49:44.374 INFO:teuthology.orchestra.run.smithi165.stdout:Reading package lists... 2024-09-17T08:49:44.393 INFO:teuthology.orchestra.run.smithi098.stdout:3 upgraded, 5 newly installed, 0 to remove and 344 not upgraded. 2024-09-17T08:49:44.393 INFO:teuthology.orchestra.run.smithi098.stdout:Need to get 113 MB of archives. 2024-09-17T08:49:44.393 INFO:teuthology.orchestra.run.smithi098.stdout:After this operation, 584 MB of additional disk space will be used. 2024-09-17T08:49:44.393 INFO:teuthology.orchestra.run.smithi098.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-17T08:49:44.412 INFO:teuthology.orchestra.run.smithi134.stdout:The following packages were automatically installed and are no longer required: 2024-09-17T08:49:44.413 INFO:teuthology.orchestra.run.smithi134.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-17T08:49:44.413 INFO:teuthology.orchestra.run.smithi134.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-17T08:49:44.413 INFO:teuthology.orchestra.run.smithi134.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-17T08:49:44.413 INFO:teuthology.orchestra.run.smithi134.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-17T08:49:44.413 INFO:teuthology.orchestra.run.smithi134.stdout: python2.7-minimal 2024-09-17T08:49:44.414 INFO:teuthology.orchestra.run.smithi134.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-17T08:49:44.415 INFO:teuthology.orchestra.run.smithi134.stdout:The following additional packages will be installed: 2024-09-17T08:49:44.415 INFO:teuthology.orchestra.run.smithi134.stdout: linux-generic linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-17T08:49:44.415 INFO:teuthology.orchestra.run.smithi134.stdout: linux-headers-generic linux-image-5.15.0-122-generic 2024-09-17T08:49:44.415 INFO:teuthology.orchestra.run.smithi134.stdout: linux-modules-5.15.0-122-generic linux-modules-extra-5.15.0-122-generic 2024-09-17T08:49:44.417 INFO:teuthology.orchestra.run.smithi134.stdout:Suggested packages: 2024-09-17T08:49:44.417 INFO:teuthology.orchestra.run.smithi134.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-17T08:49:44.417 INFO:teuthology.orchestra.run.smithi134.stdout:Recommended packages: 2024-09-17T08:49:44.417 INFO:teuthology.orchestra.run.smithi134.stdout: thermald 2024-09-17T08:49:44.461 INFO:teuthology.orchestra.run.smithi134.stdout:The following NEW packages will be installed: 2024-09-17T08:49:44.461 INFO:teuthology.orchestra.run.smithi134.stdout: linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-17T08:49:44.461 INFO:teuthology.orchestra.run.smithi134.stdout: linux-image-5.15.0-122-generic linux-modules-5.15.0-122-generic 2024-09-17T08:49:44.461 INFO:teuthology.orchestra.run.smithi134.stdout: linux-modules-extra-5.15.0-122-generic 2024-09-17T08:49:44.462 INFO:teuthology.orchestra.run.smithi134.stdout:The following packages will be upgraded: 2024-09-17T08:49:44.463 INFO:teuthology.orchestra.run.smithi134.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-17T08:49:44.585 INFO:teuthology.orchestra.run.smithi165.stdout:Building dependency tree... 2024-09-17T08:49:44.585 INFO:teuthology.orchestra.run.smithi165.stdout:Reading state information... 2024-09-17T08:49:44.643 INFO:teuthology.orchestra.run.smithi134.stdout:3 upgraded, 5 newly installed, 0 to remove and 344 not upgraded. 2024-09-17T08:49:44.643 INFO:teuthology.orchestra.run.smithi134.stdout:Need to get 113 MB of archives. 2024-09-17T08:49:44.643 INFO:teuthology.orchestra.run.smithi134.stdout:After this operation, 584 MB of additional disk space will be used. 2024-09-17T08:49:44.643 INFO:teuthology.orchestra.run.smithi134.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-17T08:49:44.772 INFO:teuthology.orchestra.run.smithi165.stdout:The following packages were automatically installed and are no longer required: 2024-09-17T08:49:44.772 INFO:teuthology.orchestra.run.smithi165.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-17T08:49:44.772 INFO:teuthology.orchestra.run.smithi165.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-17T08:49:44.773 INFO:teuthology.orchestra.run.smithi165.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-17T08:49:44.773 INFO:teuthology.orchestra.run.smithi165.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-17T08:49:44.773 INFO:teuthology.orchestra.run.smithi165.stdout: python2.7-minimal 2024-09-17T08:49:44.773 INFO:teuthology.orchestra.run.smithi165.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-17T08:49:44.774 INFO:teuthology.orchestra.run.smithi165.stdout:The following additional packages will be installed: 2024-09-17T08:49:44.774 INFO:teuthology.orchestra.run.smithi165.stdout: linux-generic linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-17T08:49:44.774 INFO:teuthology.orchestra.run.smithi165.stdout: linux-headers-generic linux-image-5.15.0-122-generic 2024-09-17T08:49:44.774 INFO:teuthology.orchestra.run.smithi165.stdout: linux-modules-5.15.0-122-generic linux-modules-extra-5.15.0-122-generic 2024-09-17T08:49:44.775 INFO:teuthology.orchestra.run.smithi165.stdout:Suggested packages: 2024-09-17T08:49:44.776 INFO:teuthology.orchestra.run.smithi165.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-17T08:49:44.776 INFO:teuthology.orchestra.run.smithi165.stdout:Recommended packages: 2024-09-17T08:49:44.776 INFO:teuthology.orchestra.run.smithi165.stdout: thermald 2024-09-17T08:49:44.821 INFO:teuthology.orchestra.run.smithi165.stdout:The following NEW packages will be installed: 2024-09-17T08:49:44.821 INFO:teuthology.orchestra.run.smithi165.stdout: linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-17T08:49:44.821 INFO:teuthology.orchestra.run.smithi165.stdout: linux-image-5.15.0-122-generic linux-modules-5.15.0-122-generic 2024-09-17T08:49:44.822 INFO:teuthology.orchestra.run.smithi165.stdout: linux-modules-extra-5.15.0-122-generic 2024-09-17T08:49:44.822 INFO:teuthology.orchestra.run.smithi165.stdout:The following packages will be upgraded: 2024-09-17T08:49:44.823 INFO:teuthology.orchestra.run.smithi165.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-17T08:49:45.004 INFO:teuthology.orchestra.run.smithi165.stdout:3 upgraded, 5 newly installed, 0 to remove and 344 not upgraded. 2024-09-17T08:49:45.005 INFO:teuthology.orchestra.run.smithi165.stdout:Need to get 113 MB of archives. 2024-09-17T08:49:45.005 INFO:teuthology.orchestra.run.smithi165.stdout:After this operation, 584 MB of additional disk space will be used. 2024-09-17T08:49:45.005 INFO:teuthology.orchestra.run.smithi165.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-17T08:49:45.876 INFO:teuthology.orchestra.run.smithi098.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-17T08:49:46.049 INFO:teuthology.orchestra.run.smithi134.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-17T08:49:46.227 INFO:teuthology.orchestra.run.smithi098.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-17T08:49:46.351 INFO:teuthology.orchestra.run.smithi165.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-17T08:49:46.400 INFO:teuthology.orchestra.run.smithi134.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-17T08:49:46.692 INFO:teuthology.orchestra.run.smithi165.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-17T08:49:48.482 INFO:teuthology.orchestra.run.smithi098.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-17T08:49:48.482 INFO:teuthology.orchestra.run.smithi098.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-17T08:49:48.482 INFO:teuthology.orchestra.run.smithi098.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-17T08:49:48.620 INFO:teuthology.orchestra.run.smithi134.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-17T08:49:48.620 INFO:teuthology.orchestra.run.smithi134.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-17T08:49:48.620 INFO:teuthology.orchestra.run.smithi134.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-17T08:49:48.831 INFO:teuthology.orchestra.run.smithi165.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-17T08:49:48.831 INFO:teuthology.orchestra.run.smithi165.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-17T08:49:48.832 INFO:teuthology.orchestra.run.smithi165.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-17T08:49:48.981 INFO:teuthology.orchestra.run.smithi098.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-17T08:49:49.082 INFO:teuthology.orchestra.run.smithi098.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-17T08:49:49.121 INFO:teuthology.orchestra.run.smithi134.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-17T08:49:49.169 INFO:teuthology.orchestra.run.smithi165.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-17T08:49:49.210 INFO:teuthology.orchestra.run.smithi134.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-17T08:49:49.247 INFO:teuthology.orchestra.run.smithi165.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-17T08:49:49.504 INFO:teuthology.orchestra.run.smithi098.stdout:Fetched 113 MB in 5s (23.2 MB/s) 2024-09-17T08:49:49.593 INFO:teuthology.orchestra.run.smithi134.stdout:Fetched 113 MB in 5s (23.9 MB/s) 2024-09-17T08:49:49.655 INFO:teuthology.orchestra.run.smithi165.stdout:Fetched 113 MB in 4s (25.6 MB/s) 2024-09-17T08:49:49.657 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package linux-modules-5.15.0-122-generic. 2024-09-17T08:49:49.764 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package linux-modules-5.15.0-122-generic. 2024-09-17T08:49:49.854 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package linux-modules-5.15.0-122-generic. 2024-09-17T08:49:51.642 INFO:teuthology.orchestra.run.smithi098.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-17T08:49:51.646 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../0-linux-modules-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-17T08:49:51.674 INFO:teuthology.orchestra.run.smithi134.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-17T08:49:51.679 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../0-linux-modules-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-17T08:49:51.715 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-17T08:49:51.760 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-17T08:49:51.770 INFO:teuthology.orchestra.run.smithi165.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-17T08:49:51.774 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../0-linux-modules-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-17T08:49:51.870 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-17T08:49:53.769 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package linux-image-5.15.0-122-generic. 2024-09-17T08:49:53.790 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../1-linux-image-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-17T08:49:53.871 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-17T08:49:53.975 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package linux-image-5.15.0-122-generic. 2024-09-17T08:49:53.996 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../1-linux-image-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-17T08:49:54.094 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-17T08:49:54.357 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-122-generic. 2024-09-17T08:49:54.378 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-17T08:49:54.422 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-17T08:49:54.431 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package linux-image-5.15.0-122-generic. 2024-09-17T08:49:54.452 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../1-linux-image-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-17T08:49:54.539 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-17T08:49:54.587 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-122-generic. 2024-09-17T08:49:54.608 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-17T08:49:54.653 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-17T08:49:55.001 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-122-generic. 2024-09-17T08:49:55.021 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-17T08:49:55.059 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-17T08:50:00.819 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../3-linux-generic_5.15.0.122.122_amd64.deb ... 2024-09-17T08:50:00.930 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking linux-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-17T08:50:01.271 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.122.122_amd64.deb ... 2024-09-17T08:50:01.392 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking linux-image-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-17T08:50:01.528 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../3-linux-generic_5.15.0.122.122_amd64.deb ... 2024-09-17T08:50:01.595 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../3-linux-generic_5.15.0.122.122_amd64.deb ... 2024-09-17T08:50:01.680 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking linux-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-17T08:50:01.686 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package linux-headers-5.15.0-122. 2024-09-17T08:50:01.698 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking linux-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-17T08:50:01.709 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../5-linux-headers-5.15.0-122_5.15.0-122.132_all.deb ... 2024-09-17T08:50:01.753 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-17T08:50:02.022 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.122.122_amd64.deb ... 2024-09-17T08:50:02.030 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.122.122_amd64.deb ... 2024-09-17T08:50:02.143 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking linux-image-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-17T08:50:02.159 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking linux-image-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-17T08:50:02.462 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package linux-headers-5.15.0-122. 2024-09-17T08:50:02.463 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package linux-headers-5.15.0-122. 2024-09-17T08:50:02.484 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../5-linux-headers-5.15.0-122_5.15.0-122.132_all.deb ... 2024-09-17T08:50:02.485 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../5-linux-headers-5.15.0-122_5.15.0-122.132_all.deb ... 2024-09-17T08:50:02.529 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-17T08:50:02.529 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-17T08:50:07.318 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package linux-headers-5.15.0-122-generic. 2024-09-17T08:50:07.355 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../6-linux-headers-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-17T08:50:07.393 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-17T08:50:08.294 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package linux-headers-5.15.0-122-generic. 2024-09-17T08:50:08.331 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../6-linux-headers-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-17T08:50:08.368 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-17T08:50:08.585 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package linux-headers-5.15.0-122-generic. 2024-09-17T08:50:08.622 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../6-linux-headers-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-17T08:50:08.660 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-17T08:50:09.872 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.122.122_amd64.deb ... 2024-09-17T08:50:09.989 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking linux-headers-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-17T08:50:10.322 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-17T08:50:10.427 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-17T08:50:10.528 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up linux-headers-generic (5.15.0.122.122) ... 2024-09-17T08:50:10.632 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-17T08:50:11.730 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.122.122_amd64.deb ... 2024-09-17T08:50:12.079 INFO:teuthology.orchestra.run.smithi134.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-17T08:50:12.079 INFO:teuthology.orchestra.run.smithi134.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-09-17T08:50:12.079 INFO:teuthology.orchestra.run.smithi134.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-122-generic 2024-09-17T08:50:12.079 INFO:teuthology.orchestra.run.smithi134.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-122-generic 2024-09-17T08:50:12.284 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-17T08:50:12.306 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking linux-headers-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-17T08:50:12.640 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-17T08:50:12.685 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.122.122_amd64.deb ... 2024-09-17T08:50:12.745 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-17T08:50:12.827 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking linux-headers-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-17T08:50:12.871 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up linux-headers-generic (5.15.0.122.122) ... 2024-09-17T08:50:12.983 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-17T08:50:13.169 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-17T08:50:13.290 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-17T08:50:13.441 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up linux-headers-generic (5.15.0.122.122) ... 2024-09-17T08:50:13.570 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-17T08:50:13.686 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up linux-image-generic (5.15.0.122.122) ... 2024-09-17T08:50:13.795 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up linux-generic (5.15.0.122.122) ... 2024-09-17T08:50:13.896 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-17T08:50:14.290 INFO:teuthology.orchestra.run.smithi098.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-17T08:50:14.290 INFO:teuthology.orchestra.run.smithi098.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-09-17T08:50:14.290 INFO:teuthology.orchestra.run.smithi098.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-122-generic 2024-09-17T08:50:14.290 INFO:teuthology.orchestra.run.smithi098.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-122-generic 2024-09-17T08:50:14.452 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-17T08:50:14.882 INFO:teuthology.orchestra.run.smithi165.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-17T08:50:14.882 INFO:teuthology.orchestra.run.smithi165.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-09-17T08:50:14.882 INFO:teuthology.orchestra.run.smithi165.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-122-generic 2024-09-17T08:50:14.882 INFO:teuthology.orchestra.run.smithi165.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-122-generic 2024-09-17T08:50:15.037 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-17T08:50:15.290 INFO:teuthology.orchestra.run.smithi134.stdout:Processing triggers for linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-17T08:50:15.349 INFO:teuthology.orchestra.run.smithi134.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-17T08:50:15.349 INFO:teuthology.orchestra.run.smithi134.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-122-generic 2024-09-17T08:50:15.862 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up linux-image-generic (5.15.0.122.122) ... 2024-09-17T08:50:15.971 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up linux-generic (5.15.0.122.122) ... 2024-09-17T08:50:16.072 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-17T08:50:16.438 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up linux-image-generic (5.15.0.122.122) ... 2024-09-17T08:50:16.564 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up linux-generic (5.15.0.122.122) ... 2024-09-17T08:50:16.690 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-17T08:50:18.233 INFO:teuthology.orchestra.run.smithi098.stdout:Processing triggers for linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-17T08:50:18.306 INFO:teuthology.orchestra.run.smithi098.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-17T08:50:18.307 INFO:teuthology.orchestra.run.smithi098.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-122-generic 2024-09-17T08:50:18.667 INFO:teuthology.orchestra.run.smithi165.stdout:Processing triggers for linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-17T08:50:18.727 INFO:teuthology.orchestra.run.smithi165.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-17T08:50:18.727 INFO:teuthology.orchestra.run.smithi165.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-122-generic 2024-09-17T08:50:29.217 INFO:teuthology.orchestra.run.smithi134.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-17T08:50:29.218 INFO:teuthology.orchestra.run.smithi134.stdout:Sourcing file `/etc/default/grub' 2024-09-17T08:50:29.228 INFO:teuthology.orchestra.run.smithi134.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-17T08:50:29.256 INFO:teuthology.orchestra.run.smithi134.stdout:Generating grub configuration file ... 2024-09-17T08:50:29.587 INFO:teuthology.orchestra.run.smithi134.stdout:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-17T08:50:29.600 INFO:teuthology.orchestra.run.smithi134.stdout:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-17T08:50:29.978 INFO:teuthology.orchestra.run.smithi134.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-17T08:50:29.985 INFO:teuthology.orchestra.run.smithi134.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-17T08:50:30.058 INFO:teuthology.orchestra.run.smithi134.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-17T08:50:30.064 INFO:teuthology.orchestra.run.smithi134.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-17T08:50:30.257 INFO:teuthology.orchestra.run.smithi134.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-17T08:50:30.257 INFO:teuthology.orchestra.run.smithi134.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-17T08:50:30.257 INFO:teuthology.orchestra.run.smithi134.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-17T08:50:30.297 INFO:teuthology.orchestra.run.smithi134.stdout:done 2024-09-17T08:50:30.736 DEBUG:teuthology.orchestra.run.smithi134:> dpkg -s linux-image-generic 2024-09-17T08:50:30.760 INFO:teuthology.orchestra.run.smithi134.stdout:Package: linux-image-generic 2024-09-17T08:50:30.761 INFO:teuthology.orchestra.run.smithi134.stdout:Status: install ok installed 2024-09-17T08:50:30.761 INFO:teuthology.orchestra.run.smithi134.stdout:Priority: optional 2024-09-17T08:50:30.761 INFO:teuthology.orchestra.run.smithi134.stdout:Section: kernel 2024-09-17T08:50:30.761 INFO:teuthology.orchestra.run.smithi134.stdout:Installed-Size: 21 2024-09-17T08:50:30.761 INFO:teuthology.orchestra.run.smithi134.stdout:Maintainer: Ubuntu Kernel Team 2024-09-17T08:50:30.761 INFO:teuthology.orchestra.run.smithi134.stdout:Architecture: amd64 2024-09-17T08:50:30.761 INFO:teuthology.orchestra.run.smithi134.stdout:Source: linux-meta 2024-09-17T08:50:30.761 INFO:teuthology.orchestra.run.smithi134.stdout:Version: 5.15.0.122.122 2024-09-17T08:50:30.761 INFO:teuthology.orchestra.run.smithi134.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-17T08:50:30.761 INFO:teuthology.orchestra.run.smithi134.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-17T08:50:30.761 INFO:teuthology.orchestra.run.smithi134.stdout:Recommends: thermald 2024-09-17T08:50:30.762 INFO:teuthology.orchestra.run.smithi134.stdout:Description: Generic Linux kernel image 2024-09-17T08:50:30.762 INFO:teuthology.orchestra.run.smithi134.stdout: This package will always depend on the latest generic kernel image 2024-09-17T08:50:30.762 INFO:teuthology.orchestra.run.smithi134.stdout: available. 2024-09-17T08:50:30.762 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-122-generic 2024-09-17T08:50:30.762 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-17T08:50:30.762 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-17T08:50:30.762 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-09-17T08:50:30.762 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi134.front.sepia.ceph.com, path=None, version=distro) 2024-09-17T08:50:30.763 DEBUG:teuthology.orchestra.run.smithi134:> sudo apt-get clean 2024-09-17T08:50:30.953 DEBUG:teuthology.orchestra.run.smithi134:> sudo apt-get update 2024-09-17T08:50:31.072 INFO:teuthology.orchestra.run.smithi134.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-17T08:50:31.072 INFO:teuthology.orchestra.run.smithi134.stdout:Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-17T08:50:31.081 INFO:teuthology.orchestra.run.smithi134.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-17T08:50:31.098 INFO:teuthology.orchestra.run.smithi134.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-17T08:50:32.155 INFO:teuthology.orchestra.run.smithi098.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-17T08:50:32.155 INFO:teuthology.orchestra.run.smithi098.stdout:Sourcing file `/etc/default/grub' 2024-09-17T08:50:32.169 INFO:teuthology.orchestra.run.smithi098.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-17T08:50:32.199 INFO:teuthology.orchestra.run.smithi098.stdout:Generating grub configuration file ... 2024-09-17T08:50:32.468 INFO:teuthology.orchestra.run.smithi098.stdout:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-17T08:50:32.489 INFO:teuthology.orchestra.run.smithi098.stdout:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-17T08:50:32.538 INFO:teuthology.orchestra.run.smithi134.stdout:Reading package lists... 2024-09-17T08:50:32.557 DEBUG:teuthology.orchestra.run.smithi134:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-17T08:50:32.617 INFO:teuthology.orchestra.run.smithi134.stdout:Reading package lists... 2024-09-17T08:50:32.687 INFO:teuthology.orchestra.run.smithi165.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-17T08:50:32.687 INFO:teuthology.orchestra.run.smithi165.stdout:Sourcing file `/etc/default/grub' 2024-09-17T08:50:32.715 INFO:teuthology.orchestra.run.smithi165.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-17T08:50:32.736 INFO:teuthology.orchestra.run.smithi165.stdout:Generating grub configuration file ... 2024-09-17T08:50:32.758 INFO:teuthology.orchestra.run.smithi098.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-17T08:50:32.763 INFO:teuthology.orchestra.run.smithi098.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-17T08:50:32.824 INFO:teuthology.orchestra.run.smithi098.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-17T08:50:32.828 INFO:teuthology.orchestra.run.smithi134.stdout:Building dependency tree... 2024-09-17T08:50:32.829 INFO:teuthology.orchestra.run.smithi134.stdout:Reading state information... 2024-09-17T08:50:32.829 INFO:teuthology.orchestra.run.smithi098.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-17T08:50:32.987 INFO:teuthology.orchestra.run.smithi098.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-17T08:50:32.988 INFO:teuthology.orchestra.run.smithi098.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-17T08:50:32.988 INFO:teuthology.orchestra.run.smithi098.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-17T08:50:32.998 INFO:teuthology.orchestra.run.smithi165.stdout:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-17T08:50:33.005 INFO:teuthology.orchestra.run.smithi134.stdout:linux-image-generic is already the newest version (5.15.0.122.122). 2024-09-17T08:50:33.005 INFO:teuthology.orchestra.run.smithi134.stdout:The following packages were automatically installed and are no longer required: 2024-09-17T08:50:33.006 INFO:teuthology.orchestra.run.smithi134.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-17T08:50:33.006 INFO:teuthology.orchestra.run.smithi134.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-17T08:50:33.006 INFO:teuthology.orchestra.run.smithi134.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-17T08:50:33.006 INFO:teuthology.orchestra.run.smithi134.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-17T08:50:33.006 INFO:teuthology.orchestra.run.smithi134.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-17T08:50:33.006 INFO:teuthology.orchestra.run.smithi134.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-17T08:50:33.018 INFO:teuthology.orchestra.run.smithi165.stdout:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-17T08:50:33.030 INFO:teuthology.orchestra.run.smithi098.stdout:done 2024-09-17T08:50:33.047 INFO:teuthology.orchestra.run.smithi134.stdout:0 upgraded, 0 newly installed, 0 to remove and 344 not upgraded. 2024-09-17T08:50:33.049 DEBUG:teuthology.orchestra.run.smithi134:> dpkg -s linux-image-generic 2024-09-17T08:50:33.064 INFO:teuthology.orchestra.run.smithi134.stdout:Package: linux-image-generic 2024-09-17T08:50:33.065 INFO:teuthology.orchestra.run.smithi134.stdout:Status: install ok installed 2024-09-17T08:50:33.065 INFO:teuthology.orchestra.run.smithi134.stdout:Priority: optional 2024-09-17T08:50:33.065 INFO:teuthology.orchestra.run.smithi134.stdout:Section: kernel 2024-09-17T08:50:33.065 INFO:teuthology.orchestra.run.smithi134.stdout:Installed-Size: 21 2024-09-17T08:50:33.065 INFO:teuthology.orchestra.run.smithi134.stdout:Maintainer: Ubuntu Kernel Team 2024-09-17T08:50:33.065 INFO:teuthology.orchestra.run.smithi134.stdout:Architecture: amd64 2024-09-17T08:50:33.065 INFO:teuthology.orchestra.run.smithi134.stdout:Source: linux-meta 2024-09-17T08:50:33.065 INFO:teuthology.orchestra.run.smithi134.stdout:Version: 5.15.0.122.122 2024-09-17T08:50:33.065 INFO:teuthology.orchestra.run.smithi134.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-17T08:50:33.065 INFO:teuthology.orchestra.run.smithi134.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-17T08:50:33.066 INFO:teuthology.orchestra.run.smithi134.stdout:Recommends: thermald 2024-09-17T08:50:33.066 INFO:teuthology.orchestra.run.smithi134.stdout:Description: Generic Linux kernel image 2024-09-17T08:50:33.066 INFO:teuthology.orchestra.run.smithi134.stdout: This package will always depend on the latest generic kernel image 2024-09-17T08:50:33.066 INFO:teuthology.orchestra.run.smithi134.stdout: available. 2024-09-17T08:50:33.066 DEBUG:teuthology.orchestra.run.smithi134:> mktemp 2024-09-17T08:50:33.110 INFO:teuthology.orchestra.run.smithi134.stdout:/tmp/tmp.aG1gVDi03k 2024-09-17T08:50:33.110 DEBUG:teuthology.orchestra.run.smithi134:> sudo cp /boot/grub/grub.cfg /tmp/tmp.aG1gVDi03k 2024-09-17T08:50:33.165 DEBUG:teuthology.orchestra.run.smithi134:> sudo chmod 0666 /tmp/tmp.aG1gVDi03k 2024-09-17T08:50:33.288 DEBUG:teuthology.orchestra.remote:smithi134:/tmp/tmp.aG1gVDi03k is 10KB 2024-09-17T08:50:33.301 DEBUG:teuthology.orchestra.run.smithi134:> rm -fr /tmp/tmp.aG1gVDi03k 2024-09-17T08:50:33.306 DEBUG:teuthology.orchestra.run.smithi134:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-17T08:50:33.341 INFO:teuthology.orchestra.run.smithi165.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-17T08:50:33.347 INFO:teuthology.orchestra.run.smithi165.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-17T08:50:33.361 DEBUG:teuthology.orchestra.run.smithi134:> set -ex 2024-09-17T08:50:33.361 DEBUG:teuthology.orchestra.run.smithi134:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-17T08:50:33.361 DEBUG:teuthology.orchestra.run.smithi134:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-17T08:50:33.423 INFO:teuthology.orchestra.run.smithi165.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-17T08:50:33.428 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-122-generic 2024-09-17T08:50:33.429 DEBUG:teuthology.orchestra.run.smithi134:> sudo update-grub 2024-09-17T08:50:33.429 INFO:teuthology.orchestra.run.smithi165.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-17T08:50:33.522 DEBUG:teuthology.orchestra.run.smithi098:> dpkg -s linux-image-generic 2024-09-17T08:50:33.554 INFO:teuthology.orchestra.run.smithi098.stdout:Package: linux-image-generic 2024-09-17T08:50:33.554 INFO:teuthology.orchestra.run.smithi098.stdout:Status: install ok installed 2024-09-17T08:50:33.554 INFO:teuthology.orchestra.run.smithi098.stdout:Priority: optional 2024-09-17T08:50:33.554 INFO:teuthology.orchestra.run.smithi098.stdout:Section: kernel 2024-09-17T08:50:33.554 INFO:teuthology.orchestra.run.smithi098.stdout:Installed-Size: 21 2024-09-17T08:50:33.555 INFO:teuthology.orchestra.run.smithi098.stdout:Maintainer: Ubuntu Kernel Team 2024-09-17T08:50:33.555 INFO:teuthology.orchestra.run.smithi098.stdout:Architecture: amd64 2024-09-17T08:50:33.555 INFO:teuthology.orchestra.run.smithi098.stdout:Source: linux-meta 2024-09-17T08:50:33.555 INFO:teuthology.orchestra.run.smithi098.stdout:Version: 5.15.0.122.122 2024-09-17T08:50:33.555 INFO:teuthology.orchestra.run.smithi098.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-17T08:50:33.555 INFO:teuthology.orchestra.run.smithi098.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-17T08:50:33.555 INFO:teuthology.orchestra.run.smithi098.stdout:Recommends: thermald 2024-09-17T08:50:33.555 INFO:teuthology.orchestra.run.smithi098.stdout:Description: Generic Linux kernel image 2024-09-17T08:50:33.555 INFO:teuthology.orchestra.run.smithi098.stdout: This package will always depend on the latest generic kernel image 2024-09-17T08:50:33.555 INFO:teuthology.orchestra.run.smithi098.stdout: available. 2024-09-17T08:50:33.555 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-122-generic 2024-09-17T08:50:33.555 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-17T08:50:33.556 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-17T08:50:33.556 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-09-17T08:50:33.556 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi098.front.sepia.ceph.com, path=None, version=distro) 2024-09-17T08:50:33.556 DEBUG:teuthology.orchestra.run.smithi098:> sudo apt-get clean 2024-09-17T08:50:33.584 INFO:teuthology.orchestra.run.smithi165.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-17T08:50:33.585 INFO:teuthology.orchestra.run.smithi165.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-17T08:50:33.585 INFO:teuthology.orchestra.run.smithi165.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-17T08:50:33.624 INFO:teuthology.orchestra.run.smithi165.stdout:done 2024-09-17T08:50:33.701 DEBUG:teuthology.orchestra.run.smithi098:> sudo apt-get update 2024-09-17T08:50:33.945 INFO:teuthology.orchestra.run.smithi098.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-17T08:50:33.945 INFO:teuthology.orchestra.run.smithi098.stdout:Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-17T08:50:34.016 INFO:teuthology.orchestra.run.smithi098.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-17T08:50:34.058 DEBUG:teuthology.orchestra.run.smithi165:> dpkg -s linux-image-generic 2024-09-17T08:50:34.080 INFO:teuthology.orchestra.run.smithi165.stdout:Package: linux-image-generic 2024-09-17T08:50:34.080 INFO:teuthology.orchestra.run.smithi165.stdout:Status: install ok installed 2024-09-17T08:50:34.081 INFO:teuthology.orchestra.run.smithi165.stdout:Priority: optional 2024-09-17T08:50:34.081 INFO:teuthology.orchestra.run.smithi165.stdout:Section: kernel 2024-09-17T08:50:34.081 INFO:teuthology.orchestra.run.smithi165.stdout:Installed-Size: 21 2024-09-17T08:50:34.081 INFO:teuthology.orchestra.run.smithi165.stdout:Maintainer: Ubuntu Kernel Team 2024-09-17T08:50:34.081 INFO:teuthology.orchestra.run.smithi165.stdout:Architecture: amd64 2024-09-17T08:50:34.081 INFO:teuthology.orchestra.run.smithi165.stdout:Source: linux-meta 2024-09-17T08:50:34.081 INFO:teuthology.orchestra.run.smithi165.stdout:Version: 5.15.0.122.122 2024-09-17T08:50:34.081 INFO:teuthology.orchestra.run.smithi165.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-17T08:50:34.081 INFO:teuthology.orchestra.run.smithi165.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-17T08:50:34.081 INFO:teuthology.orchestra.run.smithi165.stdout:Recommends: thermald 2024-09-17T08:50:34.081 INFO:teuthology.orchestra.run.smithi165.stdout:Description: Generic Linux kernel image 2024-09-17T08:50:34.081 INFO:teuthology.orchestra.run.smithi165.stdout: This package will always depend on the latest generic kernel image 2024-09-17T08:50:34.082 INFO:teuthology.orchestra.run.smithi165.stdout: available. 2024-09-17T08:50:34.082 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-122-generic 2024-09-17T08:50:34.082 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-17T08:50:34.082 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-17T08:50:34.082 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2024-09-17T08:50:34.082 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi165.front.sepia.ceph.com, path=None, version=distro) 2024-09-17T08:50:34.082 DEBUG:teuthology.orchestra.run.smithi165:> sudo apt-get clean 2024-09-17T08:50:34.098 INFO:teuthology.orchestra.run.smithi098.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-17T08:50:34.261 DEBUG:teuthology.orchestra.run.smithi165:> sudo apt-get update 2024-09-17T08:50:34.515 INFO:teuthology.orchestra.run.smithi165.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-17T08:50:34.515 INFO:teuthology.orchestra.run.smithi165.stdout:Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-17T08:50:34.575 INFO:teuthology.orchestra.run.smithi165.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-17T08:50:34.589 INFO:teuthology.orchestra.run.smithi134.stderr:Sourcing file `/etc/default/grub' 2024-09-17T08:50:34.590 INFO:teuthology.orchestra.run.smithi134.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-17T08:50:34.593 INFO:teuthology.orchestra.run.smithi134.stderr:Generating grub configuration file ... 2024-09-17T08:50:34.657 INFO:teuthology.orchestra.run.smithi165.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-17T08:50:34.837 INFO:teuthology.orchestra.run.smithi134.stderr:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-17T08:50:34.844 INFO:teuthology.orchestra.run.smithi134.stderr:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-17T08:50:35.185 INFO:teuthology.orchestra.run.smithi134.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-17T08:50:35.191 INFO:teuthology.orchestra.run.smithi134.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-17T08:50:35.232 INFO:teuthology.orchestra.run.smithi134.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-17T08:50:35.238 INFO:teuthology.orchestra.run.smithi134.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-17T08:50:35.378 INFO:teuthology.orchestra.run.smithi134.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-17T08:50:35.378 INFO:teuthology.orchestra.run.smithi134.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-17T08:50:35.378 INFO:teuthology.orchestra.run.smithi134.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-17T08:50:35.389 INFO:teuthology.orchestra.run.smithi134.stderr:done 2024-09-17T08:50:35.392 DEBUG:teuthology.orchestra.run.smithi134:> sudo shutdown -r now 2024-09-17T08:50:35.393 INFO:teuthology.orchestra.run.smithi098.stdout:Reading package lists... 2024-09-17T08:50:35.412 DEBUG:teuthology.orchestra.run.smithi098:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-17T08:50:35.475 INFO:teuthology.orchestra.run.smithi098.stdout:Reading package lists... 2024-09-17T08:50:35.688 INFO:teuthology.orchestra.run.smithi098.stdout:Building dependency tree... 2024-09-17T08:50:35.689 INFO:teuthology.orchestra.run.smithi098.stdout:Reading state information... 2024-09-17T08:50:35.871 INFO:teuthology.orchestra.run.smithi098.stdout:linux-image-generic is already the newest version (5.15.0.122.122). 2024-09-17T08:50:35.871 INFO:teuthology.orchestra.run.smithi098.stdout:The following packages were automatically installed and are no longer required: 2024-09-17T08:50:35.872 INFO:teuthology.orchestra.run.smithi098.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-17T08:50:35.872 INFO:teuthology.orchestra.run.smithi098.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-17T08:50:35.872 INFO:teuthology.orchestra.run.smithi098.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-17T08:50:35.872 INFO:teuthology.orchestra.run.smithi098.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-17T08:50:35.872 INFO:teuthology.orchestra.run.smithi098.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-17T08:50:35.872 INFO:teuthology.orchestra.run.smithi098.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-17T08:50:35.910 INFO:teuthology.orchestra.run.smithi098.stdout:0 upgraded, 0 newly installed, 0 to remove and 344 not upgraded. 2024-09-17T08:50:35.912 DEBUG:teuthology.orchestra.run.smithi098:> dpkg -s linux-image-generic 2024-09-17T08:50:35.928 INFO:teuthology.orchestra.run.smithi098.stdout:Package: linux-image-generic 2024-09-17T08:50:35.928 INFO:teuthology.orchestra.run.smithi098.stdout:Status: install ok installed 2024-09-17T08:50:35.929 INFO:teuthology.orchestra.run.smithi098.stdout:Priority: optional 2024-09-17T08:50:35.929 INFO:teuthology.orchestra.run.smithi098.stdout:Section: kernel 2024-09-17T08:50:35.929 INFO:teuthology.orchestra.run.smithi098.stdout:Installed-Size: 21 2024-09-17T08:50:35.929 INFO:teuthology.orchestra.run.smithi098.stdout:Maintainer: Ubuntu Kernel Team 2024-09-17T08:50:35.929 INFO:teuthology.orchestra.run.smithi098.stdout:Architecture: amd64 2024-09-17T08:50:35.929 INFO:teuthology.orchestra.run.smithi098.stdout:Source: linux-meta 2024-09-17T08:50:35.930 INFO:teuthology.orchestra.run.smithi098.stdout:Version: 5.15.0.122.122 2024-09-17T08:50:35.930 INFO:teuthology.orchestra.run.smithi098.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-17T08:50:35.930 INFO:teuthology.orchestra.run.smithi098.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-17T08:50:35.930 INFO:teuthology.orchestra.run.smithi098.stdout:Recommends: thermald 2024-09-17T08:50:35.930 INFO:teuthology.orchestra.run.smithi098.stdout:Description: Generic Linux kernel image 2024-09-17T08:50:35.930 INFO:teuthology.orchestra.run.smithi098.stdout: This package will always depend on the latest generic kernel image 2024-09-17T08:50:35.930 INFO:teuthology.orchestra.run.smithi098.stdout: available. 2024-09-17T08:50:35.931 DEBUG:teuthology.orchestra.run.smithi098:> mktemp 2024-09-17T08:50:35.976 INFO:teuthology.orchestra.run.smithi098.stdout:/tmp/tmp.RY2FplNoqZ 2024-09-17T08:50:35.976 DEBUG:teuthology.orchestra.run.smithi098:> sudo cp /boot/grub/grub.cfg /tmp/tmp.RY2FplNoqZ 2024-09-17T08:50:36.003 INFO:teuthology.orchestra.run.smithi165.stdout:Reading package lists... 2024-09-17T08:50:36.021 DEBUG:teuthology.orchestra.run.smithi165:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-17T08:50:36.031 DEBUG:teuthology.orchestra.run.smithi098:> sudo chmod 0666 /tmp/tmp.RY2FplNoqZ 2024-09-17T08:50:36.083 INFO:teuthology.orchestra.run.smithi165.stdout:Reading package lists... 2024-09-17T08:50:36.145 DEBUG:teuthology.orchestra.remote:smithi098:/tmp/tmp.RY2FplNoqZ is 10KB 2024-09-17T08:50:36.198 DEBUG:teuthology.orchestra.run.smithi098:> rm -fr /tmp/tmp.RY2FplNoqZ 2024-09-17T08:50:36.203 DEBUG:teuthology.orchestra.run.smithi098:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-17T08:50:36.256 DEBUG:teuthology.orchestra.run.smithi098:> set -ex 2024-09-17T08:50:36.257 DEBUG:teuthology.orchestra.run.smithi098:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-17T08:50:36.257 DEBUG:teuthology.orchestra.run.smithi098:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-17T08:50:36.296 INFO:teuthology.orchestra.run.smithi165.stdout:Building dependency tree... 2024-09-17T08:50:36.296 INFO:teuthology.orchestra.run.smithi165.stdout:Reading state information... 2024-09-17T08:50:36.324 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-122-generic 2024-09-17T08:50:36.325 DEBUG:teuthology.orchestra.run.smithi098:> sudo update-grub 2024-09-17T08:50:36.481 INFO:teuthology.orchestra.run.smithi165.stdout:linux-image-generic is already the newest version (5.15.0.122.122). 2024-09-17T08:50:36.482 INFO:teuthology.orchestra.run.smithi165.stdout:The following packages were automatically installed and are no longer required: 2024-09-17T08:50:36.482 INFO:teuthology.orchestra.run.smithi165.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-17T08:50:36.482 INFO:teuthology.orchestra.run.smithi165.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-17T08:50:36.482 INFO:teuthology.orchestra.run.smithi165.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-17T08:50:36.482 INFO:teuthology.orchestra.run.smithi165.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-17T08:50:36.483 INFO:teuthology.orchestra.run.smithi165.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-17T08:50:36.483 INFO:teuthology.orchestra.run.smithi165.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-17T08:50:36.522 INFO:teuthology.orchestra.run.smithi165.stdout:0 upgraded, 0 newly installed, 0 to remove and 344 not upgraded. 2024-09-17T08:50:36.524 DEBUG:teuthology.orchestra.run.smithi165:> dpkg -s linux-image-generic 2024-09-17T08:50:36.540 INFO:teuthology.orchestra.run.smithi165.stdout:Package: linux-image-generic 2024-09-17T08:50:36.540 INFO:teuthology.orchestra.run.smithi165.stdout:Status: install ok installed 2024-09-17T08:50:36.540 INFO:teuthology.orchestra.run.smithi165.stdout:Priority: optional 2024-09-17T08:50:36.540 INFO:teuthology.orchestra.run.smithi165.stdout:Section: kernel 2024-09-17T08:50:36.540 INFO:teuthology.orchestra.run.smithi165.stdout:Installed-Size: 21 2024-09-17T08:50:36.540 INFO:teuthology.orchestra.run.smithi165.stdout:Maintainer: Ubuntu Kernel Team 2024-09-17T08:50:36.540 INFO:teuthology.orchestra.run.smithi165.stdout:Architecture: amd64 2024-09-17T08:50:36.540 INFO:teuthology.orchestra.run.smithi165.stdout:Source: linux-meta 2024-09-17T08:50:36.540 INFO:teuthology.orchestra.run.smithi165.stdout:Version: 5.15.0.122.122 2024-09-17T08:50:36.541 INFO:teuthology.orchestra.run.smithi165.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-17T08:50:36.541 INFO:teuthology.orchestra.run.smithi165.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-17T08:50:36.541 INFO:teuthology.orchestra.run.smithi165.stdout:Recommends: thermald 2024-09-17T08:50:36.541 INFO:teuthology.orchestra.run.smithi165.stdout:Description: Generic Linux kernel image 2024-09-17T08:50:36.541 INFO:teuthology.orchestra.run.smithi165.stdout: This package will always depend on the latest generic kernel image 2024-09-17T08:50:36.541 INFO:teuthology.orchestra.run.smithi165.stdout: available. 2024-09-17T08:50:36.541 DEBUG:teuthology.orchestra.run.smithi165:> mktemp 2024-09-17T08:50:36.590 INFO:teuthology.orchestra.run.smithi165.stdout:/tmp/tmp.rI69XdaFPS 2024-09-17T08:50:36.590 DEBUG:teuthology.orchestra.run.smithi165:> sudo cp /boot/grub/grub.cfg /tmp/tmp.rI69XdaFPS 2024-09-17T08:50:36.649 DEBUG:teuthology.orchestra.run.smithi165:> sudo chmod 0666 /tmp/tmp.rI69XdaFPS 2024-09-17T08:50:36.769 DEBUG:teuthology.orchestra.remote:smithi165:/tmp/tmp.rI69XdaFPS is 10KB 2024-09-17T08:50:36.826 DEBUG:teuthology.orchestra.run.smithi165:> rm -fr /tmp/tmp.rI69XdaFPS 2024-09-17T08:50:36.832 DEBUG:teuthology.orchestra.run.smithi165:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-17T08:50:36.885 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-09-17T08:50:36.886 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-17T08:50:36.886 DEBUG:teuthology.orchestra.run.smithi165:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-17T08:50:36.986 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-122-generic 2024-09-17T08:50:36.986 DEBUG:teuthology.orchestra.run.smithi165:> sudo update-grub 2024-09-17T08:50:37.556 INFO:teuthology.orchestra.run.smithi098.stderr:Sourcing file `/etc/default/grub' 2024-09-17T08:50:37.558 INFO:teuthology.orchestra.run.smithi098.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-17T08:50:37.560 INFO:teuthology.orchestra.run.smithi098.stderr:Generating grub configuration file ... 2024-09-17T08:50:37.756 INFO:teuthology.orchestra.run.smithi098.stderr:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-17T08:50:37.762 INFO:teuthology.orchestra.run.smithi098.stderr:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-17T08:50:37.997 INFO:teuthology.orchestra.run.smithi098.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-17T08:50:38.002 INFO:teuthology.orchestra.run.smithi098.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-17T08:50:38.043 INFO:teuthology.orchestra.run.smithi098.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-17T08:50:38.048 INFO:teuthology.orchestra.run.smithi098.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-17T08:50:38.168 INFO:teuthology.orchestra.run.smithi098.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-17T08:50:38.169 INFO:teuthology.orchestra.run.smithi098.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-17T08:50:38.169 INFO:teuthology.orchestra.run.smithi098.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-17T08:50:38.188 INFO:teuthology.orchestra.run.smithi098.stderr:done 2024-09-17T08:50:38.204 DEBUG:teuthology.orchestra.run.smithi098:> sudo shutdown -r now 2024-09-17T08:50:38.214 INFO:teuthology.orchestra.run.smithi165.stderr:Sourcing file `/etc/default/grub' 2024-09-17T08:50:38.215 INFO:teuthology.orchestra.run.smithi165.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-17T08:50:38.218 INFO:teuthology.orchestra.run.smithi165.stderr:Generating grub configuration file ... 2024-09-17T08:50:38.428 INFO:teuthology.orchestra.run.smithi165.stderr:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-17T08:50:38.433 INFO:teuthology.orchestra.run.smithi165.stderr:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-17T08:50:38.731 INFO:teuthology.orchestra.run.smithi165.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-17T08:50:38.737 INFO:teuthology.orchestra.run.smithi165.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-17T08:50:38.778 INFO:teuthology.orchestra.run.smithi165.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-17T08:50:38.783 INFO:teuthology.orchestra.run.smithi165.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-17T08:50:38.927 INFO:teuthology.orchestra.run.smithi165.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-17T08:50:38.928 INFO:teuthology.orchestra.run.smithi165.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-17T08:50:38.928 INFO:teuthology.orchestra.run.smithi165.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-17T08:50:38.938 INFO:teuthology.orchestra.run.smithi165.stderr:done 2024-09-17T08:50:38.940 DEBUG:teuthology.orchestra.run.smithi165:> sudo shutdown -r now 2024-09-17T08:51:05.421 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-09-17T08:51:05.421 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi134.front.sepia.ceph.com' 2024-09-17T08:51:05.422 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi134.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T08:51:08.209 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-09-17T08:51:08.209 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi098.front.sepia.ceph.com' 2024-09-17T08:51:08.210 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi098.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T08:51:08.944 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2024-09-17T08:51:08.944 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi165.front.sepia.ceph.com' 2024-09-17T08:51:08.945 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi165.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T08:51:43.553 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.165 2024-09-17T08:51:52.563 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi165.front.sepia.ceph.com' 2024-09-17T08:51:52.565 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi165.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T08:52:05.437 DEBUG:teuthology.orchestra.remote:timed out 2024-09-17T08:52:08.215 DEBUG:teuthology.orchestra.remote:timed out 2024-09-17T08:52:10.941 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.165 2024-09-17T08:52:14.442 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi134.front.sepia.ceph.com' 2024-09-17T08:52:14.443 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi134.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T08:52:15.729 DEBUG:teuthology.orchestra.run.smithi134:> true 2024-09-17T08:52:16.475 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi134.front.sepia.ceph.com' 2024-09-17T08:52:16.476 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-122-generic"... 2024-09-17T08:52:16.476 DEBUG:teuthology.orchestra.run.smithi134:> uname -r 2024-09-17T08:52:16.521 INFO:teuthology.orchestra.run.smithi134.stdout:5.15.0-122-generic 2024-09-17T08:52:16.521 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-122-generic vs 5.15.0-122-generic 2024-09-17T08:52:16.521 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-17T08:52:16.521 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-17T08:52:17.216 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi098.front.sepia.ceph.com' 2024-09-17T08:52:17.216 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi098.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T08:52:17.522 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-09-17T08:52:17.523 DEBUG:teuthology.orchestra.run.smithi134:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-17T08:52:17.614 INFO:teuthology.orchestra.run.smithi134.stdout:ttyS1 2024-09-17T08:52:17.655 DEBUG:teuthology.parallel:result is None 2024-09-17T08:52:18.241 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.98 2024-09-17T08:52:22.942 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi165.front.sepia.ceph.com' 2024-09-17T08:52:22.943 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi165.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T08:52:24.063 DEBUG:teuthology.orchestra.run.smithi165:> true 2024-09-17T08:52:25.048 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi165.front.sepia.ceph.com' 2024-09-17T08:52:25.048 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "5.15.0-122-generic"... 2024-09-17T08:52:25.048 DEBUG:teuthology.orchestra.run.smithi165:> uname -r 2024-09-17T08:52:25.094 INFO:teuthology.orchestra.run.smithi165.stdout:5.15.0-122-generic 2024-09-17T08:52:25.095 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-122-generic vs 5.15.0-122-generic 2024-09-17T08:52:25.095 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-17T08:52:25.095 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-17T08:52:26.095 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-09-17T08:52:26.096 DEBUG:teuthology.orchestra.run.smithi165:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-17T08:52:26.266 INFO:teuthology.orchestra.run.smithi165.stdout:ttyS1 2024-09-17T08:52:26.286 DEBUG:teuthology.parallel:result is None 2024-09-17T08:52:30.242 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi098.front.sepia.ceph.com' 2024-09-17T08:52:30.243 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi098.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T08:52:30.456 DEBUG:teuthology.orchestra.run.smithi098:> true 2024-09-17T08:52:30.978 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi098.front.sepia.ceph.com' 2024-09-17T08:52:30.978 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-122-generic"... 2024-09-17T08:52:30.978 DEBUG:teuthology.orchestra.run.smithi098:> uname -r 2024-09-17T08:52:31.026 INFO:teuthology.orchestra.run.smithi098.stdout:5.15.0-122-generic 2024-09-17T08:52:31.027 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-122-generic vs 5.15.0-122-generic 2024-09-17T08:52:31.027 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-17T08:52:31.027 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-17T08:52:32.027 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-09-17T08:52:32.028 DEBUG:teuthology.orchestra.run.smithi098:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-17T08:52:32.383 INFO:teuthology.orchestra.run.smithi098.stdout:ttyS1 2024-09-17T08:52:32.416 DEBUG:teuthology.parallel:result is None 2024-09-17T08:52:32.416 INFO:teuthology.run_tasks:Running task internal.base... 2024-09-17T08:52:32.423 INFO:teuthology.task.internal:Creating test directory... 2024-09-17T08:52:32.423 DEBUG:teuthology.orchestra.run.smithi098:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-17T08:52:32.426 DEBUG:teuthology.orchestra.run.smithi134:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-17T08:52:32.428 DEBUG:teuthology.orchestra.run.smithi165:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-17T08:52:32.435 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-09-17T08:52:32.441 INFO:teuthology.run_tasks:Running task internal.archive... 2024-09-17T08:52:32.448 INFO:teuthology.task.internal:Creating archive directory... 2024-09-17T08:52:32.449 DEBUG:teuthology.orchestra.run.smithi098:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-17T08:52:32.475 DEBUG:teuthology.orchestra.run.smithi134:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-17T08:52:32.478 DEBUG:teuthology.orchestra.run.smithi165:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-17T08:52:32.576 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-09-17T08:52:32.582 INFO:teuthology.task.internal:Enabling coredump saving... 2024-09-17T08:52:32.583 DEBUG:teuthology.orchestra.run.smithi098:> 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-17T08:52:32.585 DEBUG:teuthology.orchestra.run.smithi134:> 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-17T08:52:32.587 DEBUG:teuthology.orchestra.run.smithi165:> 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-17T08:52:32.602 INFO:teuthology.orchestra.run.smithi098.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T08:52:32.608 INFO:teuthology.orchestra.run.smithi134.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T08:52:32.610 INFO:teuthology.orchestra.run.smithi098.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T08:52:32.612 INFO:teuthology.orchestra.run.smithi165.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T08:52:32.617 INFO:teuthology.orchestra.run.smithi134.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T08:52:32.620 INFO:teuthology.orchestra.run.smithi165.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T08:52:32.621 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-09-17T08:52:32.628 INFO:teuthology.task.internal:Configuring sudo... 2024-09-17T08:52:32.628 DEBUG:teuthology.orchestra.run.smithi098:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-17T08:52:32.656 DEBUG:teuthology.orchestra.run.smithi134:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-17T08:52:32.662 DEBUG:teuthology.orchestra.run.smithi165:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-17T08:52:32.675 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-09-17T08:52:32.684 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-09-17T08:52:32.684 DEBUG:teuthology.orchestra.run.smithi098:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-17T08:52:32.712 DEBUG:teuthology.orchestra.run.smithi134:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-17T08:52:32.718 DEBUG:teuthology.orchestra.run.smithi165:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-17T08:52:32.723 DEBUG:teuthology.orchestra.run.smithi098:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T08:52:32.764 DEBUG:teuthology.orchestra.run.smithi098:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T08:52:32.811 DEBUG:teuthology.orchestra.run.smithi098:> set -ex 2024-09-17T08:52:32.811 DEBUG:teuthology.orchestra.run.smithi098:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-17T08:52:32.895 DEBUG:teuthology.orchestra.run.smithi134:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T08:52:32.901 DEBUG:teuthology.orchestra.run.smithi134:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T08:52:32.949 DEBUG:teuthology.orchestra.run.smithi134:> set -ex 2024-09-17T08:52:32.950 DEBUG:teuthology.orchestra.run.smithi134:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-17T08:52:33.008 DEBUG:teuthology.orchestra.run.smithi165:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T08:52:33.014 DEBUG:teuthology.orchestra.run.smithi165:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T08:52:33.060 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-09-17T08:52:33.060 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-17T08:52:33.130 DEBUG:teuthology.orchestra.run.smithi098:> sudo service rsyslog restart 2024-09-17T08:52:33.133 DEBUG:teuthology.orchestra.run.smithi134:> sudo service rsyslog restart 2024-09-17T08:52:33.135 DEBUG:teuthology.orchestra.run.smithi165:> sudo service rsyslog restart 2024-09-17T08:52:33.203 INFO:teuthology.run_tasks:Running task internal.timer... 2024-09-17T08:52:33.211 INFO:teuthology.task.internal:Starting timer... 2024-09-17T08:52:33.211 INFO:teuthology.run_tasks:Running task pcp... 2024-09-17T08:52:33.244 INFO:teuthology.run_tasks:Running task selinux... 2024-09-17T08:52:33.252 DEBUG:teuthology.task.selinux:Excluding smithi098: OS 'ubuntu' does not support SELinux 2024-09-17T08:52:33.252 DEBUG:teuthology.task.selinux:Excluding smithi134: OS 'ubuntu' does not support SELinux 2024-09-17T08:52:33.253 DEBUG:teuthology.task.selinux:Excluding smithi165: OS 'ubuntu' does not support SELinux 2024-09-17T08:52:33.253 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-09-17T08:52:33.253 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-09-17T08:52:33.253 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-09-17T08:52:33.253 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-09-17T08:52:33.262 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-09-17T08:52:33.273 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-17T08:52:33.274 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi098.front.sepia.ceph.com,smithi134.front.sepia.ceph.com,smithi165.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-09-17T09:00:06.419 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi098.front.sepia.ceph.com'), Remote(name='ubuntu@smithi134.front.sepia.ceph.com'), Remote(name='ubuntu@smithi165.front.sepia.ceph.com')] 2024-09-17T09:00:06.421 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi098.front.sepia.ceph.com' 2024-09-17T09:00:06.422 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi098.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T09:00:06.505 DEBUG:teuthology.orchestra.run.smithi098:> true 2024-09-17T09:00:06.585 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi098.front.sepia.ceph.com' 2024-09-17T09:00:06.586 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi134.front.sepia.ceph.com' 2024-09-17T09:00:06.586 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi134.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T09:00:06.668 DEBUG:teuthology.orchestra.run.smithi134:> true 2024-09-17T09:00:06.745 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi134.front.sepia.ceph.com' 2024-09-17T09:00:06.745 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi165.front.sepia.ceph.com' 2024-09-17T09:00:06.746 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi165.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T09:00:06.826 DEBUG:teuthology.orchestra.run.smithi165:> true 2024-09-17T09:00:06.905 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi165.front.sepia.ceph.com' 2024-09-17T09:00:06.905 INFO:teuthology.run_tasks:Running task clock... 2024-09-17T09:00:06.917 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-09-17T09:00:06.917 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-17T09:00:06.918 DEBUG:teuthology.orchestra.run.smithi098:> 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-17T09:00:06.920 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-17T09:00:06.921 DEBUG:teuthology.orchestra.run.smithi134:> 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-17T09:00:06.923 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-17T09:00:06.923 DEBUG:teuthology.orchestra.run.smithi165:> 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-17T09:00:06.948 INFO:teuthology.orchestra.run.smithi098.stdout:17 Sep 09:00:06 ntpd[18489]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-17T09:00:06.948 INFO:teuthology.orchestra.run.smithi098.stdout:17 Sep 09:00:06 ntpd[18489]: Command line: ntpd -gq 2024-09-17T09:00:06.948 INFO:teuthology.orchestra.run.smithi098.stdout:17 Sep 09:00:06 ntpd[18489]: ---------------------------------------------------- 2024-09-17T09:00:06.948 INFO:teuthology.orchestra.run.smithi098.stdout:17 Sep 09:00:06 ntpd[18489]: ntp-4 is maintained by Network Time Foundation, 2024-09-17T09:00:06.948 INFO:teuthology.orchestra.run.smithi098.stdout:17 Sep 09:00:06 ntpd[18489]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-17T09:00:06.949 INFO:teuthology.orchestra.run.smithi098.stdout:17 Sep 09:00:06 ntpd[18489]: corporation. Support and training for ntp-4 are 2024-09-17T09:00:06.949 INFO:teuthology.orchestra.run.smithi098.stdout:17 Sep 09:00:06 ntpd[18489]: available at https://www.nwtime.org/support 2024-09-17T09:00:06.949 INFO:teuthology.orchestra.run.smithi098.stdout:17 Sep 09:00:06 ntpd[18489]: ---------------------------------------------------- 2024-09-17T09:00:06.951 INFO:teuthology.orchestra.run.smithi098.stdout:17 Sep 09:00:06 ntpd[18489]: proto: precision = 0.063 usec (-24) 2024-09-17T09:00:06.951 INFO:teuthology.orchestra.run.smithi098.stdout:17 Sep 09:00:06 ntpd[18489]: basedate set to 2022-02-04 2024-09-17T09:00:06.951 INFO:teuthology.orchestra.run.smithi098.stdout:17 Sep 09:00:06 ntpd[18489]: gps base set to 2022-02-06 (week 2196) 2024-09-17T09:00:06.951 INFO:teuthology.orchestra.run.smithi098.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-17T09:00:06.951 INFO:teuthology.orchestra.run.smithi134.stdout:17 Sep 09:00:06 ntpd[18486]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-17T09:00:06.952 INFO:teuthology.orchestra.run.smithi134.stdout:17 Sep 09:00:06 ntpd[18486]: Command line: ntpd -gq 2024-09-17T09:00:06.952 INFO:teuthology.orchestra.run.smithi134.stdout:17 Sep 09:00:06 ntpd[18486]: ---------------------------------------------------- 2024-09-17T09:00:06.952 INFO:teuthology.orchestra.run.smithi134.stdout:17 Sep 09:00:06 ntpd[18486]: ntp-4 is maintained by Network Time Foundation, 2024-09-17T09:00:06.952 INFO:teuthology.orchestra.run.smithi134.stdout:17 Sep 09:00:06 ntpd[18486]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-17T09:00:06.952 INFO:teuthology.orchestra.run.smithi134.stdout:17 Sep 09:00:06 ntpd[18486]: corporation. Support and training for ntp-4 are 2024-09-17T09:00:06.952 INFO:teuthology.orchestra.run.smithi134.stdout:17 Sep 09:00:06 ntpd[18486]: available at https://www.nwtime.org/support 2024-09-17T09:00:06.953 INFO:teuthology.orchestra.run.smithi134.stdout:17 Sep 09:00:06 ntpd[18486]: ---------------------------------------------------- 2024-09-17T09:00:06.953 INFO:teuthology.orchestra.run.smithi134.stdout:17 Sep 09:00:06 ntpd[18486]: proto: precision = 0.045 usec (-24) 2024-09-17T09:00:06.953 INFO:teuthology.orchestra.run.smithi134.stdout:17 Sep 09:00:06 ntpd[18486]: basedate set to 2022-02-04 2024-09-17T09:00:06.953 INFO:teuthology.orchestra.run.smithi134.stdout:17 Sep 09:00:06 ntpd[18486]: gps base set to 2022-02-06 (week 2196) 2024-09-17T09:00:06.953 INFO:teuthology.orchestra.run.smithi134.stdout:17 Sep 09:00:06 ntpd[18486]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-17T09:00:06.953 INFO:teuthology.orchestra.run.smithi134.stdout:17 Sep 09:00:06 ntpd[18486]: restrict ::: KOD does nothing without LIMITED. 2024-09-17T09:00:06.953 INFO:teuthology.orchestra.run.smithi134.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-17T09:00:06.953 INFO:teuthology.orchestra.run.smithi134.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-17T09:00:06.954 INFO:teuthology.orchestra.run.smithi098.stdout:17 Sep 09:00:06 ntpd[18489]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-17T09:00:06.954 INFO:teuthology.orchestra.run.smithi098.stdout:17 Sep 09:00:06 ntpd[18489]: restrict ::: KOD does nothing without LIMITED. 2024-09-17T09:00:06.955 INFO:teuthology.orchestra.run.smithi098.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-17T09:00:06.957 INFO:teuthology.orchestra.run.smithi134.stdout:17 Sep 09:00:06 ntpd[18486]: Listen and drop on 0 v6wildcard [::]:123 2024-09-17T09:00:06.958 INFO:teuthology.orchestra.run.smithi134.stdout:17 Sep 09:00:06 ntpd[18486]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-17T09:00:06.958 INFO:teuthology.orchestra.run.smithi134.stdout:17 Sep 09:00:06 ntpd[18486]: Listen normally on 2 lo 127.0.0.1:123 2024-09-17T09:00:06.958 INFO:teuthology.orchestra.run.smithi134.stdout:17 Sep 09:00:06 ntpd[18486]: Listen normally on 3 enp3s0f1 172.21.15.134:123 2024-09-17T09:00:06.958 INFO:teuthology.orchestra.run.smithi134.stdout:17 Sep 09:00:06 ntpd[18486]: Listen normally on 4 lo [::1]:123 2024-09-17T09:00:06.958 INFO:teuthology.orchestra.run.smithi134.stdout:17 Sep 09:00:06 ntpd[18486]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:6de9%5]:123 2024-09-17T09:00:06.958 INFO:teuthology.orchestra.run.smithi134.stdout:17 Sep 09:00:06 ntpd[18486]: Listening on routing socket on fd #22 for interface updates 2024-09-17T09:00:06.959 INFO:teuthology.orchestra.run.smithi098.stdout:17 Sep 09:00:06 ntpd[18489]: Listen and drop on 0 v6wildcard [::]:123 2024-09-17T09:00:06.959 INFO:teuthology.orchestra.run.smithi098.stdout:17 Sep 09:00:06 ntpd[18489]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-17T09:00:06.959 INFO:teuthology.orchestra.run.smithi098.stdout:17 Sep 09:00:06 ntpd[18489]: Listen normally on 2 lo 127.0.0.1:123 2024-09-17T09:00:06.959 INFO:teuthology.orchestra.run.smithi098.stdout:17 Sep 09:00:06 ntpd[18489]: Listen normally on 3 enp3s0f1 172.21.15.98:123 2024-09-17T09:00:06.959 INFO:teuthology.orchestra.run.smithi098.stdout:17 Sep 09:00:06 ntpd[18489]: Listen normally on 4 lo [::1]:123 2024-09-17T09:00:06.960 INFO:teuthology.orchestra.run.smithi098.stdout:17 Sep 09:00:06 ntpd[18489]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe8f:d26b%5]:123 2024-09-17T09:00:06.960 INFO:teuthology.orchestra.run.smithi098.stdout:17 Sep 09:00:06 ntpd[18489]: Listening on routing socket on fd #22 for interface updates 2024-09-17T09:00:06.974 INFO:teuthology.orchestra.run.smithi165.stdout:17 Sep 09:00:06 ntpd[18472]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-17T09:00:06.975 INFO:teuthology.orchestra.run.smithi165.stdout:17 Sep 09:00:06 ntpd[18472]: Command line: ntpd -gq 2024-09-17T09:00:06.975 INFO:teuthology.orchestra.run.smithi165.stdout:17 Sep 09:00:06 ntpd[18472]: ---------------------------------------------------- 2024-09-17T09:00:06.975 INFO:teuthology.orchestra.run.smithi165.stdout:17 Sep 09:00:06 ntpd[18472]: ntp-4 is maintained by Network Time Foundation, 2024-09-17T09:00:06.975 INFO:teuthology.orchestra.run.smithi165.stdout:17 Sep 09:00:06 ntpd[18472]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-17T09:00:06.975 INFO:teuthology.orchestra.run.smithi165.stdout:17 Sep 09:00:06 ntpd[18472]: corporation. Support and training for ntp-4 are 2024-09-17T09:00:06.975 INFO:teuthology.orchestra.run.smithi165.stdout:17 Sep 09:00:06 ntpd[18472]: available at https://www.nwtime.org/support 2024-09-17T09:00:06.975 INFO:teuthology.orchestra.run.smithi165.stdout:17 Sep 09:00:06 ntpd[18472]: ---------------------------------------------------- 2024-09-17T09:00:06.976 INFO:teuthology.orchestra.run.smithi165.stdout:17 Sep 09:00:06 ntpd[18472]: proto: precision = 0.074 usec (-24) 2024-09-17T09:00:06.976 INFO:teuthology.orchestra.run.smithi165.stdout:17 Sep 09:00:06 ntpd[18472]: basedate set to 2022-02-04 2024-09-17T09:00:06.976 INFO:teuthology.orchestra.run.smithi165.stdout:17 Sep 09:00:06 ntpd[18472]: gps base set to 2022-02-06 (week 2196) 2024-09-17T09:00:06.977 INFO:teuthology.orchestra.run.smithi165.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-17T09:00:06.977 INFO:teuthology.orchestra.run.smithi165.stdout:17 Sep 09:00:06 ntpd[18472]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-17T09:00:06.978 INFO:teuthology.orchestra.run.smithi165.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-17T09:00:06.978 INFO:teuthology.orchestra.run.smithi165.stdout:17 Sep 09:00:06 ntpd[18472]: restrict ::: KOD does nothing without LIMITED. 2024-09-17T09:00:06.978 INFO:teuthology.orchestra.run.smithi165.stdout:17 Sep 09:00:06 ntpd[18472]: Listen and drop on 0 v6wildcard [::]:123 2024-09-17T09:00:06.979 INFO:teuthology.orchestra.run.smithi165.stdout:17 Sep 09:00:06 ntpd[18472]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-17T09:00:06.979 INFO:teuthology.orchestra.run.smithi165.stdout:17 Sep 09:00:06 ntpd[18472]: Listen normally on 2 lo 127.0.0.1:123 2024-09-17T09:00:06.979 INFO:teuthology.orchestra.run.smithi165.stdout:17 Sep 09:00:06 ntpd[18472]: Listen normally on 3 enp3s0f1 172.21.15.165:123 2024-09-17T09:00:06.979 INFO:teuthology.orchestra.run.smithi165.stdout:17 Sep 09:00:06 ntpd[18472]: Listen normally on 4 lo [::1]:123 2024-09-17T09:00:06.979 INFO:teuthology.orchestra.run.smithi165.stdout:17 Sep 09:00:06 ntpd[18472]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:7f63%5]:123 2024-09-17T09:00:06.979 INFO:teuthology.orchestra.run.smithi165.stdout:17 Sep 09:00:06 ntpd[18472]: Listening on routing socket on fd #22 for interface updates 2024-09-17T09:00:08.949 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:08 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:08.949 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:08 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:08.949 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:08 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:08.949 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:08 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:08.949 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:08 ntpd[18489]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-17T09:00:08.949 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:08 ntpd[18489]: can't open /var/log/ntpstats/peerstats.20240917: Permission denied 2024-09-17T09:00:08.975 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:08 ntpd[18472]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:08.975 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:08 ntpd[18472]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:08.975 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:08 ntpd[18472]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:08.975 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:08 ntpd[18472]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:08.975 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:08 ntpd[18472]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-17T09:00:08.975 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:08 ntpd[18472]: can't open /var/log/ntpstats/peerstats.20240917: Permission denied 2024-09-17T09:00:09.948 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:09 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:09.949 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:09 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:09.975 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:09 ntpd[18472]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:09.975 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:09 ntpd[18472]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:10.949 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:10 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:10.949 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:10 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:10.949 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:10 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:10.949 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:10 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:10.949 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:10 ntpd[18489]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-17T09:00:10.949 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:10 ntpd[18489]: can't open /var/log/ntpstats/peerstats.20240917: Permission denied 2024-09-17T09:00:10.950 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:10 ntpd[18486]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:10.950 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:10 ntpd[18486]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:10.950 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:10 ntpd[18486]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:10.950 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:10 ntpd[18486]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:10.950 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:10 ntpd[18486]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:10.950 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:10 ntpd[18486]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:10.951 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:10 ntpd[18486]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-17T09:00:10.951 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:10 ntpd[18486]: can't open /var/log/ntpstats/peerstats.20240917: Permission denied 2024-09-17T09:00:10.975 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:10 ntpd[18472]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:10.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:10 ntpd[18472]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:10.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:10 ntpd[18472]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:10.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:10 ntpd[18472]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:10.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:10 ntpd[18472]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:10.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:10 ntpd[18472]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:10.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:10 ntpd[18472]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-17T09:00:10.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:10 ntpd[18472]: can't open /var/log/ntpstats/peerstats.20240917: Permission denied 2024-09-17T09:00:10.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:10 ntpd[18472]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:10.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:10 ntpd[18472]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:10.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:10 ntpd[18472]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-17T09:00:10.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:10 ntpd[18472]: can't open /var/log/ntpstats/peerstats.20240917: Permission denied 2024-09-17T09:00:11.949 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:11 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:11.949 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:11 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:11.949 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:11 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:11.950 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:11 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:11.950 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:11 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:11.950 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:11 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:11.950 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:11 ntpd[18489]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-17T09:00:11.950 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:11 ntpd[18489]: can't open /var/log/ntpstats/peerstats.20240917: Permission denied 2024-09-17T09:00:11.950 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:11 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:11.950 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:11 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:11.950 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:11 ntpd[18489]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-17T09:00:11.950 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:11 ntpd[18489]: can't open /var/log/ntpstats/peerstats.20240917: Permission denied 2024-09-17T09:00:11.951 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:11 ntpd[18486]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:11.952 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:11 ntpd[18486]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:11.952 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:11 ntpd[18486]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:11.952 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:11 ntpd[18486]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:11.952 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:11 ntpd[18486]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:11.952 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:11 ntpd[18486]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:11.952 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:11 ntpd[18486]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-17T09:00:11.952 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:11 ntpd[18486]: can't open /var/log/ntpstats/peerstats.20240917: Permission denied 2024-09-17T09:00:11.952 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:11 ntpd[18486]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:11.952 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:11 ntpd[18486]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:11.952 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:11 ntpd[18486]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-17T09:00:11.952 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:11 ntpd[18486]: can't open /var/log/ntpstats/peerstats.20240917: Permission denied 2024-09-17T09:00:11.975 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:11 ntpd[18472]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:11.975 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:11 ntpd[18472]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:11.975 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:11 ntpd[18472]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:11.975 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:11 ntpd[18472]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:11.975 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:11 ntpd[18472]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-17T09:00:11.975 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:11 ntpd[18472]: can't open /var/log/ntpstats/peerstats.20240917: Permission denied 2024-09-17T09:00:12.949 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:12 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:12.949 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:12 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:12.949 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:12 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:12.949 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:12 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:12.949 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:12 ntpd[18489]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-17T09:00:12.949 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:12 ntpd[18489]: can't open /var/log/ntpstats/peerstats.20240917: Permission denied 2024-09-17T09:00:12.950 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:12 ntpd[18486]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:12.950 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:12 ntpd[18486]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:12.950 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:12 ntpd[18486]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:12.950 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:12 ntpd[18486]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:12.950 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:12 ntpd[18486]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-17T09:00:12.950 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:12 ntpd[18486]: can't open /var/log/ntpstats/peerstats.20240917: Permission denied 2024-09-17T09:00:12.975 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:12 ntpd[18472]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:12.975 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:12 ntpd[18472]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:12.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:12 ntpd[18472]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:12.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:12 ntpd[18472]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:12.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:12 ntpd[18472]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:12.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:12 ntpd[18472]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:12.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:12 ntpd[18472]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-17T09:00:12.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:12 ntpd[18472]: can't open /var/log/ntpstats/peerstats.20240917: Permission denied 2024-09-17T09:00:12.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:12 ntpd[18472]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:12.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:12 ntpd[18472]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:12.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:12 ntpd[18472]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-17T09:00:12.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:12 ntpd[18472]: can't open /var/log/ntpstats/peerstats.20240917: Permission denied 2024-09-17T09:00:13.949 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:13 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:13.950 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:13 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:13.950 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:13 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:13.950 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:13 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:13.950 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:13 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:13.950 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:13 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:13.950 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:13 ntpd[18489]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-17T09:00:13.950 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:13 ntpd[18489]: can't open /var/log/ntpstats/peerstats.20240917: Permission denied 2024-09-17T09:00:13.950 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:13 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:13.950 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:13 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:13.950 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:13 ntpd[18489]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-17T09:00:13.950 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:13 ntpd[18489]: can't open /var/log/ntpstats/peerstats.20240917: Permission denied 2024-09-17T09:00:13.952 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:13 ntpd[18486]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:13.952 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:13 ntpd[18486]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:13.952 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:13 ntpd[18486]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:13.952 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:13 ntpd[18486]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:13.952 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:13 ntpd[18486]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:13.952 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:13 ntpd[18486]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:13.952 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:13 ntpd[18486]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-17T09:00:13.952 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:13 ntpd[18486]: can't open /var/log/ntpstats/peerstats.20240917: Permission denied 2024-09-17T09:00:13.952 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:13 ntpd[18486]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:13.952 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:13 ntpd[18486]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:13.952 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:13 ntpd[18486]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-17T09:00:13.952 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:13 ntpd[18486]: can't open /var/log/ntpstats/peerstats.20240917: Permission denied 2024-09-17T09:00:13.975 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:13 ntpd[18472]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:13.975 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:13 ntpd[18472]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:13.975 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:13 ntpd[18472]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:13.975 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:13 ntpd[18472]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:13.975 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:13 ntpd[18472]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-17T09:00:13.975 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:13 ntpd[18472]: can't open /var/log/ntpstats/peerstats.20240917: Permission denied 2024-09-17T09:00:14.949 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:14 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:14.949 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:14 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:14.949 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:14 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:14.949 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:14 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:14.949 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:14 ntpd[18489]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-17T09:00:14.949 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:14 ntpd[18489]: can't open /var/log/ntpstats/peerstats.20240917: Permission denied 2024-09-17T09:00:14.949 INFO:teuthology.orchestra.run.smithi098.stdout:17 Sep 09:00:14 ntpd[18489]: ntpd: time slew -0.002591 s 2024-09-17T09:00:14.949 INFO:teuthology.orchestra.run.smithi098.stdout:ntpd: time slew -0.002591s 2024-09-17T09:00:14.950 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:14 ntpd[18489]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-17T09:00:14.950 INFO:teuthology.orchestra.run.smithi098.stderr:17 Sep 09:00:14 ntpd[18489]: can't open /var/log/ntpstats/loopstats.20240917: Permission denied 2024-09-17T09:00:14.951 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:14 ntpd[18486]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:14.951 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:14 ntpd[18486]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:14.951 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:14 ntpd[18486]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:14.951 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:14 ntpd[18486]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:14.951 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:14 ntpd[18486]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-17T09:00:14.951 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:14 ntpd[18486]: can't open /var/log/ntpstats/peerstats.20240917: Permission denied 2024-09-17T09:00:14.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:14 ntpd[18472]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:14.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:14 ntpd[18472]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:14.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:14 ntpd[18472]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:14.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:14 ntpd[18472]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:14.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:14 ntpd[18472]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:14.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:14 ntpd[18472]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:14.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:14 ntpd[18472]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-17T09:00:14.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:14 ntpd[18472]: can't open /var/log/ntpstats/peerstats.20240917: Permission denied 2024-09-17T09:00:14.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:14 ntpd[18472]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:14.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:14 ntpd[18472]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:14.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:14 ntpd[18472]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-17T09:00:14.976 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:14 ntpd[18472]: can't open /var/log/ntpstats/peerstats.20240917: Permission denied 2024-09-17T09:00:14.977 INFO:teuthology.orchestra.run.smithi165.stdout:17 Sep 09:00:14 ntpd[18472]: ntpd: time slew -0.000463 s 2024-09-17T09:00:14.977 INFO:teuthology.orchestra.run.smithi165.stdout:ntpd: time slew -0.000463s 2024-09-17T09:00:14.977 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:14 ntpd[18472]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-17T09:00:14.977 INFO:teuthology.orchestra.run.smithi165.stderr:17 Sep 09:00:14 ntpd[18472]: can't open /var/log/ntpstats/loopstats.20240917: Permission denied 2024-09-17T09:00:15.006 INFO:teuthology.orchestra.run.smithi098.stdout: remote refid st t when poll reach delay offset jitter 2024-09-17T09:00:15.006 INFO:teuthology.orchestra.run.smithi098.stdout:============================================================================== 2024-09-17T09:00:15.006 INFO:teuthology.orchestra.run.smithi098.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-17T09:00:15.006 INFO:teuthology.orchestra.run.smithi098.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-17T09:00:15.006 INFO:teuthology.orchestra.run.smithi098.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-17T09:00:15.007 INFO:teuthology.orchestra.run.smithi098.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-17T09:00:15.027 INFO:teuthology.orchestra.run.smithi165.stdout: remote refid st t when poll reach delay offset jitter 2024-09-17T09:00:15.027 INFO:teuthology.orchestra.run.smithi165.stdout:============================================================================== 2024-09-17T09:00:15.027 INFO:teuthology.orchestra.run.smithi165.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-17T09:00:15.027 INFO:teuthology.orchestra.run.smithi165.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-17T09:00:15.027 INFO:teuthology.orchestra.run.smithi165.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-17T09:00:15.027 INFO:teuthology.orchestra.run.smithi165.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-17T09:00:15.949 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:15 ntpd[18486]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:15.950 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:15 ntpd[18486]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:15.950 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:15 ntpd[18486]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:15.950 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:15 ntpd[18486]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:15.950 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:15 ntpd[18486]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:15.950 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:15 ntpd[18486]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:15.950 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:15 ntpd[18486]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-17T09:00:15.950 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:15 ntpd[18486]: can't open /var/log/ntpstats/peerstats.20240917: Permission denied 2024-09-17T09:00:15.950 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:15 ntpd[18486]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:15.950 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:15 ntpd[18486]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:15.950 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:15 ntpd[18486]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-17T09:00:15.950 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:15 ntpd[18486]: can't open /var/log/ntpstats/peerstats.20240917: Permission denied 2024-09-17T09:00:16.949 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:16 ntpd[18486]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:16.949 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:16 ntpd[18486]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:16.949 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:16 ntpd[18486]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-17T09:00:16.949 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:16 ntpd[18486]: can't open /var/log/ntpstats/rawstats.20240917: Permission denied 2024-09-17T09:00:16.949 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:16 ntpd[18486]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-17T09:00:16.949 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:16 ntpd[18486]: can't open /var/log/ntpstats/peerstats.20240917: Permission denied 2024-09-17T09:00:16.950 INFO:teuthology.orchestra.run.smithi134.stdout:17 Sep 09:00:16 ntpd[18486]: ntpd: time slew -0.001533 s 2024-09-17T09:00:16.950 INFO:teuthology.orchestra.run.smithi134.stdout:ntpd: time slew -0.001533s 2024-09-17T09:00:16.950 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:16 ntpd[18486]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-17T09:00:16.950 INFO:teuthology.orchestra.run.smithi134.stderr:17 Sep 09:00:16 ntpd[18486]: can't open /var/log/ntpstats/loopstats.20240917: Permission denied 2024-09-17T09:00:17.007 INFO:teuthology.orchestra.run.smithi134.stdout: remote refid st t when poll reach delay offset jitter 2024-09-17T09:00:17.007 INFO:teuthology.orchestra.run.smithi134.stdout:============================================================================== 2024-09-17T09:00:17.007 INFO:teuthology.orchestra.run.smithi134.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-17T09:00:17.007 INFO:teuthology.orchestra.run.smithi134.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-17T09:00:17.007 INFO:teuthology.orchestra.run.smithi134.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-17T09:00:17.008 INFO:teuthology.orchestra.run.smithi134.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-17T09:00:17.009 INFO:teuthology.run_tasks:Running task install... 2024-09-17T09:00:17.020 DEBUG:teuthology.task.install:project ceph 2024-09-17T09:00:17.020 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': '19e2a2beb6f41a3ab62650e38614eb29b59dcbb9'}} 2024-09-17T09:00:17.020 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': '19e2a2beb6f41a3ab62650e38614eb29b59dcbb9'} 2024-09-17T09:00:17.020 INFO:teuthology.task.install:Using flavor: default 2024-09-17T09:00:17.025 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-17T09:00:17.026 INFO:teuthology.task.install:extra packages: [] 2024-09-17T09:00:17.026 DEBUG:teuthology.orchestra.run.smithi098:> sudo apt-key list | grep Ceph 2024-09-17T09:00:17.026 DEBUG:teuthology.orchestra.run.smithi134:> sudo apt-key list | grep Ceph 2024-09-17T09:00:17.027 DEBUG:teuthology.orchestra.run.smithi165:> sudo apt-key list | grep Ceph 2024-09-17T09:00:17.089 INFO:teuthology.orchestra.run.smithi098.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-09-17T09:00:17.095 INFO:teuthology.orchestra.run.smithi165.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-09-17T09:00:17.104 INFO:teuthology.orchestra.run.smithi134.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-09-17T09:00:17.117 INFO:teuthology.orchestra.run.smithi098.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-09-17T09:00:17.117 INFO:teuthology.orchestra.run.smithi098.stdout:uid [ unknown] Ceph.com (release key) 2024-09-17T09:00:17.117 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-17T09:00:17.118 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T09:00:17.128 INFO:teuthology.orchestra.run.smithi165.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-09-17T09:00:17.128 INFO:teuthology.orchestra.run.smithi165.stdout:uid [ unknown] Ceph.com (release key) 2024-09-17T09:00:17.129 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-17T09:00:17.129 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T09:00:17.133 INFO:teuthology.orchestra.run.smithi134.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-09-17T09:00:17.133 INFO:teuthology.orchestra.run.smithi134.stdout:uid [ unknown] Ceph.com (release key) 2024-09-17T09:00:17.133 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-17T09:00:17.133 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T09:00:17.270 INFO:teuthology.task.install.deb:Pulling from https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default/ 2024-09-17T09:00:17.271 INFO:teuthology.task.install.deb:Package version is 18.2.4-855-g19e2a2be-1jammy 2024-09-17T09:00:17.276 INFO:teuthology.task.install.deb:Pulling from https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default/ 2024-09-17T09:00:17.276 INFO:teuthology.task.install.deb:Package version is 18.2.4-855-g19e2a2be-1jammy 2024-09-17T09:00:17.285 INFO:teuthology.task.install.deb:Pulling from https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default/ 2024-09-17T09:00:17.285 INFO:teuthology.task.install.deb:Package version is 18.2.4-855-g19e2a2be-1jammy 2024-09-17T09:00:17.384 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-09-17T09:00:17.384 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-09-17T09:00:17.392 DEBUG:teuthology.orchestra.run.smithi098:> set -ex 2024-09-17T09:00:17.392 DEBUG:teuthology.orchestra.run.smithi098:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-09-17T09:00:17.399 DEBUG:teuthology.orchestra.run.smithi165:> sudo apt-get update 2024-09-17T09:00:17.405 DEBUG:teuthology.orchestra.run.smithi134:> set -ex 2024-09-17T09:00:17.405 DEBUG:teuthology.orchestra.run.smithi134:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-09-17T09:00:17.407 DEBUG:teuthology.orchestra.run.smithi098:> sudo apt-get update 2024-09-17T09:00:17.419 DEBUG:teuthology.orchestra.run.smithi134:> sudo apt-get update 2024-09-17T09:00:17.566 INFO:teuthology.orchestra.run.smithi165.stdout:Hit:1 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-17T09:00:17.577 INFO:teuthology.orchestra.run.smithi098.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-17T09:00:17.587 INFO:teuthology.orchestra.run.smithi098.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-17T09:00:17.604 INFO:teuthology.orchestra.run.smithi098.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-17T09:00:17.621 INFO:teuthology.orchestra.run.smithi165.stdout:Ign:2 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy InRelease 2024-09-17T09:00:17.633 INFO:teuthology.orchestra.run.smithi098.stdout:Ign:4 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy InRelease 2024-09-17T09:00:17.641 INFO:teuthology.orchestra.run.smithi134.stdout:Ign:1 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy InRelease 2024-09-17T09:00:17.641 INFO:teuthology.orchestra.run.smithi165.stdout:Get:3 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy Release [7,662 B] 2024-09-17T09:00:17.657 INFO:teuthology.orchestra.run.smithi098.stdout:Get:5 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy Release [7,662 B] 2024-09-17T09:00:17.662 INFO:teuthology.orchestra.run.smithi134.stdout:Get:2 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy Release [7,662 B] 2024-09-17T09:00:17.663 INFO:teuthology.orchestra.run.smithi165.stdout:Ign:4 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy Release.gpg 2024-09-17T09:00:17.679 INFO:teuthology.orchestra.run.smithi098.stdout:Ign:6 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy Release.gpg 2024-09-17T09:00:17.684 INFO:teuthology.orchestra.run.smithi165.stdout:Get:5 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,437 B] 2024-09-17T09:00:17.686 INFO:teuthology.orchestra.run.smithi134.stdout:Ign:3 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy Release.gpg 2024-09-17T09:00:17.691 INFO:teuthology.orchestra.run.smithi165.stdout:Hit:6 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-17T09:00:17.699 INFO:teuthology.orchestra.run.smithi098.stdout:Hit:7 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-17T09:00:17.700 INFO:teuthology.orchestra.run.smithi098.stdout:Get:8 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,437 B] 2024-09-17T09:00:17.712 INFO:teuthology.orchestra.run.smithi165.stdout:Get:7 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 Packages [17.7 kB] 2024-09-17T09:00:17.717 INFO:teuthology.orchestra.run.smithi134.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-17T09:00:17.717 INFO:teuthology.orchestra.run.smithi134.stdout:Hit:5 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-17T09:00:17.717 INFO:teuthology.orchestra.run.smithi134.stdout:Get:6 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,437 B] 2024-09-17T09:00:17.728 INFO:teuthology.orchestra.run.smithi098.stdout:Get:9 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 Packages [17.7 kB] 2024-09-17T09:00:17.747 INFO:teuthology.orchestra.run.smithi134.stdout:Get:7 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 Packages [17.7 kB] 2024-09-17T09:00:17.774 INFO:teuthology.orchestra.run.smithi165.stdout:Hit:8 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-17T09:00:17.792 INFO:teuthology.orchestra.run.smithi134.stdout:Hit:8 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-17T09:00:17.853 INFO:teuthology.orchestra.run.smithi165.stdout:Hit:9 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-17T09:00:17.877 INFO:teuthology.orchestra.run.smithi134.stdout:Hit:9 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-17T09:00:17.937 INFO:teuthology.orchestra.run.smithi098.stdout:Fetched 28.8 kB in 0s (83.0 kB/s) 2024-09-17T09:00:18.004 INFO:teuthology.orchestra.run.smithi165.stdout:Fetched 28.8 kB in 0s (67.9 kB/s) 2024-09-17T09:00:18.088 INFO:teuthology.orchestra.run.smithi134.stdout:Fetched 28.8 kB in 0s (59.2 kB/s) 2024-09-17T09:00:18.957 INFO:teuthology.orchestra.run.smithi098.stdout:Reading package lists... 2024-09-17T09:00:18.973 DEBUG:teuthology.orchestra.run.smithi098:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=18.2.4-855-g19e2a2be-1jammy cephadm=18.2.4-855-g19e2a2be-1jammy ceph-mds=18.2.4-855-g19e2a2be-1jammy ceph-mgr=18.2.4-855-g19e2a2be-1jammy ceph-common=18.2.4-855-g19e2a2be-1jammy ceph-fuse=18.2.4-855-g19e2a2be-1jammy ceph-test=18.2.4-855-g19e2a2be-1jammy ceph-volume=18.2.4-855-g19e2a2be-1jammy radosgw=18.2.4-855-g19e2a2be-1jammy python3-rados=18.2.4-855-g19e2a2be-1jammy python3-rgw=18.2.4-855-g19e2a2be-1jammy python3-cephfs=18.2.4-855-g19e2a2be-1jammy python3-rbd=18.2.4-855-g19e2a2be-1jammy libcephfs2=18.2.4-855-g19e2a2be-1jammy libcephfs-dev=18.2.4-855-g19e2a2be-1jammy librados2=18.2.4-855-g19e2a2be-1jammy librbd1=18.2.4-855-g19e2a2be-1jammy rbd-fuse=18.2.4-855-g19e2a2be-1jammy 2024-09-17T09:00:19.035 INFO:teuthology.orchestra.run.smithi098.stdout:Reading package lists... 2024-09-17T09:00:19.067 INFO:teuthology.orchestra.run.smithi165.stdout:Reading package lists... 2024-09-17T09:00:19.083 DEBUG:teuthology.orchestra.run.smithi165:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=18.2.4-855-g19e2a2be-1jammy cephadm=18.2.4-855-g19e2a2be-1jammy ceph-mds=18.2.4-855-g19e2a2be-1jammy ceph-mgr=18.2.4-855-g19e2a2be-1jammy ceph-common=18.2.4-855-g19e2a2be-1jammy ceph-fuse=18.2.4-855-g19e2a2be-1jammy ceph-test=18.2.4-855-g19e2a2be-1jammy ceph-volume=18.2.4-855-g19e2a2be-1jammy radosgw=18.2.4-855-g19e2a2be-1jammy python3-rados=18.2.4-855-g19e2a2be-1jammy python3-rgw=18.2.4-855-g19e2a2be-1jammy python3-cephfs=18.2.4-855-g19e2a2be-1jammy python3-rbd=18.2.4-855-g19e2a2be-1jammy libcephfs2=18.2.4-855-g19e2a2be-1jammy libcephfs-dev=18.2.4-855-g19e2a2be-1jammy librados2=18.2.4-855-g19e2a2be-1jammy librbd1=18.2.4-855-g19e2a2be-1jammy rbd-fuse=18.2.4-855-g19e2a2be-1jammy 2024-09-17T09:00:19.139 INFO:teuthology.orchestra.run.smithi165.stdout:Reading package lists... 2024-09-17T09:00:19.151 INFO:teuthology.orchestra.run.smithi134.stdout:Reading package lists... 2024-09-17T09:00:19.169 DEBUG:teuthology.orchestra.run.smithi134:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=18.2.4-855-g19e2a2be-1jammy cephadm=18.2.4-855-g19e2a2be-1jammy ceph-mds=18.2.4-855-g19e2a2be-1jammy ceph-mgr=18.2.4-855-g19e2a2be-1jammy ceph-common=18.2.4-855-g19e2a2be-1jammy ceph-fuse=18.2.4-855-g19e2a2be-1jammy ceph-test=18.2.4-855-g19e2a2be-1jammy ceph-volume=18.2.4-855-g19e2a2be-1jammy radosgw=18.2.4-855-g19e2a2be-1jammy python3-rados=18.2.4-855-g19e2a2be-1jammy python3-rgw=18.2.4-855-g19e2a2be-1jammy python3-cephfs=18.2.4-855-g19e2a2be-1jammy python3-rbd=18.2.4-855-g19e2a2be-1jammy libcephfs2=18.2.4-855-g19e2a2be-1jammy libcephfs-dev=18.2.4-855-g19e2a2be-1jammy librados2=18.2.4-855-g19e2a2be-1jammy librbd1=18.2.4-855-g19e2a2be-1jammy rbd-fuse=18.2.4-855-g19e2a2be-1jammy 2024-09-17T09:00:19.224 INFO:teuthology.orchestra.run.smithi134.stdout:Reading package lists... 2024-09-17T09:00:19.256 INFO:teuthology.orchestra.run.smithi098.stdout:Building dependency tree... 2024-09-17T09:00:19.257 INFO:teuthology.orchestra.run.smithi098.stdout:Reading state information... 2024-09-17T09:00:19.326 INFO:teuthology.orchestra.run.smithi165.stdout:Building dependency tree... 2024-09-17T09:00:19.326 INFO:teuthology.orchestra.run.smithi165.stdout:Reading state information... 2024-09-17T09:00:19.412 INFO:teuthology.orchestra.run.smithi134.stdout:Building dependency tree... 2024-09-17T09:00:19.413 INFO:teuthology.orchestra.run.smithi134.stdout:Reading state information... 2024-09-17T09:00:19.462 INFO:teuthology.orchestra.run.smithi098.stdout:The following packages were automatically installed and are no longer required: 2024-09-17T09:00:19.463 INFO:teuthology.orchestra.run.smithi098.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-17T09:00:19.463 INFO:teuthology.orchestra.run.smithi098.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-17T09:00:19.463 INFO:teuthology.orchestra.run.smithi098.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-17T09:00:19.463 INFO:teuthology.orchestra.run.smithi098.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-17T09:00:19.463 INFO:teuthology.orchestra.run.smithi098.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-17T09:00:19.464 INFO:teuthology.orchestra.run.smithi098.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-17T09:00:19.464 INFO:teuthology.orchestra.run.smithi098.stdout:The following additional packages will be installed: 2024-09-17T09:00:19.464 INFO:teuthology.orchestra.run.smithi098.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-09-17T09:00:19.465 INFO:teuthology.orchestra.run.smithi098.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-09-17T09:00:19.465 INFO:teuthology.orchestra.run.smithi098.stdout: libdouble-conversion3 libfmt8 libjq1 liblttng-ust1 liboath0 libonig5 2024-09-17T09:00:19.465 INFO:teuthology.orchestra.run.smithi098.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-09-17T09:00:19.466 INFO:teuthology.orchestra.run.smithi098.stdout: librdkafka1 librgw2 libsqlite3-mod-ceph libthrift-0.16.0 nvme-cli 2024-09-17T09:00:19.466 INFO:teuthology.orchestra.run.smithi098.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-09-17T09:00:19.466 INFO:teuthology.orchestra.run.smithi098.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-09-17T09:00:19.466 INFO:teuthology.orchestra.run.smithi098.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-09-17T09:00:19.466 INFO:teuthology.orchestra.run.smithi098.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-09-17T09:00:19.466 INFO:teuthology.orchestra.run.smithi098.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-09-17T09:00:19.466 INFO:teuthology.orchestra.run.smithi098.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-09-17T09:00:19.466 INFO:teuthology.orchestra.run.smithi098.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-09-17T09:00:19.466 INFO:teuthology.orchestra.run.smithi098.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-09-17T09:00:19.466 INFO:teuthology.orchestra.run.smithi098.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-09-17T09:00:19.466 INFO:teuthology.orchestra.run.smithi098.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-17T09:00:19.466 INFO:teuthology.orchestra.run.smithi098.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-09-17T09:00:19.466 INFO:teuthology.orchestra.run.smithi098.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-09-17T09:00:19.467 INFO:teuthology.orchestra.run.smithi098.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-09-17T09:00:19.467 INFO:teuthology.orchestra.run.smithi098.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-09-17T09:00:19.467 INFO:teuthology.orchestra.run.smithi098.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-09-17T09:00:19.467 INFO:teuthology.orchestra.run.smithi098.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-09-17T09:00:19.467 INFO:teuthology.orchestra.run.smithi098.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat xmlstarlet 2024-09-17T09:00:19.467 INFO:teuthology.orchestra.run.smithi098.stdout:Suggested packages: 2024-09-17T09:00:19.467 INFO:teuthology.orchestra.run.smithi098.stdout: python3-influxdb python-jinja2-doc python3-beaker python-mako-doc 2024-09-17T09:00:19.467 INFO:teuthology.orchestra.run.smithi098.stdout: python-natsort-doc python-openssl-doc python3-openssl-dbg httpd-wsgi 2024-09-17T09:00:19.467 INFO:teuthology.orchestra.run.smithi098.stdout: libapache2-mod-python libapache2-mod-scgi libjs-mochikit python-pecan-doc 2024-09-17T09:00:19.468 INFO:teuthology.orchestra.run.smithi098.stdout: python-psutil-doc subversion python-pygments-doc python-pyinotify-doc 2024-09-17T09:00:19.468 INFO:teuthology.orchestra.run.smithi098.stdout: python3-socks python-requests-doc python3-dap python-sklearn-doc ipython3 2024-09-17T09:00:19.468 INFO:teuthology.orchestra.run.smithi098.stdout: python-waitress-doc python-webob-doc python-webtest-doc python-werkzeug-doc 2024-09-17T09:00:19.468 INFO:teuthology.orchestra.run.smithi098.stdout: python3-watchdog 2024-09-17T09:00:19.468 INFO:teuthology.orchestra.run.smithi098.stdout:Recommended packages: 2024-09-17T09:00:19.468 INFO:teuthology.orchestra.run.smithi098.stdout: btrfs-tools 2024-09-17T09:00:19.514 INFO:teuthology.orchestra.run.smithi165.stdout:The following packages were automatically installed and are no longer required: 2024-09-17T09:00:19.514 INFO:teuthology.orchestra.run.smithi165.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-17T09:00:19.514 INFO:teuthology.orchestra.run.smithi165.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-17T09:00:19.514 INFO:teuthology.orchestra.run.smithi165.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-17T09:00:19.515 INFO:teuthology.orchestra.run.smithi165.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-17T09:00:19.515 INFO:teuthology.orchestra.run.smithi165.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-17T09:00:19.515 INFO:teuthology.orchestra.run.smithi165.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-17T09:00:19.515 INFO:teuthology.orchestra.run.smithi165.stdout:The following additional packages will be installed: 2024-09-17T09:00:19.515 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-09-17T09:00:19.516 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-09-17T09:00:19.516 INFO:teuthology.orchestra.run.smithi165.stdout: libdouble-conversion3 libfmt8 libjq1 liblttng-ust1 liboath0 libonig5 2024-09-17T09:00:19.516 INFO:teuthology.orchestra.run.smithi165.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-09-17T09:00:19.517 INFO:teuthology.orchestra.run.smithi165.stdout: librdkafka1 librgw2 libsqlite3-mod-ceph libthrift-0.16.0 nvme-cli 2024-09-17T09:00:19.517 INFO:teuthology.orchestra.run.smithi165.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-09-17T09:00:19.517 INFO:teuthology.orchestra.run.smithi165.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-09-17T09:00:19.517 INFO:teuthology.orchestra.run.smithi165.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-09-17T09:00:19.517 INFO:teuthology.orchestra.run.smithi165.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-09-17T09:00:19.517 INFO:teuthology.orchestra.run.smithi165.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-09-17T09:00:19.517 INFO:teuthology.orchestra.run.smithi165.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-09-17T09:00:19.518 INFO:teuthology.orchestra.run.smithi165.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-09-17T09:00:19.518 INFO:teuthology.orchestra.run.smithi165.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-09-17T09:00:19.518 INFO:teuthology.orchestra.run.smithi165.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-09-17T09:00:19.518 INFO:teuthology.orchestra.run.smithi165.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-17T09:00:19.518 INFO:teuthology.orchestra.run.smithi165.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-09-17T09:00:19.518 INFO:teuthology.orchestra.run.smithi165.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-09-17T09:00:19.518 INFO:teuthology.orchestra.run.smithi165.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-09-17T09:00:19.518 INFO:teuthology.orchestra.run.smithi165.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-09-17T09:00:19.518 INFO:teuthology.orchestra.run.smithi165.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-09-17T09:00:19.518 INFO:teuthology.orchestra.run.smithi165.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-09-17T09:00:19.518 INFO:teuthology.orchestra.run.smithi165.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat xmlstarlet 2024-09-17T09:00:19.519 INFO:teuthology.orchestra.run.smithi165.stdout:Suggested packages: 2024-09-17T09:00:19.519 INFO:teuthology.orchestra.run.smithi165.stdout: python3-influxdb python-jinja2-doc python3-beaker python-mako-doc 2024-09-17T09:00:19.519 INFO:teuthology.orchestra.run.smithi165.stdout: python-natsort-doc python-openssl-doc python3-openssl-dbg httpd-wsgi 2024-09-17T09:00:19.519 INFO:teuthology.orchestra.run.smithi165.stdout: libapache2-mod-python libapache2-mod-scgi libjs-mochikit python-pecan-doc 2024-09-17T09:00:19.519 INFO:teuthology.orchestra.run.smithi165.stdout: python-psutil-doc subversion python-pygments-doc python-pyinotify-doc 2024-09-17T09:00:19.519 INFO:teuthology.orchestra.run.smithi165.stdout: python3-socks python-requests-doc python3-dap python-sklearn-doc ipython3 2024-09-17T09:00:19.519 INFO:teuthology.orchestra.run.smithi165.stdout: python-waitress-doc python-webob-doc python-webtest-doc python-werkzeug-doc 2024-09-17T09:00:19.519 INFO:teuthology.orchestra.run.smithi165.stdout: python3-watchdog 2024-09-17T09:00:19.519 INFO:teuthology.orchestra.run.smithi165.stdout:Recommended packages: 2024-09-17T09:00:19.519 INFO:teuthology.orchestra.run.smithi165.stdout: btrfs-tools 2024-09-17T09:00:19.568 INFO:teuthology.orchestra.run.smithi098.stdout:The following NEW packages will be installed: 2024-09-17T09:00:19.568 INFO:teuthology.orchestra.run.smithi098.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-09-17T09:00:19.568 INFO:teuthology.orchestra.run.smithi098.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-09-17T09:00:19.568 INFO:teuthology.orchestra.run.smithi098.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-09-17T09:00:19.569 INFO:teuthology.orchestra.run.smithi098.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libfmt8 libjq1 liblttng-ust1 2024-09-17T09:00:19.569 INFO:teuthology.orchestra.run.smithi098.stdout: liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 2024-09-17T09:00:19.570 INFO:teuthology.orchestra.run.smithi098.stdout: librados2 libradosstriper1 librbd1 librdkafka1 librgw2 libsqlite3-mod-ceph 2024-09-17T09:00:19.570 INFO:teuthology.orchestra.run.smithi098.stdout: libthrift-0.16.0 nvme-cli python-asyncssh-doc python-babel-localedata 2024-09-17T09:00:19.570 INFO:teuthology.orchestra.run.smithi098.stdout: python-pastedeploy-tpl python3-asyncssh python3-babel python3-bcrypt 2024-09-17T09:00:19.570 INFO:teuthology.orchestra.run.smithi098.stdout: python3-cachetools python3-ceph-argparse python3-ceph-common python3-cephfs 2024-09-17T09:00:19.570 INFO:teuthology.orchestra.run.smithi098.stdout: python3-certifi python3-cheroot python3-cherrypy3 python3-google-auth 2024-09-17T09:00:19.570 INFO:teuthology.orchestra.run.smithi098.stdout: python3-idna python3-iniconfig python3-jaraco.classes 2024-09-17T09:00:19.570 INFO:teuthology.orchestra.run.smithi098.stdout: python3-jaraco.collections python3-jaraco.functools python3-jaraco.text 2024-09-17T09:00:19.570 INFO:teuthology.orchestra.run.smithi098.stdout: python3-jinja2 python3-joblib python3-kubernetes python3-logutils 2024-09-17T09:00:19.570 INFO:teuthology.orchestra.run.smithi098.stdout: python3-mako python3-markupsafe python3-natsort python3-openssl 2024-09-17T09:00:19.570 INFO:teuthology.orchestra.run.smithi098.stdout: python3-paste python3-pastedeploy python3-pastescript python3-pecan 2024-09-17T09:00:19.570 INFO:teuthology.orchestra.run.smithi098.stdout: python3-pluggy python3-portend python3-prettytable python3-psutil python3-py 2024-09-17T09:00:19.570 INFO:teuthology.orchestra.run.smithi098.stdout: python3-pyasn1 python3-pyasn1-modules python3-pygments python3-pyinotify 2024-09-17T09:00:19.570 INFO:teuthology.orchestra.run.smithi098.stdout: python3-pytest python3-rados python3-rbd python3-repoze.lru python3-requests 2024-09-17T09:00:19.570 INFO:teuthology.orchestra.run.smithi098.stdout: python3-requests-oauthlib python3-rgw python3-routes python3-rsa 2024-09-17T09:00:19.570 INFO:teuthology.orchestra.run.smithi098.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-09-17T09:00:19.571 INFO:teuthology.orchestra.run.smithi098.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-09-17T09:00:19.571 INFO:teuthology.orchestra.run.smithi098.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-09-17T09:00:19.571 INFO:teuthology.orchestra.run.smithi098.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-09-17T09:00:19.571 INFO:teuthology.orchestra.run.smithi098.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n radosgw rbd-fuse 2024-09-17T09:00:19.571 INFO:teuthology.orchestra.run.smithi098.stdout: socat xmlstarlet 2024-09-17T09:00:19.598 INFO:teuthology.orchestra.run.smithi134.stdout:The following packages were automatically installed and are no longer required: 2024-09-17T09:00:19.598 INFO:teuthology.orchestra.run.smithi134.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-17T09:00:19.599 INFO:teuthology.orchestra.run.smithi134.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-17T09:00:19.599 INFO:teuthology.orchestra.run.smithi134.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-17T09:00:19.599 INFO:teuthology.orchestra.run.smithi134.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-17T09:00:19.599 INFO:teuthology.orchestra.run.smithi134.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-17T09:00:19.600 INFO:teuthology.orchestra.run.smithi134.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-17T09:00:19.600 INFO:teuthology.orchestra.run.smithi134.stdout:The following additional packages will be installed: 2024-09-17T09:00:19.600 INFO:teuthology.orchestra.run.smithi134.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-09-17T09:00:19.601 INFO:teuthology.orchestra.run.smithi134.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-09-17T09:00:19.601 INFO:teuthology.orchestra.run.smithi134.stdout: libdouble-conversion3 libfmt8 libjq1 liblttng-ust1 liboath0 libonig5 2024-09-17T09:00:19.601 INFO:teuthology.orchestra.run.smithi134.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-09-17T09:00:19.601 INFO:teuthology.orchestra.run.smithi134.stdout: librdkafka1 librgw2 libsqlite3-mod-ceph libthrift-0.16.0 nvme-cli 2024-09-17T09:00:19.601 INFO:teuthology.orchestra.run.smithi134.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-09-17T09:00:19.602 INFO:teuthology.orchestra.run.smithi134.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-09-17T09:00:19.602 INFO:teuthology.orchestra.run.smithi134.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-09-17T09:00:19.602 INFO:teuthology.orchestra.run.smithi134.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-09-17T09:00:19.602 INFO:teuthology.orchestra.run.smithi134.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-09-17T09:00:19.602 INFO:teuthology.orchestra.run.smithi134.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-09-17T09:00:19.602 INFO:teuthology.orchestra.run.smithi134.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-09-17T09:00:19.602 INFO:teuthology.orchestra.run.smithi134.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-09-17T09:00:19.602 INFO:teuthology.orchestra.run.smithi134.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-09-17T09:00:19.602 INFO:teuthology.orchestra.run.smithi134.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-17T09:00:19.602 INFO:teuthology.orchestra.run.smithi134.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-09-17T09:00:19.602 INFO:teuthology.orchestra.run.smithi134.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-09-17T09:00:19.602 INFO:teuthology.orchestra.run.smithi134.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-09-17T09:00:19.602 INFO:teuthology.orchestra.run.smithi134.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-09-17T09:00:19.603 INFO:teuthology.orchestra.run.smithi134.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-09-17T09:00:19.603 INFO:teuthology.orchestra.run.smithi134.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-09-17T09:00:19.603 INFO:teuthology.orchestra.run.smithi134.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat xmlstarlet 2024-09-17T09:00:19.603 INFO:teuthology.orchestra.run.smithi134.stdout:Suggested packages: 2024-09-17T09:00:19.603 INFO:teuthology.orchestra.run.smithi134.stdout: python3-influxdb python-jinja2-doc python3-beaker python-mako-doc 2024-09-17T09:00:19.603 INFO:teuthology.orchestra.run.smithi134.stdout: python-natsort-doc python-openssl-doc python3-openssl-dbg httpd-wsgi 2024-09-17T09:00:19.603 INFO:teuthology.orchestra.run.smithi134.stdout: libapache2-mod-python libapache2-mod-scgi libjs-mochikit python-pecan-doc 2024-09-17T09:00:19.603 INFO:teuthology.orchestra.run.smithi134.stdout: python-psutil-doc subversion python-pygments-doc python-pyinotify-doc 2024-09-17T09:00:19.603 INFO:teuthology.orchestra.run.smithi134.stdout: python3-socks python-requests-doc python3-dap python-sklearn-doc ipython3 2024-09-17T09:00:19.604 INFO:teuthology.orchestra.run.smithi134.stdout: python-waitress-doc python-webob-doc python-webtest-doc python-werkzeug-doc 2024-09-17T09:00:19.604 INFO:teuthology.orchestra.run.smithi134.stdout: python3-watchdog 2024-09-17T09:00:19.604 INFO:teuthology.orchestra.run.smithi134.stdout:Recommended packages: 2024-09-17T09:00:19.604 INFO:teuthology.orchestra.run.smithi134.stdout: btrfs-tools 2024-09-17T09:00:19.621 INFO:teuthology.orchestra.run.smithi165.stdout:The following NEW packages will be installed: 2024-09-17T09:00:19.621 INFO:teuthology.orchestra.run.smithi165.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-09-17T09:00:19.621 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-09-17T09:00:19.621 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-09-17T09:00:19.621 INFO:teuthology.orchestra.run.smithi165.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libfmt8 libjq1 liblttng-ust1 2024-09-17T09:00:19.622 INFO:teuthology.orchestra.run.smithi165.stdout: liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 2024-09-17T09:00:19.622 INFO:teuthology.orchestra.run.smithi165.stdout: librados2 libradosstriper1 librbd1 librdkafka1 librgw2 libsqlite3-mod-ceph 2024-09-17T09:00:19.623 INFO:teuthology.orchestra.run.smithi165.stdout: libthrift-0.16.0 nvme-cli python-asyncssh-doc python-babel-localedata 2024-09-17T09:00:19.623 INFO:teuthology.orchestra.run.smithi165.stdout: python-pastedeploy-tpl python3-asyncssh python3-babel python3-bcrypt 2024-09-17T09:00:19.623 INFO:teuthology.orchestra.run.smithi165.stdout: python3-cachetools python3-ceph-argparse python3-ceph-common python3-cephfs 2024-09-17T09:00:19.623 INFO:teuthology.orchestra.run.smithi165.stdout: python3-certifi python3-cheroot python3-cherrypy3 python3-google-auth 2024-09-17T09:00:19.623 INFO:teuthology.orchestra.run.smithi165.stdout: python3-idna python3-iniconfig python3-jaraco.classes 2024-09-17T09:00:19.623 INFO:teuthology.orchestra.run.smithi165.stdout: python3-jaraco.collections python3-jaraco.functools python3-jaraco.text 2024-09-17T09:00:19.623 INFO:teuthology.orchestra.run.smithi165.stdout: python3-jinja2 python3-joblib python3-kubernetes python3-logutils 2024-09-17T09:00:19.623 INFO:teuthology.orchestra.run.smithi165.stdout: python3-mako python3-markupsafe python3-natsort python3-openssl 2024-09-17T09:00:19.623 INFO:teuthology.orchestra.run.smithi165.stdout: python3-paste python3-pastedeploy python3-pastescript python3-pecan 2024-09-17T09:00:19.623 INFO:teuthology.orchestra.run.smithi165.stdout: python3-pluggy python3-portend python3-prettytable python3-psutil python3-py 2024-09-17T09:00:19.623 INFO:teuthology.orchestra.run.smithi165.stdout: python3-pyasn1 python3-pyasn1-modules python3-pygments python3-pyinotify 2024-09-17T09:00:19.623 INFO:teuthology.orchestra.run.smithi165.stdout: python3-pytest python3-rados python3-rbd python3-repoze.lru python3-requests 2024-09-17T09:00:19.623 INFO:teuthology.orchestra.run.smithi165.stdout: python3-requests-oauthlib python3-rgw python3-routes python3-rsa 2024-09-17T09:00:19.624 INFO:teuthology.orchestra.run.smithi165.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-09-17T09:00:19.624 INFO:teuthology.orchestra.run.smithi165.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-09-17T09:00:19.624 INFO:teuthology.orchestra.run.smithi165.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-09-17T09:00:19.624 INFO:teuthology.orchestra.run.smithi165.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-09-17T09:00:19.624 INFO:teuthology.orchestra.run.smithi165.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n radosgw rbd-fuse 2024-09-17T09:00:19.624 INFO:teuthology.orchestra.run.smithi165.stdout: socat xmlstarlet 2024-09-17T09:00:19.630 INFO:teuthology.orchestra.run.smithi098.stdout:0 upgraded, 109 newly installed, 0 to remove and 331 not upgraded. 2024-09-17T09:00:19.631 INFO:teuthology.orchestra.run.smithi098.stdout:Need to get 163 MB of archives. 2024-09-17T09:00:19.631 INFO:teuthology.orchestra.run.smithi098.stdout:After this operation, 746 MB of additional disk space will be used. 2024-09-17T09:00:19.631 INFO:teuthology.orchestra.run.smithi098.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libfmt8 amd64 8.1.1+ds1-2 [60.2 kB] 2024-09-17T09:00:19.688 INFO:teuthology.orchestra.run.smithi098.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-09-17T09:00:19.703 INFO:teuthology.orchestra.run.smithi134.stdout:The following NEW packages will be installed: 2024-09-17T09:00:19.703 INFO:teuthology.orchestra.run.smithi134.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-09-17T09:00:19.703 INFO:teuthology.orchestra.run.smithi134.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-09-17T09:00:19.703 INFO:teuthology.orchestra.run.smithi134.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-09-17T09:00:19.704 INFO:teuthology.orchestra.run.smithi134.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libfmt8 libjq1 liblttng-ust1 2024-09-17T09:00:19.704 INFO:teuthology.orchestra.run.smithi134.stdout: liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 2024-09-17T09:00:19.704 INFO:teuthology.orchestra.run.smithi134.stdout: librados2 libradosstriper1 librbd1 librdkafka1 librgw2 libsqlite3-mod-ceph 2024-09-17T09:00:19.706 INFO:teuthology.orchestra.run.smithi134.stdout: libthrift-0.16.0 nvme-cli python-asyncssh-doc python-babel-localedata 2024-09-17T09:00:19.706 INFO:teuthology.orchestra.run.smithi134.stdout: python-pastedeploy-tpl python3-asyncssh python3-babel python3-bcrypt 2024-09-17T09:00:19.706 INFO:teuthology.orchestra.run.smithi134.stdout: python3-cachetools python3-ceph-argparse python3-ceph-common python3-cephfs 2024-09-17T09:00:19.706 INFO:teuthology.orchestra.run.smithi134.stdout: python3-certifi python3-cheroot python3-cherrypy3 python3-google-auth 2024-09-17T09:00:19.706 INFO:teuthology.orchestra.run.smithi134.stdout: python3-idna python3-iniconfig python3-jaraco.classes 2024-09-17T09:00:19.706 INFO:teuthology.orchestra.run.smithi134.stdout: python3-jaraco.collections python3-jaraco.functools python3-jaraco.text 2024-09-17T09:00:19.706 INFO:teuthology.orchestra.run.smithi134.stdout: python3-jinja2 python3-joblib python3-kubernetes python3-logutils 2024-09-17T09:00:19.707 INFO:teuthology.orchestra.run.smithi134.stdout: python3-mako python3-markupsafe python3-natsort python3-openssl 2024-09-17T09:00:19.707 INFO:teuthology.orchestra.run.smithi134.stdout: python3-paste python3-pastedeploy python3-pastescript python3-pecan 2024-09-17T09:00:19.707 INFO:teuthology.orchestra.run.smithi134.stdout: python3-pluggy python3-portend python3-prettytable python3-psutil python3-py 2024-09-17T09:00:19.707 INFO:teuthology.orchestra.run.smithi134.stdout: python3-pyasn1 python3-pyasn1-modules python3-pygments python3-pyinotify 2024-09-17T09:00:19.707 INFO:teuthology.orchestra.run.smithi134.stdout: python3-pytest python3-rados python3-rbd python3-repoze.lru python3-requests 2024-09-17T09:00:19.707 INFO:teuthology.orchestra.run.smithi134.stdout: python3-requests-oauthlib python3-rgw python3-routes python3-rsa 2024-09-17T09:00:19.707 INFO:teuthology.orchestra.run.smithi134.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-09-17T09:00:19.707 INFO:teuthology.orchestra.run.smithi134.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-09-17T09:00:19.707 INFO:teuthology.orchestra.run.smithi134.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-09-17T09:00:19.707 INFO:teuthology.orchestra.run.smithi134.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-09-17T09:00:19.707 INFO:teuthology.orchestra.run.smithi134.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n radosgw rbd-fuse 2024-09-17T09:00:19.707 INFO:teuthology.orchestra.run.smithi134.stdout: socat xmlstarlet 2024-09-17T09:00:19.714 INFO:teuthology.orchestra.run.smithi098.stdout:Get:3 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 18.2.4-855-g19e2a2be-1jammy [3,452 kB] 2024-09-17T09:00:19.725 INFO:teuthology.orchestra.run.smithi098.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-09-17T09:00:19.728 INFO:teuthology.orchestra.run.smithi098.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-09-17T09:00:19.743 INFO:teuthology.orchestra.run.smithi098.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-09-17T09:00:19.766 INFO:teuthology.orchestra.run.smithi134.stdout:0 upgraded, 109 newly installed, 0 to remove and 331 not upgraded. 2024-09-17T09:00:19.766 INFO:teuthology.orchestra.run.smithi134.stdout:Need to get 163 MB of archives. 2024-09-17T09:00:19.766 INFO:teuthology.orchestra.run.smithi134.stdout:After this operation, 746 MB of additional disk space will be used. 2024-09-17T09:00:19.766 INFO:teuthology.orchestra.run.smithi134.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libfmt8 amd64 8.1.1+ds1-2 [60.2 kB] 2024-09-17T09:00:19.772 INFO:teuthology.orchestra.run.smithi165.stdout:0 upgraded, 109 newly installed, 0 to remove and 331 not upgraded. 2024-09-17T09:00:19.772 INFO:teuthology.orchestra.run.smithi165.stdout:Need to get 163 MB of archives. 2024-09-17T09:00:19.772 INFO:teuthology.orchestra.run.smithi165.stdout:After this operation, 746 MB of additional disk space will be used. 2024-09-17T09:00:19.772 INFO:teuthology.orchestra.run.smithi165.stdout:Get:1 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 18.2.4-855-g19e2a2be-1jammy [3,452 kB] 2024-09-17T09:00:19.814 INFO:teuthology.orchestra.run.smithi165.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libfmt8 amd64 8.1.1+ds1-2 [60.2 kB] 2024-09-17T09:00:19.815 INFO:teuthology.orchestra.run.smithi098.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-09-17T09:00:19.821 INFO:teuthology.orchestra.run.smithi098.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-09-17T09:00:19.824 INFO:teuthology.orchestra.run.smithi134.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-09-17T09:00:19.834 INFO:teuthology.orchestra.run.smithi098.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-09-17T09:00:19.838 INFO:teuthology.orchestra.run.smithi098.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-09-17T09:00:19.838 INFO:teuthology.orchestra.run.smithi098.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-09-17T09:00:19.839 INFO:teuthology.orchestra.run.smithi098.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-09-17T09:00:19.848 INFO:teuthology.orchestra.run.smithi098.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-09-17T09:00:19.849 INFO:teuthology.orchestra.run.smithi098.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-09-17T09:00:19.849 INFO:teuthology.orchestra.run.smithi098.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-cheroot all 8.5.2+ds1-1ubuntu3.1 [71.1 kB] 2024-09-17T09:00:19.851 INFO:teuthology.orchestra.run.smithi098.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-09-17T09:00:19.853 INFO:teuthology.orchestra.run.smithi134.stdout:Get:3 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 18.2.4-855-g19e2a2be-1jammy [3,452 kB] 2024-09-17T09:00:19.855 INFO:teuthology.orchestra.run.smithi098.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-09-17T09:00:19.855 INFO:teuthology.orchestra.run.smithi098.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-09-17T09:00:19.861 INFO:teuthology.orchestra.run.smithi134.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-09-17T09:00:19.864 INFO:teuthology.orchestra.run.smithi134.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-09-17T09:00:19.872 INFO:teuthology.orchestra.run.smithi098.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-09-17T09:00:19.873 INFO:teuthology.orchestra.run.smithi098.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-09-17T09:00:19.873 INFO:teuthology.orchestra.run.smithi098.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-09-17T09:00:19.873 INFO:teuthology.orchestra.run.smithi098.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-09-17T09:00:19.876 INFO:teuthology.orchestra.run.smithi098.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-09-17T09:00:19.877 INFO:teuthology.orchestra.run.smithi098.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-09-17T09:00:19.877 INFO:teuthology.orchestra.run.smithi098.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-09-17T09:00:19.878 INFO:teuthology.orchestra.run.smithi098.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-mako all 1.1.3+ds1-2ubuntu0.1 [60.5 kB] 2024-09-17T09:00:19.879 INFO:teuthology.orchestra.run.smithi134.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-09-17T09:00:19.889 INFO:teuthology.orchestra.run.smithi098.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-09-17T09:00:19.889 INFO:teuthology.orchestra.run.smithi098.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-09-17T09:00:19.890 INFO:teuthology.orchestra.run.smithi098.stdout:Get:29 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 18.2.4-855-g19e2a2be-1jammy [3,108 kB] 2024-09-17T09:00:19.906 INFO:teuthology.orchestra.run.smithi098.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-webob all 1:1.8.6-1.1ubuntu0.1 [86.7 kB] 2024-09-17T09:00:19.908 INFO:teuthology.orchestra.run.smithi098.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-09-17T09:00:19.908 INFO:teuthology.orchestra.run.smithi098.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-09-17T09:00:19.909 INFO:teuthology.orchestra.run.smithi098.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-09-17T09:00:19.915 INFO:teuthology.orchestra.run.smithi098.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-09-17T09:00:19.915 INFO:teuthology.orchestra.run.smithi098.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-09-17T09:00:19.916 INFO:teuthology.orchestra.run.smithi098.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-09-17T09:00:19.916 INFO:teuthology.orchestra.run.smithi098.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-09-17T09:00:19.924 INFO:teuthology.orchestra.run.smithi098.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-09-17T09:00:19.926 INFO:teuthology.orchestra.run.smithi098.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-idna all 3.3-1ubuntu0.1 [52.1 kB] 2024-09-17T09:00:19.932 INFO:teuthology.orchestra.run.smithi134.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-09-17T09:00:19.937 INFO:teuthology.orchestra.run.smithi134.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-09-17T09:00:19.938 INFO:teuthology.orchestra.run.smithi098.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-09-17T09:00:19.940 INFO:teuthology.orchestra.run.smithi098.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-09-17T09:00:19.940 INFO:teuthology.orchestra.run.smithi098.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.2 [181 kB] 2024-09-17T09:00:19.943 INFO:teuthology.orchestra.run.smithi098.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-09-17T09:00:19.944 INFO:teuthology.orchestra.run.smithi098.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-09-17T09:00:19.945 INFO:teuthology.orchestra.run.smithi098.stdout:Get:45 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-09-17T09:00:19.947 INFO:teuthology.orchestra.run.smithi098.stdout:Get:46 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-babel-localedata all 2.8.0+dfsg.1-7 [4,982 kB] 2024-09-17T09:00:19.949 INFO:teuthology.orchestra.run.smithi134.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-09-17T09:00:19.953 INFO:teuthology.orchestra.run.smithi134.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-09-17T09:00:19.953 INFO:teuthology.orchestra.run.smithi134.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-09-17T09:00:19.954 INFO:teuthology.orchestra.run.smithi134.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-09-17T09:00:19.958 INFO:teuthology.orchestra.run.smithi098.stdout:Get:47 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 18.2.4-855-g19e2a2be-1jammy [683 kB] 2024-09-17T09:00:19.963 INFO:teuthology.orchestra.run.smithi134.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-09-17T09:00:19.964 INFO:teuthology.orchestra.run.smithi134.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-09-17T09:00:19.964 INFO:teuthology.orchestra.run.smithi134.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-cheroot all 8.5.2+ds1-1ubuntu3.1 [71.1 kB] 2024-09-17T09:00:19.965 INFO:teuthology.orchestra.run.smithi134.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-09-17T09:00:19.972 INFO:teuthology.orchestra.run.smithi134.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-09-17T09:00:19.972 INFO:teuthology.orchestra.run.smithi134.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-09-17T09:00:19.973 INFO:teuthology.orchestra.run.smithi134.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-09-17T09:00:19.983 INFO:teuthology.orchestra.run.smithi098.stdout:Get:48 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 18.2.4-855-g19e2a2be-1jammy [357 kB] 2024-09-17T09:00:19.989 INFO:teuthology.orchestra.run.smithi098.stdout:Get:49 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 18.2.4-855-g19e2a2be-1jammy [32.8 kB] 2024-09-17T09:00:19.989 INFO:teuthology.orchestra.run.smithi134.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-09-17T09:00:19.990 INFO:teuthology.orchestra.run.smithi098.stdout:Get:50 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 18.2.4-855-g19e2a2be-1jammy [180 kB] 2024-09-17T09:00:19.990 INFO:teuthology.orchestra.run.smithi134.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-09-17T09:00:19.991 INFO:teuthology.orchestra.run.smithi134.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-09-17T09:00:19.993 INFO:teuthology.orchestra.run.smithi134.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-09-17T09:00:19.993 INFO:teuthology.orchestra.run.smithi098.stdout:Get:51 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 18.2.4-855-g19e2a2be-1jammy [63.8 kB] 2024-09-17T09:00:19.994 INFO:teuthology.orchestra.run.smithi134.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-09-17T09:00:19.994 INFO:teuthology.orchestra.run.smithi098.stdout:Get:52 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 18.2.4-855-g19e2a2be-1jammy [334 kB] 2024-09-17T09:00:19.995 INFO:teuthology.orchestra.run.smithi134.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-09-17T09:00:19.995 INFO:teuthology.orchestra.run.smithi134.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-mako all 1.1.3+ds1-2ubuntu0.1 [60.5 kB] 2024-09-17T09:00:20.000 INFO:teuthology.orchestra.run.smithi098.stdout:Get:53 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 18.2.4-855-g19e2a2be-1jammy [5,934 kB] 2024-09-17T09:00:20.002 INFO:teuthology.orchestra.run.smithi098.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-09-17T09:00:20.003 INFO:teuthology.orchestra.run.smithi098.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.2 [108 kB] 2024-09-17T09:00:20.004 INFO:teuthology.orchestra.run.smithi098.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-09-17T09:00:20.004 INFO:teuthology.orchestra.run.smithi098.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-09-17T09:00:20.005 INFO:teuthology.orchestra.run.smithi098.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-09-17T09:00:20.005 INFO:teuthology.orchestra.run.smithi098.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-09-17T09:00:20.006 INFO:teuthology.orchestra.run.smithi098.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-09-17T09:00:20.007 INFO:teuthology.orchestra.run.smithi134.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-09-17T09:00:20.007 INFO:teuthology.orchestra.run.smithi134.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-09-17T09:00:20.008 INFO:teuthology.orchestra.run.smithi134.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-webob all 1:1.8.6-1.1ubuntu0.1 [86.7 kB] 2024-09-17T09:00:20.008 INFO:teuthology.orchestra.run.smithi098.stdout:Get:61 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-09-17T09:00:20.008 INFO:teuthology.orchestra.run.smithi098.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-09-17T09:00:20.015 INFO:teuthology.orchestra.run.smithi165.stdout:Get:3 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 18.2.4-855-g19e2a2be-1jammy [3,108 kB] 2024-09-17T09:00:20.021 INFO:teuthology.orchestra.run.smithi098.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-09-17T09:00:20.024 INFO:teuthology.orchestra.run.smithi134.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-09-17T09:00:20.025 INFO:teuthology.orchestra.run.smithi134.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-09-17T09:00:20.026 INFO:teuthology.orchestra.run.smithi134.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-09-17T09:00:20.031 INFO:teuthology.orchestra.run.smithi134.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-09-17T09:00:20.032 INFO:teuthology.orchestra.run.smithi134.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-09-17T09:00:20.032 INFO:teuthology.orchestra.run.smithi134.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-09-17T09:00:20.033 INFO:teuthology.orchestra.run.smithi134.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-09-17T09:00:20.038 INFO:teuthology.orchestra.run.smithi098.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-09-17T09:00:20.040 INFO:teuthology.orchestra.run.smithi098.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-09-17T09:00:20.040 INFO:teuthology.orchestra.run.smithi098.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-09-17T09:00:20.042 INFO:teuthology.orchestra.run.smithi134.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-09-17T09:00:20.044 INFO:teuthology.orchestra.run.smithi134.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-idna all 3.3-1ubuntu0.1 [52.1 kB] 2024-09-17T09:00:20.045 INFO:teuthology.orchestra.run.smithi134.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-09-17T09:00:20.055 INFO:teuthology.orchestra.run.smithi098.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-09-17T09:00:20.055 INFO:teuthology.orchestra.run.smithi098.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-09-17T09:00:20.056 INFO:teuthology.orchestra.run.smithi098.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-09-17T09:00:20.056 INFO:teuthology.orchestra.run.smithi098.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-09-17T09:00:20.057 INFO:teuthology.orchestra.run.smithi098.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-09-17T09:00:20.057 INFO:teuthology.orchestra.run.smithi098.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-requests-oauthlib all 1.3.0+ds-0.1 [18.7 kB] 2024-09-17T09:00:20.058 INFO:teuthology.orchestra.run.smithi098.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-09-17T09:00:20.060 INFO:teuthology.orchestra.run.smithi134.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-09-17T09:00:20.061 INFO:teuthology.orchestra.run.smithi134.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.2 [181 kB] 2024-09-17T09:00:20.063 INFO:teuthology.orchestra.run.smithi134.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-09-17T09:00:20.064 INFO:teuthology.orchestra.run.smithi134.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-09-17T09:00:20.065 INFO:teuthology.orchestra.run.smithi134.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-09-17T09:00:20.067 INFO:teuthology.orchestra.run.smithi134.stdout:Get:45 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-babel-localedata all 2.8.0+dfsg.1-7 [4,982 kB] 2024-09-17T09:00:20.074 INFO:teuthology.orchestra.run.smithi098.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-09-17T09:00:20.077 INFO:teuthology.orchestra.run.smithi098.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-09-17T09:00:20.079 INFO:teuthology.orchestra.run.smithi098.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-09-17T09:00:20.080 INFO:teuthology.orchestra.run.smithi098.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-09-17T09:00:20.091 INFO:teuthology.orchestra.run.smithi098.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-09-17T09:00:20.094 INFO:teuthology.orchestra.run.smithi098.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-09-17T09:00:20.096 INFO:teuthology.orchestra.run.smithi098.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.3 [474 kB] 2024-09-17T09:00:20.097 INFO:teuthology.orchestra.run.smithi165.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-09-17T09:00:20.100 INFO:teuthology.orchestra.run.smithi098.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-09-17T09:00:20.103 INFO:teuthology.orchestra.run.smithi098.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-09-17T09:00:20.103 INFO:teuthology.orchestra.run.smithi098.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-09-17T09:00:20.108 INFO:teuthology.orchestra.run.smithi098.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-09-17T09:00:20.114 INFO:teuthology.orchestra.run.smithi098.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-09-17T09:00:20.115 INFO:teuthology.orchestra.run.smithi098.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-09-17T09:00:20.115 INFO:teuthology.orchestra.run.smithi098.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-09-17T09:00:20.119 INFO:teuthology.orchestra.run.smithi134.stdout:Get:46 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-09-17T09:00:20.120 INFO:teuthology.orchestra.run.smithi134.stdout:Get:47 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.2 [108 kB] 2024-09-17T09:00:20.121 INFO:teuthology.orchestra.run.smithi134.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-09-17T09:00:20.121 INFO:teuthology.orchestra.run.smithi134.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-09-17T09:00:20.122 INFO:teuthology.orchestra.run.smithi134.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-09-17T09:00:20.122 INFO:teuthology.orchestra.run.smithi134.stdout:Get:51 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-09-17T09:00:20.123 INFO:teuthology.orchestra.run.smithi134.stdout:Get:52 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-09-17T09:00:20.125 INFO:teuthology.orchestra.run.smithi134.stdout:Get:53 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-09-17T09:00:20.125 INFO:teuthology.orchestra.run.smithi134.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-09-17T09:00:20.138 INFO:teuthology.orchestra.run.smithi134.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-09-17T09:00:20.139 INFO:teuthology.orchestra.run.smithi165.stdout:Get:5 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 18.2.4-855-g19e2a2be-1jammy [683 kB] 2024-09-17T09:00:20.153 INFO:teuthology.orchestra.run.smithi165.stdout:Get:6 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 18.2.4-855-g19e2a2be-1jammy [357 kB] 2024-09-17T09:00:20.155 INFO:teuthology.orchestra.run.smithi134.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-09-17T09:00:20.157 INFO:teuthology.orchestra.run.smithi134.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-09-17T09:00:20.157 INFO:teuthology.orchestra.run.smithi134.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-09-17T09:00:20.160 INFO:teuthology.orchestra.run.smithi165.stdout:Get:7 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 18.2.4-855-g19e2a2be-1jammy [32.8 kB] 2024-09-17T09:00:20.161 INFO:teuthology.orchestra.run.smithi165.stdout:Get:8 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 18.2.4-855-g19e2a2be-1jammy [180 kB] 2024-09-17T09:00:20.165 INFO:teuthology.orchestra.run.smithi165.stdout:Get:9 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 18.2.4-855-g19e2a2be-1jammy [63.8 kB] 2024-09-17T09:00:20.166 INFO:teuthology.orchestra.run.smithi165.stdout:Get:10 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 18.2.4-855-g19e2a2be-1jammy [334 kB] 2024-09-17T09:00:20.172 INFO:teuthology.orchestra.run.smithi134.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-09-17T09:00:20.172 INFO:teuthology.orchestra.run.smithi134.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-09-17T09:00:20.173 INFO:teuthology.orchestra.run.smithi134.stdout:Get:61 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-09-17T09:00:20.173 INFO:teuthology.orchestra.run.smithi134.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-09-17T09:00:20.174 INFO:teuthology.orchestra.run.smithi134.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-09-17T09:00:20.174 INFO:teuthology.orchestra.run.smithi134.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-requests-oauthlib all 1.3.0+ds-0.1 [18.7 kB] 2024-09-17T09:00:20.175 INFO:teuthology.orchestra.run.smithi134.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-09-17T09:00:20.181 INFO:teuthology.orchestra.run.smithi098.stdout:Get:88 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 18.2.4-855-g19e2a2be-1jammy [112 kB] 2024-09-17T09:00:20.183 INFO:teuthology.orchestra.run.smithi098.stdout:Get:89 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 18.2.4-855-g19e2a2be-1jammy [445 kB] 2024-09-17T09:00:20.191 INFO:teuthology.orchestra.run.smithi134.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-09-17T09:00:20.192 INFO:teuthology.orchestra.run.smithi098.stdout:Get:90 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 18.2.4-855-g19e2a2be-1jammy [22.0 MB] 2024-09-17T09:00:20.194 INFO:teuthology.orchestra.run.smithi134.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-09-17T09:00:20.196 INFO:teuthology.orchestra.run.smithi134.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-09-17T09:00:20.197 INFO:teuthology.orchestra.run.smithi134.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-09-17T09:00:20.198 INFO:teuthology.orchestra.run.smithi134.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-09-17T09:00:20.204 INFO:teuthology.orchestra.run.smithi165.stdout:Get:11 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 18.2.4-855-g19e2a2be-1jammy [5,934 kB] 2024-09-17T09:00:20.208 INFO:teuthology.orchestra.run.smithi134.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-09-17T09:00:20.211 INFO:teuthology.orchestra.run.smithi134.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.3 [474 kB] 2024-09-17T09:00:20.215 INFO:teuthology.orchestra.run.smithi134.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-09-17T09:00:20.217 INFO:teuthology.orchestra.run.smithi134.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-09-17T09:00:20.218 INFO:teuthology.orchestra.run.smithi134.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-09-17T09:00:20.225 INFO:teuthology.orchestra.run.smithi134.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-09-17T09:00:20.232 INFO:teuthology.orchestra.run.smithi134.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-09-17T09:00:20.232 INFO:teuthology.orchestra.run.smithi134.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-09-17T09:00:20.233 INFO:teuthology.orchestra.run.smithi134.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-09-17T09:00:20.273 INFO:teuthology.orchestra.run.smithi165.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-09-17T09:00:20.287 INFO:teuthology.orchestra.run.smithi165.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-09-17T09:00:20.360 INFO:teuthology.orchestra.run.smithi165.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-09-17T09:00:20.433 INFO:teuthology.orchestra.run.smithi165.stdout:Get:15 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 18.2.4-855-g19e2a2be-1jammy [112 kB] 2024-09-17T09:00:20.436 INFO:teuthology.orchestra.run.smithi165.stdout:Get:16 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 18.2.4-855-g19e2a2be-1jammy [445 kB] 2024-09-17T09:00:20.446 INFO:teuthology.orchestra.run.smithi165.stdout:Get:17 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 18.2.4-855-g19e2a2be-1jammy [22.0 MB] 2024-09-17T09:00:20.560 INFO:teuthology.orchestra.run.smithi165.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-09-17T09:00:20.572 INFO:teuthology.orchestra.run.smithi165.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-09-17T09:00:20.598 INFO:teuthology.orchestra.run.smithi165.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-09-17T09:00:20.656 INFO:teuthology.orchestra.run.smithi165.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-09-17T09:00:20.699 INFO:teuthology.orchestra.run.smithi165.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-09-17T09:00:20.731 INFO:teuthology.orchestra.run.smithi165.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-09-17T09:00:20.827 INFO:teuthology.orchestra.run.smithi165.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-09-17T09:00:20.846 INFO:teuthology.orchestra.run.smithi165.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-09-17T09:00:20.864 INFO:teuthology.orchestra.run.smithi165.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-cheroot all 8.5.2+ds1-1ubuntu3.1 [71.1 kB] 2024-09-17T09:00:20.883 INFO:teuthology.orchestra.run.smithi165.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-09-17T09:00:20.902 INFO:teuthology.orchestra.run.smithi165.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-09-17T09:00:20.904 INFO:teuthology.orchestra.run.smithi134.stdout:Get:80 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 18.2.4-855-g19e2a2be-1jammy [3,108 kB] 2024-09-17T09:00:20.921 INFO:teuthology.orchestra.run.smithi165.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-09-17T09:00:20.940 INFO:teuthology.orchestra.run.smithi165.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-09-17T09:00:20.958 INFO:teuthology.orchestra.run.smithi165.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-09-17T09:00:20.976 INFO:teuthology.orchestra.run.smithi165.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-09-17T09:00:20.995 INFO:teuthology.orchestra.run.smithi165.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-09-17T09:00:21.017 INFO:teuthology.orchestra.run.smithi165.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-09-17T09:00:21.036 INFO:teuthology.orchestra.run.smithi165.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-09-17T09:00:21.044 INFO:teuthology.orchestra.run.smithi098.stdout:Get:91 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 18.2.4-855-g19e2a2be-1jammy [5,006 kB] 2024-09-17T09:00:21.054 INFO:teuthology.orchestra.run.smithi165.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-09-17T09:00:21.072 INFO:teuthology.orchestra.run.smithi165.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-mako all 1.1.3+ds1-2ubuntu0.1 [60.5 kB] 2024-09-17T09:00:21.091 INFO:teuthology.orchestra.run.smithi165.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-09-17T09:00:21.109 INFO:teuthology.orchestra.run.smithi165.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-09-17T09:00:21.128 INFO:teuthology.orchestra.run.smithi165.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-webob all 1:1.8.6-1.1ubuntu0.1 [86.7 kB] 2024-09-17T09:00:21.147 INFO:teuthology.orchestra.run.smithi165.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-09-17T09:00:21.166 INFO:teuthology.orchestra.run.smithi165.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-09-17T09:00:21.179 INFO:teuthology.orchestra.run.smithi098.stdout:Get:92 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 18.2.4-855-g19e2a2be-1jammy [241 kB] 2024-09-17T09:00:21.184 INFO:teuthology.orchestra.run.smithi098.stdout:Get:93 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 18.2.4-855-g19e2a2be-1jammy [130 kB] 2024-09-17T09:00:21.185 INFO:teuthology.orchestra.run.smithi165.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-09-17T09:00:21.187 INFO:teuthology.orchestra.run.smithi098.stdout:Get:94 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 18.2.4-855-g19e2a2be-1jammy [1,494 kB] 2024-09-17T09:00:21.242 INFO:teuthology.orchestra.run.smithi098.stdout:Get:95 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 18.2.4-855-g19e2a2be-1jammy [6,085 kB] 2024-09-17T09:00:21.264 INFO:teuthology.orchestra.run.smithi165.stdout:Get:44 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 18.2.4-855-g19e2a2be-1jammy [5,006 kB] 2024-09-17T09:00:21.273 INFO:teuthology.orchestra.run.smithi165.stdout:Get:45 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-09-17T09:00:21.291 INFO:teuthology.orchestra.run.smithi165.stdout:Get:46 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-09-17T09:00:21.310 INFO:teuthology.orchestra.run.smithi165.stdout:Get:47 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-09-17T09:00:21.324 INFO:teuthology.orchestra.run.smithi134.stdout:Get:81 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 18.2.4-855-g19e2a2be-1jammy [683 kB] 2024-09-17T09:00:21.329 INFO:teuthology.orchestra.run.smithi165.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-09-17T09:00:21.349 INFO:teuthology.orchestra.run.smithi165.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-09-17T09:00:21.370 INFO:teuthology.orchestra.run.smithi165.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-idna all 3.3-1ubuntu0.1 [52.1 kB] 2024-09-17T09:00:21.386 INFO:teuthology.orchestra.run.smithi134.stdout:Get:82 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 18.2.4-855-g19e2a2be-1jammy [357 kB] 2024-09-17T09:00:21.389 INFO:teuthology.orchestra.run.smithi165.stdout:Get:51 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-09-17T09:00:21.392 INFO:teuthology.orchestra.run.smithi165.stdout:Get:52 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 18.2.4-855-g19e2a2be-1jammy [241 kB] 2024-09-17T09:00:21.397 INFO:teuthology.orchestra.run.smithi165.stdout:Get:53 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 18.2.4-855-g19e2a2be-1jammy [130 kB] 2024-09-17T09:00:21.400 INFO:teuthology.orchestra.run.smithi165.stdout:Get:54 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 18.2.4-855-g19e2a2be-1jammy [1,494 kB] 2024-09-17T09:00:21.410 INFO:teuthology.orchestra.run.smithi165.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-09-17T09:00:21.429 INFO:teuthology.orchestra.run.smithi165.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.2 [181 kB] 2024-09-17T09:00:21.444 INFO:teuthology.orchestra.run.smithi134.stdout:Get:83 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 18.2.4-855-g19e2a2be-1jammy [32.8 kB] 2024-09-17T09:00:21.445 INFO:teuthology.orchestra.run.smithi134.stdout:Get:84 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 18.2.4-855-g19e2a2be-1jammy [180 kB] 2024-09-17T09:00:21.451 INFO:teuthology.orchestra.run.smithi165.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-09-17T09:00:21.456 INFO:teuthology.orchestra.run.smithi165.stdout:Get:58 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 18.2.4-855-g19e2a2be-1jammy [6,085 kB] 2024-09-17T09:00:21.470 INFO:teuthology.orchestra.run.smithi165.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-09-17T09:00:21.474 INFO:teuthology.orchestra.run.smithi098.stdout:Get:96 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 18.2.4-855-g19e2a2be-1jammy [22.4 MB] 2024-09-17T09:00:21.482 INFO:teuthology.orchestra.run.smithi134.stdout:Get:85 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 18.2.4-855-g19e2a2be-1jammy [63.8 kB] 2024-09-17T09:00:21.489 INFO:teuthology.orchestra.run.smithi165.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-09-17T09:00:21.491 INFO:teuthology.orchestra.run.smithi134.stdout:Get:86 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 18.2.4-855-g19e2a2be-1jammy [334 kB] 2024-09-17T09:00:21.507 INFO:teuthology.orchestra.run.smithi134.stdout:Get:87 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 18.2.4-855-g19e2a2be-1jammy [5,934 kB] 2024-09-17T09:00:21.511 INFO:teuthology.orchestra.run.smithi165.stdout:Get:61 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-babel-localedata all 2.8.0+dfsg.1-7 [4,982 kB] 2024-09-17T09:00:21.616 INFO:teuthology.orchestra.run.smithi165.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-09-17T09:00:21.634 INFO:teuthology.orchestra.run.smithi165.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.2 [108 kB] 2024-09-17T09:00:21.653 INFO:teuthology.orchestra.run.smithi165.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-09-17T09:00:21.671 INFO:teuthology.orchestra.run.smithi165.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-09-17T09:00:21.690 INFO:teuthology.orchestra.run.smithi165.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-09-17T09:00:21.695 INFO:teuthology.orchestra.run.smithi165.stdout:Get:67 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 18.2.4-855-g19e2a2be-1jammy [22.4 MB] 2024-09-17T09:00:21.708 INFO:teuthology.orchestra.run.smithi165.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-09-17T09:00:21.726 INFO:teuthology.orchestra.run.smithi165.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-09-17T09:00:21.749 INFO:teuthology.orchestra.run.smithi165.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-09-17T09:00:21.767 INFO:teuthology.orchestra.run.smithi165.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-09-17T09:00:21.788 INFO:teuthology.orchestra.run.smithi165.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-09-17T09:00:21.853 INFO:teuthology.orchestra.run.smithi165.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-09-17T09:00:21.934 INFO:teuthology.orchestra.run.smithi165.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-09-17T09:00:21.953 INFO:teuthology.orchestra.run.smithi165.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-09-17T09:00:22.013 INFO:teuthology.orchestra.run.smithi165.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-09-17T09:00:22.032 INFO:teuthology.orchestra.run.smithi165.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-09-17T09:00:22.050 INFO:teuthology.orchestra.run.smithi165.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-09-17T09:00:22.069 INFO:teuthology.orchestra.run.smithi165.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-09-17T09:00:22.087 INFO:teuthology.orchestra.run.smithi165.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-09-17T09:00:22.099 INFO:teuthology.orchestra.run.smithi134.stdout:Get:88 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 18.2.4-855-g19e2a2be-1jammy [112 kB] 2024-09-17T09:00:22.102 INFO:teuthology.orchestra.run.smithi134.stdout:Get:89 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 18.2.4-855-g19e2a2be-1jammy [445 kB] 2024-09-17T09:00:22.106 INFO:teuthology.orchestra.run.smithi165.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-17T09:00:22.125 INFO:teuthology.orchestra.run.smithi165.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-09-17T09:00:22.144 INFO:teuthology.orchestra.run.smithi165.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-09-17T09:00:22.159 INFO:teuthology.orchestra.run.smithi134.stdout:Get:90 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 18.2.4-855-g19e2a2be-1jammy [22.0 MB] 2024-09-17T09:00:22.169 INFO:teuthology.orchestra.run.smithi165.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-09-17T09:00:22.192 INFO:teuthology.orchestra.run.smithi165.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-09-17T09:00:22.212 INFO:teuthology.orchestra.run.smithi165.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-09-17T09:00:22.231 INFO:teuthology.orchestra.run.smithi165.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-09-17T09:00:22.258 INFO:teuthology.orchestra.run.smithi165.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-09-17T09:00:22.282 INFO:teuthology.orchestra.run.smithi165.stdout:Get:89 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.3 [474 kB] 2024-09-17T09:00:22.310 INFO:teuthology.orchestra.run.smithi165.stdout:Get:90 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-09-17T09:00:22.336 INFO:teuthology.orchestra.run.smithi165.stdout:Get:91 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-09-17T09:00:22.355 INFO:teuthology.orchestra.run.smithi165.stdout:Get:92 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-09-17T09:00:22.377 INFO:teuthology.orchestra.run.smithi165.stdout:Get:93 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-09-17T09:00:22.413 INFO:teuthology.orchestra.run.smithi165.stdout:Get:94 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-09-17T09:00:22.431 INFO:teuthology.orchestra.run.smithi165.stdout:Get:95 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-09-17T09:00:22.451 INFO:teuthology.orchestra.run.smithi165.stdout:Get:96 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-09-17T09:00:22.457 INFO:teuthology.orchestra.run.smithi098.stdout:Get:97 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 18.2.4-855-g19e2a2be-1jammy [14.2 kB] 2024-09-17T09:00:22.457 INFO:teuthology.orchestra.run.smithi098.stdout:Get:98 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 18.2.4-855-g19e2a2be-1jammy [835 kB] 2024-09-17T09:00:22.474 INFO:teuthology.orchestra.run.smithi098.stdout:Get:99 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 18.2.4-855-g19e2a2be-1jammy [2,159 kB] 2024-09-17T09:00:22.514 INFO:teuthology.orchestra.run.smithi098.stdout:Get:100 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 18.2.4-855-g19e2a2be-1jammy [240 kB] 2024-09-17T09:00:22.518 INFO:teuthology.orchestra.run.smithi098.stdout:Get:101 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 18.2.4-855-g19e2a2be-1jammy [145 kB] 2024-09-17T09:00:22.520 INFO:teuthology.orchestra.run.smithi098.stdout:Get:102 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 18.2.4-855-g19e2a2be-1jammy [2,233 kB] 2024-09-17T09:00:22.612 INFO:teuthology.orchestra.run.smithi098.stdout:Get:103 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 18.2.4-855-g19e2a2be-1jammy [8,625 kB] 2024-09-17T09:00:22.660 INFO:teuthology.orchestra.run.smithi165.stdout:Get:97 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 18.2.4-855-g19e2a2be-1jammy [14.2 kB] 2024-09-17T09:00:22.661 INFO:teuthology.orchestra.run.smithi165.stdout:Get:98 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 18.2.4-855-g19e2a2be-1jammy [835 kB] 2024-09-17T09:00:22.676 INFO:teuthology.orchestra.run.smithi165.stdout:Get:99 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 18.2.4-855-g19e2a2be-1jammy [2,159 kB] 2024-09-17T09:00:22.726 INFO:teuthology.orchestra.run.smithi165.stdout:Get:100 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 18.2.4-855-g19e2a2be-1jammy [240 kB] 2024-09-17T09:00:22.730 INFO:teuthology.orchestra.run.smithi165.stdout:Get:101 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 18.2.4-855-g19e2a2be-1jammy [145 kB] 2024-09-17T09:00:22.738 INFO:teuthology.orchestra.run.smithi165.stdout:Get:102 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 18.2.4-855-g19e2a2be-1jammy [2,233 kB] 2024-09-17T09:00:22.886 INFO:teuthology.orchestra.run.smithi165.stdout:Get:103 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 18.2.4-855-g19e2a2be-1jammy [8,625 kB] 2024-09-17T09:00:23.010 INFO:teuthology.orchestra.run.smithi098.stdout:Get:104 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 18.2.4-855-g19e2a2be-1jammy [14.3 kB] 2024-09-17T09:00:23.010 INFO:teuthology.orchestra.run.smithi098.stdout:Get:105 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 18.2.4-855-g19e2a2be-1jammy [42.8 MB] 2024-09-17T09:00:23.229 INFO:teuthology.orchestra.run.smithi165.stdout:Get:104 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 18.2.4-855-g19e2a2be-1jammy [14.3 kB] 2024-09-17T09:00:23.230 INFO:teuthology.orchestra.run.smithi165.stdout:Get:105 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 18.2.4-855-g19e2a2be-1jammy [42.8 MB] 2024-09-17T09:00:23.658 INFO:teuthology.orchestra.run.smithi134.stdout:Get:91 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 18.2.4-855-g19e2a2be-1jammy [5,006 kB] 2024-09-17T09:00:23.905 INFO:teuthology.orchestra.run.smithi134.stdout:Get:92 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 18.2.4-855-g19e2a2be-1jammy [241 kB] 2024-09-17T09:00:23.915 INFO:teuthology.orchestra.run.smithi134.stdout:Get:93 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 18.2.4-855-g19e2a2be-1jammy [130 kB] 2024-09-17T09:00:23.919 INFO:teuthology.orchestra.run.smithi134.stdout:Get:94 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 18.2.4-855-g19e2a2be-1jammy [1,494 kB] 2024-09-17T09:00:24.025 INFO:teuthology.orchestra.run.smithi134.stdout:Get:95 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 18.2.4-855-g19e2a2be-1jammy [6,085 kB] 2024-09-17T09:00:24.368 INFO:teuthology.orchestra.run.smithi134.stdout:Get:96 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 18.2.4-855-g19e2a2be-1jammy [22.4 MB] 2024-09-17T09:00:25.095 INFO:teuthology.orchestra.run.smithi098.stdout:Get:106 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 18.2.4-855-g19e2a2be-1jammy [122 kB] 2024-09-17T09:00:25.098 INFO:teuthology.orchestra.run.smithi098.stdout:Get:107 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 18.2.4-855-g19e2a2be-1jammy [38.3 kB] 2024-09-17T09:00:25.099 INFO:teuthology.orchestra.run.smithi098.stdout:Get:108 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 18.2.4-855-g19e2a2be-1jammy [11.7 MB] 2024-09-17T09:00:25.362 INFO:teuthology.orchestra.run.smithi165.stdout:Get:106 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 18.2.4-855-g19e2a2be-1jammy [122 kB] 2024-09-17T09:00:25.369 INFO:teuthology.orchestra.run.smithi165.stdout:Get:107 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 18.2.4-855-g19e2a2be-1jammy [38.3 kB] 2024-09-17T09:00:25.371 INFO:teuthology.orchestra.run.smithi165.stdout:Get:108 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 18.2.4-855-g19e2a2be-1jammy [11.7 MB] 2024-09-17T09:00:25.455 INFO:teuthology.orchestra.run.smithi098.stdout:Get:109 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 18.2.4-855-g19e2a2be-1jammy [93.1 kB] 2024-09-17T09:00:25.612 INFO:teuthology.orchestra.run.smithi134.stdout:Get:97 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 18.2.4-855-g19e2a2be-1jammy [14.2 kB] 2024-09-17T09:00:25.612 INFO:teuthology.orchestra.run.smithi134.stdout:Get:98 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 18.2.4-855-g19e2a2be-1jammy [835 kB] 2024-09-17T09:00:25.629 INFO:teuthology.orchestra.run.smithi134.stdout:Get:99 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 18.2.4-855-g19e2a2be-1jammy [2,159 kB] 2024-09-17T09:00:25.647 INFO:teuthology.orchestra.run.smithi165.stdout:Get:109 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 18.2.4-855-g19e2a2be-1jammy [93.1 kB] 2024-09-17T09:00:25.665 INFO:teuthology.orchestra.run.smithi134.stdout:Get:100 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 18.2.4-855-g19e2a2be-1jammy [240 kB] 2024-09-17T09:00:25.669 INFO:teuthology.orchestra.run.smithi134.stdout:Get:101 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 18.2.4-855-g19e2a2be-1jammy [145 kB] 2024-09-17T09:00:25.671 INFO:teuthology.orchestra.run.smithi134.stdout:Get:102 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 18.2.4-855-g19e2a2be-1jammy [2,233 kB] 2024-09-17T09:00:25.709 INFO:teuthology.orchestra.run.smithi134.stdout:Get:103 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 18.2.4-855-g19e2a2be-1jammy [8,625 kB] 2024-09-17T09:00:25.864 INFO:teuthology.orchestra.run.smithi134.stdout:Get:104 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 18.2.4-855-g19e2a2be-1jammy [14.3 kB] 2024-09-17T09:00:25.864 INFO:teuthology.orchestra.run.smithi134.stdout:Get:105 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 18.2.4-855-g19e2a2be-1jammy [42.8 MB] 2024-09-17T09:00:26.035 INFO:teuthology.orchestra.run.smithi098.stdout:Fetched 163 MB in 6s (27.6 MB/s) 2024-09-17T09:00:26.175 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package libfmt8:amd64. 2024-09-17T09:00:26.216 INFO:teuthology.orchestra.run.smithi165.stdout:Fetched 163 MB in 6s (27.0 MB/s) 2024-09-17T09:00:26.267 INFO:teuthology.orchestra.run.smithi098.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-17T09:00:26.272 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../000-libfmt8_8.1.1+ds1-2_amd64.deb ... 2024-09-17T09:00:26.335 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package libfmt8:amd64. 2024-09-17T09:00:26.358 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking libfmt8:amd64 (8.1.1+ds1-2) ... 2024-09-17T09:00:26.402 INFO:teuthology.orchestra.run.smithi165.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-17T09:00:26.407 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../000-libfmt8_8.1.1+ds1-2_amd64.deb ... 2024-09-17T09:00:26.484 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking libfmt8:amd64 (8.1.1+ds1-2) ... 2024-09-17T09:00:26.627 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-09-17T09:00:26.654 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../001-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-09-17T09:00:26.694 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-17T09:00:26.778 INFO:teuthology.orchestra.run.smithi134.stdout:Get:106 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 18.2.4-855-g19e2a2be-1jammy [122 kB] 2024-09-17T09:00:26.780 INFO:teuthology.orchestra.run.smithi134.stdout:Get:107 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 18.2.4-855-g19e2a2be-1jammy [38.3 kB] 2024-09-17T09:00:26.781 INFO:teuthology.orchestra.run.smithi134.stdout:Get:108 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 18.2.4-855-g19e2a2be-1jammy [11.7 MB] 2024-09-17T09:00:26.820 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-09-17T09:00:26.839 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../001-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-09-17T09:00:26.878 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-17T09:00:26.945 INFO:teuthology.orchestra.run.smithi134.stdout:Get:109 https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 18.2.4-855-g19e2a2be-1jammy [93.1 kB] 2024-09-17T09:00:27.014 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-09-17T09:00:27.040 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../002-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-09-17T09:00:27.081 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-17T09:00:27.214 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-09-17T09:00:27.241 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../002-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-09-17T09:00:27.281 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-17T09:00:27.417 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-09-17T09:00:27.443 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../003-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-09-17T09:00:27.476 INFO:teuthology.orchestra.run.smithi134.stdout:Fetched 163 MB in 7s (22.5 MB/s) 2024-09-17T09:00:27.484 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-17T09:00:27.559 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-09-17T09:00:27.585 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../003-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-09-17T09:00:27.610 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package libfmt8:amd64. 2024-09-17T09:00:27.625 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-17T09:00:27.697 INFO:teuthology.orchestra.run.smithi134.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-17T09:00:27.703 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../000-libfmt8_8.1.1+ds1-2_amd64.deb ... 2024-09-17T09:00:27.784 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking libfmt8:amd64 (8.1.1+ds1-2) ... 2024-09-17T09:00:27.863 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-09-17T09:00:27.889 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../004-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-17T09:00:27.929 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-17T09:00:28.020 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-09-17T09:00:28.047 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../004-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-17T09:00:28.112 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-17T09:00:28.120 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-09-17T09:00:28.146 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../001-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-09-17T09:00:28.187 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-17T09:00:28.366 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-09-17T09:00:28.392 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../005-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-17T09:00:28.432 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-17T09:00:28.507 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-09-17T09:00:28.514 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-09-17T09:00:28.533 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../002-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-09-17T09:00:28.541 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../005-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-17T09:00:28.573 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-17T09:00:28.581 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-17T09:00:28.777 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-09-17T09:00:28.803 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../006-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-17T09:00:28.844 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-17T09:00:28.851 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-09-17T09:00:28.877 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../003-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-09-17T09:00:28.901 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-09-17T09:00:28.918 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-17T09:00:28.927 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../006-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-17T09:00:28.976 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-17T09:00:29.172 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-09-17T09:00:29.198 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../007-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-09-17T09:00:29.238 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-17T09:00:29.295 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-09-17T09:00:29.321 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../007-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-09-17T09:00:29.362 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-17T09:00:29.388 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-09-17T09:00:29.414 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../004-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-17T09:00:29.463 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-17T09:00:29.759 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package librados2. 2024-09-17T09:00:29.785 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../008-librados2_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:29.825 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking librados2 (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:29.864 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package librados2. 2024-09-17T09:00:29.880 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../008-librados2_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:29.922 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking librados2 (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:29.999 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-09-17T09:00:30.014 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../005-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-17T09:00:30.049 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-17T09:00:30.361 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package librbd1. 2024-09-17T09:00:30.367 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package librbd1. 2024-09-17T09:00:30.377 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-09-17T09:00:30.388 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../009-librbd1_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:30.393 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../009-librbd1_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:30.404 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../006-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-17T09:00:30.428 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking librbd1 (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:30.436 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking librbd1 (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:30.444 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-17T09:00:30.797 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-09-17T09:00:30.823 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../007-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-09-17T09:00:30.830 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package libcephfs2. 2024-09-17T09:00:30.846 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../010-libcephfs2_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:30.863 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-17T09:00:30.880 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking libcephfs2 (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:30.886 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package libcephfs2. 2024-09-17T09:00:30.901 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../010-libcephfs2_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:30.936 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking libcephfs2 (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:31.150 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-rados. 2024-09-17T09:00:31.176 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../011-python3-rados_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:31.191 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package librados2. 2024-09-17T09:00:31.213 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-rados. 2024-09-17T09:00:31.217 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-rados (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:31.217 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../008-librados2_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:31.228 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../011-python3-rados_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:31.258 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking librados2 (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:31.271 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-rados (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:31.545 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-09-17T09:00:31.571 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../012-python3-ceph-argparse_18.2.4-855-g19e2a2be-1jammy_all.deb ... 2024-09-17T09:00:31.591 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-09-17T09:00:31.611 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-ceph-argparse (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:31.617 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../012-python3-ceph-argparse_18.2.4-855-g19e2a2be-1jammy_all.deb ... 2024-09-17T09:00:31.657 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-ceph-argparse (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:31.686 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package librbd1. 2024-09-17T09:00:31.712 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../009-librbd1_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:31.752 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking librbd1 (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:31.864 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-cephfs. 2024-09-17T09:00:31.890 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../013-python3-cephfs_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:31.909 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-cephfs. 2024-09-17T09:00:31.930 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-cephfs (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:31.936 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../013-python3-cephfs_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:31.976 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-cephfs (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:32.189 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package libcephfs2. 2024-09-17T09:00:32.215 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../010-libcephfs2_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:32.242 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-ceph-common. 2024-09-17T09:00:32.255 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking libcephfs2 (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:32.268 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../014-python3-ceph-common_18.2.4-855-g19e2a2be-1jammy_all.deb ... 2024-09-17T09:00:32.271 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-ceph-common. 2024-09-17T09:00:32.296 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../014-python3-ceph-common_18.2.4-855-g19e2a2be-1jammy_all.deb ... 2024-09-17T09:00:32.300 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-ceph-common (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:32.328 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-ceph-common (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:32.532 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-rados. 2024-09-17T09:00:32.548 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../011-python3-rados_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:32.561 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-wcwidth. 2024-09-17T09:00:32.581 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-wcwidth. 2024-09-17T09:00:32.582 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-rados (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:32.588 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../015-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-09-17T09:00:32.605 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../015-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-09-17T09:00:32.628 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-17T09:00:32.639 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-17T09:00:32.885 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-09-17T09:00:32.911 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../012-python3-ceph-argparse_18.2.4-855-g19e2a2be-1jammy_all.deb ... 2024-09-17T09:00:32.934 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-prettytable. 2024-09-17T09:00:32.952 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-ceph-argparse (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:32.956 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-prettytable. 2024-09-17T09:00:32.960 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../016-python3-prettytable_2.5.0-2_all.deb ... 2024-09-17T09:00:32.982 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../016-python3-prettytable_2.5.0-2_all.deb ... 2024-09-17T09:00:33.000 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-09-17T09:00:33.022 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-09-17T09:00:33.204 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-cephfs. 2024-09-17T09:00:33.230 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../013-python3-cephfs_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:33.261 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-rbd. 2024-09-17T09:00:33.271 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-cephfs (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:33.276 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../017-python3-rbd_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:33.283 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-rbd. 2024-09-17T09:00:33.310 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../017-python3-rbd_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:33.319 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-rbd (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:33.350 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-rbd (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:33.582 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-ceph-common. 2024-09-17T09:00:33.608 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../014-python3-ceph-common_18.2.4-855-g19e2a2be-1jammy_all.deb ... 2024-09-17T09:00:33.630 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-09-17T09:00:33.645 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-09-17T09:00:33.648 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-ceph-common (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:33.656 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../018-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-09-17T09:00:33.671 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../018-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-09-17T09:00:33.697 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-17T09:00:33.703 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-17T09:00:33.926 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-wcwidth. 2024-09-17T09:00:33.952 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../015-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-09-17T09:00:33.985 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-17T09:00:34.014 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package librgw2. 2024-09-17T09:00:34.024 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package librgw2. 2024-09-17T09:00:34.041 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../019-librgw2_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:34.050 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../019-librgw2_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:34.081 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking librgw2 (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:34.091 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking librgw2 (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:34.287 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-prettytable. 2024-09-17T09:00:34.313 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../016-python3-prettytable_2.5.0-2_all.deb ... 2024-09-17T09:00:34.354 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-09-17T09:00:34.592 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-rgw. 2024-09-17T09:00:34.607 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../020-python3-rgw_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:34.618 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-rgw. 2024-09-17T09:00:34.634 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../020-python3-rgw_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:34.650 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-rgw (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:34.676 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-rgw (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:34.683 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-rbd. 2024-09-17T09:00:34.710 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../017-python3-rbd_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:34.876 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-rbd (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:35.046 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package liboath0:amd64. 2024-09-17T09:00:35.070 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package liboath0:amd64. 2024-09-17T09:00:35.072 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../021-liboath0_2.6.7-3build1_amd64.deb ... 2024-09-17T09:00:35.096 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../021-liboath0_2.6.7-3build1_amd64.deb ... 2024-09-17T09:00:35.113 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-09-17T09:00:35.128 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-09-17T09:00:35.351 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-09-17T09:00:35.378 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../018-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-09-17T09:00:35.406 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package libradosstriper1. 2024-09-17T09:00:35.415 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package libradosstriper1. 2024-09-17T09:00:35.418 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-17T09:00:35.432 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../022-libradosstriper1_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:35.442 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../022-libradosstriper1_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:35.473 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking libradosstriper1 (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:35.482 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking libradosstriper1 (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:35.729 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package librgw2. 2024-09-17T09:00:35.755 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../019-librgw2_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:35.787 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking librgw2 (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:35.902 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package ceph-common. 2024-09-17T09:00:35.910 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package ceph-common. 2024-09-17T09:00:35.928 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../023-ceph-common_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:35.936 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../023-ceph-common_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:35.968 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking ceph-common (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:35.976 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking ceph-common (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:36.273 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-rgw. 2024-09-17T09:00:36.288 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../020-python3-rgw_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:36.331 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-rgw (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:36.651 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package liboath0:amd64. 2024-09-17T09:00:36.677 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../021-liboath0_2.6.7-3build1_amd64.deb ... 2024-09-17T09:00:36.717 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-09-17T09:00:37.004 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package libradosstriper1. 2024-09-17T09:00:37.030 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../022-libradosstriper1_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:37.070 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking libradosstriper1 (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:37.232 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package ceph-base. 2024-09-17T09:00:37.258 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../024-ceph-base_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:37.316 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking ceph-base (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:37.383 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package ceph-base. 2024-09-17T09:00:37.409 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../024-ceph-base_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:37.440 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package ceph-common. 2024-09-17T09:00:37.458 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking ceph-base (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:37.466 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../023-ceph-common_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:37.507 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking ceph-common (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:37.861 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-09-17T09:00:37.888 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../025-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-09-17T09:00:37.927 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-09-17T09:00:38.054 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-09-17T09:00:38.080 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../025-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-09-17T09:00:38.120 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-09-17T09:00:38.180 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-cheroot. 2024-09-17T09:00:38.206 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../026-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-09-17T09:00:38.246 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-17T09:00:38.357 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-cheroot. 2024-09-17T09:00:38.383 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../026-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-09-17T09:00:38.423 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-17T09:00:38.549 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-09-17T09:00:38.576 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../027-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-09-17T09:00:38.616 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-09-17T09:00:38.735 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-09-17T09:00:38.761 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../027-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-09-17T09:00:38.801 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-09-17T09:00:38.804 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package ceph-base. 2024-09-17T09:00:38.830 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../024-ceph-base_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:38.880 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking ceph-base (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:38.935 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-jaraco.text. 2024-09-17T09:00:38.962 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../028-python3-jaraco.text_3.6.0-2_all.deb ... 2024-09-17T09:00:39.002 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-09-17T09:00:39.104 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-jaraco.text. 2024-09-17T09:00:39.130 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../028-python3-jaraco.text_3.6.0-2_all.deb ... 2024-09-17T09:00:39.171 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-09-17T09:00:39.288 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-09-17T09:00:39.314 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../029-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-09-17T09:00:39.354 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-09-17T09:00:39.457 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-09-17T09:00:39.483 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../029-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-09-17T09:00:39.491 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-09-17T09:00:39.515 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-09-17T09:00:39.518 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../025-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-09-17T09:00:39.558 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-09-17T09:00:39.615 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-tempora. 2024-09-17T09:00:39.654 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../030-python3-tempora_4.1.2-1_all.deb ... 2024-09-17T09:00:39.665 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-09-17T09:00:39.793 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-tempora. 2024-09-17T09:00:39.819 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../030-python3-tempora_4.1.2-1_all.deb ... 2024-09-17T09:00:39.869 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-cheroot. 2024-09-17T09:00:39.896 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../026-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-09-17T09:00:39.936 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-17T09:00:39.943 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-portend. 2024-09-17T09:00:39.970 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../031-python3-portend_3.0.0-1_all.deb ... 2024-09-17T09:00:40.009 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-09-17T09:00:40.060 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-09-17T09:00:40.264 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-09-17T09:00:40.290 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../027-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-09-17T09:00:40.330 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-09-17T09:00:40.363 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-portend. 2024-09-17T09:00:40.389 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../031-python3-portend_3.0.0-1_all.deb ... 2024-09-17T09:00:40.429 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-09-17T09:00:40.512 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-09-17T09:00:40.539 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../032-python3-zc.lockfile_2.0-1_all.deb ... 2024-09-17T09:00:40.579 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-09-17T09:00:40.599 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-jaraco.text. 2024-09-17T09:00:40.615 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../028-python3-jaraco.text_3.6.0-2_all.deb ... 2024-09-17T09:00:40.649 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-09-17T09:00:40.724 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-09-17T09:00:40.750 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../032-python3-zc.lockfile_2.0-1_all.deb ... 2024-09-17T09:00:40.791 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-09-17T09:00:40.881 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-cherrypy3. 2024-09-17T09:00:40.908 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../033-python3-cherrypy3_18.6.1-4_all.deb ... 2024-09-17T09:00:40.944 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-09-17T09:00:40.948 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-09-17T09:00:40.971 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../029-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-09-17T09:00:41.011 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-09-17T09:00:41.094 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-cherrypy3. 2024-09-17T09:00:41.120 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../033-python3-cherrypy3_18.6.1-4_all.deb ... 2024-09-17T09:00:41.160 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-09-17T09:00:41.268 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-natsort. 2024-09-17T09:00:41.272 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-tempora. 2024-09-17T09:00:41.287 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../030-python3-tempora_4.1.2-1_all.deb ... 2024-09-17T09:00:41.295 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../034-python3-natsort_8.0.2-1_all.deb ... 2024-09-17T09:00:41.322 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-09-17T09:00:41.326 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-09-17T09:00:41.506 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-natsort. 2024-09-17T09:00:41.532 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../034-python3-natsort_8.0.2-1_all.deb ... 2024-09-17T09:00:41.572 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-09-17T09:00:41.608 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-portend. 2024-09-17T09:00:41.634 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../031-python3-portend_3.0.0-1_all.deb ... 2024-09-17T09:00:41.637 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-logutils. 2024-09-17T09:00:41.664 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../035-python3-logutils_0.3.3-8_all.deb ... 2024-09-17T09:00:41.674 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-09-17T09:00:41.704 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-09-17T09:00:41.892 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-logutils. 2024-09-17T09:00:41.918 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../035-python3-logutils_0.3.3-8_all.deb ... 2024-09-17T09:00:41.959 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-09-17T09:00:41.977 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-09-17T09:00:42.003 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../032-python3-zc.lockfile_2.0-1_all.deb ... 2024-09-17T09:00:42.006 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-markupsafe. 2024-09-17T09:00:42.033 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../036-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-09-17T09:00:42.044 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-09-17T09:00:42.073 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-09-17T09:00:42.262 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-markupsafe. 2024-09-17T09:00:42.288 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../036-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-09-17T09:00:42.328 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-09-17T09:00:42.355 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-cherrypy3. 2024-09-17T09:00:42.375 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-mako. 2024-09-17T09:00:42.381 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../033-python3-cherrypy3_18.6.1-4_all.deb ... 2024-09-17T09:00:42.402 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../037-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-09-17T09:00:42.421 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-09-17T09:00:42.442 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-17T09:00:42.581 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-mako. 2024-09-17T09:00:42.607 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../037-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-09-17T09:00:42.639 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-17T09:00:42.767 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-natsort. 2024-09-17T09:00:42.793 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../034-python3-natsort_8.0.2-1_all.deb ... 2024-09-17T09:00:42.795 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-simplegeneric. 2024-09-17T09:00:42.822 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../038-python3-simplegeneric_0.8.1-3_all.deb ... 2024-09-17T09:00:42.833 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-09-17T09:00:42.862 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-09-17T09:00:42.960 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-simplegeneric. 2024-09-17T09:00:42.986 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../038-python3-simplegeneric_0.8.1-3_all.deb ... 2024-09-17T09:00:43.026 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-09-17T09:00:43.128 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-logutils. 2024-09-17T09:00:43.139 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-singledispatch. 2024-09-17T09:00:43.155 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../035-python3-logutils_0.3.3-8_all.deb ... 2024-09-17T09:00:43.155 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../039-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-09-17T09:00:43.189 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-09-17T09:00:43.194 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-09-17T09:00:43.287 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-singledispatch. 2024-09-17T09:00:43.314 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../039-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-09-17T09:00:43.346 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-09-17T09:00:43.475 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-webob. 2024-09-17T09:00:43.497 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-markupsafe. 2024-09-17T09:00:43.502 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../040-python3-webob_1%3a1.8.6-1.1ubuntu0.1_all.deb ... 2024-09-17T09:00:43.524 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../036-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-09-17T09:00:43.541 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-17T09:00:43.564 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-09-17T09:00:43.624 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-webob. 2024-09-17T09:00:43.650 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../040-python3-webob_1%3a1.8.6-1.1ubuntu0.1_all.deb ... 2024-09-17T09:00:43.723 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-17T09:00:43.808 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-mako. 2024-09-17T09:00:43.835 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../037-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-09-17T09:00:43.866 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-17T09:00:43.878 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-waitress. 2024-09-17T09:00:43.905 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../041-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-09-17T09:00:43.948 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-17T09:00:44.077 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-waitress. 2024-09-17T09:00:44.103 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../041-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-09-17T09:00:44.146 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-17T09:00:44.153 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-simplegeneric. 2024-09-17T09:00:44.180 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../038-python3-simplegeneric_0.8.1-3_all.deb ... 2024-09-17T09:00:44.219 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-09-17T09:00:44.255 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-tempita. 2024-09-17T09:00:44.282 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../042-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-09-17T09:00:44.322 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-09-17T09:00:44.455 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-tempita. 2024-09-17T09:00:44.481 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../042-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-09-17T09:00:44.521 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-09-17T09:00:44.522 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-singledispatch. 2024-09-17T09:00:44.549 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../039-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-09-17T09:00:44.589 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-09-17T09:00:44.650 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-paste. 2024-09-17T09:00:44.676 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../043-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-09-17T09:00:44.716 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-09-17T09:00:44.833 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-paste. 2024-09-17T09:00:44.859 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../043-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-09-17T09:00:44.891 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-webob. 2024-09-17T09:00:44.899 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-09-17T09:00:44.918 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../040-python3-webob_1%3a1.8.6-1.1ubuntu0.1_all.deb ... 2024-09-17T09:00:44.958 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-17T09:00:45.036 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-09-17T09:00:45.051 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../044-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-09-17T09:00:45.094 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-09-17T09:00:45.236 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-09-17T09:00:45.262 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../044-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-09-17T09:00:45.302 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-09-17T09:00:45.347 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-pastedeploy. 2024-09-17T09:00:45.373 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../045-python3-pastedeploy_2.1.1-1_all.deb ... 2024-09-17T09:00:45.413 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-09-17T09:00:45.461 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-waitress. 2024-09-17T09:00:45.488 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../041-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-09-17T09:00:45.531 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-17T09:00:45.605 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-pastedeploy. 2024-09-17T09:00:45.632 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../045-python3-pastedeploy_2.1.1-1_all.deb ... 2024-09-17T09:00:45.672 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-09-17T09:00:45.674 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-webtest. 2024-09-17T09:00:45.700 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../046-python3-webtest_2.0.35-1_all.deb ... 2024-09-17T09:00:45.741 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-09-17T09:00:45.822 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-tempita. 2024-09-17T09:00:45.849 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../042-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-09-17T09:00:45.881 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-09-17T09:00:45.950 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-webtest. 2024-09-17T09:00:45.977 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../046-python3-webtest_2.0.35-1_all.deb ... 2024-09-17T09:00:46.008 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-09-17T09:00:46.052 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-pecan. 2024-09-17T09:00:46.079 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../047-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-09-17T09:00:46.118 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-09-17T09:00:46.158 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-paste. 2024-09-17T09:00:46.185 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../043-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-09-17T09:00:46.225 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-09-17T09:00:46.312 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-pecan. 2024-09-17T09:00:46.337 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../047-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-09-17T09:00:46.378 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-09-17T09:00:46.489 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-certifi. 2024-09-17T09:00:46.516 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../048-python3-certifi_2020.6.20-1_all.deb ... 2024-09-17T09:00:46.556 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-09-17T09:00:46.561 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-09-17T09:00:46.577 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../044-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-09-17T09:00:46.611 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-09-17T09:00:46.750 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-certifi. 2024-09-17T09:00:46.776 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../048-python3-certifi_2020.6.20-1_all.deb ... 2024-09-17T09:00:46.816 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-09-17T09:00:46.875 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-idna. 2024-09-17T09:00:46.889 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-pastedeploy. 2024-09-17T09:00:46.902 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../049-python3-idna_3.3-1ubuntu0.1_all.deb ... 2024-09-17T09:00:46.916 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../045-python3-pastedeploy_2.1.1-1_all.deb ... 2024-09-17T09:00:46.941 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-idna (3.3-1ubuntu0.1) ... 2024-09-17T09:00:46.955 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-09-17T09:00:47.136 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-idna. 2024-09-17T09:00:47.162 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../049-python3-idna_3.3-1ubuntu0.1_all.deb ... 2024-09-17T09:00:47.202 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-idna (3.3-1ubuntu0.1) ... 2024-09-17T09:00:47.258 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-webtest. 2024-09-17T09:00:47.261 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-urllib3. 2024-09-17T09:00:47.285 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../046-python3-webtest_2.0.35-1_all.deb ... 2024-09-17T09:00:47.288 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../050-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-09-17T09:00:47.325 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-09-17T09:00:47.327 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-17T09:00:47.497 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-urllib3. 2024-09-17T09:00:47.523 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../050-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-09-17T09:00:47.555 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-17T09:00:47.619 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-pecan. 2024-09-17T09:00:47.639 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-requests. 2024-09-17T09:00:47.646 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../047-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-09-17T09:00:47.665 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../051-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-09-17T09:00:47.695 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-09-17T09:00:47.705 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-17T09:00:47.850 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-requests. 2024-09-17T09:00:47.866 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../051-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-09-17T09:00:47.901 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-17T09:00:48.000 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-werkzeug. 2024-09-17T09:00:48.026 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../052-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.2_all.deb ... 2024-09-17T09:00:48.066 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-certifi. 2024-09-17T09:00:48.067 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-17T09:00:48.093 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../048-python3-certifi_2020.6.20-1_all.deb ... 2024-09-17T09:00:48.132 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-09-17T09:00:48.162 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-werkzeug. 2024-09-17T09:00:48.188 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../052-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.2_all.deb ... 2024-09-17T09:00:48.228 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-17T09:00:48.369 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-09-17T09:00:48.385 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../053-ceph-mgr-modules-core_18.2.4-855-g19e2a2be-1jammy_all.deb ... 2024-09-17T09:00:48.419 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking ceph-mgr-modules-core (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:48.443 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-idna. 2024-09-17T09:00:48.470 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../049-python3-idna_3.3-1ubuntu0.1_all.deb ... 2024-09-17T09:00:48.510 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-idna (3.3-1ubuntu0.1) ... 2024-09-17T09:00:48.515 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-09-17T09:00:48.530 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../053-ceph-mgr-modules-core_18.2.4-855-g19e2a2be-1jammy_all.deb ... 2024-09-17T09:00:48.565 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking ceph-mgr-modules-core (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:48.796 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-urllib3. 2024-09-17T09:00:48.807 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-09-17T09:00:48.823 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../050-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-09-17T09:00:48.834 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../054-libsqlite3-mod-ceph_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:48.854 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-17T09:00:48.873 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking libsqlite3-mod-ceph (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:48.945 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-09-17T09:00:48.972 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../054-libsqlite3-mod-ceph_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:49.011 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking libsqlite3-mod-ceph (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:49.149 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-requests. 2024-09-17T09:00:49.176 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../051-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-09-17T09:00:49.192 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-bcrypt. 2024-09-17T09:00:49.207 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-17T09:00:49.219 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../055-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-09-17T09:00:49.259 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-09-17T09:00:49.323 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-bcrypt. 2024-09-17T09:00:49.349 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../055-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-09-17T09:00:49.389 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-09-17T09:00:49.502 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-werkzeug. 2024-09-17T09:00:49.520 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-openssl. 2024-09-17T09:00:49.529 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../052-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.2_all.deb ... 2024-09-17T09:00:49.547 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../056-python3-openssl_21.0.0-1_all.deb ... 2024-09-17T09:00:49.568 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-17T09:00:49.578 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-09-17T09:00:49.684 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-openssl. 2024-09-17T09:00:49.711 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../056-python3-openssl_21.0.0-1_all.deb ... 2024-09-17T09:00:49.750 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-09-17T09:00:49.830 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-09-17T09:00:49.857 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../053-ceph-mgr-modules-core_18.2.4-855-g19e2a2be-1jammy_all.deb ... 2024-09-17T09:00:49.888 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking ceph-mgr-modules-core (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:49.915 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package ceph-mgr. 2024-09-17T09:00:49.941 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../057-ceph-mgr_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:49.981 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking ceph-mgr (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:50.037 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package ceph-mgr. 2024-09-17T09:00:50.063 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../057-ceph-mgr_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:50.104 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking ceph-mgr (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:50.301 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-09-17T09:00:50.328 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../054-libsqlite3-mod-ceph_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:50.367 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking libsqlite3-mod-ceph (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:50.501 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package ceph-mon. 2024-09-17T09:00:50.527 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../058-ceph-mon_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:50.567 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking ceph-mon (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:50.615 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package ceph-mon. 2024-09-17T09:00:50.631 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../058-ceph-mon_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:50.637 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-bcrypt. 2024-09-17T09:00:50.664 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../055-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-09-17T09:00:50.665 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking ceph-mon (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:50.695 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-09-17T09:00:50.965 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-openssl. 2024-09-17T09:00:50.991 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../056-python3-openssl_21.0.0-1_all.deb ... 2024-09-17T09:00:51.031 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-09-17T09:00:51.376 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package ceph-mgr. 2024-09-17T09:00:51.403 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../057-ceph-mgr_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:51.442 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking ceph-mgr (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:51.838 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package ceph-mon. 2024-09-17T09:00:51.864 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../058-ceph-mon_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:51.904 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking ceph-mon (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:51.940 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package ceph-osd. 2024-09-17T09:00:51.967 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../059-ceph-osd_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:52.006 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking ceph-osd (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:52.222 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package ceph-osd. 2024-09-17T09:00:52.248 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../059-ceph-osd_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:52.288 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking ceph-osd (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:52.457 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package ceph-osd. 2024-09-17T09:00:52.484 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../059-ceph-osd_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:52.515 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking ceph-osd (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:53.068 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package ceph. 2024-09-17T09:00:53.095 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../060-ceph_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:53.134 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking ceph (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:53.291 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package ceph. 2024-09-17T09:00:53.307 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../060-ceph_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:53.341 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking ceph (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:53.462 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package ceph-fuse. 2024-09-17T09:00:53.489 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../061-ceph-fuse_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:53.528 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking ceph-fuse (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:53.669 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package ceph-fuse. 2024-09-17T09:00:53.696 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../061-ceph-fuse_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:53.736 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking ceph-fuse (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:53.873 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package ceph-mds. 2024-09-17T09:00:53.900 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../062-ceph-mds_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:53.940 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking ceph-mds (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:54.114 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package ceph-mds. 2024-09-17T09:00:54.119 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package ceph. 2024-09-17T09:00:54.141 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../062-ceph-mds_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:54.146 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../060-ceph_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:54.180 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking ceph-mds (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:54.185 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking ceph (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:54.317 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package cephadm. 2024-09-17T09:00:54.344 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../063-cephadm_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:54.384 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking cephadm (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:54.488 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package ceph-fuse. 2024-09-17T09:00:54.515 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../061-ceph-fuse_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:54.534 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package cephadm. 2024-09-17T09:00:54.549 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../063-cephadm_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:54.555 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking ceph-fuse (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:54.583 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking cephadm (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:54.687 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-asyncssh. 2024-09-17T09:00:54.714 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../064-python3-asyncssh_2.5.0-1_all.deb ... 2024-09-17T09:00:54.753 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-09-17T09:00:54.886 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-asyncssh. 2024-09-17T09:00:54.891 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package ceph-mds. 2024-09-17T09:00:54.913 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../064-python3-asyncssh_2.5.0-1_all.deb ... 2024-09-17T09:00:54.918 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../062-ceph-mds_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:54.949 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking ceph-mds (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:54.953 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-09-17T09:00:55.064 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python-babel-localedata. 2024-09-17T09:00:55.080 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../065-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-09-17T09:00:55.122 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-17T09:00:55.281 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python-babel-localedata. 2024-09-17T09:00:55.308 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../065-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-09-17T09:00:55.328 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package cephadm. 2024-09-17T09:00:55.348 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-17T09:00:55.357 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../063-cephadm_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:00:55.552 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking cephadm (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:55.889 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-asyncssh. 2024-09-17T09:00:55.916 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../064-python3-asyncssh_2.5.0-1_all.deb ... 2024-09-17T09:00:55.955 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-09-17T09:00:56.044 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-babel. 2024-09-17T09:00:56.071 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../066-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-09-17T09:00:56.110 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-09-17T09:00:56.275 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python-babel-localedata. 2024-09-17T09:00:56.301 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../065-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-09-17T09:00:56.341 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-17T09:00:56.345 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-babel. 2024-09-17T09:00:56.372 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../066-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-09-17T09:00:56.403 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-09-17T09:00:56.422 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-jinja2. 2024-09-17T09:00:56.449 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../067-python3-jinja2_3.0.3-1ubuntu0.2_all.deb ... 2024-09-17T09:00:56.488 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-17T09:00:56.673 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-jinja2. 2024-09-17T09:00:56.688 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../067-python3-jinja2_3.0.3-1ubuntu0.2_all.deb ... 2024-09-17T09:00:56.731 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-17T09:00:56.875 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-09-17T09:00:56.902 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../068-ceph-mgr-cephadm_18.2.4-855-g19e2a2be-1jammy_all.deb ... 2024-09-17T09:00:56.941 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking ceph-mgr-cephadm (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:57.043 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-09-17T09:00:57.070 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../068-ceph-mgr-cephadm_18.2.4-855-g19e2a2be-1jammy_all.deb ... 2024-09-17T09:00:57.109 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking ceph-mgr-cephadm (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:57.269 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-pluggy. 2024-09-17T09:00:57.296 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../069-python3-pluggy_0.13.0-7.1_all.deb ... 2024-09-17T09:00:57.335 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-09-17T09:00:57.355 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-babel. 2024-09-17T09:00:57.382 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../066-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-09-17T09:00:57.421 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-09-17T09:00:57.429 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-pluggy. 2024-09-17T09:00:57.445 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../069-python3-pluggy_0.13.0-7.1_all.deb ... 2024-09-17T09:00:57.487 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-09-17T09:00:57.647 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-py. 2024-09-17T09:00:57.674 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../070-python3-py_1.10.0-1_all.deb ... 2024-09-17T09:00:57.713 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-py (1.10.0-1) ... 2024-09-17T09:00:57.749 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-jinja2. 2024-09-17T09:00:57.776 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../067-python3-jinja2_3.0.3-1ubuntu0.2_all.deb ... 2024-09-17T09:00:57.791 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-py. 2024-09-17T09:00:57.815 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-17T09:00:57.818 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../070-python3-py_1.10.0-1_all.deb ... 2024-09-17T09:00:57.857 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-py (1.10.0-1) ... 2024-09-17T09:00:58.042 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-iniconfig. 2024-09-17T09:00:58.069 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../071-python3-iniconfig_1.1.1-2_all.deb ... 2024-09-17T09:00:58.108 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-09-17T09:00:58.169 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-09-17T09:00:58.195 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-iniconfig. 2024-09-17T09:00:58.195 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../068-ceph-mgr-cephadm_18.2.4-855-g19e2a2be-1jammy_all.deb ... 2024-09-17T09:00:58.221 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../071-python3-iniconfig_1.1.1-2_all.deb ... 2024-09-17T09:00:58.235 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking ceph-mgr-cephadm (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:00:58.261 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-09-17T09:00:58.386 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-toml. 2024-09-17T09:00:58.413 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../072-python3-toml_0.10.2-1_all.deb ... 2024-09-17T09:00:58.452 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-09-17T09:00:58.564 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-toml. 2024-09-17T09:00:58.581 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-pluggy. 2024-09-17T09:00:58.590 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../072-python3-toml_0.10.2-1_all.deb ... 2024-09-17T09:00:58.607 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../069-python3-pluggy_0.13.0-7.1_all.deb ... 2024-09-17T09:00:58.630 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-09-17T09:00:58.647 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-09-17T09:00:58.705 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-pytest. 2024-09-17T09:00:58.732 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../073-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-09-17T09:00:58.772 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-09-17T09:00:58.900 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-pytest. 2024-09-17T09:00:58.927 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../073-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-09-17T09:00:58.958 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-09-17T09:00:59.000 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-py. 2024-09-17T09:00:59.027 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../070-python3-py_1.10.0-1_all.deb ... 2024-09-17T09:00:59.066 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-py (1.10.0-1) ... 2024-09-17T09:00:59.100 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-repoze.lru. 2024-09-17T09:00:59.127 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../074-python3-repoze.lru_0.7-2_all.deb ... 2024-09-17T09:00:59.166 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-09-17T09:00:59.346 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-repoze.lru. 2024-09-17T09:00:59.372 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../074-python3-repoze.lru_0.7-2_all.deb ... 2024-09-17T09:00:59.387 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-iniconfig. 2024-09-17T09:00:59.412 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-09-17T09:00:59.414 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../071-python3-iniconfig_1.1.1-2_all.deb ... 2024-09-17T09:00:59.428 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-routes. 2024-09-17T09:00:59.443 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../075-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-09-17T09:00:59.445 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-09-17T09:00:59.477 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-09-17T09:00:59.673 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-routes. 2024-09-17T09:00:59.700 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../075-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-09-17T09:00:59.714 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-toml. 2024-09-17T09:00:59.731 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-09-17T09:00:59.741 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../072-python3-toml_0.10.2-1_all.deb ... 2024-09-17T09:00:59.781 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-09-17T09:00:59.839 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-09-17T09:00:59.866 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../076-ceph-mgr-dashboard_18.2.4-855-g19e2a2be-1jammy_all.deb ... 2024-09-17T09:00:59.905 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking ceph-mgr-dashboard (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:00.052 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-09-17T09:01:00.078 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../076-ceph-mgr-dashboard_18.2.4-855-g19e2a2be-1jammy_all.deb ... 2024-09-17T09:01:00.084 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-pytest. 2024-09-17T09:01:00.110 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../073-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-09-17T09:01:00.118 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking ceph-mgr-dashboard (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:00.151 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-09-17T09:01:00.481 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-repoze.lru. 2024-09-17T09:01:00.508 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../074-python3-repoze.lru_0.7-2_all.deb ... 2024-09-17T09:01:00.547 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-09-17T09:01:00.850 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-routes. 2024-09-17T09:01:00.877 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../075-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-09-17T09:01:00.917 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-09-17T09:01:01.237 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-09-17T09:01:01.264 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../076-ceph-mgr-dashboard_18.2.4-855-g19e2a2be-1jammy_all.deb ... 2024-09-17T09:01:01.303 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking ceph-mgr-dashboard (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:01.344 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-09-17T09:01:01.373 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../077-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-09-17T09:01:01.410 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-17T09:01:01.532 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-09-17T09:01:01.547 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../077-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-09-17T09:01:01.590 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-17T09:01:01.889 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-joblib. 2024-09-17T09:01:01.915 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../078-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-09-17T09:01:01.955 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-09-17T09:01:02.102 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-joblib. 2024-09-17T09:01:02.129 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../078-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-09-17T09:01:02.169 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-09-17T09:01:02.325 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-09-17T09:01:02.352 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../079-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-09-17T09:01:02.391 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-09-17T09:01:02.526 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-09-17T09:01:02.541 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../077-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-09-17T09:01:02.548 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-09-17T09:01:02.575 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../079-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-09-17T09:01:02.575 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-17T09:01:02.614 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-09-17T09:01:02.669 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-sklearn. 2024-09-17T09:01:02.696 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../080-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-09-17T09:01:02.735 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-17T09:01:02.892 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-sklearn. 2024-09-17T09:01:02.919 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../080-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-09-17T09:01:02.958 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-17T09:01:03.071 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-joblib. 2024-09-17T09:01:03.098 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../078-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-09-17T09:01:03.137 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-09-17T09:01:03.369 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-09-17T09:01:03.396 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../081-ceph-mgr-diskprediction-local_18.2.4-855-g19e2a2be-1jammy_all.deb ... 2024-09-17T09:01:03.435 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking ceph-mgr-diskprediction-local (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:03.500 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-09-17T09:01:03.526 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../079-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-09-17T09:01:03.566 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-09-17T09:01:03.626 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-09-17T09:01:03.654 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../081-ceph-mgr-diskprediction-local_18.2.4-855-g19e2a2be-1jammy_all.deb ... 2024-09-17T09:01:03.692 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking ceph-mgr-diskprediction-local (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:03.869 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-sklearn. 2024-09-17T09:01:03.896 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../080-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-09-17T09:01:03.935 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-17T09:01:04.413 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-cachetools. 2024-09-17T09:01:04.441 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../082-python3-cachetools_5.0.0-1_all.deb ... 2024-09-17T09:01:04.479 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-09-17T09:01:04.645 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-09-17T09:01:04.654 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-cachetools. 2024-09-17T09:01:04.672 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../081-ceph-mgr-diskprediction-local_18.2.4-855-g19e2a2be-1jammy_all.deb ... 2024-09-17T09:01:04.681 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../082-python3-cachetools_5.0.0-1_all.deb ... 2024-09-17T09:01:04.702 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking ceph-mgr-diskprediction-local (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:04.720 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-09-17T09:01:04.867 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-pyasn1. 2024-09-17T09:01:04.894 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../083-python3-pyasn1_0.4.8-1_all.deb ... 2024-09-17T09:01:04.950 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-09-17T09:01:05.083 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-pyasn1. 2024-09-17T09:01:05.110 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../083-python3-pyasn1_0.4.8-1_all.deb ... 2024-09-17T09:01:05.149 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-09-17T09:01:05.262 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-09-17T09:01:05.290 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../084-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-09-17T09:01:05.329 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-09-17T09:01:05.465 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-09-17T09:01:05.478 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../084-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-09-17T09:01:05.512 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-09-17T09:01:05.648 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-rsa. 2024-09-17T09:01:05.676 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../085-python3-rsa_4.8-1_all.deb ... 2024-09-17T09:01:05.714 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-rsa (4.8-1) ... 2024-09-17T09:01:05.798 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-rsa. 2024-09-17T09:01:05.825 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../085-python3-rsa_4.8-1_all.deb ... 2024-09-17T09:01:05.864 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-rsa (4.8-1) ... 2024-09-17T09:01:05.872 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-cachetools. 2024-09-17T09:01:05.899 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../082-python3-cachetools_5.0.0-1_all.deb ... 2024-09-17T09:01:05.939 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-09-17T09:01:06.026 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-google-auth. 2024-09-17T09:01:06.054 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../086-python3-google-auth_1.5.1-3_all.deb ... 2024-09-17T09:01:06.092 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-09-17T09:01:06.185 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-google-auth. 2024-09-17T09:01:06.213 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../086-python3-google-auth_1.5.1-3_all.deb ... 2024-09-17T09:01:06.260 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-09-17T09:01:06.285 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-pyasn1. 2024-09-17T09:01:06.312 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../083-python3-pyasn1_0.4.8-1_all.deb ... 2024-09-17T09:01:06.343 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-09-17T09:01:06.421 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-09-17T09:01:06.436 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../087-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-09-17T09:01:06.471 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-17T09:01:06.547 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-09-17T09:01:06.574 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../087-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-09-17T09:01:06.613 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-17T09:01:06.638 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-09-17T09:01:06.666 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../084-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-09-17T09:01:06.705 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-09-17T09:01:06.748 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-websocket. 2024-09-17T09:01:06.776 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../088-python3-websocket_1.2.3-1_all.deb ... 2024-09-17T09:01:06.815 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-09-17T09:01:06.941 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-websocket. 2024-09-17T09:01:06.968 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../088-python3-websocket_1.2.3-1_all.deb ... 2024-09-17T09:01:07.008 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-09-17T09:01:07.016 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-rsa. 2024-09-17T09:01:07.044 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../085-python3-rsa_4.8-1_all.deb ... 2024-09-17T09:01:07.083 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-rsa (4.8-1) ... 2024-09-17T09:01:07.126 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-kubernetes. 2024-09-17T09:01:07.153 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../089-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-09-17T09:01:07.193 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-17T09:01:07.303 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-kubernetes. 2024-09-17T09:01:07.330 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../089-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-09-17T09:01:07.369 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-17T09:01:07.412 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-google-auth. 2024-09-17T09:01:07.439 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../086-python3-google-auth_1.5.1-3_all.deb ... 2024-09-17T09:01:07.478 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-09-17T09:01:07.798 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-09-17T09:01:07.826 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../087-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-09-17T09:01:07.831 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-09-17T09:01:07.860 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../090-ceph-mgr-k8sevents_18.2.4-855-g19e2a2be-1jammy_all.deb ... 2024-09-17T09:01:07.865 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-17T09:01:07.889 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking ceph-mgr-k8sevents (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:08.058 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-09-17T09:01:08.075 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../090-ceph-mgr-k8sevents_18.2.4-855-g19e2a2be-1jammy_all.deb ... 2024-09-17T09:01:08.117 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking ceph-mgr-k8sevents (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:08.167 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package libonig5:amd64. 2024-09-17T09:01:08.176 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-websocket. 2024-09-17T09:01:08.195 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../091-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-09-17T09:01:08.203 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../088-python3-websocket_1.2.3-1_all.deb ... 2024-09-17T09:01:08.233 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-17T09:01:08.243 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-09-17T09:01:08.411 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package libonig5:amd64. 2024-09-17T09:01:08.438 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../091-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-09-17T09:01:08.478 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-17T09:01:08.554 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-kubernetes. 2024-09-17T09:01:08.570 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package libjq1:amd64. 2024-09-17T09:01:08.581 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../089-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-09-17T09:01:08.597 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../092-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-09-17T09:01:08.621 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-17T09:01:08.636 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-17T09:01:08.789 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package libjq1:amd64. 2024-09-17T09:01:08.817 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../092-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-09-17T09:01:08.848 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-17T09:01:08.889 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package jq. 2024-09-17T09:01:08.916 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../093-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-09-17T09:01:08.947 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-09-17T09:01:09.100 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package jq. 2024-09-17T09:01:09.116 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../093-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-09-17T09:01:09.158 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-09-17T09:01:09.199 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package socat. 2024-09-17T09:01:09.215 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../094-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-09-17T09:01:09.257 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-09-17T09:01:09.293 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-09-17T09:01:09.321 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../090-ceph-mgr-k8sevents_18.2.4-855-g19e2a2be-1jammy_all.deb ... 2024-09-17T09:01:09.352 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking ceph-mgr-k8sevents (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:09.394 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package socat. 2024-09-17T09:01:09.410 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../094-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-09-17T09:01:09.452 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-09-17T09:01:09.586 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package xmlstarlet. 2024-09-17T09:01:09.613 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../095-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-09-17T09:01:09.652 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-09-17T09:01:09.654 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package libonig5:amd64. 2024-09-17T09:01:09.682 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../091-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-09-17T09:01:09.721 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-17T09:01:09.748 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package xmlstarlet. 2024-09-17T09:01:09.775 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../095-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-09-17T09:01:09.814 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-09-17T09:01:10.014 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package ceph-test. 2024-09-17T09:01:10.030 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../096-ceph-test_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:01:10.065 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking ceph-test (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:10.067 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package libjq1:amd64. 2024-09-17T09:01:10.093 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../092-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-09-17T09:01:10.132 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-17T09:01:10.152 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package ceph-test. 2024-09-17T09:01:10.168 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../096-ceph-test_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:01:10.210 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking ceph-test (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:10.402 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package jq. 2024-09-17T09:01:10.418 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../093-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-09-17T09:01:10.460 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-09-17T09:01:10.713 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package socat. 2024-09-17T09:01:10.740 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../094-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-09-17T09:01:10.779 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-09-17T09:01:11.074 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package xmlstarlet. 2024-09-17T09:01:11.091 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../095-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-09-17T09:01:11.124 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-09-17T09:01:11.487 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package ceph-test. 2024-09-17T09:01:11.503 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../096-ceph-test_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:01:11.545 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking ceph-test (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:11.993 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package ceph-volume. 2024-09-17T09:01:12.020 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../097-ceph-volume_18.2.4-855-g19e2a2be-1jammy_all.deb ... 2024-09-17T09:01:12.059 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking ceph-volume (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:12.355 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package libcephfs-dev. 2024-09-17T09:01:12.371 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../098-libcephfs-dev_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:01:12.413 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking libcephfs-dev (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:12.448 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package ceph-volume. 2024-09-17T09:01:12.475 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../097-ceph-volume_18.2.4-855-g19e2a2be-1jammy_all.deb ... 2024-09-17T09:01:12.514 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking ceph-volume (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:12.783 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package nvme-cli. 2024-09-17T09:01:12.810 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../099-nvme-cli_1.16-3ubuntu0.3_amd64.deb ... 2024-09-17T09:01:12.849 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking nvme-cli (1.16-3ubuntu0.3) ... 2024-09-17T09:01:12.877 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package libcephfs-dev. 2024-09-17T09:01:12.904 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../098-libcephfs-dev_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:01:12.951 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking libcephfs-dev (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:13.220 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-09-17T09:01:13.245 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../100-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-09-17T09:01:13.287 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-09-17T09:01:13.338 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package nvme-cli. 2024-09-17T09:01:13.366 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../099-nvme-cli_1.16-3ubuntu0.3_amd64.deb ... 2024-09-17T09:01:13.404 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking nvme-cli (1.16-3ubuntu0.3) ... 2024-09-17T09:01:13.416 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package ceph-volume. 2024-09-17T09:01:13.443 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../097-ceph-volume_18.2.4-855-g19e2a2be-1jammy_all.deb ... 2024-09-17T09:01:13.482 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking ceph-volume (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:13.740 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-pastescript. 2024-09-17T09:01:13.743 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-09-17T09:01:13.759 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../100-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-09-17T09:01:13.768 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../101-python3-pastescript_2.0.2-4_all.deb ... 2024-09-17T09:01:13.786 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package libcephfs-dev. 2024-09-17T09:01:13.801 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-09-17T09:01:13.802 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../098-libcephfs-dev_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:01:13.806 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-09-17T09:01:13.844 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking libcephfs-dev (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:14.093 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-psutil. 2024-09-17T09:01:14.121 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../102-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-09-17T09:01:14.151 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-09-17T09:01:14.231 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package nvme-cli. 2024-09-17T09:01:14.238 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-pastescript. 2024-09-17T09:01:14.258 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../099-nvme-cli_1.16-3ubuntu0.3_amd64.deb ... 2024-09-17T09:01:14.265 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../101-python3-pastescript_2.0.2-4_all.deb ... 2024-09-17T09:01:14.298 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking nvme-cli (1.16-3ubuntu0.3) ... 2024-09-17T09:01:14.304 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-09-17T09:01:14.487 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-pygments. 2024-09-17T09:01:14.515 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../103-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-09-17T09:01:14.554 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-09-17T09:01:14.636 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-09-17T09:01:14.650 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-psutil. 2024-09-17T09:01:14.652 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../100-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-09-17T09:01:14.677 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../102-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-09-17T09:01:14.694 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-09-17T09:01:14.716 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-09-17T09:01:15.044 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-pygments. 2024-09-17T09:01:15.049 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-pyinotify. 2024-09-17T09:01:15.071 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../103-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-09-17T09:01:15.077 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../104-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-09-17T09:01:15.111 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-09-17T09:01:15.115 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-09-17T09:01:15.131 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-pastescript. 2024-09-17T09:01:15.158 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../101-python3-pastescript_2.0.2-4_all.deb ... 2024-09-17T09:01:15.197 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-09-17T09:01:15.418 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package python3-simplejson. 2024-09-17T09:01:15.446 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../105-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-09-17T09:01:15.484 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-09-17T09:01:15.509 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-psutil. 2024-09-17T09:01:15.537 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../102-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-09-17T09:01:15.565 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-pyinotify. 2024-09-17T09:01:15.592 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-09-17T09:01:15.593 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../104-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-09-17T09:01:15.623 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-09-17T09:01:15.754 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-09-17T09:01:15.782 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../106-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-09-17T09:01:15.820 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-09-17T09:01:15.909 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package python3-simplejson. 2024-09-17T09:01:15.936 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../105-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-09-17T09:01:15.945 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-pygments. 2024-09-17T09:01:15.973 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../103-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-09-17T09:01:15.975 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-09-17T09:01:16.012 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-09-17T09:01:16.220 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-09-17T09:01:16.236 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../106-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-09-17T09:01:16.278 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-09-17T09:01:16.499 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-pyinotify. 2024-09-17T09:01:16.527 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../104-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-09-17T09:01:16.549 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package radosgw. 2024-09-17T09:01:16.566 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-09-17T09:01:16.577 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../107-radosgw_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:01:16.615 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking radosgw (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:16.844 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package python3-simplejson. 2024-09-17T09:01:16.871 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../105-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-09-17T09:01:16.902 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-09-17T09:01:17.033 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package radosgw. 2024-09-17T09:01:17.060 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../107-radosgw_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:01:17.099 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking radosgw (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:17.137 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-09-17T09:01:17.153 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../106-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-09-17T09:01:17.187 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-09-17T09:01:17.360 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package rbd-fuse. 2024-09-17T09:01:17.376 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../108-rbd-fuse_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:01:17.418 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking rbd-fuse (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:17.680 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-09-17T09:01:17.844 INFO:teuthology.orchestra.run.smithi098.stdout:Selecting previously unselected package rbd-fuse. 2024-09-17T09:01:17.872 INFO:teuthology.orchestra.run.smithi098.stdout:Preparing to unpack .../108-rbd-fuse_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:01:17.875 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package radosgw. 2024-09-17T09:01:17.903 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../107-radosgw_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:01:17.910 INFO:teuthology.orchestra.run.smithi098.stdout:Unpacking rbd-fuse (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:17.933 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking radosgw (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:17.939 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-17T09:01:18.057 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up nvme-cli (1.16-3ubuntu0.3) ... 2024-09-17T09:01:18.206 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-09-17T09:01:18.290 INFO:teuthology.orchestra.run.smithi165.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-09-17T09:01:18.523 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-17T09:01:18.599 INFO:teuthology.orchestra.run.smithi165.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-09-17T09:01:18.619 INFO:teuthology.orchestra.run.smithi134.stdout:Selecting previously unselected package rbd-fuse. 2024-09-17T09:01:18.633 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up nvme-cli (1.16-3ubuntu0.3) ... 2024-09-17T09:01:18.635 INFO:teuthology.orchestra.run.smithi134.stdout:Preparing to unpack .../108-rbd-fuse_18.2.4-855-g19e2a2be-1jammy_amd64.deb ... 2024-09-17T09:01:18.677 INFO:teuthology.orchestra.run.smithi134.stdout:Unpacking rbd-fuse (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:18.895 INFO:teuthology.orchestra.run.smithi098.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-09-17T09:01:18.998 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-09-17T09:01:19.049 INFO:teuthology.orchestra.run.smithi165.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-09-17T09:01:19.125 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up cephadm (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:19.217 INFO:teuthology.orchestra.run.smithi098.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-09-17T09:01:19.266 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-17T09:01:19.392 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up nvme-cli (1.16-3ubuntu0.3) ... 2024-09-17T09:01:19.633 INFO:teuthology.orchestra.run.smithi165.stdout:Adding system user cephadm....done 2024-09-17T09:01:19.638 INFO:teuthology.orchestra.run.smithi098.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-09-17T09:01:19.653 INFO:teuthology.orchestra.run.smithi134.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-09-17T09:01:19.726 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up cephadm (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:19.789 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-17T09:01:19.978 INFO:teuthology.orchestra.run.smithi134.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-09-17T09:01:20.057 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-09-17T09:01:20.201 INFO:teuthology.orchestra.run.smithi098.stdout:Adding system user cephadm....done 2024-09-17T09:01:20.300 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-09-17T09:01:20.332 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-17T09:01:20.401 INFO:teuthology.orchestra.run.smithi134.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-09-17T09:01:20.417 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-09-17T09:01:20.477 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up cephadm (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:20.626 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-09-17T09:01:20.660 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-09-17T09:01:20.877 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-09-17T09:01:20.920 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-09-17T09:01:20.985 INFO:teuthology.orchestra.run.smithi134.stdout:Adding system user cephadm....done 2024-09-17T09:01:21.003 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-09-17T09:01:21.046 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-py (1.10.0-1) ... 2024-09-17T09:01:21.142 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-17T09:01:21.254 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-09-17T09:01:21.356 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-09-17T09:01:21.418 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-09-17T09:01:21.514 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-09-17T09:01:21.615 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-py (1.10.0-1) ... 2024-09-17T09:01:21.669 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-09-17T09:01:21.715 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-09-17T09:01:21.779 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-09-17T09:01:21.891 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-09-17T09:01:21.967 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-09-17T09:01:22.038 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-09-17T09:01:22.234 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-09-17T09:01:22.251 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-09-17T09:01:22.290 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-09-17T09:01:22.416 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-py (1.10.0-1) ... 2024-09-17T09:01:22.477 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-09-17T09:01:22.494 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-09-17T09:01:22.718 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-09-17T09:01:22.745 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-09-17T09:01:22.754 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-09-17T09:01:22.996 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-ceph-argparse (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:23.005 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-09-17T09:01:23.069 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-09-17T09:01:23.255 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-17T09:01:23.256 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-09-17T09:01:23.304 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-09-17T09:01:23.456 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-09-17T09:01:23.491 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-ceph-argparse (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:23.563 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-09-17T09:01:23.750 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-17T09:01:23.773 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-17T09:01:23.840 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-09-17T09:01:23.876 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-09-17T09:01:23.899 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-09-17T09:01:24.099 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-09-17T09:01:24.237 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-17T09:01:24.259 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-17T09:01:24.358 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-ceph-argparse (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:24.385 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-09-17T09:01:24.395 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-09-17T09:01:24.618 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-17T09:01:24.652 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-09-17T09:01:24.738 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-17T09:01:24.744 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-09-17T09:01:24.864 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-09-17T09:01:24.920 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-09-17T09:01:24.987 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-17T09:01:25.113 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-09-17T09:01:25.115 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-09-17T09:01:25.230 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-09-17T09:01:25.374 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-09-17T09:01:25.481 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-17T09:01:25.632 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-09-17T09:01:25.684 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-09-17T09:01:25.900 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-09-17T09:01:25.915 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-09-17T09:01:26.151 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-09-17T09:01:26.166 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-09-17T09:01:26.267 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-09-17T09:01:26.369 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-09-17T09:01:26.392 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-17T09:01:26.435 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-09-17T09:01:26.637 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-09-17T09:01:26.685 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-09-17T09:01:26.764 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-09-17T09:01:26.889 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-17T09:01:27.078 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-09-17T09:01:27.137 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-09-17T09:01:27.190 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-09-17T09:01:27.397 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-09-17T09:01:27.479 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-09-17T09:01:27.531 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-09-17T09:01:27.558 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-09-17T09:01:27.657 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-17T09:01:27.809 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-09-17T09:01:27.855 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-17T09:01:27.950 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-09-17T09:01:28.148 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-17T09:01:28.169 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-17T09:01:28.343 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-09-17T09:01:28.454 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-17T09:01:28.491 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-09-17T09:01:28.586 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-09-17T09:01:28.750 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-09-17T09:01:28.797 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-09-17T09:01:28.851 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-ceph-common (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:28.954 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-17T09:01:29.032 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-09-17T09:01:29.144 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-idna (3.3-1ubuntu0.1) ... 2024-09-17T09:01:29.157 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-ceph-common (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:29.247 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-17T09:01:29.462 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-17T09:01:29.467 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-idna (3.3-1ubuntu0.1) ... 2024-09-17T09:01:29.590 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-09-17T09:01:29.801 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-17T09:01:29.849 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-09-17T09:01:29.967 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-ceph-common (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:30.252 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-idna (3.3-1ubuntu0.1) ... 2024-09-17T09:01:30.569 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-17T09:01:30.700 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-17T09:01:30.835 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-toml (0.10.2-1) ... 2024-09-17T09:01:30.924 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-17T09:01:31.059 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-toml (0.10.2-1) ... 2024-09-17T09:01:31.102 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-17T09:01:31.229 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-09-17T09:01:31.326 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-17T09:01:31.354 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-17T09:01:31.452 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-09-17T09:01:31.578 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-17T09:01:31.647 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-09-17T09:01:31.759 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-17T09:01:31.868 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-toml (0.10.2-1) ... 2024-09-17T09:01:31.880 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-09-17T09:01:31.890 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-09-17T09:01:32.102 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-17T09:01:32.131 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-09-17T09:01:32.133 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-17T09:01:32.237 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-09-17T09:01:32.250 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up libfmt8:amd64 (8.1.1+ds1-2) ... 2024-09-17T09:01:32.359 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-09-17T09:01:32.363 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-17T09:01:32.365 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-17T09:01:32.491 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up libfmt8:amd64 (8.1.1+ds1-2) ... 2024-09-17T09:01:32.617 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-09-17T09:01:32.653 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-09-17T09:01:32.656 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-09-17T09:01:32.912 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-09-17T09:01:32.915 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-09-17T09:01:32.935 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-09-17T09:01:33.158 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-17T09:01:33.188 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-09-17T09:01:33.195 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-09-17T09:01:33.259 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up libfmt8:amd64 (8.1.1+ds1-2) ... 2024-09-17T09:01:33.360 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-09-17T09:01:33.438 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-09-17T09:01:33.438 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-09-17T09:01:33.653 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-09-17T09:01:33.681 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-09-17T09:01:33.689 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-09-17T09:01:33.912 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-09-17T09:01:33.931 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-09-17T09:01:33.932 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-17T09:01:34.050 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-09-17T09:01:34.172 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-09-17T09:01:34.174 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-17T09:01:34.300 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-09-17T09:01:34.326 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-17T09:01:34.432 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-09-17T09:01:34.461 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-17T09:01:34.576 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-17T09:01:34.691 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-09-17T09:01:34.702 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-17T09:01:34.753 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-17T09:01:34.951 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-17T09:01:35.004 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-17T09:01:35.046 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-09-17T09:01:35.051 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-09-17T09:01:35.305 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-09-17T09:01:35.311 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-17T09:01:35.313 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-09-17T09:01:35.420 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-17T09:01:35.556 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-09-17T09:01:35.708 INFO:teuthology.orchestra.run.smithi165.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-09-17T09:01:35.713 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-17T09:01:35.931 INFO:teuthology.orchestra.run.smithi098.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-09-17T09:01:35.958 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-17T09:01:36.023 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-09-17T09:01:36.084 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-09-17T09:01:36.168 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-17T09:01:36.282 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-09-17T09:01:36.293 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-09-17T09:01:36.469 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-09-17T09:01:36.720 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-09-17T09:01:36.730 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-portend (3.0.0-1) ... 2024-09-17T09:01:36.973 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-17T09:01:36.974 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-portend (3.0.0-1) ... 2024-09-17T09:01:37.076 INFO:teuthology.orchestra.run.smithi134.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-09-17T09:01:37.082 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-17T09:01:37.233 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-17T09:01:37.359 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-17T09:01:37.392 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-09-17T09:01:37.444 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-17T09:01:37.553 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-09-17T09:01:37.676 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-17T09:01:37.710 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-09-17T09:01:37.955 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-09-17T09:01:37.977 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-09-17T09:01:38.011 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-17T09:01:38.103 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-rsa (4.8-1) ... 2024-09-17T09:01:38.222 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-portend (3.0.0-1) ... 2024-09-17T09:01:38.304 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-09-17T09:01:38.363 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-09-17T09:01:38.429 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-rsa (4.8-1) ... 2024-09-17T09:01:38.482 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-17T09:01:38.622 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-17T09:01:38.625 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-17T09:01:38.714 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-09-17T09:01:38.899 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-09-17T09:01:38.925 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-09-17T09:01:38.990 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-17T09:01:39.210 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-17T09:01:39.250 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-09-17T09:01:39.275 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-09-17T09:01:39.470 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-09-17T09:01:39.568 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-09-17T09:01:39.579 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-rsa (4.8-1) ... 2024-09-17T09:01:39.634 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-09-17T09:01:39.856 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-09-17T09:01:39.903 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-17T09:01:39.936 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-09-17T09:01:40.038 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up librados2 (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:40.148 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-17T09:01:40.164 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up librgw2 (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:40.271 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-17T09:01:40.290 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up libsqlite3-mod-ceph (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:40.397 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up librados2 (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:40.416 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up libcephfs2 (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:40.424 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-09-17T09:01:40.515 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up librgw2 (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:40.542 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up libradosstriper1 (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:40.616 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up libsqlite3-mod-ceph (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:40.733 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up libcephfs2 (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:40.745 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-09-17T09:01:40.801 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-09-17T09:01:40.859 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up libradosstriper1 (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:41.047 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up librbd1 (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:41.068 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-09-17T09:01:41.072 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-09-17T09:01:41.178 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up ceph-mgr-modules-core (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:41.312 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up ceph-fuse (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:41.365 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up librbd1 (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:41.388 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-17T09:01:41.499 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up ceph-mgr-modules-core (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:41.513 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up librados2 (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:41.514 INFO:teuthology.orchestra.run.smithi165.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-17T09:01:41.515 INFO:teuthology.orchestra.run.smithi165.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-17T09:01:41.641 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up ceph-fuse (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:41.648 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up librgw2 (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:41.774 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up libsqlite3-mod-ceph (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:41.854 INFO:teuthology.orchestra.run.smithi098.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-17T09:01:41.854 INFO:teuthology.orchestra.run.smithi098.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-17T09:01:41.891 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up libcephfs2 (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:41.993 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up libradosstriper1 (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:41.993 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up libcephfs-dev (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:42.118 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-rados (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:42.212 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-09-17T09:01:42.245 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-17T09:01:42.418 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up libcephfs-dev (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:42.497 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up librbd1 (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:42.632 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up ceph-mgr-modules-core (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:42.758 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up ceph-fuse (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:42.835 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-rados (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:42.961 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-17T09:01:42.972 INFO:teuthology.orchestra.run.smithi134.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-17T09:01:42.972 INFO:teuthology.orchestra.run.smithi134.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-17T09:01:43.459 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up libcephfs-dev (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:43.491 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-rbd (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:43.560 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-rados (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:43.617 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up rbd-fuse (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:43.686 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-17T09:01:43.743 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-rgw (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:43.869 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up python3-cephfs (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:43.995 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up ceph-common (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:44.208 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-rbd (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:44.333 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up rbd-fuse (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:44.460 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-rgw (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:44.514 INFO:teuthology.orchestra.run.smithi165.stdout:Adding group ceph....done 2024-09-17T09:01:44.569 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up python3-cephfs (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:44.670 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up ceph-common (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:44.849 INFO:teuthology.orchestra.run.smithi165.stdout:Adding system user ceph....done 2024-09-17T09:01:44.891 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-rbd (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:45.001 INFO:teuthology.orchestra.run.smithi165.stdout:Setting system user ceph properties....done 2024-09-17T09:01:45.017 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up rbd-fuse (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:45.020 INFO:teuthology.orchestra.run.smithi165.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-09-17T09:01:45.135 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-rgw (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:45.154 INFO:teuthology.orchestra.run.smithi165.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-09-17T09:01:45.221 INFO:teuthology.orchestra.run.smithi098.stdout:Adding group ceph....done 2024-09-17T09:01:45.235 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up python3-cephfs (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:45.337 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up ceph-common (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:45.493 INFO:teuthology.orchestra.run.smithi165.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-09-17T09:01:45.682 INFO:teuthology.orchestra.run.smithi098.stdout:Adding system user ceph....done 2024-09-17T09:01:45.808 INFO:teuthology.orchestra.run.smithi098.stdout:Setting system user ceph properties....done 2024-09-17T09:01:45.823 INFO:teuthology.orchestra.run.smithi098.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-09-17T09:01:45.913 INFO:teuthology.orchestra.run.smithi134.stdout:Adding group ceph....done 2024-09-17T09:01:45.958 INFO:teuthology.orchestra.run.smithi098.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-09-17T09:01:45.972 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up ceph-test (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:46.099 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up radosgw (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:46.223 INFO:teuthology.orchestra.run.smithi134.stdout:Adding system user ceph....done 2024-09-17T09:01:46.280 INFO:teuthology.orchestra.run.smithi098.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-09-17T09:01:46.392 INFO:teuthology.orchestra.run.smithi134.stdout:Setting system user ceph properties....done 2024-09-17T09:01:46.407 INFO:teuthology.orchestra.run.smithi134.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-09-17T09:01:46.542 INFO:teuthology.orchestra.run.smithi165.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-17T09:01:46.542 INFO:teuthology.orchestra.run.smithi165.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-17T09:01:46.549 INFO:teuthology.orchestra.run.smithi134.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-09-17T09:01:46.746 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up ceph-test (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:46.893 INFO:teuthology.orchestra.run.smithi134.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-09-17T09:01:46.987 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up radosgw (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:46.991 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up ceph-base (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:47.346 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up ceph-test (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:47.369 INFO:teuthology.orchestra.run.smithi165.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-09-17T09:01:47.481 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up radosgw (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:47.606 INFO:teuthology.orchestra.run.smithi098.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-17T09:01:47.606 INFO:teuthology.orchestra.run.smithi098.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-17T09:01:47.852 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up ceph-mds (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:47.951 INFO:teuthology.orchestra.run.smithi134.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-17T09:01:47.951 INFO:teuthology.orchestra.run.smithi134.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-17T09:01:48.075 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up ceph-base (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:48.080 INFO:teuthology.orchestra.run.smithi165.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-17T09:01:48.080 INFO:teuthology.orchestra.run.smithi165.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-17T09:01:48.400 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up ceph-base (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:48.419 INFO:teuthology.orchestra.run.smithi098.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-09-17T09:01:48.587 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up ceph-mgr (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:48.761 INFO:teuthology.orchestra.run.smithi134.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-09-17T09:01:48.791 INFO:teuthology.orchestra.run.smithi165.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-17T09:01:48.791 INFO:teuthology.orchestra.run.smithi165.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-17T09:01:48.852 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up ceph-mds (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:49.105 INFO:teuthology.orchestra.run.smithi098.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-17T09:01:49.105 INFO:teuthology.orchestra.run.smithi098.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-17T09:01:49.288 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up ceph-osd (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:49.294 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up ceph-mds (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:49.523 INFO:teuthology.orchestra.run.smithi134.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-17T09:01:49.524 INFO:teuthology.orchestra.run.smithi134.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-17T09:01:49.553 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up ceph-mgr (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:49.560 INFO:teuthology.orchestra.run.smithi165.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-17T09:01:49.560 INFO:teuthology.orchestra.run.smithi165.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-17T09:01:49.771 INFO:teuthology.orchestra.run.smithi098.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-17T09:01:49.771 INFO:teuthology.orchestra.run.smithi098.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-17T09:01:49.979 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up ceph-mgr (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:50.040 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up ceph-mgr-k8sevents (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:50.166 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up ceph-mgr-diskprediction-local (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:50.194 INFO:teuthology.orchestra.run.smithi134.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-17T09:01:50.194 INFO:teuthology.orchestra.run.smithi134.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-17T09:01:50.247 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up ceph-osd (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:50.317 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up ceph-mon (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:50.526 INFO:teuthology.orchestra.run.smithi165.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-17T09:01:50.527 INFO:teuthology.orchestra.run.smithi165.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-17T09:01:50.540 INFO:teuthology.orchestra.run.smithi098.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-17T09:01:50.540 INFO:teuthology.orchestra.run.smithi098.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-17T09:01:50.666 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up ceph-osd (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:50.920 INFO:teuthology.orchestra.run.smithi134.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-17T09:01:50.920 INFO:teuthology.orchestra.run.smithi134.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-17T09:01:50.976 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up ceph-mgr-cephadm (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:51.023 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up ceph-mgr-k8sevents (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:51.119 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up ceph (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:51.124 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up ceph-mgr-diskprediction-local (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:51.254 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up ceph-mgr-dashboard (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:51.334 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up ceph-mon (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:51.376 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up ceph-mgr-k8sevents (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:51.405 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up ceph-volume (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:51.493 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up ceph-mgr-diskprediction-local (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:51.547 INFO:teuthology.orchestra.run.smithi098.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-17T09:01:51.547 INFO:teuthology.orchestra.run.smithi098.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-17T09:01:51.644 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up ceph-mon (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:51.750 INFO:teuthology.orchestra.run.smithi165.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-09-17T09:01:51.856 INFO:teuthology.orchestra.run.smithi134.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-17T09:01:51.856 INFO:teuthology.orchestra.run.smithi134.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-17T09:01:52.035 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up ceph-mgr-cephadm (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:52.169 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up ceph (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:52.279 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up ceph-mgr-dashboard (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:52.430 INFO:teuthology.orchestra.run.smithi098.stdout:Setting up ceph-volume (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:52.618 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up ceph-mgr-cephadm (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:52.766 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up ceph (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:52.775 INFO:teuthology.orchestra.run.smithi098.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-09-17T09:01:52.875 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up ceph-mgr-dashboard (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:52.977 INFO:teuthology.orchestra.run.smithi165.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-09-17T09:01:53.009 INFO:teuthology.orchestra.run.smithi134.stdout:Setting up ceph-volume (18.2.4-855-g19e2a2be-1jammy) ... 2024-09-17T09:01:53.362 INFO:teuthology.orchestra.run.smithi134.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-09-17T09:01:53.451 INFO:teuthology.orchestra.run.smithi165.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-09-17T09:01:53.458 DEBUG:teuthology.parallel:result is None 2024-09-17T09:01:53.968 INFO:teuthology.orchestra.run.smithi098.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-09-17T09:01:54.442 INFO:teuthology.orchestra.run.smithi098.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-09-17T09:01:54.447 DEBUG:teuthology.parallel:result is None 2024-09-17T09:01:54.463 INFO:teuthology.orchestra.run.smithi134.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-09-17T09:01:54.954 INFO:teuthology.orchestra.run.smithi134.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-09-17T09:01:54.958 DEBUG:teuthology.parallel:result is None 2024-09-17T09:01:54.959 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T09:01:55.103 DEBUG:teuthology.orchestra.run.smithi098:> dpkg-query -W -f '${Version}' ceph 2024-09-17T09:01:55.122 INFO:teuthology.orchestra.run.smithi098.stdout:18.2.4-855-g19e2a2be-1jammy 2024-09-17T09:01:55.122 INFO:teuthology.packaging:The installed version of ceph is 18.2.4-855-g19e2a2be-1jammy 2024-09-17T09:01:55.122 INFO:teuthology.task.install:The correct ceph version 18.2.4-855-g19e2a2be-1jammy is installed. 2024-09-17T09:01:55.124 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T09:01:55.261 DEBUG:teuthology.orchestra.run.smithi134:> dpkg-query -W -f '${Version}' ceph 2024-09-17T09:01:55.280 INFO:teuthology.orchestra.run.smithi134.stdout:18.2.4-855-g19e2a2be-1jammy 2024-09-17T09:01:55.280 INFO:teuthology.packaging:The installed version of ceph is 18.2.4-855-g19e2a2be-1jammy 2024-09-17T09:01:55.280 INFO:teuthology.task.install:The correct ceph version 18.2.4-855-g19e2a2be-1jammy is installed. 2024-09-17T09:01:55.282 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T09:01:55.420 DEBUG:teuthology.orchestra.run.smithi165:> dpkg-query -W -f '${Version}' ceph 2024-09-17T09:01:55.439 INFO:teuthology.orchestra.run.smithi165.stdout:18.2.4-855-g19e2a2be-1jammy 2024-09-17T09:01:55.439 INFO:teuthology.packaging:The installed version of ceph is 18.2.4-855-g19e2a2be-1jammy 2024-09-17T09:01:55.440 INFO:teuthology.task.install:The correct ceph version 18.2.4-855-g19e2a2be-1jammy is installed. 2024-09-17T09:01:55.442 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2024-09-17T09:01:55.442 DEBUG:teuthology.orchestra.run.smithi098:> set -ex 2024-09-17T09:01:55.442 DEBUG:teuthology.orchestra.run.smithi098:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-17T09:01:55.457 DEBUG:teuthology.orchestra.run.smithi134:> set -ex 2024-09-17T09:01:55.458 DEBUG:teuthology.orchestra.run.smithi134:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-17T09:01:55.472 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-09-17T09:01:55.472 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-17T09:01:55.497 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2024-09-17T09:01:55.497 DEBUG:teuthology.orchestra.run.smithi098:> set -ex 2024-09-17T09:01:55.497 DEBUG:teuthology.orchestra.run.smithi098:> sudo dd of=/usr/bin/daemon-helper 2024-09-17T09:01:55.511 DEBUG:teuthology.orchestra.run.smithi098:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-17T09:01:55.572 DEBUG:teuthology.orchestra.run.smithi134:> set -ex 2024-09-17T09:01:55.572 DEBUG:teuthology.orchestra.run.smithi134:> sudo dd of=/usr/bin/daemon-helper 2024-09-17T09:01:55.585 DEBUG:teuthology.orchestra.run.smithi134:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-17T09:01:55.638 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-09-17T09:01:55.638 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd of=/usr/bin/daemon-helper 2024-09-17T09:01:55.651 DEBUG:teuthology.orchestra.run.smithi165:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-17T09:01:55.708 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2024-09-17T09:01:55.708 DEBUG:teuthology.orchestra.run.smithi098:> set -ex 2024-09-17T09:01:55.708 DEBUG:teuthology.orchestra.run.smithi098:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-17T09:01:55.721 DEBUG:teuthology.orchestra.run.smithi098:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-17T09:01:55.775 DEBUG:teuthology.orchestra.run.smithi134:> set -ex 2024-09-17T09:01:55.775 DEBUG:teuthology.orchestra.run.smithi134:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-17T09:01:55.787 DEBUG:teuthology.orchestra.run.smithi134:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-17T09:01:55.842 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-09-17T09:01:55.842 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-17T09:01:55.856 DEBUG:teuthology.orchestra.run.smithi165:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-17T09:01:55.911 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2024-09-17T09:01:55.912 DEBUG:teuthology.orchestra.run.smithi098:> set -ex 2024-09-17T09:01:55.912 DEBUG:teuthology.orchestra.run.smithi098:> sudo dd of=/usr/bin/stdin-killer 2024-09-17T09:01:55.925 DEBUG:teuthology.orchestra.run.smithi098:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-17T09:01:55.979 DEBUG:teuthology.orchestra.run.smithi134:> set -ex 2024-09-17T09:01:55.979 DEBUG:teuthology.orchestra.run.smithi134:> sudo dd of=/usr/bin/stdin-killer 2024-09-17T09:01:55.992 DEBUG:teuthology.orchestra.run.smithi134:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-17T09:01:56.045 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-09-17T09:01:56.045 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd of=/usr/bin/stdin-killer 2024-09-17T09:01:56.059 DEBUG:teuthology.orchestra.run.smithi165:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-17T09:01:56.115 INFO:teuthology.run_tasks:Running task cephadm... 2024-09-17T09:01:56.203 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': '19e2a2beb6f41a3ab62650e38614eb29b59dcbb9'} 2024-09-17T09:01:56.204 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T09:01:56.204 INFO:tasks.cephadm:Cluster fsid is 7d5e8b1e-74d3-11ef-bceb-c7b262605968 2024-09-17T09:01:56.204 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-09-17T09:01:56.204 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '172.21.15.98', 'mon.b': '172.21.15.134', 'mon.c': '172.21.15.165'} 2024-09-17T09:01:56.204 INFO:tasks.cephadm:First mon is mon.a on smithi098 2024-09-17T09:01:56.205 INFO:tasks.cephadm:First mgr is a 2024-09-17T09:01:56.205 INFO:tasks.cephadm:Normalizing hostnames... 2024-09-17T09:01:56.205 DEBUG:teuthology.orchestra.run.smithi098:> sudo hostname $(hostname -s) 2024-09-17T09:01:56.218 DEBUG:teuthology.orchestra.run.smithi134:> sudo hostname $(hostname -s) 2024-09-17T09:01:56.233 DEBUG:teuthology.orchestra.run.smithi165:> sudo hostname $(hostname -s) 2024-09-17T09:01:56.247 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-09-17T09:01:56.247 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T09:01:56.390 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': '19e2a2beb6f41a3ab62650e38614eb29b59dcbb9', '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/56094/', 'root_build_cause': 'SCMTRIGGER', 'version': '18.2.4-855-g19e2a2be', 'node_name': '172.21.2.17+braggi17', 'job_name': 'ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=jammy,DIST=jammy,MACHINE_SIZE=gigantic', 'package_manager_version': '18.2.4-855-g19e2a2be-1jammy'}, 'url': 'https://3.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default/', 'distro_codename': 'jammy', 'modified': '2024-09-16 16:50:43.846409', 'distro_version': '22.04', 'project': 'ceph', 'flavor': 'default', 'ref': 'reef', 'chacra_url': 'https://3.chacra.ceph.com/repos/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/flavors/default/', 'archs': ['x86_64'], 'distro': 'ubuntu'}] 2024-09-17T09:01:56.524 INFO:tasks.util.chacra:got chacra host 3.chacra.ceph.com, ref reef, sha1 19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 from https://shaman.ceph.com/api/search/?project=ceph&distros=ubuntu%2F22.04%2Fx86_64&flavor=default&sha1=19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T09:01:56.525 INFO:tasks.cephadm:Discovered cachra url: https://3.chacra.ceph.com/binaries/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-09-17T09:01:56.525 DEBUG:teuthology.orchestra.run.smithi098:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-17T09:01:57.132 INFO:teuthology.orchestra.run.smithi098.stdout:-rw-rw-r-- 1 ubuntu ubuntu 218649 Sep 17 09:01 /home/ubuntu/cephtest/cephadm 2024-09-17T09:01:57.132 DEBUG:teuthology.orchestra.run.smithi134:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-17T09:01:57.745 INFO:teuthology.orchestra.run.smithi134.stdout:-rw-rw-r-- 1 ubuntu ubuntu 218649 Sep 17 09:01 /home/ubuntu/cephtest/cephadm 2024-09-17T09:01:57.745 DEBUG:teuthology.orchestra.run.smithi165:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-17T09:01:58.336 INFO:teuthology.orchestra.run.smithi165.stdout:-rw-rw-r-- 1 ubuntu ubuntu 218649 Sep 17 09:01 /home/ubuntu/cephtest/cephadm 2024-09-17T09:01:58.337 DEBUG:teuthology.orchestra.run.smithi098:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-17T09:01:58.345 DEBUG:teuthology.orchestra.run.smithi134:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-17T09:01:58.352 DEBUG:teuthology.orchestra.run.smithi165:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-17T09:01:58.370 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 on all hosts... 2024-09-17T09:01:58.370 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 pull 2024-09-17T09:01:58.389 DEBUG:teuthology.orchestra.run.smithi134:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 pull 2024-09-17T09:01:58.395 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 pull 2024-09-17T09:01:58.508 INFO:teuthology.orchestra.run.smithi098.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9... 2024-09-17T09:01:58.514 INFO:teuthology.orchestra.run.smithi134.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9... 2024-09-17T09:01:58.524 INFO:teuthology.orchestra.run.smithi165.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9... 2024-09-17T09:02:59.796 INFO:teuthology.orchestra.run.smithi098.stdout:{ 2024-09-17T09:02:59.796 INFO:teuthology.orchestra.run.smithi098.stdout: "ceph_version": "ceph version 18.2.4-855-g19e2a2be (19e2a2beb6f41a3ab62650e38614eb29b59dcbb9) reef (stable)", 2024-09-17T09:02:59.796 INFO:teuthology.orchestra.run.smithi098.stdout: "image_id": "980a0bfcd684674f25c08d857ad8de3b1c8ae738870529edbf9aa463832c8d89", 2024-09-17T09:02:59.796 INFO:teuthology.orchestra.run.smithi098.stdout: "repo_digests": [ 2024-09-17T09:02:59.796 INFO:teuthology.orchestra.run.smithi098.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9" 2024-09-17T09:02:59.797 INFO:teuthology.orchestra.run.smithi098.stdout: ] 2024-09-17T09:02:59.797 INFO:teuthology.orchestra.run.smithi098.stdout:} 2024-09-17T09:03:00.894 INFO:teuthology.orchestra.run.smithi134.stdout:{ 2024-09-17T09:03:00.894 INFO:teuthology.orchestra.run.smithi134.stdout: "ceph_version": "ceph version 18.2.4-855-g19e2a2be (19e2a2beb6f41a3ab62650e38614eb29b59dcbb9) reef (stable)", 2024-09-17T09:03:00.894 INFO:teuthology.orchestra.run.smithi134.stdout: "image_id": "980a0bfcd684674f25c08d857ad8de3b1c8ae738870529edbf9aa463832c8d89", 2024-09-17T09:03:00.894 INFO:teuthology.orchestra.run.smithi134.stdout: "repo_digests": [ 2024-09-17T09:03:00.894 INFO:teuthology.orchestra.run.smithi134.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9" 2024-09-17T09:03:00.894 INFO:teuthology.orchestra.run.smithi134.stdout: ] 2024-09-17T09:03:00.895 INFO:teuthology.orchestra.run.smithi134.stdout:} 2024-09-17T09:03:14.896 INFO:teuthology.orchestra.run.smithi165.stdout:{ 2024-09-17T09:03:14.897 INFO:teuthology.orchestra.run.smithi165.stdout: "ceph_version": "ceph version 18.2.4-855-g19e2a2be (19e2a2beb6f41a3ab62650e38614eb29b59dcbb9) reef (stable)", 2024-09-17T09:03:14.897 INFO:teuthology.orchestra.run.smithi165.stdout: "image_id": "980a0bfcd684674f25c08d857ad8de3b1c8ae738870529edbf9aa463832c8d89", 2024-09-17T09:03:14.897 INFO:teuthology.orchestra.run.smithi165.stdout: "repo_digests": [ 2024-09-17T09:03:14.897 INFO:teuthology.orchestra.run.smithi165.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9" 2024-09-17T09:03:14.897 INFO:teuthology.orchestra.run.smithi165.stdout: ] 2024-09-17T09:03:14.897 INFO:teuthology.orchestra.run.smithi165.stdout:} 2024-09-17T09:03:14.933 DEBUG:teuthology.orchestra.run.smithi098:> sudo mkdir -p /etc/ceph 2024-09-17T09:03:14.948 DEBUG:teuthology.orchestra.run.smithi134:> sudo mkdir -p /etc/ceph 2024-09-17T09:03:14.962 DEBUG:teuthology.orchestra.run.smithi165:> sudo mkdir -p /etc/ceph 2024-09-17T09:03:14.977 DEBUG:teuthology.orchestra.run.smithi098:> sudo chmod 777 /etc/ceph 2024-09-17T09:03:15.003 DEBUG:teuthology.orchestra.run.smithi134:> sudo chmod 777 /etc/ceph 2024-09-17T09:03:15.016 DEBUG:teuthology.orchestra.run.smithi165:> sudo chmod 777 /etc/ceph 2024-09-17T09:03:15.030 INFO:tasks.cephadm:Writing seed config... 2024-09-17T09:03:15.031 INFO:tasks.cephadm: override: [global] mon election default strategy = 1 2024-09-17T09:03:15.031 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-09-17T09:03:15.031 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-09-17T09:03:15.031 INFO:tasks.cephadm: override: [mgr] mgr/cephadm/use_agent = False 2024-09-17T09:03:15.031 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-09-17T09:03:15.032 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-09-17T09:03:15.032 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-09-17T09:03:15.032 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-09-17T09:03:15.032 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-09-17T09:03:15.032 DEBUG:teuthology.orchestra.run.smithi098:> set -ex 2024-09-17T09:03:15.032 DEBUG:teuthology.orchestra.run.smithi098:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-09-17T09:03:15.048 DEBUG:tasks.cephadm:Final config: [global] # make logging friendly to teuthology log_to_file = true log_to_stderr = false log to journald = false mon cluster log file level = debug mon clock drift allowed = 1.000 # replicate across OSDs, not hosts osd crush chooseleaf type = 0 #osd pool default size = 2 osd pool default erasure code profile = plugin=jerasure technique=reed_sol_van k=2 m=1 crush-failure-domain=osd # enable some debugging auth debug = true ms die on old message = true ms die on bug = true debug asserts on shutdown = true # adjust warnings mon max pg per osd = 10000# >= luminous mon pg warn max object skew = 0 mon osd allow primary affinity = true mon osd allow pg remap = true mon warn on legacy crush tunables = false mon warn on crush straw calc version zero = false mon warn on no sortbitwise = false mon warn on osd down out interval zero = false mon warn on too few osds = false mon_warn_on_pool_pg_num_not_power_of_two = false # disable pg_autoscaler by default for new pools osd_pool_default_pg_autoscale_mode = off # tests delete pools mon allow pool delete = true fsid = 7d5e8b1e-74d3-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-17T09:03:15.048 DEBUG:teuthology.orchestra.run.smithi098:mon.a> sudo journalctl -f -n 0 -u ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@mon.a.service 2024-09-17T09:03:15.093 DEBUG:teuthology.orchestra.run.smithi098:mgr.a> sudo journalctl -f -n 0 -u ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@mgr.a.service 2024-09-17T09:03:15.137 INFO:tasks.cephadm:Bootstrapping... 2024-09-17T09:03:15.137 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 -v bootstrap --fsid 7d5e8b1e-74d3-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.98 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-09-17T09:03:15.301 INFO:teuthology.orchestra.run.smithi098.stdout:-------------------------------------------------------------------------------- 2024-09-17T09:03:15.301 INFO:teuthology.orchestra.run.smithi098.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9', '-v', 'bootstrap', '--fsid', '7d5e8b1e-74d3-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.98', '--skip-admin-label'] 2024-09-17T09:03:15.302 INFO:teuthology.orchestra.run.smithi098.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-09-17T09:03:15.302 INFO:teuthology.orchestra.run.smithi098.stdout:Verifying podman|docker is present... 2024-09-17T09:03:15.302 INFO:teuthology.orchestra.run.smithi098.stdout:Verifying lvm2 is present... 2024-09-17T09:03:15.302 INFO:teuthology.orchestra.run.smithi098.stdout:Verifying time synchronization is in place... 2024-09-17T09:03:15.307 INFO:teuthology.orchestra.run.smithi098.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-17T09:03:15.307 INFO:teuthology.orchestra.run.smithi098.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-17T09:03:15.311 INFO:teuthology.orchestra.run.smithi098.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-17T09:03:15.311 INFO:teuthology.orchestra.run.smithi098.stdout:systemctl: stdout inactive 2024-09-17T09:03:15.316 INFO:teuthology.orchestra.run.smithi098.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-09-17T09:03:15.316 INFO:teuthology.orchestra.run.smithi098.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-09-17T09:03:15.320 INFO:teuthology.orchestra.run.smithi098.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-09-17T09:03:15.320 INFO:teuthology.orchestra.run.smithi098.stdout:systemctl: stdout inactive 2024-09-17T09:03:15.323 INFO:teuthology.orchestra.run.smithi098.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-09-17T09:03:15.323 INFO:teuthology.orchestra.run.smithi098.stdout:systemctl: stdout masked 2024-09-17T09:03:15.327 INFO:teuthology.orchestra.run.smithi098.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-09-17T09:03:15.327 INFO:teuthology.orchestra.run.smithi098.stdout:systemctl: stdout inactive 2024-09-17T09:03:15.330 INFO:teuthology.orchestra.run.smithi098.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-09-17T09:03:15.330 INFO:teuthology.orchestra.run.smithi098.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-09-17T09:03:15.334 INFO:teuthology.orchestra.run.smithi098.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-09-17T09:03:15.334 INFO:teuthology.orchestra.run.smithi098.stdout:systemctl: stdout inactive 2024-09-17T09:03:15.338 INFO:teuthology.orchestra.run.smithi098.stdout:systemctl: stdout enabled 2024-09-17T09:03:15.342 INFO:teuthology.orchestra.run.smithi098.stdout:systemctl: stdout active 2024-09-17T09:03:15.342 INFO:teuthology.orchestra.run.smithi098.stdout:Unit ntp.service is enabled and running 2024-09-17T09:03:15.342 INFO:teuthology.orchestra.run.smithi098.stdout:Repeating the final host check... 2024-09-17T09:03:15.342 INFO:teuthology.orchestra.run.smithi098.stdout:docker (/usr/bin/docker) is present 2024-09-17T09:03:15.342 INFO:teuthology.orchestra.run.smithi098.stdout:systemctl is present 2024-09-17T09:03:15.342 INFO:teuthology.orchestra.run.smithi098.stdout:lvcreate is present 2024-09-17T09:03:15.345 INFO:teuthology.orchestra.run.smithi098.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-17T09:03:15.345 INFO:teuthology.orchestra.run.smithi098.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-17T09:03:15.349 INFO:teuthology.orchestra.run.smithi098.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-17T09:03:15.349 INFO:teuthology.orchestra.run.smithi098.stdout:systemctl: stdout inactive 2024-09-17T09:03:15.352 INFO:teuthology.orchestra.run.smithi098.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-09-17T09:03:15.352 INFO:teuthology.orchestra.run.smithi098.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-09-17T09:03:15.355 INFO:teuthology.orchestra.run.smithi098.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-09-17T09:03:15.355 INFO:teuthology.orchestra.run.smithi098.stdout:systemctl: stdout inactive 2024-09-17T09:03:15.359 INFO:teuthology.orchestra.run.smithi098.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-09-17T09:03:15.359 INFO:teuthology.orchestra.run.smithi098.stdout:systemctl: stdout masked 2024-09-17T09:03:15.362 INFO:teuthology.orchestra.run.smithi098.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-09-17T09:03:15.362 INFO:teuthology.orchestra.run.smithi098.stdout:systemctl: stdout inactive 2024-09-17T09:03:15.366 INFO:teuthology.orchestra.run.smithi098.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-09-17T09:03:15.366 INFO:teuthology.orchestra.run.smithi098.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-09-17T09:03:15.369 INFO:teuthology.orchestra.run.smithi098.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-09-17T09:03:15.369 INFO:teuthology.orchestra.run.smithi098.stdout:systemctl: stdout inactive 2024-09-17T09:03:15.373 INFO:teuthology.orchestra.run.smithi098.stdout:systemctl: stdout enabled 2024-09-17T09:03:15.378 INFO:teuthology.orchestra.run.smithi098.stdout:systemctl: stdout active 2024-09-17T09:03:15.378 INFO:teuthology.orchestra.run.smithi098.stdout:Unit ntp.service is enabled and running 2024-09-17T09:03:15.378 INFO:teuthology.orchestra.run.smithi098.stdout:Host looks OK 2024-09-17T09:03:15.378 INFO:teuthology.orchestra.run.smithi098.stdout:Cluster fsid: 7d5e8b1e-74d3-11ef-bceb-c7b262605968 2024-09-17T09:03:15.378 INFO:teuthology.orchestra.run.smithi098.stdout:Acquiring lock 139828482657248 on /run/cephadm/7d5e8b1e-74d3-11ef-bceb-c7b262605968.lock 2024-09-17T09:03:15.378 INFO:teuthology.orchestra.run.smithi098.stdout:Lock 139828482657248 acquired on /run/cephadm/7d5e8b1e-74d3-11ef-bceb-c7b262605968.lock 2024-09-17T09:03:15.378 INFO:teuthology.orchestra.run.smithi098.stdout:Verifying IP 172.21.15.98 port 3300 ... 2024-09-17T09:03:15.378 INFO:teuthology.orchestra.run.smithi098.stdout:Verifying IP 172.21.15.98 port 6789 ... 2024-09-17T09:03:15.378 INFO:teuthology.orchestra.run.smithi098.stdout:Base mon IP(s) is [172.21.15.98:3300, 172.21.15.98:6789], mon addrv is [v2:172.21.15.98:3300,v1:172.21.15.98:6789] 2024-09-17T09:03:15.381 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev enp3s0f1 2024-09-17T09:03:15.381 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.98 metric 100 2024-09-17T09:03:15.381 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/sbin/ip: stdout 158.69.67.47 via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.98 metric 100 2024-09-17T09:03:15.381 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/sbin/ip: stdout 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-09-17T09:03:15.381 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/sbin/ip: stdout 172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.98 metric 100 2024-09-17T09:03:15.381 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/sbin/ip: stdout 172.21.0.1 dev enp3s0f1 proto dhcp scope link src 172.21.15.98 metric 100 2024-09-17T09:03:15.381 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/sbin/ip: stdout 172.21.0.2 dev enp3s0f1 proto dhcp scope link src 172.21.15.98 metric 100 2024-09-17T09:03:15.381 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/sbin/ip: stdout 172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.98 metric 100 2024-09-17T09:03:15.383 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-09-17T09:03:15.383 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/sbin/ip: stdout fe80::/64 dev enp3s0f1 proto kernel metric 256 pref medium 2024-09-17T09:03:15.383 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev enp3s0f1 proto ra metric 100 expires 1791sec pref medium 2024-09-17T09:03:15.385 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-09-17T09:03:15.385 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/sbin/ip: stdout inet6 ::1/128 scope host 2024-09-17T09:03:15.385 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-17T09:03:15.385 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/sbin/ip: stdout 5: enp3s0f1: mtu 1500 state UP qlen 1000 2024-09-17T09:03:15.385 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/sbin/ip: stdout inet6 fe80::ec4:7aff:fe8f:d26b/64 scope link 2024-09-17T09:03:15.385 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-17T09:03:15.386 INFO:teuthology.orchestra.run.smithi098.stdout:Mon IP `172.21.15.98` is in CIDR network `172.21.0.0/20` 2024-09-17T09:03:15.387 INFO:teuthology.orchestra.run.smithi098.stdout:Mon IP `172.21.15.98` is in CIDR network `172.21.0.0/20` 2024-09-17T09:03:15.387 INFO:teuthology.orchestra.run.smithi098.stdout:Mon IP `172.21.15.98` is in CIDR network `172.21.0.1/32` 2024-09-17T09:03:15.387 INFO:teuthology.orchestra.run.smithi098.stdout:Mon IP `172.21.15.98` is in CIDR network `172.21.0.1/32` 2024-09-17T09:03:15.387 INFO:teuthology.orchestra.run.smithi098.stdout:Mon IP `172.21.15.98` is in CIDR network `172.21.0.2/32` 2024-09-17T09:03:15.387 INFO:teuthology.orchestra.run.smithi098.stdout:Mon IP `172.21.15.98` is in CIDR network `172.21.0.2/32` 2024-09-17T09:03:15.387 INFO:teuthology.orchestra.run.smithi098.stdout:Mon IP `172.21.15.98` is in CIDR network `172.21.15.254/32` 2024-09-17T09:03:15.387 INFO:teuthology.orchestra.run.smithi098.stdout:Mon IP `172.21.15.98` is in CIDR network `172.21.15.254/32` 2024-09-17T09:03:15.387 INFO:teuthology.orchestra.run.smithi098.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20', '172.21.0.1/32', '172.21.0.1/32', '172.21.0.2/32', '172.21.0.2/32', '172.21.15.254/32', '172.21.15.254/32'] 2024-09-17T09:03:15.387 INFO:teuthology.orchestra.run.smithi098.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-09-17T09:03:15.387 INFO:teuthology.orchestra.run.smithi098.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9... 2024-09-17T09:03:15.628 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/docker: stdout 19e2a2beb6f41a3ab62650e38614eb29b59dcbb9: Pulling from ceph-ci/ceph 2024-09-17T09:03:15.628 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/docker: stdout Digest: sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9 2024-09-17T09:03:15.628 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/docker: stdout Status: Image is up to date for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T09:03:15.628 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/docker: stdout quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T09:03:17.316 INFO:teuthology.orchestra.run.smithi098.stdout:ceph: stdout ceph version 18.2.4-855-g19e2a2be (19e2a2beb6f41a3ab62650e38614eb29b59dcbb9) reef (stable) 2024-09-17T09:03:17.316 INFO:teuthology.orchestra.run.smithi098.stdout:Ceph version: ceph version 18.2.4-855-g19e2a2be (19e2a2beb6f41a3ab62650e38614eb29b59dcbb9) reef (stable) 2024-09-17T09:03:17.316 INFO:teuthology.orchestra.run.smithi098.stdout:Extracting ceph user uid/gid from container image... 2024-09-17T09:03:18.797 INFO:teuthology.orchestra.run.smithi098.stdout:stat: stdout 167 167 2024-09-17T09:03:18.797 INFO:teuthology.orchestra.run.smithi098.stdout:Creating initial keys... 2024-09-17T09:03:20.310 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-authtool: stdout AQDXRelmufd1KhAA+wDAcKNmu3mZ2c1m26BS6w== 2024-09-17T09:03:21.809 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-authtool: stdout AQDZRelmqQpEDBAABSLL3oBbWtxW4GFb7j4etA== 2024-09-17T09:03:23.265 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-authtool: stdout AQDaRelmhlnVKxAAt/2zqnFXyyzYSCg0b9xwlA== 2024-09-17T09:03:23.265 INFO:teuthology.orchestra.run.smithi098.stdout:Creating initial monmap... 2024-09-17T09:03:24.855 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-17T09:03:24.855 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = pacific 2024-09-17T09:03:24.855 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 7d5e8b1e-74d3-11ef-bceb-c7b262605968 2024-09-17T09:03:24.855 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-17T09:03:24.856 INFO:teuthology.orchestra.run.smithi098.stdout:monmaptool for a [v2:172.21.15.98:3300,v1:172.21.15.98:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-17T09:03:24.856 INFO:teuthology.orchestra.run.smithi098.stdout:setting min_mon_release = pacific 2024-09-17T09:03:24.856 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/monmaptool: set fsid to 7d5e8b1e-74d3-11ef-bceb-c7b262605968 2024-09-17T09:03:24.856 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-17T09:03:24.856 INFO:teuthology.orchestra.run.smithi098.stdout: 2024-09-17T09:03:24.856 INFO:teuthology.orchestra.run.smithi098.stdout:Creating mon... 2024-09-17T09:03:26.567 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-17T09:03:26.567 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 1 imported monmap: 2024-09-17T09:03:26.567 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr epoch 0 2024-09-17T09:03:26.567 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 2024-09-17T09:03:26.567 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr last_changed 2024-09-17T09:03:24.250611+0000 2024-09-17T09:03:26.567 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr created 2024-09-17T09:03:24.250611+0000 2024-09-17T09:03:26.568 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr min_mon_release 16 (pacific) 2024-09-17T09:03:26.568 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr election_strategy: 1 2024-09-17T09:03:26.568 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr 0: [v2:172.21.15.98:3300/0,v1:172.21.15.98:6789/0] mon.a 2024-09-17T09:03:26.568 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr 2024-09-17T09:03:26.568 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 0 /usr/bin/ceph-mon: set fsid to 7d5e8b1e-74d3-11ef-bceb-c7b262605968 2024-09-17T09:03:26.568 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: RocksDB version: 7.9.2 2024-09-17T09:03:26.568 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr 2024-09-17T09:03:26.568 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Git sha 0 2024-09-17T09:03:26.568 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Compile date 2024-09-16 15:15:13 2024-09-17T09:03:26.568 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: DB SUMMARY 2024-09-17T09:03:26.568 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr 2024-09-17T09:03:26.568 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: DB Session ID: YSWICD3ZH6FY8QKO6RFR 2024-09-17T09:03:26.569 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr 2024-09-17T09:03:26.569 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 0, files: 2024-09-17T09:03:26.569 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr 2024-09-17T09:03:26.569 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 2024-09-17T09:03:26.569 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr 2024-09-17T09:03:26.569 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.error_if_exists: 0 2024-09-17T09:03:26.569 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.create_if_missing: 1 2024-09-17T09:03:26.569 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.paranoid_checks: 1 2024-09-17T09:03:26.569 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-17T09:03:26.569 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-17T09:03:26.569 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-17T09:03:26.569 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.env: 0x564ec8d0ebc0 2024-09-17T09:03:26.569 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.fs: PosixFileSystem 2024-09-17T09:03:26.570 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.info_log: 0x564eca9be800 2024-09-17T09:03:26.570 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-17T09:03:26.570 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.statistics: (nil) 2024-09-17T09:03:26.570 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.use_fsync: 0 2024-09-17T09:03:26.570 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.max_log_file_size: 0 2024-09-17T09:03:26.570 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-17T09:03:26.570 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-17T09:03:26.570 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-17T09:03:26.570 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-17T09:03:26.570 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.allow_fallocate: 1 2024-09-17T09:03:26.570 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-17T09:03:26.570 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-17T09:03:26.570 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.use_direct_reads: 0 2024-09-17T09:03:26.571 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-17T09:03:26.571 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.create_missing_column_families: 0 2024-09-17T09:03:26.571 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.db_log_dir: 2024-09-17T09:03:26.571 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.wal_dir: 2024-09-17T09:03:26.571 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-17T09:03:26.571 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-17T09:03:26.571 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-17T09:03:26.571 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-17T09:03:26.571 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-17T09:03:26.571 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-17T09:03:26.571 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.advise_random_on_open: 1 2024-09-17T09:03:26.571 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-17T09:03:26.571 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.write_buffer_manager: 0x564eca9c4e60 2024-09-17T09:03:26.571 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-17T09:03:26.572 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-17T09:03:26.572 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-17T09:03:26.572 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.rate_limiter: (nil) 2024-09-17T09:03:26.572 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-17T09:03:26.572 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-17T09:03:26.572 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-17T09:03:26.572 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-17T09:03:26.572 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.unordered_write: 0 2024-09-17T09:03:26.572 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-17T09:03:26.572 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-17T09:03:26.572 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-17T09:03:26.573 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-17T09:03:26.573 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.895+0000 7fee6d3a3b00 4 rocksdb: Options.row_cache: None 2024-09-17T09:03:26.573 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.wal_filter: None 2024-09-17T09:03:26.573 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-17T09:03:26.573 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-17T09:03:26.573 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.two_write_queues: 0 2024-09-17T09:03:26.573 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.manual_wal_flush: 0 2024-09-17T09:03:26.573 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.wal_compression: 0 2024-09-17T09:03:26.573 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.atomic_flush: 0 2024-09-17T09:03:26.574 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-17T09:03:26.574 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-17T09:03:26.574 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-17T09:03:26.574 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.log_readahead_size: 0 2024-09-17T09:03:26.574 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-17T09:03:26.574 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-17T09:03:26.574 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-17T09:03:26.574 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-17T09:03:26.575 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-17T09:03:26.575 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-17T09:03:26.575 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-17T09:03:26.575 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.max_background_jobs: 2 2024-09-17T09:03:26.575 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.max_background_compactions: -1 2024-09-17T09:03:26.575 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.max_subcompactions: 1 2024-09-17T09:03:26.575 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-17T09:03:26.575 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-17T09:03:26.575 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-17T09:03:26.576 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.max_total_wal_size: 0 2024-09-17T09:03:26.576 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-17T09:03:26.576 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-17T09:03:26.576 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-17T09:03:26.576 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-17T09:03:26.576 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.max_open_files: -1 2024-09-17T09:03:26.576 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.bytes_per_sync: 0 2024-09-17T09:03:26.576 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-17T09:03:26.577 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-17T09:03:26.577 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-17T09:03:26.577 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.max_background_flushes: -1 2024-09-17T09:03:26.577 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Compression algorithms supported: 2024-09-17T09:03:26.577 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: kZSTD supported: 0 2024-09-17T09:03:26.577 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: kXpressCompression supported: 0 2024-09-17T09:03:26.577 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: kBZip2Compression supported: 0 2024-09-17T09:03:26.578 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-17T09:03:26.578 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: kLZ4Compression supported: 1 2024-09-17T09:03:26.578 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: kZlibCompression supported: 1 2024-09-17T09:03:26.578 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-17T09:03:26.578 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: kSnappyCompression supported: 1 2024-09-17T09:03:26.578 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-17T09:03:26.578 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-17T09:03:26.578 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: [db/db_impl/db_impl_open.cc:317] Creating manifest 1 2024-09-17T09:03:26.579 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr 2024-09-17T09:03:26.579 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000001 2024-09-17T09:03:26.579 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr 2024-09-17T09:03:26.579 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-17T09:03:26.579 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr 2024-09-17T09:03:26.579 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-17T09:03:26.579 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.merge_operator: 2024-09-17T09:03:26.579 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.compaction_filter: None 2024-09-17T09:03:26.579 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.compaction_filter_factory: None 2024-09-17T09:03:26.580 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-17T09:03:26.580 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-17T09:03:26.580 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-17T09:03:26.580 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x564eca9b7d40) 2024-09-17T09:03:26.580 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks: 1 2024-09-17T09:03:26.580 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks_with_high_priority: 0 2024-09-17T09:03:26.580 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-17T09:03:26.580 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr pin_top_level_index_and_filter: 1 2024-09-17T09:03:26.581 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr index_type: 0 2024-09-17T09:03:26.581 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr data_block_index_type: 0 2024-09-17T09:03:26.581 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr index_shortening: 1 2024-09-17T09:03:26.581 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr data_block_hash_table_util_ratio: 0.750000 2024-09-17T09:03:26.581 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr checksum: 4 2024-09-17T09:03:26.581 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr no_block_cache: 0 2024-09-17T09:03:26.581 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr block_cache: 0x564eca9ab1f0 2024-09-17T09:03:26.581 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr block_cache_name: BinnedLRUCache 2024-09-17T09:03:26.582 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr block_cache_options: 2024-09-17T09:03:26.582 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr capacity : 536870912 2024-09-17T09:03:26.582 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr num_shard_bits : 4 2024-09-17T09:03:26.582 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr strict_capacity_limit : 0 2024-09-17T09:03:26.582 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr high_pri_pool_ratio: 0.000 2024-09-17T09:03:26.582 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr block_cache_compressed: (nil) 2024-09-17T09:03:26.582 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr persistent_cache: (nil) 2024-09-17T09:03:26.582 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr block_size: 4096 2024-09-17T09:03:26.582 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr block_size_deviation: 10 2024-09-17T09:03:26.583 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr block_restart_interval: 16 2024-09-17T09:03:26.583 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr index_block_restart_interval: 1 2024-09-17T09:03:26.583 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr metadata_block_size: 4096 2024-09-17T09:03:26.583 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr partition_filters: 0 2024-09-17T09:03:26.583 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr use_delta_encoding: 1 2024-09-17T09:03:26.583 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr filter_policy: bloomfilter 2024-09-17T09:03:26.583 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr whole_key_filtering: 1 2024-09-17T09:03:26.583 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr verify_compression: 0 2024-09-17T09:03:26.584 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr read_amp_bytes_per_bit: 0 2024-09-17T09:03:26.584 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr format_version: 5 2024-09-17T09:03:26.584 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr enable_index_compression: 1 2024-09-17T09:03:26.584 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr block_align: 0 2024-09-17T09:03:26.584 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr max_auto_readahead_size: 262144 2024-09-17T09:03:26.584 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr prepopulate_block_cache: 0 2024-09-17T09:03:26.584 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr initial_auto_readahead_size: 8192 2024-09-17T09:03:26.584 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr num_file_reads_for_auto_readahead: 2 2024-09-17T09:03:26.584 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr 2024-09-17T09:03:26.585 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-17T09:03:26.585 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-17T09:03:26.585 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.compression: NoCompression 2024-09-17T09:03:26.585 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-17T09:03:26.585 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-17T09:03:26.585 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-17T09:03:26.585 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.num_levels: 7 2024-09-17T09:03:26.585 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-17T09:03:26.586 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-17T09:03:26.586 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-17T09:03:26.586 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-17T09:03:26.586 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-17T09:03:26.586 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-17T09:03:26.586 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-17T09:03:26.586 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-17T09:03:26.586 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-17T09:03:26.586 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-17T09:03:26.587 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-17T09:03:26.587 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-17T09:03:26.587 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-17T09:03:26.587 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.compression_opts.level: 32767 2024-09-17T09:03:26.587 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-17T09:03:26.587 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-17T09:03:26.587 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-17T09:03:26.587 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-17T09:03:26.587 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-17T09:03:26.587 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.compression_opts.enabled: false 2024-09-17T09:03:26.587 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-17T09:03:26.587 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-17T09:03:26.587 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-17T09:03:26.587 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-17T09:03:26.588 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-17T09:03:26.588 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-17T09:03:26.588 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-17T09:03:26.588 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-17T09:03:26.588 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-17T09:03:26.588 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-17T09:03:26.588 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-17T09:03:26.588 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-17T09:03:26.588 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-17T09:03:26.588 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-17T09:03:26.588 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-17T09:03:26.588 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-17T09:03:26.588 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-17T09:03:26.589 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-17T09:03:26.589 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-17T09:03:26.589 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.arena_block_size: 1048576 2024-09-17T09:03:26.589 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-17T09:03:26.589 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-17T09:03:26.589 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-17T09:03:26.589 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-17T09:03:26.589 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-17T09:03:26.589 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-17T09:03:26.589 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-17T09:03:26.589 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-17T09:03:26.589 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-17T09:03:26.589 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-17T09:03:26.589 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-17T09:03:26.590 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-17T09:03:26.590 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-17T09:03:26.590 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-17T09:03:26.590 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.inplace_update_support: 0 2024-09-17T09:03:26.590 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-17T09:03:26.590 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-17T09:03:26.590 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-17T09:03:26.590 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-17T09:03:26.590 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.bloom_locality: 0 2024-09-17T09:03:26.590 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.max_successive_merges: 0 2024-09-17T09:03:26.590 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-17T09:03:26.590 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-17T09:03:26.591 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.force_consistency_checks: 1 2024-09-17T09:03:26.591 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-17T09:03:26.591 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.ttl: 2592000 2024-09-17T09:03:26.591 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-17T09:03:26.591 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-17T09:03:26.591 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-17T09:03:26.591 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.enable_blob_files: false 2024-09-17T09:03:26.591 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.min_blob_size: 0 2024-09-17T09:03:26.591 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.blob_file_size: 268435456 2024-09-17T09:03:26.591 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-17T09:03:26.591 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-17T09:03:26.591 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-17T09:03:26.591 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-17T09:03:26.591 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-17T09:03:26.592 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-17T09:03:26.592 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-17T09:03:26.592 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 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-17T09:03:26.592 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr 2024-09-17T09:03:26.592 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-17T09:03:26.592 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr 2024-09-17T09:03:26.592 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: d59ae136-33eb-4101-a475-5ccd611405b8 2024-09-17T09:03:26.592 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr 2024-09-17T09:03:26.592 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.899+0000 7fee6d3a3b00 4 rocksdb: [db/version_set.cc:5047] Creating manifest 5 2024-09-17T09:03:26.592 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr 2024-09-17T09:03:26.592 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.903+0000 7fee6d3a3b00 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x564eca9d6e00 2024-09-17T09:03:26.592 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.903+0000 7fee6d3a3b00 4 rocksdb: DB pointer 0x564ecaaa8000 2024-09-17T09:03:26.592 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.903+0000 7fee64b2f640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-17T09:03:26.593 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.903+0000 7fee64b2f640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-17T09:03:26.593 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr ** DB Stats ** 2024-09-17T09:03:26.593 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-09-17T09:03:26.593 INFO:teuthology.orchestra.run.smithi098.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-17T09:03:26.593 INFO:teuthology.orchestra.run.smithi098.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-17T09:03:26.593 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-17T09:03:26.593 INFO:teuthology.orchestra.run.smithi098.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-17T09:03:26.593 INFO:teuthology.orchestra.run.smithi098.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-17T09:03:26.593 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-17T09:03:26.593 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr 2024-09-17T09:03:26.593 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-09-17T09:03:26.593 INFO:teuthology.orchestra.run.smithi098.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-17T09:03:26.593 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-17T09:03:26.594 INFO:teuthology.orchestra.run.smithi098.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-17T09:03:26.594 INFO:teuthology.orchestra.run.smithi098.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-17T09:03:26.594 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr 2024-09-17T09:03:26.594 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-09-17T09:03:26.594 INFO:teuthology.orchestra.run.smithi098.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-17T09:03:26.594 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-17T09:03:26.594 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr 2024-09-17T09:03:26.594 INFO:teuthology.orchestra.run.smithi098.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-17T09:03:26.594 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr 2024-09-17T09:03:26.594 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-09-17T09:03:26.594 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr Flush(GB): cumulative 0.000, interval 0.000 2024-09-17T09:03:26.594 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr AddFile(GB): cumulative 0.000, interval 0.000 2024-09-17T09:03:26.594 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr AddFile(Total Files): cumulative 0, interval 0 2024-09-17T09:03:26.594 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr AddFile(L0 Files): cumulative 0, interval 0 2024-09-17T09:03:26.595 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr AddFile(Keys): cumulative 0, interval 0 2024-09-17T09:03:26.595 INFO:teuthology.orchestra.run.smithi098.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-17T09:03:26.595 INFO:teuthology.orchestra.run.smithi098.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-17T09:03:26.595 INFO:teuthology.orchestra.run.smithi098.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-17T09:03:26.595 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr Block cache BinnedLRUCache@0x564eca9ab1f0#7 capacity: 512.00 MB usage: 0.00 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 2.4e-05 secs_since: 0 2024-09-17T09:03:26.595 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) 2024-09-17T09:03:26.595 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr 2024-09-17T09:03:26.595 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr ** File Read Latency Histogram By Level [default] ** 2024-09-17T09:03:26.595 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr 2024-09-17T09:03:26.595 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.903+0000 7fee6d3a3b00 4 rocksdb: [db/db_impl/db_impl.cc:496] Shutdown: canceling all background work 2024-09-17T09:03:26.595 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.903+0000 7fee6d3a3b00 4 rocksdb: [db/db_impl/db_impl.cc:704] Shutdown complete 2024-09-17T09:03:26.596 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-17T09:03:25.903+0000 7fee6d3a3b00 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-a for mon.a 2024-09-17T09:03:26.596 INFO:teuthology.orchestra.run.smithi098.stdout:create mon.a on 2024-09-17T09:03:26.795 INFO:teuthology.orchestra.run.smithi098.stdout:systemctl: stderr Removed /etc/systemd/system/multi-user.target.wants/ceph.target. 2024-09-17T09:03:26.988 INFO:teuthology.orchestra.run.smithi098.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2024-09-17T09:03:27.209 INFO:teuthology.orchestra.run.smithi098.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968.target -> /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968.target. 2024-09-17T09:03:27.209 INFO:teuthology.orchestra.run.smithi098.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968.target -> /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968.target. 2024-09-17T09:03:27.470 INFO:teuthology.orchestra.run.smithi098.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@mon.a 2024-09-17T09:03:27.470 INFO:teuthology.orchestra.run.smithi098.stdout:systemctl: stderr Failed to reset failed state of unit ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@mon.a.service: Unit ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@mon.a.service not loaded. 2024-09-17T09:03:27.643 INFO:teuthology.orchestra.run.smithi098.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968.target.wants/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@mon.a.service -> /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service. 2024-09-17T09:03:27.655 INFO:teuthology.orchestra.run.smithi098.stdout:firewalld does not appear to be present 2024-09-17T09:03:27.655 INFO:teuthology.orchestra.run.smithi098.stdout:Not possible to enable service . firewalld.service is not available 2024-09-17T09:03:27.655 INFO:teuthology.orchestra.run.smithi098.stdout:Waiting for mon to start... 2024-09-17T09:03:27.655 INFO:teuthology.orchestra.run.smithi098.stdout:Waiting for mon... 2024-09-17T09:03:27.786 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:27 smithi098 systemd[1]: Started Ceph mon.a for 7d5e8b1e-74d3-11ef-bceb-c7b262605968. 2024-09-17T09:03:29.505 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:29 smithi098 bash[22177]: cluster 2024-09-17T09:03:29.311892+0000 mon.a (mon.0) 0 : cluster [INF] mkfs 7d5e8b1e-74d3-11ef-bceb-c7b262605968 2024-09-17T09:03:29.506 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:29 smithi098 bash[22177]: cluster 2024-09-17T09:03:29.289239+0000 mon.a (mon.0) 1 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-09-17T09:03:30.101 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout cluster: 2024-09-17T09:03:30.102 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout id: 7d5e8b1e-74d3-11ef-bceb-c7b262605968 2024-09-17T09:03:30.102 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-09-17T09:03:30.102 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout 2024-09-17T09:03:30.102 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout services: 2024-09-17T09:03:30.102 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum a (age 0.182591s) 2024-09-17T09:03:30.102 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-09-17T09:03:30.102 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-09-17T09:03:30.102 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout 2024-09-17T09:03:30.102 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout data: 2024-09-17T09:03:30.102 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-09-17T09:03:30.102 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-09-17T09:03:30.103 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-09-17T09:03:30.103 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout pgs: 2024-09-17T09:03:30.103 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout 2024-09-17T09:03:30.103 INFO:teuthology.orchestra.run.smithi098.stdout:mon is available 2024-09-17T09:03:30.103 INFO:teuthology.orchestra.run.smithi098.stdout:Assimilating anything we can from ceph.conf... 2024-09-17T09:03:30.613 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:30 smithi098 bash[22177]: cluster 2024-09-17T09:03:29.310849+0000 mon.a (mon.0) 2 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-09-17T09:03:30.613 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:30 smithi098 bash[22177]: cluster 2024-09-17T09:03:29.311082+0000 mon.a (mon.0) 3 : cluster [DBG] monmap e1: 1 mons at {a=[v2:172.21.15.98:3300/0,v1:172.21.15.98:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-17T09:03:30.613 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:30 smithi098 bash[22177]: cluster 2024-09-17T09:03:29.313433+0000 mon.a (mon.0) 4 : cluster [DBG] fsmap 2024-09-17T09:03:30.613 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:30 smithi098 bash[22177]: cluster 2024-09-17T09:03:29.315829+0000 mon.a (mon.0) 5 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-17T09:03:30.613 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:30 smithi098 bash[22177]: cluster 2024-09-17T09:03:29.316255+0000 mon.a (mon.0) 6 : cluster [DBG] mgrmap e1: no daemons active 2024-09-17T09:03:30.613 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:30 smithi098 bash[22177]: audit 2024-09-17T09:03:29.493394+0000 mon.a (mon.0) 7 : audit [DBG] from='client.? 172.21.15.98:0/557248224' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-09-17T09:03:31.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:31 smithi098 bash[22177]: audit 2024-09-17T09:03:31.353384+0000 mon.a (mon.0) 8 : audit [INF] from='client.? 172.21.15.98:0/255272627' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-09-17T09:03:31.863 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:31 smithi098 bash[22177]: audit 2024-09-17T09:03:31.358764+0000 mon.a (mon.0) 9 : audit [INF] from='client.? 172.21.15.98:0/255272627' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-17T09:03:31.875 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout 2024-09-17T09:03:31.875 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout [global] 2024-09-17T09:03:31.875 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout fsid = 7d5e8b1e-74d3-11ef-bceb-c7b262605968 2024-09-17T09:03:31.876 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.98:3300,v1:172.21.15.98:6789] 2024-09-17T09:03:31.876 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-17T09:03:31.876 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-17T09:03:31.876 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-17T09:03:31.876 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-17T09:03:31.876 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout 2024-09-17T09:03:31.877 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-17T09:03:31.877 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = False 2024-09-17T09:03:31.877 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-17T09:03:31.877 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout 2024-09-17T09:03:31.877 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout [osd] 2024-09-17T09:03:31.877 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-17T09:03:31.877 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-17T09:03:31.878 INFO:teuthology.orchestra.run.smithi098.stdout:Generating new minimal ceph.conf... 2024-09-17T09:03:33.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:33 smithi098 bash[22177]: audit 2024-09-17T09:03:33.072123+0000 mon.a (mon.0) 10 : audit [DBG] from='client.? 172.21.15.98:0/2781499400' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:03:33.673 INFO:teuthology.orchestra.run.smithi098.stdout:Restarting the monitor... 2024-09-17T09:03:34.032 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:33 smithi098 systemd[1]: Stopping Ceph mon.a for 7d5e8b1e-74d3-11ef-bceb-c7b262605968... 2024-09-17T09:03:34.032 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:33 smithi098 bash[22177]: debug 2024-09-17T09:03:33.807+0000 7fc625bcd640 -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-17T09:03:34.032 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:33 smithi098 bash[22177]: debug 2024-09-17T09:03:33.807+0000 7fc625bcd640 -1 mon.a@0(leader) e1 *** Got Signal Terminated *** 2024-09-17T09:03:34.620 INFO:teuthology.orchestra.run.smithi098.stdout:Setting public_network to 172.21.0.2/32,172.21.0.0/20,172.21.15.254/32,172.21.0.1/32 in mon config section 2024-09-17T09:03:34.729 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:34 smithi098 bash[22560]: ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968-mon-a 2024-09-17T09:03:34.730 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:34 smithi098 bash[22622]: ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968-mon-a 2024-09-17T09:03:34.730 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:34 smithi098 systemd[1]: ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@mon.a.service: Deactivated successfully. 2024-09-17T09:03:34.730 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:34 smithi098 systemd[1]: Stopped Ceph mon.a for 7d5e8b1e-74d3-11ef-bceb-c7b262605968. 2024-09-17T09:03:34.730 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:34 smithi098 systemd[1]: Started Ceph mon.a for 7d5e8b1e-74d3-11ef-bceb-c7b262605968. 2024-09-17T09:03:36.366 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.179+0000 7f269a9a3b00 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-17T09:03:36.366 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.179+0000 7f269a9a3b00 0 ceph version 18.2.4-855-g19e2a2be (19e2a2beb6f41a3ab62650e38614eb29b59dcbb9) reef (stable), process ceph-mon, pid 7 2024-09-17T09:03:36.366 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.179+0000 7f269a9a3b00 0 pidfile_write: ignore empty --pid-file 2024-09-17T09:03:36.366 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 0 load: jerasure load: lrc 2024-09-17T09:03:36.367 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: RocksDB version: 7.9.2 2024-09-17T09:03:36.367 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Git sha 0 2024-09-17T09:03:36.367 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Compile date 2024-09-16 15:15:13 2024-09-17T09:03:36.367 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: DB SUMMARY 2024-09-17T09:03:36.367 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: DB Session ID: E4BYQXHR5OI2HHO4VSCW 2024-09-17T09:03:36.368 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: CURRENT file: CURRENT 2024-09-17T09:03:36.368 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: IDENTITY file: IDENTITY 2024-09-17T09:03:36.368 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-09-17T09:03:36.368 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 1, files: 000008.sst 2024-09-17T09:03:36.368 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 000009.log size: 83720 ; 2024-09-17T09:03:36.369 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.error_if_exists: 0 2024-09-17T09:03:36.369 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.create_if_missing: 0 2024-09-17T09:03:36.369 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.paranoid_checks: 1 2024-09-17T09:03:36.369 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-17T09:03:36.369 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-17T09:03:36.370 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-17T09:03:36.370 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.env: 0x56202bd8bbc0 2024-09-17T09:03:36.370 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.fs: PosixFileSystem 2024-09-17T09:03:36.370 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.info_log: 0x56202cc84be0 2024-09-17T09:03:36.370 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-17T09:03:36.370 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.statistics: (nil) 2024-09-17T09:03:36.371 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.use_fsync: 0 2024-09-17T09:03:36.371 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.max_log_file_size: 0 2024-09-17T09:03:36.371 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-17T09:03:36.371 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-17T09:03:36.371 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-17T09:03:36.372 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-17T09:03:36.372 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.allow_fallocate: 1 2024-09-17T09:03:36.372 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-17T09:03:36.372 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-17T09:03:36.372 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.use_direct_reads: 0 2024-09-17T09:03:36.372 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-17T09:03:36.373 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.create_missing_column_families: 0 2024-09-17T09:03:36.373 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.db_log_dir: 2024-09-17T09:03:36.373 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.wal_dir: 2024-09-17T09:03:36.373 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-17T09:03:36.373 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-17T09:03:36.373 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-17T09:03:36.374 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-17T09:03:36.374 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-17T09:03:36.374 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-17T09:03:36.374 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.advise_random_on_open: 1 2024-09-17T09:03:36.374 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-17T09:03:36.374 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.write_buffer_manager: 0x56202cc92320 2024-09-17T09:03:36.375 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-17T09:03:36.375 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-17T09:03:36.375 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-17T09:03:36.375 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.rate_limiter: (nil) 2024-09-17T09:03:36.375 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-17T09:03:36.375 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-17T09:03:36.375 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-17T09:03:36.376 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-17T09:03:36.376 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.unordered_write: 0 2024-09-17T09:03:36.376 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-17T09:03:36.376 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-17T09:03:36.376 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-17T09:03:36.376 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-17T09:03:36.376 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.row_cache: None 2024-09-17T09:03:36.377 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.wal_filter: None 2024-09-17T09:03:36.377 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-17T09:03:36.377 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-17T09:03:36.377 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.two_write_queues: 0 2024-09-17T09:03:36.377 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.manual_wal_flush: 0 2024-09-17T09:03:36.377 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.wal_compression: 0 2024-09-17T09:03:36.377 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.atomic_flush: 0 2024-09-17T09:03:36.378 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-17T09:03:36.378 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-17T09:03:36.378 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-17T09:03:36.379 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.log_readahead_size: 0 2024-09-17T09:03:36.379 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-17T09:03:36.379 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-17T09:03:36.379 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-17T09:03:36.379 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-17T09:03:36.380 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-17T09:03:36.380 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-17T09:03:36.380 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-17T09:03:36.380 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.max_background_jobs: 2 2024-09-17T09:03:36.380 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.max_background_compactions: -1 2024-09-17T09:03:36.380 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.max_subcompactions: 1 2024-09-17T09:03:36.381 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-17T09:03:36.382 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-17T09:03:36.382 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-17T09:03:36.382 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.max_total_wal_size: 0 2024-09-17T09:03:36.382 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-17T09:03:36.382 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-17T09:03:36.382 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-17T09:03:36.383 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-17T09:03:36.383 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.max_open_files: -1 2024-09-17T09:03:36.383 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.bytes_per_sync: 0 2024-09-17T09:03:36.383 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-17T09:03:36.383 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-17T09:03:36.383 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-17T09:03:36.383 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.max_background_flushes: -1 2024-09-17T09:03:36.384 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Compression algorithms supported: 2024-09-17T09:03:36.384 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: kZSTD supported: 0 2024-09-17T09:03:36.384 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: kXpressCompression supported: 0 2024-09-17T09:03:36.384 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: kBZip2Compression supported: 0 2024-09-17T09:03:36.384 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-17T09:03:36.384 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: kLZ4Compression supported: 1 2024-09-17T09:03:36.384 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: kZlibCompression supported: 1 2024-09-17T09:03:36.385 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-17T09:03:36.385 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: kSnappyCompression supported: 1 2024-09-17T09:03:36.385 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-17T09:03:36.385 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-17T09:03:36.385 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 2024-09-17T09:03:36.386 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-17T09:03:36.386 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-17T09:03:36.386 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.merge_operator: 2024-09-17T09:03:36.386 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.compaction_filter: None 2024-09-17T09:03:36.386 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.compaction_filter_factory: None 2024-09-17T09:03:36.386 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-17T09:03:36.386 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-17T09:03:36.386 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-17T09:03:36.387 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x56202cc847e0) 2024-09-17T09:03:36.387 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: cache_index_and_filter_blocks: 1 2024-09-17T09:03:36.387 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-17T09:03:36.387 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-17T09:03:36.387 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: pin_top_level_index_and_filter: 1 2024-09-17T09:03:36.387 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: index_type: 0 2024-09-17T09:03:36.388 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: data_block_index_type: 0 2024-09-17T09:03:36.388 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: index_shortening: 1 2024-09-17T09:03:36.388 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: data_block_hash_table_util_ratio: 0.750000 2024-09-17T09:03:36.388 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: checksum: 4 2024-09-17T09:03:36.388 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: no_block_cache: 0 2024-09-17T09:03:36.389 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: block_cache: 0x56202cc7b350 2024-09-17T09:03:36.389 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: block_cache_name: BinnedLRUCache 2024-09-17T09:03:36.389 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: block_cache_options: 2024-09-17T09:03:36.389 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: capacity : 536870912 2024-09-17T09:03:36.389 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: num_shard_bits : 4 2024-09-17T09:03:36.390 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: strict_capacity_limit : 0 2024-09-17T09:03:36.390 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: high_pri_pool_ratio: 0.000 2024-09-17T09:03:36.390 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: block_cache_compressed: (nil) 2024-09-17T09:03:36.390 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: persistent_cache: (nil) 2024-09-17T09:03:36.390 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: block_size: 4096 2024-09-17T09:03:36.391 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: block_size_deviation: 10 2024-09-17T09:03:36.391 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: block_restart_interval: 16 2024-09-17T09:03:36.391 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: index_block_restart_interval: 1 2024-09-17T09:03:36.391 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: metadata_block_size: 4096 2024-09-17T09:03:36.391 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: partition_filters: 0 2024-09-17T09:03:36.392 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: use_delta_encoding: 1 2024-09-17T09:03:36.392 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: filter_policy: bloomfilter 2024-09-17T09:03:36.392 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: whole_key_filtering: 1 2024-09-17T09:03:36.392 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: verify_compression: 0 2024-09-17T09:03:36.392 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: read_amp_bytes_per_bit: 0 2024-09-17T09:03:36.393 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: format_version: 5 2024-09-17T09:03:36.393 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: enable_index_compression: 1 2024-09-17T09:03:36.393 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: block_align: 0 2024-09-17T09:03:36.393 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: max_auto_readahead_size: 262144 2024-09-17T09:03:36.393 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: prepopulate_block_cache: 0 2024-09-17T09:03:36.394 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: initial_auto_readahead_size: 8192 2024-09-17T09:03:36.394 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: num_file_reads_for_auto_readahead: 2 2024-09-17T09:03:36.394 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-17T09:03:36.394 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-17T09:03:36.394 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.compression: NoCompression 2024-09-17T09:03:36.394 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-17T09:03:36.395 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-17T09:03:36.395 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-17T09:03:36.395 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.num_levels: 7 2024-09-17T09:03:36.395 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-17T09:03:36.395 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-17T09:03:36.396 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-17T09:03:36.396 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-17T09:03:36.396 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-17T09:03:36.396 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-17T09:03:36.396 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-17T09:03:36.397 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-17T09:03:36.397 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-17T09:03:36.397 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-17T09:03:36.397 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-17T09:03:36.397 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-17T09:03:36.398 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-17T09:03:36.398 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.compression_opts.level: 32767 2024-09-17T09:03:36.398 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-17T09:03:36.398 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-17T09:03:36.398 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-17T09:03:36.399 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-17T09:03:36.399 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-17T09:03:36.399 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.compression_opts.enabled: false 2024-09-17T09:03:36.399 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-17T09:03:36.399 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-17T09:03:36.399 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-17T09:03:36.400 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-17T09:03:36.400 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-17T09:03:36.400 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-17T09:03:36.400 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-17T09:03:36.400 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-17T09:03:36.400 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-17T09:03:36.400 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-17T09:03:36.401 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-17T09:03:36.401 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-17T09:03:36.401 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-17T09:03:36.401 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-17T09:03:36.401 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-17T09:03:36.401 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-17T09:03:36.401 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-17T09:03:36.401 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-17T09:03:36.402 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-17T09:03:36.402 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.arena_block_size: 1048576 2024-09-17T09:03:36.402 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-17T09:03:36.402 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-17T09:03:36.402 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-17T09:03:36.402 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-17T09:03:36.402 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-17T09:03:36.402 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-17T09:03:36.402 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-17T09:03:36.403 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-17T09:03:36.403 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-17T09:03:36.403 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-17T09:03:36.403 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-17T09:03:36.403 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-17T09:03:36.403 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-17T09:03:36.403 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-17T09:03:36.403 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.inplace_update_support: 0 2024-09-17T09:03:36.404 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-17T09:03:36.404 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-17T09:03:36.404 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-17T09:03:36.404 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-17T09:03:36.404 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.bloom_locality: 0 2024-09-17T09:03:36.404 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.max_successive_merges: 0 2024-09-17T09:03:36.404 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-17T09:03:36.404 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-17T09:03:36.405 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.force_consistency_checks: 1 2024-09-17T09:03:36.405 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-17T09:03:36.405 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.ttl: 2592000 2024-09-17T09:03:36.405 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-17T09:03:36.405 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-17T09:03:36.405 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-17T09:03:36.405 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.enable_blob_files: false 2024-09-17T09:03:36.405 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.min_blob_size: 0 2024-09-17T09:03:36.405 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.blob_file_size: 268435456 2024-09-17T09:03:36.406 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-17T09:03:36.406 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-17T09:03:36.406 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-17T09:03:36.406 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-17T09:03:36.406 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-17T09:03:36.406 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-17T09:03:36.406 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-17T09:03:36.406 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 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-17T09:03:36.406 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-09-17T09:03:36.406 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: d59ae136-33eb-4101-a475-5ccd611405b8 2024-09-17T09:03:36.406 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726563816189364, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-09-17T09:03:36.406 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.183+0000 7f269a9a3b00 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-09-17T09:03:36.406 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.187+0000 7f269a9a3b00 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726563816190570, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 80493, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 250, "table_properties": {"data_size": 78654, "index_size": 223, "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": 9896, "raw_average_key_size": 47, "raw_value_size": 72962, "raw_average_value_size": 349, "num_data_blocks": 10, "num_entries": 209, "num_filter_entries": 209, "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": 1726563816, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "d59ae136-33eb-4101-a475-5ccd611405b8", "db_session_id": "E4BYQXHR5OI2HHO4VSCW", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-09-17T09:03:36.407 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.187+0000 7f269a9a3b00 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726563816190685, "job": 1, "event": "recovery_finished"} 2024-09-17T09:03:36.407 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.187+0000 7f269a9a3b00 4 rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-09-17T09:03:36.407 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.187+0000 7f269a9a3b00 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-17T09:03:36.407 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.187+0000 7f269a9a3b00 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x56202cca4e00 2024-09-17T09:03:36.407 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.187+0000 7f269a9a3b00 4 rocksdb: DB pointer 0x56202cd9c000 2024-09-17T09:03:36.407 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.187+0000 7f269076e640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-17T09:03:36.407 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.187+0000 7f269076e640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-17T09:03:36.407 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: ** DB Stats ** 2024-09-17T09:03:36.407 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-17T09:03:36.407 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: 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-17T09:03:36.407 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-17T09:03:36.407 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-17T09:03:36.407 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: 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-17T09:03:36.408 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-17T09:03:36.408 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-17T09:03:36.408 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: ** Compaction Stats [default] ** 2024-09-17T09:03:36.408 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: 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-17T09:03:36.408 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-17T09:03:36.408 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: L0 2/0 80.47 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 104.7 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T09:03:36.408 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: Sum 2/0 80.47 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 104.7 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T09:03:36.408 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 104.7 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T09:03:36.408 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: ** Compaction Stats [default] ** 2024-09-17T09:03:36.408 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: 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-17T09:03:36.408 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-17T09:03:36.408 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 104.7 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T09:03:36.408 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-17T09:03:36.409 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-17T09:03:36.409 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: Flush(GB): cumulative 0.000, interval 0.000 2024-09-17T09:03:36.409 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-17T09:03:36.409 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: AddFile(Total Files): cumulative 0, interval 0 2024-09-17T09:03:36.409 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: AddFile(L0 Files): cumulative 0, interval 0 2024-09-17T09:03:36.409 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: AddFile(Keys): cumulative 0, interval 0 2024-09-17T09:03:36.409 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: Cumulative compaction: 0.00 GB write, 16.98 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-17T09:03:36.409 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: Interval compaction: 0.00 GB write, 16.98 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-17T09:03:36.409 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: 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-17T09:03:36.409 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: Block cache BinnedLRUCache@0x56202cc7b350#7 capacity: 512.00 MB usage: 1.17 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.8e-05 secs_since: 0 2024-09-17T09:03:36.409 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: Block cache entry stats(count,size,portion): FilterBlock(2,0.77 KB,0.000146031%) IndexBlock(2,0.41 KB,7.7486e-05%) Misc(1,0.00 KB,0%) 2024-09-17T09:03:36.409 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: ** File Read Latency Histogram By Level [default] ** 2024-09-17T09:03:36.409 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.187+0000 7f269a9a3b00 0 starting mon.a rank 0 at public addrs [v2:172.21.15.98:3300/0,v1:172.21.15.98:6789/0] at bind addrs [v2:172.21.15.98:3300/0,v1:172.21.15.98:6789/0] mon_data /var/lib/ceph/mon/ceph-a fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 2024-09-17T09:03:36.409 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.191+0000 7f269a9a3b00 1 mon.a@-1(???) e1 preinit fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 2024-09-17T09:03:36.410 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.191+0000 7f269a9a3b00 0 mon.a@-1(???).mds e1 new map 2024-09-17T09:03:36.410 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.191+0000 7f269a9a3b00 0 mon.a@-1(???).mds e1 print_map 2024-09-17T09:03:36.410 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: e1 2024-09-17T09:03:36.410 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: enable_multiple, ever_enabled_multiple: 1,1 2024-09-17T09:03:36.410 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2} 2024-09-17T09:03:36.410 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: legacy client fscid: -1 2024-09-17T09:03:36.410 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: 2024-09-17T09:03:36.410 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: No filesystems configured 2024-09-17T09:03:36.410 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.191+0000 7f269a9a3b00 0 mon.a@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-17T09:03:36.410 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.191+0000 7f269a9a3b00 0 mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T09:03:36.410 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.191+0000 7f269a9a3b00 0 mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T09:03:36.410 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.191+0000 7f269a9a3b00 0 mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T09:03:36.411 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: debug 2024-09-17T09:03:36.191+0000 7f269a9a3b00 1 mon.a@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-09-17T09:03:36.411 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: cluster 2024-09-17T09:03:36.218830+0000 mon.a (mon.0) 1 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-09-17T09:03:36.411 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: cluster 2024-09-17T09:03:36.218888+0000 mon.a (mon.0) 2 : cluster [DBG] monmap e1: 1 mons at {a=[v2:172.21.15.98:3300/0,v1:172.21.15.98:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-17T09:03:36.411 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: cluster 2024-09-17T09:03:36.219379+0000 mon.a (mon.0) 3 : cluster [DBG] fsmap 2024-09-17T09:03:36.411 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: cluster 2024-09-17T09:03:36.219434+0000 mon.a (mon.0) 4 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-17T09:03:36.411 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:36 smithi098 bash[22661]: cluster 2024-09-17T09:03:36.219956+0000 mon.a (mon.0) 5 : cluster [DBG] mgrmap e1: no daemons active 2024-09-17T09:03:37.061 INFO:teuthology.orchestra.run.smithi098.stdout:Wrote config to /etc/ceph/ceph.conf 2024-09-17T09:03:37.086 INFO:teuthology.orchestra.run.smithi098.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-09-17T09:03:37.086 INFO:teuthology.orchestra.run.smithi098.stdout:Creating mgr... 2024-09-17T09:03:37.087 INFO:teuthology.orchestra.run.smithi098.stdout:Verifying port 0.0.0.0:9283 ... 2024-09-17T09:03:37.087 INFO:teuthology.orchestra.run.smithi098.stdout:Verifying port 0.0.0.0:8765 ... 2024-09-17T09:03:37.389 INFO:teuthology.orchestra.run.smithi098.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@mgr.a 2024-09-17T09:03:37.389 INFO:teuthology.orchestra.run.smithi098.stdout:systemctl: stderr Failed to reset failed state of unit ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@mgr.a.service: Unit ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@mgr.a.service not loaded. 2024-09-17T09:03:37.434 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:37 smithi098 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:03:37.551 INFO:teuthology.orchestra.run.smithi098.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968.target.wants/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@mgr.a.service -> /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service. 2024-09-17T09:03:37.558 INFO:teuthology.orchestra.run.smithi098.stdout:firewalld does not appear to be present 2024-09-17T09:03:37.559 INFO:teuthology.orchestra.run.smithi098.stdout:Not possible to enable service . firewalld.service is not available 2024-09-17T09:03:37.559 INFO:teuthology.orchestra.run.smithi098.stdout:firewalld does not appear to be present 2024-09-17T09:03:37.559 INFO:teuthology.orchestra.run.smithi098.stdout:Not possible to open ports <[9283, 8765]>. firewalld.service is not available 2024-09-17T09:03:37.559 INFO:teuthology.orchestra.run.smithi098.stdout:Waiting for mgr to start... 2024-09-17T09:03:37.559 INFO:teuthology.orchestra.run.smithi098.stdout:Waiting for mgr... 2024-09-17T09:03:37.821 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:37 smithi098 bash[22661]: audit 2024-09-17T09:03:36.436336+0000 mon.a (mon.0) 6 : audit [INF] from='client.? 172.21.15.98:0/3115048647' entity='client.admin' 2024-09-17T09:03:37.821 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:37 smithi098 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:03:39.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:39 smithi098 bash[22661]: audit 2024-09-17T09:03:39.413165+0000 mon.a (mon.0) 7 : audit [DBG] from='client.? 172.21.15.98:0/1357618128' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-17T09:03:39.863 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:39 smithi098 bash[22914]: debug 2024-09-17T09:03:39.411+0000 7f5bc5c7e040 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-17T09:03:40.085 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout 2024-09-17T09:03:40.085 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout { 2024-09-17T09:03:40.085 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "fsid": "7d5e8b1e-74d3-11ef-bceb-c7b262605968", 2024-09-17T09:03:40.085 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "health": { 2024-09-17T09:03:40.085 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-17T09:03:40.085 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-17T09:03:40.085 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-17T09:03:40.085 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout }, 2024-09-17T09:03:40.085 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-17T09:03:40.085 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-17T09:03:40.085 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout 0 2024-09-17T09:03:40.086 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout ], 2024-09-17T09:03:40.086 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-17T09:03:40.086 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "a" 2024-09-17T09:03:40.086 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout ], 2024-09-17T09:03:40.086 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "quorum_age": 3, 2024-09-17T09:03:40.086 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-17T09:03:40.086 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T09:03:40.086 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "reef", 2024-09-17T09:03:40.086 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-17T09:03:40.086 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout }, 2024-09-17T09:03:40.086 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-17T09:03:40.086 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T09:03:40.086 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-17T09:03:40.086 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-17T09:03:40.087 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-17T09:03:40.087 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-17T09:03:40.090 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-17T09:03:40.090 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-17T09:03:40.090 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout }, 2024-09-17T09:03:40.090 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-17T09:03:40.090 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-17T09:03:40.090 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-17T09:03:40.090 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-17T09:03:40.091 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-17T09:03:40.091 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-17T09:03:40.091 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-17T09:03:40.091 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-17T09:03:40.091 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-17T09:03:40.091 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout }, 2024-09-17T09:03:40.091 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-17T09:03:40.091 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T09:03:40.091 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-17T09:03:40.091 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-17T09:03:40.091 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout }, 2024-09-17T09:03:40.091 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-17T09:03:40.091 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-17T09:03:40.091 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-17T09:03:40.092 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-17T09:03:40.092 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-17T09:03:40.092 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-17T09:03:40.092 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "restful" 2024-09-17T09:03:40.092 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout ], 2024-09-17T09:03:40.092 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T09:03:40.092 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout }, 2024-09-17T09:03:40.092 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-17T09:03:40.092 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T09:03:40.092 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "modified": "2024-09-17T09:03:29.312312+0000", 2024-09-17T09:03:40.092 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T09:03:40.092 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout }, 2024-09-17T09:03:40.092 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-17T09:03:40.092 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout } 2024-09-17T09:03:40.093 INFO:teuthology.orchestra.run.smithi098.stdout:mgr not available, waiting (1/15)... 2024-09-17T09:03:40.862 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:40 smithi098 bash[22914]: debug 2024-09-17T09:03:40.591+0000 7f5bc5c7e040 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-17T09:03:40.862 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:40 smithi098 bash[22914]: debug 2024-09-17T09:03:40.655+0000 7f5bc5c7e040 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-17T09:03:40.862 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:40 smithi098 bash[22914]: debug 2024-09-17T09:03:40.803+0000 7f5bc5c7e040 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-17T09:03:41.749 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:41 smithi098 bash[22914]: debug 2024-09-17T09:03:41.427+0000 7f5bc5c7e040 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-17T09:03:41.749 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:41 smithi098 bash[22914]: debug 2024-09-17T09:03:41.495+0000 7f5bc5c7e040 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-17T09:03:41.749 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:41 smithi098 bash[22914]: debug 2024-09-17T09:03:41.563+0000 7f5bc5c7e040 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-17T09:03:42.112 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:41 smithi098 bash[22914]: debug 2024-09-17T09:03:41.743+0000 7f5bc5c7e040 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-17T09:03:42.112 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:41 smithi098 bash[22914]: debug 2024-09-17T09:03:41.819+0000 7f5bc5c7e040 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-17T09:03:42.112 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:41 smithi098 bash[22914]: debug 2024-09-17T09:03:41.883+0000 7f5bc5c7e040 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-17T09:03:42.398 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:42 smithi098 bash[22914]: debug 2024-09-17T09:03:42.135+0000 7f5bc5c7e040 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-17T09:03:42.399 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:42 smithi098 bash[22914]: debug 2024-09-17T09:03:42.203+0000 7f5bc5c7e040 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-17T09:03:42.720 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:42 smithi098 bash[22914]: debug 2024-09-17T09:03:42.391+0000 7f5bc5c7e040 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-17T09:03:42.720 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:42 smithi098 bash[22914]: debug 2024-09-17T09:03:42.467+0000 7f5bc5c7e040 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-17T09:03:43.054 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:42 smithi098 bash[22914]: debug 2024-09-17T09:03:42.715+0000 7f5bc5c7e040 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-09-17T09:03:43.054 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:42 smithi098 bash[22914]: debug 2024-09-17T09:03:42.887+0000 7f5bc5c7e040 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-17T09:03:43.317 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:43 smithi098 bash[22914]: debug 2024-09-17T09:03:43.047+0000 7f5bc5c7e040 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-17T09:03:43.317 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:43 smithi098 bash[22914]: debug 2024-09-17T09:03:43.127+0000 7f5bc5c7e040 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-17T09:03:43.612 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:43 smithi098 bash[22661]: audit 2024-09-17T09:03:43.428121+0000 mon.a (mon.0) 8 : audit [DBG] from='client.? 172.21.15.98:0/539052789' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-17T09:03:43.612 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:43 smithi098 bash[22914]: debug 2024-09-17T09:03:43.311+0000 7f5bc5c7e040 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-17T09:03:44.032 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout 2024-09-17T09:03:44.032 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout { 2024-09-17T09:03:44.032 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "fsid": "7d5e8b1e-74d3-11ef-bceb-c7b262605968", 2024-09-17T09:03:44.032 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "health": { 2024-09-17T09:03:44.032 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-17T09:03:44.032 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-17T09:03:44.034 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-17T09:03:44.034 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout }, 2024-09-17T09:03:44.034 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-17T09:03:44.034 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-17T09:03:44.034 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout 0 2024-09-17T09:03:44.035 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout ], 2024-09-17T09:03:44.035 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-17T09:03:44.035 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "a" 2024-09-17T09:03:44.035 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout ], 2024-09-17T09:03:44.035 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "quorum_age": 7, 2024-09-17T09:03:44.035 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-17T09:03:44.035 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T09:03:44.035 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "reef", 2024-09-17T09:03:44.035 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-17T09:03:44.035 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout }, 2024-09-17T09:03:44.035 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-17T09:03:44.035 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T09:03:44.036 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-17T09:03:44.037 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-17T09:03:44.037 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-17T09:03:44.037 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-17T09:03:44.037 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-17T09:03:44.037 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-17T09:03:44.037 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout }, 2024-09-17T09:03:44.037 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-17T09:03:44.037 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-17T09:03:44.037 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-17T09:03:44.040 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-17T09:03:44.040 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-17T09:03:44.040 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-17T09:03:44.040 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-17T09:03:44.040 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-17T09:03:44.040 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-17T09:03:44.040 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout }, 2024-09-17T09:03:44.041 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-17T09:03:44.041 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T09:03:44.041 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-17T09:03:44.041 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-17T09:03:44.041 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout }, 2024-09-17T09:03:44.041 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-17T09:03:44.041 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-17T09:03:44.041 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-17T09:03:44.041 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-17T09:03:44.041 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-17T09:03:44.041 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-17T09:03:44.041 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "restful" 2024-09-17T09:03:44.041 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout ], 2024-09-17T09:03:44.041 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T09:03:44.042 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout }, 2024-09-17T09:03:44.042 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-17T09:03:44.042 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T09:03:44.042 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "modified": "2024-09-17T09:03:29.312312+0000", 2024-09-17T09:03:44.042 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T09:03:44.042 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout }, 2024-09-17T09:03:44.042 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-17T09:03:44.042 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout } 2024-09-17T09:03:44.042 INFO:teuthology.orchestra.run.smithi098.stdout:mgr not available, waiting (2/15)... 2024-09-17T09:03:44.404 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:44 smithi098 bash[22914]: debug 2024-09-17T09:03:44.107+0000 7f5bc5c7e040 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-17T09:03:44.405 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:44 smithi098 bash[22914]: debug 2024-09-17T09:03:44.183+0000 7f5bc5c7e040 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-17T09:03:44.853 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:44 smithi098 bash[22914]: debug 2024-09-17T09:03:44.399+0000 7f5bc5c7e040 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-17T09:03:44.853 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:44 smithi098 bash[22914]: debug 2024-09-17T09:03:44.471+0000 7f5bc5c7e040 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-17T09:03:45.112 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:44 smithi098 bash[22914]: debug 2024-09-17T09:03:44.847+0000 7f5bc5c7e040 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-17T09:03:45.112 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:44 smithi098 bash[22914]: debug 2024-09-17T09:03:44.923+0000 7f5bc5c7e040 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-17T09:03:45.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:45 smithi098 bash[22661]: cluster 2024-09-17T09:03:44.948233+0000 mon.a (mon.0) 9 : cluster [INF] Activating manager daemon a 2024-09-17T09:03:45.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:45 smithi098 bash[22661]: cluster 2024-09-17T09:03:44.952510+0000 mon.a (mon.0) 10 : cluster [DBG] mgrmap e2: a(active, starting, since 0.00453236s) 2024-09-17T09:03:45.113 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:45 smithi098 bash[22661]: audit 2024-09-17T09:03:44.954842+0000 mon.a (mon.0) 11 : audit [DBG] from='mgr.14102 172.21.15.98:0/2859167895' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-17T09:03:45.113 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:45 smithi098 bash[22661]: audit 2024-09-17T09:03:44.955004+0000 mon.a (mon.0) 12 : audit [DBG] from='mgr.14102 172.21.15.98:0/2859167895' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-17T09:03:45.113 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:45 smithi098 bash[22661]: audit 2024-09-17T09:03:44.955148+0000 mon.a (mon.0) 13 : audit [DBG] from='mgr.14102 172.21.15.98:0/2859167895' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-17T09:03:45.113 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:45 smithi098 bash[22661]: audit 2024-09-17T09:03:44.955258+0000 mon.a (mon.0) 14 : audit [DBG] from='mgr.14102 172.21.15.98:0/2859167895' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T09:03:45.113 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:45 smithi098 bash[22661]: audit 2024-09-17T09:03:44.956811+0000 mon.a (mon.0) 15 : audit [DBG] from='mgr.14102 172.21.15.98:0/2859167895' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-17T09:03:45.113 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:45 smithi098 bash[22661]: cluster 2024-09-17T09:03:44.980280+0000 mon.a (mon.0) 16 : cluster [INF] Manager daemon a is now available 2024-09-17T09:03:45.113 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:45 smithi098 bash[22661]: audit 2024-09-17T09:03:44.991158+0000 mon.a (mon.0) 17 : audit [INF] from='mgr.14102 172.21.15.98:0/2859167895' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-17T09:03:45.113 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:45 smithi098 bash[22661]: audit 2024-09-17T09:03:44.993215+0000 mon.a (mon.0) 18 : audit [INF] from='mgr.14102 172.21.15.98:0/2859167895' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-17T09:03:45.113 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:45 smithi098 bash[22661]: audit 2024-09-17T09:03:44.996231+0000 mon.a (mon.0) 19 : audit [INF] from='mgr.14102 172.21.15.98:0/2859167895' entity='mgr.a' 2024-09-17T09:03:45.113 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:45 smithi098 bash[22661]: audit 2024-09-17T09:03:44.998144+0000 mon.a (mon.0) 20 : audit [INF] from='mgr.14102 172.21.15.98:0/2859167895' entity='mgr.a' 2024-09-17T09:03:45.113 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:45 smithi098 bash[22661]: audit 2024-09-17T09:03:45.000218+0000 mon.a (mon.0) 21 : audit [INF] from='mgr.14102 172.21.15.98:0/2859167895' entity='mgr.a' 2024-09-17T09:03:47.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:46 smithi098 bash[22661]: cluster 2024-09-17T09:03:45.961606+0000 mon.a (mon.0) 22 : cluster [DBG] mgrmap e3: a(active, since 1.01362s) 2024-09-17T09:03:48.247 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout 2024-09-17T09:03:48.248 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout { 2024-09-17T09:03:48.248 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "fsid": "7d5e8b1e-74d3-11ef-bceb-c7b262605968", 2024-09-17T09:03:48.248 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "health": { 2024-09-17T09:03:48.248 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-17T09:03:48.248 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-17T09:03:48.250 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-17T09:03:48.250 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout }, 2024-09-17T09:03:48.251 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-17T09:03:48.251 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-17T09:03:48.251 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout 0 2024-09-17T09:03:48.251 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout ], 2024-09-17T09:03:48.251 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-17T09:03:48.251 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "a" 2024-09-17T09:03:48.251 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout ], 2024-09-17T09:03:48.251 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "quorum_age": 11, 2024-09-17T09:03:48.251 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-17T09:03:48.251 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T09:03:48.251 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "reef", 2024-09-17T09:03:48.251 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-17T09:03:48.251 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout }, 2024-09-17T09:03:48.251 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-17T09:03:48.252 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T09:03:48.252 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-17T09:03:48.252 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-17T09:03:48.252 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-17T09:03:48.252 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-17T09:03:48.255 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-17T09:03:48.256 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-17T09:03:48.256 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout }, 2024-09-17T09:03:48.256 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-17T09:03:48.256 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-17T09:03:48.256 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-17T09:03:48.256 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-17T09:03:48.256 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-17T09:03:48.256 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-17T09:03:48.256 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-17T09:03:48.256 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-17T09:03:48.256 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-17T09:03:48.256 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout }, 2024-09-17T09:03:48.257 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-17T09:03:48.257 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T09:03:48.257 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-17T09:03:48.257 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-17T09:03:48.257 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout }, 2024-09-17T09:03:48.257 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-17T09:03:48.257 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-17T09:03:48.257 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-17T09:03:48.257 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-17T09:03:48.257 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-17T09:03:48.257 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-17T09:03:48.257 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "restful" 2024-09-17T09:03:48.257 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout ], 2024-09-17T09:03:48.257 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T09:03:48.258 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout }, 2024-09-17T09:03:48.258 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-17T09:03:48.258 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T09:03:48.258 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "modified": "2024-09-17T09:03:29.312312+0000", 2024-09-17T09:03:48.258 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T09:03:48.258 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout }, 2024-09-17T09:03:48.258 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-17T09:03:48.258 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout } 2024-09-17T09:03:48.258 INFO:teuthology.orchestra.run.smithi098.stdout:mgr is available 2024-09-17T09:03:48.353 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:47 smithi098 bash[22661]: audit 2024-09-17T09:03:47.661723+0000 mon.a (mon.0) 23 : audit [DBG] from='client.? 172.21.15.98:0/4246538136' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-17T09:03:49.231 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:48 smithi098 bash[22661]: cluster 2024-09-17T09:03:47.968954+0000 mon.a (mon.0) 24 : cluster [DBG] mgrmap e4: a(active, since 3s) 2024-09-17T09:03:50.272 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout 2024-09-17T09:03:50.272 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout [global] 2024-09-17T09:03:50.273 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout fsid = 7d5e8b1e-74d3-11ef-bceb-c7b262605968 2024-09-17T09:03:50.273 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-17T09:03:50.273 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-17T09:03:50.273 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-17T09:03:50.273 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-17T09:03:50.273 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout 2024-09-17T09:03:50.273 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-17T09:03:50.273 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-17T09:03:50.273 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout 2024-09-17T09:03:50.273 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout [osd] 2024-09-17T09:03:50.273 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-17T09:03:50.273 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-17T09:03:50.273 INFO:teuthology.orchestra.run.smithi098.stdout:Enabling cephadm module... 2024-09-17T09:03:50.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:49 smithi098 bash[22661]: audit 2024-09-17T09:03:49.699243+0000 mon.a (mon.0) 25 : audit [INF] from='client.? 172.21.15.98:0/1938352112' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-09-17T09:03:50.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:49 smithi098 bash[22661]: audit 2024-09-17T09:03:49.702645+0000 mon.a (mon.0) 26 : audit [INF] from='client.? 172.21.15.98:0/1938352112' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-17T09:03:51.915 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:51 smithi098 bash[22661]: audit 2024-09-17T09:03:51.834044+0000 mon.a (mon.0) 27 : audit [INF] from='client.? 172.21.15.98:0/395795303' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-09-17T09:03:52.362 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:51 smithi098 bash[22914]: ignoring --setuser ceph since I am not root 2024-09-17T09:03:52.362 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:51 smithi098 bash[22914]: ignoring --setgroup ceph since I am not root 2024-09-17T09:03:52.362 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:52 smithi098 bash[22914]: debug 2024-09-17T09:03:52.039+0000 7f716cebb040 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-17T09:03:53.252 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:52 smithi098 bash[22661]: audit 2024-09-17T09:03:51.890101+0000 mon.a (mon.0) 28 : audit [INF] from='client.? 172.21.15.98:0/395795303' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-17T09:03:53.252 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:52 smithi098 bash[22661]: cluster 2024-09-17T09:03:51.890188+0000 mon.a (mon.0) 29 : cluster [DBG] mgrmap e5: a(active, since 6s) 2024-09-17T09:03:53.612 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:53 smithi098 bash[22914]: debug 2024-09-17T09:03:53.247+0000 7f716cebb040 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-17T09:03:53.612 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:53 smithi098 bash[22914]: debug 2024-09-17T09:03:53.311+0000 7f716cebb040 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-17T09:03:53.612 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:53 smithi098 bash[22914]: debug 2024-09-17T09:03:53.471+0000 7f716cebb040 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-17T09:03:54.190 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:53 smithi098 bash[22661]: audit 2024-09-17T09:03:53.910751+0000 mon.a (mon.0) 30 : audit [DBG] from='client.? 172.21.15.98:0/3597155244' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-09-17T09:03:54.191 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:54 smithi098 bash[22914]: debug 2024-09-17T09:03:54.115+0000 7f716cebb040 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-17T09:03:54.515 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:54 smithi098 bash[22914]: debug 2024-09-17T09:03:54.183+0000 7f716cebb040 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-17T09:03:54.515 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:54 smithi098 bash[22914]: debug 2024-09-17T09:03:54.251+0000 7f716cebb040 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-17T09:03:54.515 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:54 smithi098 bash[22914]: debug 2024-09-17T09:03:54.431+0000 7f716cebb040 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-17T09:03:54.515 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:54 smithi098 bash[22914]: debug 2024-09-17T09:03:54.507+0000 7f716cebb040 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-17T09:03:54.518 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout { 2024-09-17T09:03:54.518 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-09-17T09:03:54.518 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-17T09:03:54.518 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-09-17T09:03:54.518 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-17T09:03:54.518 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout } 2024-09-17T09:03:54.518 INFO:teuthology.orchestra.run.smithi098.stdout:Waiting for the mgr to restart... 2024-09-17T09:03:54.518 INFO:teuthology.orchestra.run.smithi098.stdout:Waiting for mgr epoch 5... 2024-09-17T09:03:54.839 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:54 smithi098 bash[22914]: debug 2024-09-17T09:03:54.583+0000 7f716cebb040 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-17T09:03:55.097 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:54 smithi098 bash[22914]: debug 2024-09-17T09:03:54.835+0000 7f716cebb040 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-17T09:03:55.098 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:54 smithi098 bash[22914]: debug 2024-09-17T09:03:54.899+0000 7f716cebb040 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-17T09:03:55.361 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:55 smithi098 bash[22914]: debug 2024-09-17T09:03:55.091+0000 7f716cebb040 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-17T09:03:55.362 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:55 smithi098 bash[22914]: debug 2024-09-17T09:03:55.167+0000 7f716cebb040 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-17T09:03:55.766 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:55 smithi098 bash[22914]: debug 2024-09-17T09:03:55.415+0000 7f716cebb040 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-09-17T09:03:55.766 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:55 smithi098 bash[22914]: debug 2024-09-17T09:03:55.595+0000 7f716cebb040 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-17T09:03:56.016 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:55 smithi098 bash[22914]: debug 2024-09-17T09:03:55.759+0000 7f716cebb040 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-17T09:03:56.016 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:55 smithi098 bash[22914]: debug 2024-09-17T09:03:55.835+0000 7f716cebb040 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-17T09:03:57.091 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:56 smithi098 bash[22914]: debug 2024-09-17T09:03:56.011+0000 7f716cebb040 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-17T09:03:57.091 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:56 smithi098 bash[22914]: debug 2024-09-17T09:03:56.795+0000 7f716cebb040 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-17T09:03:57.091 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:56 smithi098 bash[22914]: debug 2024-09-17T09:03:56.867+0000 7f716cebb040 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-17T09:03:57.091 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:57 smithi098 bash[22914]: debug 2024-09-17T09:03:57.083+0000 7f716cebb040 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-17T09:03:57.361 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:57 smithi098 bash[22914]: debug 2024-09-17T09:03:57.159+0000 7f716cebb040 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-17T09:03:57.861 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:57 smithi098 bash[22914]: debug 2024-09-17T09:03:57.535+0000 7f716cebb040 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-17T09:03:57.862 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:57 smithi098 bash[22914]: debug 2024-09-17T09:03:57.615+0000 7f716cebb040 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-17T09:03:57.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:57 smithi098 bash[22661]: cluster 2024-09-17T09:03:57.640350+0000 mon.a (mon.0) 31 : cluster [INF] Active manager daemon a restarted 2024-09-17T09:03:57.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:57 smithi098 bash[22661]: cluster 2024-09-17T09:03:57.640791+0000 mon.a (mon.0) 32 : cluster [INF] Activating manager daemon a 2024-09-17T09:03:57.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:57 smithi098 bash[22661]: cluster 2024-09-17T09:03:57.646783+0000 mon.a (mon.0) 33 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-09-17T09:03:57.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:57 smithi098 bash[22661]: cluster 2024-09-17T09:03:57.646997+0000 mon.a (mon.0) 34 : cluster [DBG] mgrmap e6: a(active, starting, since 0.00636771s) 2024-09-17T09:03:57.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:57 smithi098 bash[22661]: audit 2024-09-17T09:03:57.649497+0000 mon.a (mon.0) 35 : audit [DBG] from='mgr.14118 172.21.15.98:0/3507026914' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T09:03:57.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:57 smithi098 bash[22661]: audit 2024-09-17T09:03:57.650630+0000 mon.a (mon.0) 36 : audit [DBG] from='mgr.14118 172.21.15.98:0/3507026914' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-17T09:03:57.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:57 smithi098 bash[22661]: audit 2024-09-17T09:03:57.651628+0000 mon.a (mon.0) 37 : audit [DBG] from='mgr.14118 172.21.15.98:0/3507026914' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-17T09:03:57.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:57 smithi098 bash[22661]: audit 2024-09-17T09:03:57.651897+0000 mon.a (mon.0) 38 : audit [DBG] from='mgr.14118 172.21.15.98:0/3507026914' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-17T09:03:57.863 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:57 smithi098 bash[22661]: audit 2024-09-17T09:03:57.652065+0000 mon.a (mon.0) 39 : audit [DBG] from='mgr.14118 172.21.15.98:0/3507026914' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-17T09:03:57.863 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:57 smithi098 bash[22661]: cluster 2024-09-17T09:03:57.680686+0000 mon.a (mon.0) 40 : cluster [INF] Manager daemon a is now available 2024-09-17T09:03:59.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:58 smithi098 bash[22661]: cephadm 2024-09-17T09:03:57.690253+0000 mgr.a (mgr.14118) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-09-17T09:03:59.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:58 smithi098 bash[22661]: audit 2024-09-17T09:03:57.693897+0000 mon.a (mon.0) 41 : audit [INF] from='mgr.14118 172.21.15.98:0/3507026914' entity='mgr.a' 2024-09-17T09:03:59.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:58 smithi098 bash[22661]: audit 2024-09-17T09:03:57.698308+0000 mon.a (mon.0) 42 : audit [INF] from='mgr.14118 172.21.15.98:0/3507026914' entity='mgr.a' 2024-09-17T09:03:59.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:58 smithi098 bash[22661]: audit 2024-09-17T09:03:57.701228+0000 mon.a (mon.0) 43 : audit [DBG] from='mgr.14118 172.21.15.98:0/3507026914' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:03:59.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:58 smithi098 bash[22661]: audit 2024-09-17T09:03:57.703603+0000 mon.a (mon.0) 44 : audit [DBG] from='mgr.14118 172.21.15.98:0/3507026914' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:03:59.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:58 smithi098 bash[22661]: audit 2024-09-17T09:03:57.713848+0000 mon.a (mon.0) 45 : audit [INF] from='mgr.14118 172.21.15.98:0/3507026914' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-17T09:03:59.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:58 smithi098 bash[22661]: audit 2024-09-17T09:03:57.716584+0000 mon.a (mon.0) 46 : audit [INF] from='mgr.14118 172.21.15.98:0/3507026914' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-17T09:03:59.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:58 smithi098 bash[22661]: audit 2024-09-17T09:03:58.361768+0000 mon.a (mon.0) 47 : audit [INF] from='mgr.14118 172.21.15.98:0/3507026914' entity='mgr.a' 2024-09-17T09:03:59.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:58 smithi098 bash[22661]: audit 2024-09-17T09:03:58.367160+0000 mon.a (mon.0) 48 : audit [INF] from='mgr.14118 172.21.15.98:0/3507026914' entity='mgr.a' 2024-09-17T09:03:59.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:58 smithi098 bash[22661]: cluster 2024-09-17T09:03:58.650977+0000 mon.a (mon.0) 49 : cluster [DBG] mgrmap e7: a(active, since 1.01034s) 2024-09-17T09:03:59.293 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout { 2024-09-17T09:03:59.293 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-09-17T09:03:59.293 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-17T09:03:59.293 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout } 2024-09-17T09:03:59.293 INFO:teuthology.orchestra.run.smithi098.stdout:mgr epoch 5 is available 2024-09-17T09:03:59.293 INFO:teuthology.orchestra.run.smithi098.stdout:Setting orchestrator backend to cephadm... 2024-09-17T09:03:59.698 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:59 smithi098 bash[22914]: debug 2024-09-17T09:03:59.431+0000 7f70d4b79640 -1 log_channel(cephadm) log [ERR] : [17/Sep/2024:09:03:59] ENGINE Error in HTTPServer.serve 2024-09-17T09:03:59.698 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:59 smithi098 bash[22914]: Traceback (most recent call last): 2024-09-17T09:03:59.698 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:59 smithi098 bash[22914]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-17T09:03:59.698 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:59 smithi098 bash[22914]: self._connections.run(self.expiration_interval) 2024-09-17T09:03:59.698 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:59 smithi098 bash[22914]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-17T09:03:59.698 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:59 smithi098 bash[22914]: self._run(expiration_interval) 2024-09-17T09:03:59.699 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:59 smithi098 bash[22914]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-17T09:03:59.699 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:59 smithi098 bash[22914]: new_conn = self._from_server_socket(self.server.socket) 2024-09-17T09:03:59.699 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:59 smithi098 bash[22914]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-17T09:03:59.699 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:59 smithi098 bash[22914]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-17T09:03:59.699 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:59 smithi098 bash[22914]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-17T09:03:59.699 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:59 smithi098 bash[22914]: s = self.context.wrap_socket( 2024-09-17T09:03:59.699 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:59 smithi098 bash[22914]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-17T09:03:59.699 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:59 smithi098 bash[22914]: return self.sslsocket_class._create( 2024-09-17T09:03:59.699 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:59 smithi098 bash[22914]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-17T09:03:59.699 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:59 smithi098 bash[22914]: self.do_handshake() 2024-09-17T09:03:59.699 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:59 smithi098 bash[22914]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-17T09:03:59.699 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:59 smithi098 bash[22914]: self._sslobj.do_handshake() 2024-09-17T09:03:59.699 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:03:59 smithi098 bash[22914]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-17T09:04:00.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:59 smithi098 bash[22661]: audit 2024-09-17T09:03:58.650122+0000 mgr.a (mgr.14118) 2 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-17T09:04:00.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:59 smithi098 bash[22661]: audit 2024-09-17T09:03:58.661471+0000 mgr.a (mgr.14118) 3 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-17T09:04:00.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:03:59 smithi098 bash[22661]: audit 2024-09-17T09:03:59.434605+0000 mon.a (mon.0) 50 : audit [DBG] from='mgr.14118 172.21.15.98:0/3507026914' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:04:01.082 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:00 smithi098 bash[22661]: cephadm 2024-09-17T09:03:59.214368+0000 mgr.a (mgr.14118) 4 : cephadm [INF] [17/Sep/2024:09:03:59] ENGINE Bus STARTING 2024-09-17T09:04:01.082 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:00 smithi098 bash[22661]: cephadm 2024-09-17T09:03:59.316241+0000 mgr.a (mgr.14118) 5 : cephadm [INF] [17/Sep/2024:09:03:59] ENGINE Serving on http://172.21.15.98:8765 2024-09-17T09:04:01.082 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:00 smithi098 bash[22661]: cephadm 2024-09-17T09:03:59.433525+0000 mgr.a (mgr.14118) 6 : cephadm [INF] [17/Sep/2024:09:03:59] ENGINE Serving on https://172.21.15.98:7150 2024-09-17T09:04:01.082 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:00 smithi098 bash[22661]: cephadm 2024-09-17T09:03:59.433674+0000 mgr.a (mgr.14118) 7 : cephadm [INF] [17/Sep/2024:09:03:59] ENGINE Bus STARTED 2024-09-17T09:04:01.082 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:00 smithi098 bash[22661]: cephadm 2024-09-17T09:03:59.436114+0000 mgr.a (mgr.14118) 8 : cephadm [ERR] [17/Sep/2024:09:03:59] ENGINE Error in HTTPServer.serve 2024-09-17T09:04:01.082 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:00 smithi098 bash[22661]: Traceback (most recent call last): 2024-09-17T09:04:01.083 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:00 smithi098 bash[22661]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-17T09:04:01.083 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:00 smithi098 bash[22661]: self._connections.run(self.expiration_interval) 2024-09-17T09:04:01.083 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:00 smithi098 bash[22661]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-17T09:04:01.083 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:00 smithi098 bash[22661]: self._run(expiration_interval) 2024-09-17T09:04:01.083 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:00 smithi098 bash[22661]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-17T09:04:01.083 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:00 smithi098 bash[22661]: new_conn = self._from_server_socket(self.server.socket) 2024-09-17T09:04:01.083 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:00 smithi098 bash[22661]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-17T09:04:01.083 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:00 smithi098 bash[22661]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-17T09:04:01.083 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:00 smithi098 bash[22661]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-17T09:04:01.083 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:00 smithi098 bash[22661]: s = self.context.wrap_socket( 2024-09-17T09:04:01.083 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:00 smithi098 bash[22661]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-17T09:04:01.083 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:00 smithi098 bash[22661]: return self.sslsocket_class._create( 2024-09-17T09:04:01.083 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:00 smithi098 bash[22661]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-17T09:04:01.083 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:00 smithi098 bash[22661]: self.do_handshake() 2024-09-17T09:04:01.084 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:00 smithi098 bash[22661]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-17T09:04:01.084 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:00 smithi098 bash[22661]: self._sslobj.do_handshake() 2024-09-17T09:04:01.084 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:00 smithi098 bash[22661]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-17T09:04:01.084 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:00 smithi098 bash[22661]: cluster 2024-09-17T09:03:59.707816+0000 mon.a (mon.0) 51 : cluster [DBG] mgrmap e8: a(active, since 2s) 2024-09-17T09:04:02.352 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:01 smithi098 bash[22661]: audit 2024-09-17T09:04:00.874179+0000 mgr.a (mgr.14118) 9 : audit [DBG] from='client.14130 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:04:02.352 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:01 smithi098 bash[22661]: audit 2024-09-17T09:04:00.884223+0000 mon.a (mon.0) 52 : audit [INF] from='mgr.14118 172.21.15.98:0/3507026914' entity='mgr.a' 2024-09-17T09:04:02.352 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:01 smithi098 bash[22661]: audit 2024-09-17T09:04:00.899538+0000 mon.a (mon.0) 53 : audit [DBG] from='mgr.14118 172.21.15.98:0/3507026914' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:04:03.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:02 smithi098 bash[22661]: audit 2024-09-17T09:04:02.861704+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-17T09:04:03.466 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout value unchanged 2024-09-17T09:04:03.467 INFO:teuthology.orchestra.run.smithi098.stdout:Generating ssh key... 2024-09-17T09:04:05.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:04 smithi098 bash[22661]: audit 2024-09-17T09:04:04.912880+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-17T09:04:05.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:04 smithi098 bash[22661]: cephadm 2024-09-17T09:04:04.913274+0000 mgr.a (mgr.14118) 12 : cephadm [INF] Generating ssh key... 2024-09-17T09:04:05.362 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:05 smithi098 bash[22914]: Generating public/private rsa key pair. 2024-09-17T09:04:05.362 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:05 smithi098 bash[22914]: Your identification has been saved in /tmp/tmpayhc3h2v/key 2024-09-17T09:04:05.362 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:05 smithi098 bash[22914]: Your public key has been saved in /tmp/tmpayhc3h2v/key.pub 2024-09-17T09:04:05.362 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:05 smithi098 bash[22914]: The key fingerprint is: 2024-09-17T09:04:05.362 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:05 smithi098 bash[22914]: SHA256:iPpsQlXSkmwjdRWHsdEHxuqyWHPCI8k5wHIGS4hshuc ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968 2024-09-17T09:04:05.362 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:05 smithi098 bash[22914]: The key's randomart image is: 2024-09-17T09:04:05.362 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:05 smithi098 bash[22914]: +---[RSA 3072]----+ 2024-09-17T09:04:05.362 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:05 smithi098 bash[22914]: |= o.o..=*+. | 2024-09-17T09:04:05.362 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:05 smithi098 bash[22914]: |==o B.o .=o . | 2024-09-17T09:04:05.363 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:05 smithi098 bash[22914]: |+* o = .. . | 2024-09-17T09:04:05.363 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:05 smithi098 bash[22914]: |o E .. .. | 2024-09-17T09:04:05.363 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:05 smithi098 bash[22914]: | + +.+..S | 2024-09-17T09:04:05.363 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:05 smithi098 bash[22914]: | ..* B o | 2024-09-17T09:04:05.363 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:05 smithi098 bash[22914]: | .. = B | 2024-09-17T09:04:05.363 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:05 smithi098 bash[22914]: | .oo . | 2024-09-17T09:04:05.363 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:05 smithi098 bash[22914]: | oo | 2024-09-17T09:04:05.363 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:05 smithi098 bash[22914]: +----[SHA256]-----+ 2024-09-17T09:04:06.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:06 smithi098 bash[22661]: audit 2024-09-17T09:04:05.140132+0000 mon.a (mon.0) 54 : audit [INF] from='mgr.14118 172.21.15.98:0/3507026914' entity='mgr.a' 2024-09-17T09:04:06.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:06 smithi098 bash[22661]: audit 2024-09-17T09:04:05.145083+0000 mon.a (mon.0) 55 : audit [INF] from='mgr.14118 172.21.15.98:0/3507026914' entity='mgr.a' 2024-09-17T09:04:07.806 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC64IDAFhEz7kuC8UqAO5WYSVqh2VXrD+DpG3+M+quVr+Rfh7GFytia1d0up0PD/x/Bfm1X56GcyNc9S94wTKQo7u1hDjDC0fdbl8o0pNdH2VI2LSLo7eESUUUQaDoT1pRPm9a4SpMep+0eWBXxnTkIud+4Kb1L+635AYOS7MCU+45yxRKoqEg6d0Q/I9rDGBKlM03rNtxb4wQECUlLzERt0cMtUs0fd7hPS89MMGo+so+apZdDo0dBIMRK8BCR2gD8fQgilO0NTcrV57DK84NwO9hBn2+jEobdYHx/1bjU2loNQPC/SiK2zHbjc60FSSt7XDZHFif3SLP9bODMC3cABBzn/gXOuhPSgNqBzxTIGH/fOPp07AynjcluPVQX1DaLln974AeX96ZdQn48/DdfSQJwm4lP8aIBAOLNdiONkf3UlzY4/E7llMdrsFHMWYhqJ0w3Lz4ESA8gwR4csB8NBnhxM33jG/e0sNplN3Eq3N7xKhyu7G1tcbCHjkuXObE= ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968 2024-09-17T09:04:07.806 INFO:teuthology.orchestra.run.smithi098.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-09-17T09:04:07.806 INFO:teuthology.orchestra.run.smithi098.stdout:Adding key to root@localhost authorized_keys... 2024-09-17T09:04:07.806 INFO:teuthology.orchestra.run.smithi098.stdout:Adding host smithi098... 2024-09-17T09:04:08.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:07 smithi098 bash[22661]: audit 2024-09-17T09:04:07.161363+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-17T09:04:10.126 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:09 smithi098 bash[22661]: audit 2024-09-17T09:04:09.309918+0000 mgr.a (mgr.14118) 14 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi098", "addr": "172.21.15.98", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:04:11.175 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:10 smithi098 bash[22661]: cephadm 2024-09-17T09:04:10.266772+0000 mgr.a (mgr.14118) 15 : cephadm [INF] Deploying cephadm binary to smithi098 2024-09-17T09:04:13.460 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout Added host 'smithi098' with addr '172.21.15.98' 2024-09-17T09:04:13.460 INFO:teuthology.orchestra.run.smithi098.stdout:Deploying unmanaged mon service... 2024-09-17T09:04:13.684 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:13 smithi098 bash[22661]: audit 2024-09-17T09:04:12.397964+0000 mon.a (mon.0) 56 : audit [INF] from='mgr.14118 172.21.15.98:0/3507026914' entity='mgr.a' 2024-09-17T09:04:13.684 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:13 smithi098 bash[22661]: cephadm 2024-09-17T09:04:12.398309+0000 mgr.a (mgr.14118) 16 : cephadm [INF] Added host smithi098 2024-09-17T09:04:13.684 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:13 smithi098 bash[22661]: audit 2024-09-17T09:04:12.398710+0000 mon.a (mon.0) 57 : audit [DBG] from='mgr.14118 172.21.15.98:0/3507026914' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:04:16.344 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-09-17T09:04:16.344 INFO:teuthology.orchestra.run.smithi098.stdout:Deploying unmanaged mgr service... 2024-09-17T09:04:16.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:16 smithi098 bash[22661]: audit 2024-09-17T09:04:15.513052+0000 mon.a (mon.0) 58 : audit [INF] from='mgr.14118 172.21.15.98:0/3507026914' entity='mgr.a' 2024-09-17T09:04:16.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:16 smithi098 bash[22661]: audit 2024-09-17T09:04:15.752358+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-17T09:04:16.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:16 smithi098 bash[22661]: cephadm 2024-09-17T09:04:15.755201+0000 mgr.a (mgr.14118) 18 : cephadm [INF] Saving service mon spec with placement count:5 2024-09-17T09:04:16.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:16 smithi098 bash[22661]: audit 2024-09-17T09:04:15.759031+0000 mon.a (mon.0) 59 : audit [INF] from='mgr.14118 172.21.15.98:0/3507026914' entity='mgr.a' 2024-09-17T09:04:16.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:16 smithi098 bash[22661]: audit 2024-09-17T09:04:15.835508+0000 mon.a (mon.0) 60 : audit [INF] from='mgr.14118 172.21.15.98:0/3507026914' entity='mgr.a' 2024-09-17T09:04:18.385 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-09-17T09:04:19.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:18 smithi098 bash[22661]: cluster 2024-09-17T09:04:17.653567+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-17T09:04:19.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:18 smithi098 bash[22661]: audit 2024-09-17T09:04:17.766603+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-17T09:04:19.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:18 smithi098 bash[22661]: cephadm 2024-09-17T09:04:17.768771+0000 mgr.a (mgr.14118) 21 : cephadm [INF] Saving service mgr spec with placement count:2 2024-09-17T09:04:19.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:18 smithi098 bash[22661]: audit 2024-09-17T09:04:17.777492+0000 mon.a (mon.0) 61 : audit [INF] from='mgr.14118 172.21.15.98:0/3507026914' entity='mgr.a' 2024-09-17T09:04:21.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:20 smithi098 bash[22661]: cluster 2024-09-17T09:04:19.653851+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-17T09:04:21.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:20 smithi098 bash[22661]: audit 2024-09-17T09:04:19.827343+0000 mon.a (mon.0) 62 : audit [INF] from='client.? 172.21.15.98:0/3923911491' entity='client.admin' 2024-09-17T09:04:22.392 INFO:teuthology.orchestra.run.smithi098.stdout:Enabling the dashboard module... 2024-09-17T09:04:22.492 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:22 smithi098 bash[22661]: audit 2024-09-17T09:04:21.108362+0000 mon.a (mon.0) 63 : audit [INF] from='mgr.14118 172.21.15.98:0/3507026914' entity='mgr.a' 2024-09-17T09:04:22.492 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:22 smithi098 bash[22661]: cluster 2024-09-17T09:04:21.654120+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-17T09:04:22.492 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:22 smithi098 bash[22661]: audit 2024-09-17T09:04:21.762922+0000 mon.a (mon.0) 64 : audit [INF] from='mgr.14118 172.21.15.98:0/3507026914' entity='mgr.a' 2024-09-17T09:04:22.493 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:22 smithi098 bash[22661]: audit 2024-09-17T09:04:21.777069+0000 mon.a (mon.0) 65 : audit [INF] from='client.? 172.21.15.98:0/4043005572' entity='client.admin' 2024-09-17T09:04:25.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:24 smithi098 bash[22661]: cluster 2024-09-17T09:04:23.654332+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-17T09:04:25.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:24 smithi098 bash[22661]: audit 2024-09-17T09:04:24.039868+0000 mon.a (mon.0) 66 : audit [INF] from='client.? 172.21.15.98:0/262137158' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-09-17T09:04:25.112 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:24 smithi098 bash[22914]: ignoring --setuser ceph since I am not root 2024-09-17T09:04:25.112 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:24 smithi098 bash[22914]: ignoring --setgroup ceph since I am not root 2024-09-17T09:04:25.112 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:24 smithi098 bash[22914]: debug 2024-09-17T09:04:24.876+0000 7fd4f6aa9040 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-17T09:04:25.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:25 smithi098 bash[22661]: audit 2024-09-17T09:04:24.721013+0000 mon.a (mon.0) 67 : audit [INF] from='client.? 172.21.15.98:0/262137158' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-17T09:04:25.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:25 smithi098 bash[22661]: cluster 2024-09-17T09:04:24.721066+0000 mon.a (mon.0) 68 : cluster [DBG] mgrmap e9: a(active, since 27s) 2024-09-17T09:04:26.361 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:26 smithi098 bash[22914]: debug 2024-09-17T09:04:26.052+0000 7fd4f6aa9040 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-17T09:04:26.361 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:26 smithi098 bash[22914]: debug 2024-09-17T09:04:26.116+0000 7fd4f6aa9040 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-17T09:04:26.361 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:26 smithi098 bash[22914]: debug 2024-09-17T09:04:26.272+0000 7fd4f6aa9040 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-17T09:04:27.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:26 smithi098 bash[22661]: audit 2024-09-17T09:04:26.820894+0000 mon.a (mon.0) 69 : audit [DBG] from='client.? 172.21.15.98:0/1226867894' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-09-17T09:04:27.111 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:26 smithi098 bash[22914]: debug 2024-09-17T09:04:26.916+0000 7fd4f6aa9040 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-17T09:04:27.111 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:26 smithi098 bash[22914]: debug 2024-09-17T09:04:26.988+0000 7fd4f6aa9040 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-17T09:04:27.111 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:27 smithi098 bash[22914]: debug 2024-09-17T09:04:27.056+0000 7fd4f6aa9040 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-17T09:04:27.422 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout { 2024-09-17T09:04:27.422 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-09-17T09:04:27.422 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-17T09:04:27.422 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-09-17T09:04:27.422 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-17T09:04:27.422 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout } 2024-09-17T09:04:27.422 INFO:teuthology.orchestra.run.smithi098.stdout:Waiting for the mgr to restart... 2024-09-17T09:04:27.422 INFO:teuthology.orchestra.run.smithi098.stdout:Waiting for mgr epoch 9... 2024-09-17T09:04:27.552 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:27 smithi098 bash[22914]: debug 2024-09-17T09:04:27.236+0000 7fd4f6aa9040 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-17T09:04:27.553 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:27 smithi098 bash[22914]: debug 2024-09-17T09:04:27.312+0000 7fd4f6aa9040 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-17T09:04:27.553 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:27 smithi098 bash[22914]: debug 2024-09-17T09:04:27.380+0000 7fd4f6aa9040 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-17T09:04:27.861 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:27 smithi098 bash[22914]: debug 2024-09-17T09:04:27.636+0000 7fd4f6aa9040 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-17T09:04:27.861 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:27 smithi098 bash[22914]: debug 2024-09-17T09:04:27.700+0000 7fd4f6aa9040 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-17T09:04:28.220 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:27 smithi098 bash[22914]: debug 2024-09-17T09:04:27.892+0000 7fd4f6aa9040 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-17T09:04:28.220 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:27 smithi098 bash[22914]: debug 2024-09-17T09:04:27.968+0000 7fd4f6aa9040 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-17T09:04:28.554 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:28 smithi098 bash[22914]: debug 2024-09-17T09:04:28.216+0000 7fd4f6aa9040 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-09-17T09:04:28.555 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:28 smithi098 bash[22914]: debug 2024-09-17T09:04:28.392+0000 7fd4f6aa9040 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-17T09:04:28.808 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:28 smithi098 bash[22914]: debug 2024-09-17T09:04:28.548+0000 7fd4f6aa9040 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-17T09:04:28.808 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:28 smithi098 bash[22914]: debug 2024-09-17T09:04:28.628+0000 7fd4f6aa9040 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-17T09:04:29.111 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:28 smithi098 bash[22914]: debug 2024-09-17T09:04:28.804+0000 7fd4f6aa9040 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-17T09:04:29.777 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:29 smithi098 bash[22914]: debug 2024-09-17T09:04:29.608+0000 7fd4f6aa9040 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-17T09:04:29.778 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:29 smithi098 bash[22914]: debug 2024-09-17T09:04:29.684+0000 7fd4f6aa9040 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-17T09:04:30.111 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:29 smithi098 bash[22914]: debug 2024-09-17T09:04:29.900+0000 7fd4f6aa9040 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-17T09:04:30.112 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:29 smithi098 bash[22914]: debug 2024-09-17T09:04:29.976+0000 7fd4f6aa9040 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-17T09:04:30.611 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:30 smithi098 bash[22914]: debug 2024-09-17T09:04:30.356+0000 7fd4f6aa9040 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-17T09:04:30.611 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:30 smithi098 bash[22914]: debug 2024-09-17T09:04:30.432+0000 7fd4f6aa9040 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-17T09:04:30.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:30 smithi098 bash[22661]: cluster 2024-09-17T09:04:30.456329+0000 mon.a (mon.0) 70 : cluster [INF] Active manager daemon a restarted 2024-09-17T09:04:30.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:30 smithi098 bash[22661]: cluster 2024-09-17T09:04:30.456800+0000 mon.a (mon.0) 71 : cluster [INF] Activating manager daemon a 2024-09-17T09:04:30.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:30 smithi098 bash[22661]: cluster 2024-09-17T09:04:30.464010+0000 mon.a (mon.0) 72 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-09-17T09:04:30.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:30 smithi098 bash[22661]: cluster 2024-09-17T09:04:30.464239+0000 mon.a (mon.0) 73 : cluster [DBG] mgrmap e10: a(active, starting, since 0.00762168s) 2024-09-17T09:04:30.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:30 smithi098 bash[22661]: audit 2024-09-17T09:04:30.466072+0000 mon.a (mon.0) 74 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T09:04:30.612 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:30 smithi098 bash[22661]: audit 2024-09-17T09:04:30.467165+0000 mon.a (mon.0) 75 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-17T09:04:30.612 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:30 smithi098 bash[22661]: audit 2024-09-17T09:04:30.468214+0000 mon.a (mon.0) 76 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-17T09:04:30.612 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:30 smithi098 bash[22661]: audit 2024-09-17T09:04:30.468400+0000 mon.a (mon.0) 77 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-17T09:04:30.612 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:30 smithi098 bash[22661]: audit 2024-09-17T09:04:30.468553+0000 mon.a (mon.0) 78 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-17T09:04:30.612 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:30 smithi098 bash[22661]: cluster 2024-09-17T09:04:30.492411+0000 mon.a (mon.0) 79 : cluster [INF] Manager daemon a is now available 2024-09-17T09:04:31.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:31 smithi098 bash[22661]: audit 2024-09-17T09:04:30.507706+0000 mon.a (mon.0) 80 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:04:31.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:31 smithi098 bash[22661]: audit 2024-09-17T09:04:30.524003+0000 mon.a (mon.0) 81 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-17T09:04:31.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:31 smithi098 bash[22661]: audit 2024-09-17T09:04:30.525980+0000 mon.a (mon.0) 82 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-17T09:04:31.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:31 smithi098 bash[22661]: cluster 2024-09-17T09:04:31.469942+0000 mon.a (mon.0) 83 : cluster [DBG] mgrmap e11: a(active, since 1.01332s) 2024-09-17T09:04:32.105 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout { 2024-09-17T09:04:32.105 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-09-17T09:04:32.105 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-17T09:04:32.105 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout } 2024-09-17T09:04:32.105 INFO:teuthology.orchestra.run.smithi098.stdout:mgr epoch 9 is available 2024-09-17T09:04:32.105 INFO:teuthology.orchestra.run.smithi098.stdout:Generating a dashboard self-signed certificate... 2024-09-17T09:04:32.518 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:32 smithi098 bash[22914]: debug 2024-09-17T09:04:32.428+0000 7fd46272f640 -1 log_channel(cephadm) log [ERR] : [17/Sep/2024:09:04:32] ENGINE Error in HTTPServer.serve 2024-09-17T09:04:32.519 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:32 smithi098 bash[22914]: Traceback (most recent call last): 2024-09-17T09:04:32.519 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:32 smithi098 bash[22914]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-17T09:04:32.519 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:32 smithi098 bash[22914]: self._connections.run(self.expiration_interval) 2024-09-17T09:04:32.519 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:32 smithi098 bash[22914]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-17T09:04:32.519 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:32 smithi098 bash[22914]: self._run(expiration_interval) 2024-09-17T09:04:32.519 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:32 smithi098 bash[22914]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-17T09:04:32.519 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:32 smithi098 bash[22914]: new_conn = self._from_server_socket(self.server.socket) 2024-09-17T09:04:32.519 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:32 smithi098 bash[22914]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-17T09:04:32.519 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:32 smithi098 bash[22914]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-17T09:04:32.519 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:32 smithi098 bash[22914]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-17T09:04:32.519 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:32 smithi098 bash[22914]: s = self.context.wrap_socket( 2024-09-17T09:04:32.520 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:32 smithi098 bash[22914]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-17T09:04:32.520 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:32 smithi098 bash[22914]: return self.sslsocket_class._create( 2024-09-17T09:04:32.520 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:32 smithi098 bash[22914]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-17T09:04:32.520 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:32 smithi098 bash[22914]: self.do_handshake() 2024-09-17T09:04:32.520 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:32 smithi098 bash[22914]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-17T09:04:32.520 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:32 smithi098 bash[22914]: self._sslobj.do_handshake() 2024-09-17T09:04:32.520 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:04:32 smithi098 bash[22914]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-17T09:04:32.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:32 smithi098 bash[22661]: audit 2024-09-17T09:04:31.465468+0000 mgr.a (mgr.14150) 1 : audit [DBG] from='client.14154 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-17T09:04:32.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:32 smithi098 bash[22661]: audit 2024-09-17T09:04:31.477612+0000 mgr.a (mgr.14150) 2 : audit [DBG] from='client.14154 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-17T09:04:33.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:33 smithi098 bash[22661]: cephadm 2024-09-17T09:04:32.308193+0000 mgr.a (mgr.14150) 3 : cephadm [INF] [17/Sep/2024:09:04:32] ENGINE Bus STARTING 2024-09-17T09:04:33.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:33 smithi098 bash[22661]: cephadm 2024-09-17T09:04:32.428544+0000 mgr.a (mgr.14150) 4 : cephadm [INF] [17/Sep/2024:09:04:32] ENGINE Serving on https://172.21.15.98:7150 2024-09-17T09:04:33.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:33 smithi098 bash[22661]: cephadm 2024-09-17T09:04:32.432059+0000 mgr.a (mgr.14150) 5 : cephadm [ERR] [17/Sep/2024:09:04:32] ENGINE Error in HTTPServer.serve 2024-09-17T09:04:33.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:33 smithi098 bash[22661]: Traceback (most recent call last): 2024-09-17T09:04:33.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:33 smithi098 bash[22661]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-17T09:04:33.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:33 smithi098 bash[22661]: self._connections.run(self.expiration_interval) 2024-09-17T09:04:33.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:33 smithi098 bash[22661]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-17T09:04:33.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:33 smithi098 bash[22661]: self._run(expiration_interval) 2024-09-17T09:04:33.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:33 smithi098 bash[22661]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-17T09:04:33.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:33 smithi098 bash[22661]: new_conn = self._from_server_socket(self.server.socket) 2024-09-17T09:04:33.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:33 smithi098 bash[22661]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-17T09:04:33.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:33 smithi098 bash[22661]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-17T09:04:33.863 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:33 smithi098 bash[22661]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-17T09:04:33.863 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:33 smithi098 bash[22661]: s = self.context.wrap_socket( 2024-09-17T09:04:33.863 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:33 smithi098 bash[22661]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-17T09:04:33.863 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:33 smithi098 bash[22661]: return self.sslsocket_class._create( 2024-09-17T09:04:33.863 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:33 smithi098 bash[22661]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-17T09:04:33.863 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:33 smithi098 bash[22661]: self.do_handshake() 2024-09-17T09:04:33.863 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:33 smithi098 bash[22661]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-17T09:04:33.863 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:33 smithi098 bash[22661]: self._sslobj.do_handshake() 2024-09-17T09:04:33.863 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:33 smithi098 bash[22661]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-17T09:04:33.863 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:33 smithi098 bash[22661]: cluster 2024-09-17T09:04:32.516615+0000 mon.a (mon.0) 84 : cluster [DBG] mgrmap e12: a(active, since 2s) 2024-09-17T09:04:33.863 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:33 smithi098 bash[22661]: cephadm 2024-09-17T09:04:32.529708+0000 mgr.a (mgr.14150) 6 : cephadm [INF] [17/Sep/2024:09:04:32] ENGINE Serving on http://172.21.15.98:8765 2024-09-17T09:04:33.863 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:33 smithi098 bash[22661]: cephadm 2024-09-17T09:04:32.529862+0000 mgr.a (mgr.14150) 7 : cephadm [INF] [17/Sep/2024:09:04:32] ENGINE Bus STARTED 2024-09-17T09:04:34.271 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout Self-signed certificate created 2024-09-17T09:04:34.271 INFO:teuthology.orchestra.run.smithi098.stdout:Creating initial admin user... 2024-09-17T09:04:35.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:34 smithi098 bash[22661]: audit 2024-09-17T09:04:33.632317+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-17T09:04:35.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:34 smithi098 bash[22661]: audit 2024-09-17T09:04:33.706916+0000 mon.a (mon.0) 85 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:04:35.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:34 smithi098 bash[22661]: audit 2024-09-17T09:04:33.712021+0000 mon.a (mon.0) 86 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:04:36.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:35 smithi098 bash[22661]: audit 2024-09-17T09:04:35.732571+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-17T09:04:36.617 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$VgtBg/dI/bEH9SYywpPT8eQpwVlW73dm4zA/WUemU/04blIEEzrT6", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1726563875, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-09-17T09:04:36.617 INFO:teuthology.orchestra.run.smithi098.stdout:Fetching dashboard port number... 2024-09-17T09:04:37.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:36 smithi098 bash[22661]: audit 2024-09-17T09:04:35.970956+0000 mon.a (mon.0) 87 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:04:37.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:36 smithi098 bash[22661]: audit 2024-09-17T09:04:35.991429+0000 mon.a (mon.0) 88 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:04:37.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:36 smithi098 bash[22661]: audit 2024-09-17T09:04:36.631047+0000 mon.a (mon.0) 89 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:04:38.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:37 smithi098 bash[22661]: cluster 2024-09-17T09:04:36.995897+0000 mon.a (mon.0) 90 : cluster [DBG] mgrmap e13: a(active, since 6s) 2024-09-17T09:04:38.597 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stdout 8443 2024-09-17T09:04:38.597 INFO:teuthology.orchestra.run.smithi098.stdout:firewalld does not appear to be present 2024-09-17T09:04:38.597 INFO:teuthology.orchestra.run.smithi098.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-09-17T09:04:38.600 INFO:teuthology.orchestra.run.smithi098.stdout:Ceph Dashboard is now available at: 2024-09-17T09:04:38.600 INFO:teuthology.orchestra.run.smithi098.stdout: 2024-09-17T09:04:38.601 INFO:teuthology.orchestra.run.smithi098.stdout: URL: https://smithi098.front.sepia.ceph.com:8443/ 2024-09-17T09:04:38.601 INFO:teuthology.orchestra.run.smithi098.stdout: User: admin 2024-09-17T09:04:38.601 INFO:teuthology.orchestra.run.smithi098.stdout: Password: n0067emgvc 2024-09-17T09:04:38.601 INFO:teuthology.orchestra.run.smithi098.stdout: 2024-09-17T09:04:38.601 INFO:teuthology.orchestra.run.smithi098.stdout:Saving cluster configuration to /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config directory 2024-09-17T09:04:38.602 INFO:teuthology.orchestra.run.smithi098.stdout:Enabling autotune for osd_memory_target 2024-09-17T09:04:39.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:38 smithi098 bash[22661]: audit 2024-09-17T09:04:38.028803+0000 mon.a (mon.0) 91 : audit [DBG] from='client.? 172.21.15.98:0/871151805' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-09-17T09:04:43.501 INFO:teuthology.orchestra.run.smithi098.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-09-17T09:04:43.501 INFO:teuthology.orchestra.run.smithi098.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-09-17T09:04:43.501 INFO:teuthology.orchestra.run.smithi098.stdout: 2024-09-17T09:04:43.501 INFO:teuthology.orchestra.run.smithi098.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-09-17T09:04:43.502 INFO:teuthology.orchestra.run.smithi098.stdout: 2024-09-17T09:04:43.502 INFO:teuthology.orchestra.run.smithi098.stdout:Or, if you are only running a single cluster on this host: 2024-09-17T09:04:43.502 INFO:teuthology.orchestra.run.smithi098.stdout: 2024-09-17T09:04:43.502 INFO:teuthology.orchestra.run.smithi098.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-09-17T09:04:43.502 INFO:teuthology.orchestra.run.smithi098.stdout: 2024-09-17T09:04:43.502 INFO:teuthology.orchestra.run.smithi098.stdout:Please consider enabling telemetry to help improve Ceph: 2024-09-17T09:04:43.502 INFO:teuthology.orchestra.run.smithi098.stdout: 2024-09-17T09:04:43.503 INFO:teuthology.orchestra.run.smithi098.stdout: ceph telemetry on 2024-09-17T09:04:43.503 INFO:teuthology.orchestra.run.smithi098.stdout: 2024-09-17T09:04:43.503 INFO:teuthology.orchestra.run.smithi098.stdout:For more information see: 2024-09-17T09:04:43.503 INFO:teuthology.orchestra.run.smithi098.stdout: 2024-09-17T09:04:43.503 INFO:teuthology.orchestra.run.smithi098.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-09-17T09:04:43.503 INFO:teuthology.orchestra.run.smithi098.stdout: 2024-09-17T09:04:43.503 INFO:teuthology.orchestra.run.smithi098.stdout:Bootstrap complete. 2024-09-17T09:04:43.549 INFO:tasks.cephadm:Fetching config... 2024-09-17T09:04:43.550 DEBUG:teuthology.orchestra.run.smithi098:> set -ex 2024-09-17T09:04:43.550 DEBUG:teuthology.orchestra.run.smithi098:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-09-17T09:04:43.556 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-09-17T09:04:43.556 DEBUG:teuthology.orchestra.run.smithi098:> set -ex 2024-09-17T09:04:43.556 DEBUG:teuthology.orchestra.run.smithi098:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-09-17T09:04:43.603 INFO:tasks.cephadm:Fetching mon keyring... 2024-09-17T09:04:43.603 DEBUG:teuthology.orchestra.run.smithi098:> set -ex 2024-09-17T09:04:43.603 DEBUG:teuthology.orchestra.run.smithi098:> sudo dd if=/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/keyring of=/dev/stdout 2024-09-17T09:04:43.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:43 smithi098 bash[22661]: audit 2024-09-17T09:04:42.428556+0000 mon.a (mon.0) 92 : audit [INF] from='client.? 172.21.15.98:0/1193822921' entity='client.admin' 2024-09-17T09:04:43.620 INFO:tasks.cephadm:Fetching pub ssh key... 2024-09-17T09:04:43.620 DEBUG:teuthology.orchestra.run.smithi098:> set -ex 2024-09-17T09:04:43.620 DEBUG:teuthology.orchestra.run.smithi098:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-09-17T09:04:43.666 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-09-17T09:04:43.666 DEBUG:teuthology.orchestra.run.smithi098:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC64IDAFhEz7kuC8UqAO5WYSVqh2VXrD+DpG3+M+quVr+Rfh7GFytia1d0up0PD/x/Bfm1X56GcyNc9S94wTKQo7u1hDjDC0fdbl8o0pNdH2VI2LSLo7eESUUUQaDoT1pRPm9a4SpMep+0eWBXxnTkIud+4Kb1L+635AYOS7MCU+45yxRKoqEg6d0Q/I9rDGBKlM03rNtxb4wQECUlLzERt0cMtUs0fd7hPS89MMGo+so+apZdDo0dBIMRK8BCR2gD8fQgilO0NTcrV57DK84NwO9hBn2+jEobdYHx/1bjU2loNQPC/SiK2zHbjc60FSSt7XDZHFif3SLP9bODMC3cABBzn/gXOuhPSgNqBzxTIGH/fOPp07AynjcluPVQX1DaLln974AeX96ZdQn48/DdfSQJwm4lP8aIBAOLNdiONkf3UlzY4/E7llMdrsFHMWYhqJ0w3Lz4ESA8gwR4csB8NBnhxM33jG/e0sNplN3Eq3N7xKhyu7G1tcbCHjkuXObE= ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-17T09:04:43.729 INFO:teuthology.orchestra.run.smithi098.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC64IDAFhEz7kuC8UqAO5WYSVqh2VXrD+DpG3+M+quVr+Rfh7GFytia1d0up0PD/x/Bfm1X56GcyNc9S94wTKQo7u1hDjDC0fdbl8o0pNdH2VI2LSLo7eESUUUQaDoT1pRPm9a4SpMep+0eWBXxnTkIud+4Kb1L+635AYOS7MCU+45yxRKoqEg6d0Q/I9rDGBKlM03rNtxb4wQECUlLzERt0cMtUs0fd7hPS89MMGo+so+apZdDo0dBIMRK8BCR2gD8fQgilO0NTcrV57DK84NwO9hBn2+jEobdYHx/1bjU2loNQPC/SiK2zHbjc60FSSt7XDZHFif3SLP9bODMC3cABBzn/gXOuhPSgNqBzxTIGH/fOPp07AynjcluPVQX1DaLln974AeX96ZdQn48/DdfSQJwm4lP8aIBAOLNdiONkf3UlzY4/E7llMdrsFHMWYhqJ0w3Lz4ESA8gwR4csB8NBnhxM33jG/e0sNplN3Eq3N7xKhyu7G1tcbCHjkuXObE= ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968 2024-09-17T09:04:43.739 DEBUG:teuthology.orchestra.run.smithi134:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC64IDAFhEz7kuC8UqAO5WYSVqh2VXrD+DpG3+M+quVr+Rfh7GFytia1d0up0PD/x/Bfm1X56GcyNc9S94wTKQo7u1hDjDC0fdbl8o0pNdH2VI2LSLo7eESUUUQaDoT1pRPm9a4SpMep+0eWBXxnTkIud+4Kb1L+635AYOS7MCU+45yxRKoqEg6d0Q/I9rDGBKlM03rNtxb4wQECUlLzERt0cMtUs0fd7hPS89MMGo+so+apZdDo0dBIMRK8BCR2gD8fQgilO0NTcrV57DK84NwO9hBn2+jEobdYHx/1bjU2loNQPC/SiK2zHbjc60FSSt7XDZHFif3SLP9bODMC3cABBzn/gXOuhPSgNqBzxTIGH/fOPp07AynjcluPVQX1DaLln974AeX96ZdQn48/DdfSQJwm4lP8aIBAOLNdiONkf3UlzY4/E7llMdrsFHMWYhqJ0w3Lz4ESA8gwR4csB8NBnhxM33jG/e0sNplN3Eq3N7xKhyu7G1tcbCHjkuXObE= ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-17T09:04:43.764 INFO:teuthology.orchestra.run.smithi134.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC64IDAFhEz7kuC8UqAO5WYSVqh2VXrD+DpG3+M+quVr+Rfh7GFytia1d0up0PD/x/Bfm1X56GcyNc9S94wTKQo7u1hDjDC0fdbl8o0pNdH2VI2LSLo7eESUUUQaDoT1pRPm9a4SpMep+0eWBXxnTkIud+4Kb1L+635AYOS7MCU+45yxRKoqEg6d0Q/I9rDGBKlM03rNtxb4wQECUlLzERt0cMtUs0fd7hPS89MMGo+so+apZdDo0dBIMRK8BCR2gD8fQgilO0NTcrV57DK84NwO9hBn2+jEobdYHx/1bjU2loNQPC/SiK2zHbjc60FSSt7XDZHFif3SLP9bODMC3cABBzn/gXOuhPSgNqBzxTIGH/fOPp07AynjcluPVQX1DaLln974AeX96ZdQn48/DdfSQJwm4lP8aIBAOLNdiONkf3UlzY4/E7llMdrsFHMWYhqJ0w3Lz4ESA8gwR4csB8NBnhxM33jG/e0sNplN3Eq3N7xKhyu7G1tcbCHjkuXObE= ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968 2024-09-17T09:04:43.773 DEBUG:teuthology.orchestra.run.smithi165:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC64IDAFhEz7kuC8UqAO5WYSVqh2VXrD+DpG3+M+quVr+Rfh7GFytia1d0up0PD/x/Bfm1X56GcyNc9S94wTKQo7u1hDjDC0fdbl8o0pNdH2VI2LSLo7eESUUUQaDoT1pRPm9a4SpMep+0eWBXxnTkIud+4Kb1L+635AYOS7MCU+45yxRKoqEg6d0Q/I9rDGBKlM03rNtxb4wQECUlLzERt0cMtUs0fd7hPS89MMGo+so+apZdDo0dBIMRK8BCR2gD8fQgilO0NTcrV57DK84NwO9hBn2+jEobdYHx/1bjU2loNQPC/SiK2zHbjc60FSSt7XDZHFif3SLP9bODMC3cABBzn/gXOuhPSgNqBzxTIGH/fOPp07AynjcluPVQX1DaLln974AeX96ZdQn48/DdfSQJwm4lP8aIBAOLNdiONkf3UlzY4/E7llMdrsFHMWYhqJ0w3Lz4ESA8gwR4csB8NBnhxM33jG/e0sNplN3Eq3N7xKhyu7G1tcbCHjkuXObE= ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-17T09:04:43.796 INFO:teuthology.orchestra.run.smithi165.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC64IDAFhEz7kuC8UqAO5WYSVqh2VXrD+DpG3+M+quVr+Rfh7GFytia1d0up0PD/x/Bfm1X56GcyNc9S94wTKQo7u1hDjDC0fdbl8o0pNdH2VI2LSLo7eESUUUQaDoT1pRPm9a4SpMep+0eWBXxnTkIud+4Kb1L+635AYOS7MCU+45yxRKoqEg6d0Q/I9rDGBKlM03rNtxb4wQECUlLzERt0cMtUs0fd7hPS89MMGo+so+apZdDo0dBIMRK8BCR2gD8fQgilO0NTcrV57DK84NwO9hBn2+jEobdYHx/1bjU2loNQPC/SiK2zHbjc60FSSt7XDZHFif3SLP9bODMC3cABBzn/gXOuhPSgNqBzxTIGH/fOPp07AynjcluPVQX1DaLln974AeX96ZdQn48/DdfSQJwm4lP8aIBAOLNdiONkf3UlzY4/E7llMdrsFHMWYhqJ0w3Lz4ESA8gwR4csB8NBnhxM33jG/e0sNplN3Eq3N7xKhyu7G1tcbCHjkuXObE= ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968 2024-09-17T09:04:43.805 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-09-17T09:04:49.724 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:04:50.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:50 smithi098 bash[22661]: audit 2024-09-17T09:04:49.328129+0000 mon.a (mon.0) 93 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:04:50.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:50 smithi098 bash[22661]: audit 2024-09-17T09:04:49.333762+0000 mon.a (mon.0) 94 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:04:50.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:50 smithi098 bash[22661]: audit 2024-09-17T09:04:49.335301+0000 mon.a (mon.0) 95 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi098", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:04:50.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:50 smithi098 bash[22661]: audit 2024-09-17T09:04:49.342522+0000 mon.a (mon.0) 96 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:04:50.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:50 smithi098 bash[22661]: audit 2024-09-17T09:04:49.373683+0000 mon.a (mon.0) 97 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:04:50.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:50 smithi098 bash[22661]: audit 2024-09-17T09:04:49.382692+0000 mon.a (mon.0) 98 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:04:51.551 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:51 smithi098 bash[22661]: cluster 2024-09-17T09:04:50.470025+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-17T09:04:53.437 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-09-17T09:04:53.437 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-09-17T09:04:53.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:53 smithi098 bash[22661]: cluster 2024-09-17T09:04:52.470470+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-17T09:04:53.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:53 smithi098 bash[22661]: audit 2024-09-17T09:04:52.827240+0000 mon.a (mon.0) 99 : audit [INF] from='client.? 172.21.15.98:0/1303149837' entity='client.admin' 2024-09-17T09:04:53.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:53 smithi098 bash[22661]: audit 2024-09-17T09:04:52.844784+0000 mon.a (mon.0) 100 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:04:53.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:53 smithi098 bash[22661]: audit 2024-09-17T09:04:52.849185+0000 mon.a (mon.0) 101 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:04:55.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:55 smithi098 bash[22661]: cluster 2024-09-17T09:04:54.470858+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-17T09:04:57.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:57 smithi098 bash[22661]: cluster 2024-09-17T09:04:56.471365+0000 mgr.a (mgr.14150) 13 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:04:58.102 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:04:59.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:04:59 smithi098 bash[22661]: cluster 2024-09-17T09:04:58.471794+0000 mgr.a (mgr.14150) 14 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:05:01.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:01 smithi098 bash[22661]: cluster 2024-09-17T09:05:00.472230+0000 mgr.a (mgr.14150) 15 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:05:01.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:01 smithi098 bash[22661]: audit 2024-09-17T09:05:01.233786+0000 mon.a (mon.0) 102 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:05:01.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:01 smithi098 bash[22661]: audit 2024-09-17T09:05:01.234841+0000 mon.a (mon.0) 103 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:05:01.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:01 smithi098 bash[22661]: audit 2024-09-17T09:05:01.237754+0000 mon.a (mon.0) 104 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:05:01.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:01 smithi098 bash[22661]: audit 2024-09-17T09:05:01.238615+0000 mon.a (mon.0) 105 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:05:01.911 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi134 2024-09-17T09:05:01.911 DEBUG:teuthology.orchestra.run.smithi134:> set -ex 2024-09-17T09:05:01.911 DEBUG:teuthology.orchestra.run.smithi134:> dd of=/etc/ceph/ceph.conf 2024-09-17T09:05:01.918 DEBUG:teuthology.orchestra.run.smithi134:> set -ex 2024-09-17T09:05:01.918 DEBUG:teuthology.orchestra.run.smithi134:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-17T09:05:01.963 INFO:tasks.cephadm:Adding host smithi134 to orchestrator... 2024-09-17T09:05:01.964 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph orch host add smithi134 2024-09-17T09:05:03.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:02 smithi098 bash[22661]: audit 2024-09-17T09:05:01.228794+0000 mgr.a (mgr.14150) 16 : audit [DBG] from='client.14174 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:05:03.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:02 smithi098 bash[22661]: cephadm 2024-09-17T09:05:01.239910+0000 mgr.a (mgr.14150) 17 : cephadm [INF] Updating smithi098:/etc/ceph/ceph.conf 2024-09-17T09:05:03.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:02 smithi098 bash[22661]: cephadm 2024-09-17T09:05:01.340781+0000 mgr.a (mgr.14150) 18 : cephadm [INF] Updating smithi098:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T09:05:03.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:02 smithi098 bash[22661]: cephadm 2024-09-17T09:05:01.425910+0000 mgr.a (mgr.14150) 19 : cephadm [INF] Updating smithi098:/etc/ceph/ceph.client.admin.keyring 2024-09-17T09:05:03.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:02 smithi098 bash[22661]: cephadm 2024-09-17T09:05:01.514401+0000 mgr.a (mgr.14150) 20 : cephadm [INF] Updating smithi098:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T09:05:03.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:02 smithi098 bash[22661]: audit 2024-09-17T09:05:01.649527+0000 mon.a (mon.0) 106 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:05:03.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:02 smithi098 bash[22661]: audit 2024-09-17T09:05:01.654964+0000 mon.a (mon.0) 107 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:05:03.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:02 smithi098 bash[22661]: audit 2024-09-17T09:05:01.661298+0000 mon.a (mon.0) 108 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:05:04.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:03 smithi098 bash[22661]: cluster 2024-09-17T09:05:02.472704+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-17T09:05:06.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:05 smithi098 bash[22661]: cluster 2024-09-17T09:05:04.473199+0000 mgr.a (mgr.14150) 22 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:05:06.632 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:05:08.064 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:07 smithi098 bash[22661]: cluster 2024-09-17T09:05:06.473734+0000 mgr.a (mgr.14150) 23 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:05:09.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:09 smithi098 bash[22661]: cluster 2024-09-17T09:05:08.474216+0000 mgr.a (mgr.14150) 24 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:05:11.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:10 smithi098 bash[22661]: audit 2024-09-17T09:05:09.764742+0000 mgr.a (mgr.14150) 25 : audit [DBG] from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi134", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:05:12.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:11 smithi098 bash[22661]: cluster 2024-09-17T09:05:10.474562+0000 mgr.a (mgr.14150) 26 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:05:12.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:11 smithi098 bash[22661]: cephadm 2024-09-17T09:05:10.754996+0000 mgr.a (mgr.14150) 27 : cephadm [INF] Deploying cephadm binary to smithi134 2024-09-17T09:05:12.964 INFO:teuthology.orchestra.run.smithi098.stdout:Added host 'smithi134' with addr '172.21.15.134' 2024-09-17T09:05:13.650 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph orch host ls --format=json 2024-09-17T09:05:14.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:13 smithi098 bash[22661]: cluster 2024-09-17T09:05:12.474933+0000 mgr.a (mgr.14150) 28 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:05:14.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:13 smithi098 bash[22661]: audit 2024-09-17T09:05:12.963137+0000 mon.a (mon.0) 109 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:05:14.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:13 smithi098 bash[22661]: audit 2024-09-17T09:05:12.964650+0000 mon.a (mon.0) 110 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:05:14.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:13 smithi098 bash[22661]: audit 2024-09-17T09:05:13.296012+0000 mon.a (mon.0) 111 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:05:15.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:14 smithi098 bash[22661]: cephadm 2024-09-17T09:05:12.963893+0000 mgr.a (mgr.14150) 29 : cephadm [INF] Added host smithi134 2024-09-17T09:05:15.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:14 smithi098 bash[22661]: audit 2024-09-17T09:05:14.638253+0000 mon.a (mon.0) 112 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:05:16.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:15 smithi098 bash[22661]: cluster 2024-09-17T09:05:14.475357+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-17T09:05:16.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:15 smithi098 bash[22661]: audit 2024-09-17T09:05:15.461682+0000 mon.a (mon.0) 113 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:05:18.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:17 smithi098 bash[22661]: cluster 2024-09-17T09:05:16.475756+0000 mgr.a (mgr.14150) 31 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:05:18.319 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:05:19.780 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:19 smithi098 bash[22661]: cluster 2024-09-17T09:05:18.476185+0000 mgr.a (mgr.14150) 32 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:05:21.495 INFO:teuthology.orchestra.run.smithi098.stdout: 2024-09-17T09:05:21.495 INFO:teuthology.orchestra.run.smithi098.stdout:[{"addr": "172.21.15.98", "hostname": "smithi098", "labels": [], "status": ""}, {"addr": "172.21.15.134", "hostname": "smithi134", "labels": [], "status": ""}] 2024-09-17T09:05:21.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:21 smithi098 bash[22661]: cluster 2024-09-17T09:05:20.476588+0000 mgr.a (mgr.14150) 33 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:05:21.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:21 smithi098 bash[22661]: audit 2024-09-17T09:05:20.698152+0000 mon.a (mon.0) 114 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:05:21.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:21 smithi098 bash[22661]: audit 2024-09-17T09:05:20.703364+0000 mon.a (mon.0) 115 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:05:21.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:21 smithi098 bash[22661]: audit 2024-09-17T09:05:20.709756+0000 mon.a (mon.0) 116 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:05:21.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:21 smithi098 bash[22661]: audit 2024-09-17T09:05:20.715020+0000 mon.a (mon.0) 117 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:05:21.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:21 smithi098 bash[22661]: audit 2024-09-17T09:05:20.716530+0000 mon.a (mon.0) 118 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi134", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:05:21.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:21 smithi098 bash[22661]: audit 2024-09-17T09:05:20.718707+0000 mon.a (mon.0) 119 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:05:21.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:21 smithi098 bash[22661]: audit 2024-09-17T09:05:20.720848+0000 mon.a (mon.0) 120 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:05:21.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:21 smithi098 bash[22661]: cephadm 2024-09-17T09:05:20.723593+0000 mgr.a (mgr.14150) 34 : cephadm [INF] Updating smithi134:/etc/ceph/ceph.conf 2024-09-17T09:05:21.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:21 smithi098 bash[22661]: audit 2024-09-17T09:05:21.269809+0000 mon.a (mon.0) 121 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:05:21.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:21 smithi098 bash[22661]: audit 2024-09-17T09:05:21.275603+0000 mon.a (mon.0) 122 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:05:21.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:21 smithi098 bash[22661]: audit 2024-09-17T09:05:21.282323+0000 mon.a (mon.0) 123 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:05:22.141 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi165 2024-09-17T09:05:22.141 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-09-17T09:05:22.141 DEBUG:teuthology.orchestra.run.smithi165:> dd of=/etc/ceph/ceph.conf 2024-09-17T09:05:22.147 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-09-17T09:05:22.147 DEBUG:teuthology.orchestra.run.smithi165:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-17T09:05:22.196 INFO:tasks.cephadm:Adding host smithi165 to orchestrator... 2024-09-17T09:05:22.197 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph orch host add smithi165 2024-09-17T09:05:23.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:22 smithi098 bash[22661]: cephadm 2024-09-17T09:05:20.892665+0000 mgr.a (mgr.14150) 35 : cephadm [INF] Updating smithi134:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T09:05:23.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:22 smithi098 bash[22661]: cephadm 2024-09-17T09:05:21.024427+0000 mgr.a (mgr.14150) 36 : cephadm [INF] Updating smithi134:/etc/ceph/ceph.client.admin.keyring 2024-09-17T09:05:23.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:22 smithi098 bash[22661]: cephadm 2024-09-17T09:05:21.154725+0000 mgr.a (mgr.14150) 37 : cephadm [INF] Updating smithi134:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T09:05:23.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:22 smithi098 bash[22661]: audit 2024-09-17T09:05:21.494761+0000 mgr.a (mgr.14150) 38 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T09:05:24.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:23 smithi098 bash[22661]: cluster 2024-09-17T09:05:22.477063+0000 mgr.a (mgr.14150) 39 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:05:26.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:25 smithi098 bash[22661]: cluster 2024-09-17T09:05:24.477558+0000 mgr.a (mgr.14150) 40 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:05:26.856 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:05:27.970 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:27 smithi098 bash[22661]: cluster 2024-09-17T09:05:26.478055+0000 mgr.a (mgr.14150) 41 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:05:30.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:29 smithi098 bash[22661]: cluster 2024-09-17T09:05:28.478598+0000 mgr.a (mgr.14150) 42 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:05:32.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:31 smithi098 bash[22661]: audit 2024-09-17T09:05:29.941716+0000 mgr.a (mgr.14150) 43 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi165", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:05:32.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:31 smithi098 bash[22661]: cluster 2024-09-17T09:05:30.479073+0000 mgr.a (mgr.14150) 44 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:05:33.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:32 smithi098 bash[22661]: cephadm 2024-09-17T09:05:30.994423+0000 mgr.a (mgr.14150) 45 : cephadm [INF] Deploying cephadm binary to smithi165 2024-09-17T09:05:33.268 INFO:teuthology.orchestra.run.smithi098.stdout:Added host 'smithi165' with addr '172.21.15.165' 2024-09-17T09:05:33.953 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph orch host ls --format=json 2024-09-17T09:05:34.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:33 smithi098 bash[22661]: cluster 2024-09-17T09:05:32.479559+0000 mgr.a (mgr.14150) 46 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:05:34.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:33 smithi098 bash[22661]: audit 2024-09-17T09:05:33.267673+0000 mon.a (mon.0) 124 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:05:34.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:33 smithi098 bash[22661]: audit 2024-09-17T09:05:33.269108+0000 mon.a (mon.0) 125 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:05:34.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:33 smithi098 bash[22661]: audit 2024-09-17T09:05:33.586189+0000 mon.a (mon.0) 126 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:05:35.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:34 smithi098 bash[22661]: cephadm 2024-09-17T09:05:33.268314+0000 mgr.a (mgr.14150) 47 : cephadm [INF] Added host smithi165 2024-09-17T09:05:36.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:35 smithi098 bash[22661]: cluster 2024-09-17T09:05:34.480049+0000 mgr.a (mgr.14150) 48 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:05:36.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:35 smithi098 bash[22661]: audit 2024-09-17T09:05:34.903626+0000 mon.a (mon.0) 127 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:05:36.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:35 smithi098 bash[22661]: audit 2024-09-17T09:05:35.685173+0000 mon.a (mon.0) 128 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:05:38.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:37 smithi098 bash[22661]: cluster 2024-09-17T09:05:36.480435+0000 mgr.a (mgr.14150) 49 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:05:38.618 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:05:39.993 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:39 smithi098 bash[22661]: cluster 2024-09-17T09:05:38.480825+0000 mgr.a (mgr.14150) 50 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:05:41.795 INFO:teuthology.orchestra.run.smithi098.stdout: 2024-09-17T09:05:41.795 INFO:teuthology.orchestra.run.smithi098.stdout:[{"addr": "172.21.15.98", "hostname": "smithi098", "labels": [], "status": ""}, {"addr": "172.21.15.134", "hostname": "smithi134", "labels": [], "status": ""}, {"addr": "172.21.15.165", "hostname": "smithi165", "labels": [], "status": ""}] 2024-09-17T09:05:42.010 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:41 smithi098 bash[22661]: cluster 2024-09-17T09:05:40.481135+0000 mgr.a (mgr.14150) 51 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:05:42.010 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:41 smithi098 bash[22661]: audit 2024-09-17T09:05:40.995469+0000 mon.a (mon.0) 129 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:05:42.010 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:41 smithi098 bash[22661]: audit 2024-09-17T09:05:41.000322+0000 mon.a (mon.0) 130 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:05:42.010 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:41 smithi098 bash[22661]: audit 2024-09-17T09:05:41.006049+0000 mon.a (mon.0) 131 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:05:42.011 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:41 smithi098 bash[22661]: audit 2024-09-17T09:05:41.010963+0000 mon.a (mon.0) 132 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:05:42.011 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:41 smithi098 bash[22661]: audit 2024-09-17T09:05:41.012292+0000 mon.a (mon.0) 133 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi165", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:05:42.011 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:41 smithi098 bash[22661]: audit 2024-09-17T09:05:41.014417+0000 mon.a (mon.0) 134 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:05:42.011 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:41 smithi098 bash[22661]: audit 2024-09-17T09:05:41.016136+0000 mon.a (mon.0) 135 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:05:42.011 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:41 smithi098 bash[22661]: audit 2024-09-17T09:05:41.569550+0000 mon.a (mon.0) 136 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:05:42.011 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:41 smithi098 bash[22661]: audit 2024-09-17T09:05:41.573061+0000 mon.a (mon.0) 137 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:05:42.011 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:41 smithi098 bash[22661]: audit 2024-09-17T09:05:41.576890+0000 mon.a (mon.0) 138 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:05:42.463 INFO:tasks.cephadm:Setting crush tunables to default 2024-09-17T09:05:42.463 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph osd crush tunables default 2024-09-17T09:05:43.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:42 smithi098 bash[22661]: cephadm 2024-09-17T09:05:41.018732+0000 mgr.a (mgr.14150) 52 : cephadm [INF] Updating smithi165:/etc/ceph/ceph.conf 2024-09-17T09:05:43.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:42 smithi098 bash[22661]: cephadm 2024-09-17T09:05:41.173098+0000 mgr.a (mgr.14150) 53 : cephadm [INF] Updating smithi165:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T09:05:43.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:42 smithi098 bash[22661]: cephadm 2024-09-17T09:05:41.315709+0000 mgr.a (mgr.14150) 54 : cephadm [INF] Updating smithi165:/etc/ceph/ceph.client.admin.keyring 2024-09-17T09:05:43.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:42 smithi098 bash[22661]: cephadm 2024-09-17T09:05:41.450857+0000 mgr.a (mgr.14150) 55 : cephadm [INF] Updating smithi165:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T09:05:44.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:43 smithi098 bash[22661]: audit 2024-09-17T09:05:41.794734+0000 mgr.a (mgr.14150) 56 : audit [DBG] from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T09:05:44.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:43 smithi098 bash[22661]: cluster 2024-09-17T09:05:42.481440+0000 mgr.a (mgr.14150) 57 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:05:46.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:45 smithi098 bash[22661]: cluster 2024-09-17T09:05:44.481838+0000 mgr.a (mgr.14150) 58 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:05:47.129 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:05:48.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:47 smithi098 bash[22661]: cluster 2024-09-17T09:05:46.482224+0000 mgr.a (mgr.14150) 59 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:05:50.039 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:49 smithi098 bash[22661]: cluster 2024-09-17T09:05:48.482640+0000 mgr.a (mgr.14150) 60 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:05:50.756 INFO:teuthology.orchestra.run.smithi098.stderr:adjusted tunables profile to default 2024-09-17T09:05:51.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:50 smithi098 bash[22661]: audit 2024-09-17T09:05:50.376425+0000 mon.a (mon.0) 139 : audit [INF] from='client.? 172.21.15.98:0/4165265668' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-17T09:05:51.411 INFO:tasks.cephadm:Adding mon.a on smithi098 2024-09-17T09:05:51.411 INFO:tasks.cephadm:Adding mon.b on smithi134 2024-09-17T09:05:51.411 INFO:tasks.cephadm:Adding mon.c on smithi165 2024-09-17T09:05:51.411 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph orch apply mon '3;smithi098:172.21.15.98=a;smithi134:172.21.15.134=b;smithi165:172.21.15.165=c' 2024-09-17T09:05:52.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:51 smithi098 bash[22661]: cluster 2024-09-17T09:05:50.482995+0000 mgr.a (mgr.14150) 61 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:05:52.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:51 smithi098 bash[22661]: audit 2024-09-17T09:05:50.756262+0000 mon.a (mon.0) 140 : audit [INF] from='client.? 172.21.15.98:0/4165265668' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-17T09:05:52.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:51 smithi098 bash[22661]: cluster 2024-09-17T09:05:50.756359+0000 mon.a (mon.0) 141 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-17T09:05:52.577 INFO:teuthology.orchestra.run.smithi165.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T09:05:54.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:53 smithi098 bash[22661]: cluster 2024-09-17T09:05:52.483388+0000 mgr.a (mgr.14150) 62 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:05:55.241 INFO:teuthology.orchestra.run.smithi165.stdout:Scheduled mon update... 2024-09-17T09:05:55.778 DEBUG:teuthology.orchestra.run.smithi134:mon.b> sudo journalctl -f -n 0 -u ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@mon.b.service 2024-09-17T09:05:55.785 DEBUG:teuthology.orchestra.run.smithi165:mon.c> sudo journalctl -f -n 0 -u ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@mon.c.service 2024-09-17T09:05:55.789 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-17T09:05:55.789 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T09:05:56.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:55 smithi098 bash[22661]: cluster 2024-09-17T09:05:54.483753+0000 mgr.a (mgr.14150) 63 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:05:56.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:55 smithi098 bash[22661]: audit 2024-09-17T09:05:55.240882+0000 mon.a (mon.0) 142 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:05:56.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:55 smithi098 bash[22661]: audit 2024-09-17T09:05:55.242466+0000 mon.a (mon.0) 143 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:05:56.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:55 smithi098 bash[22661]: audit 2024-09-17T09:05:55.703463+0000 mon.a (mon.0) 144 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:05:56.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:55 smithi098 bash[22661]: audit 2024-09-17T09:05:55.705081+0000 mon.a (mon.0) 145 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:05:56.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:55 smithi098 bash[22661]: audit 2024-09-17T09:05:55.711105+0000 mon.a (mon.0) 146 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:05:56.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:55 smithi098 bash[22661]: audit 2024-09-17T09:05:55.713110+0000 mon.a (mon.0) 147 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T09:05:56.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:55 smithi098 bash[22661]: audit 2024-09-17T09:05:55.714279+0000 mon.a (mon.0) 148 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:05:56.995 INFO:teuthology.orchestra.run.smithi165.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T09:05:57.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:56 smithi098 bash[22661]: audit 2024-09-17T09:05:55.230097+0000 mgr.a (mgr.14150) 64 : audit [DBG] from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi098:172.21.15.98=a;smithi134:172.21.15.134=b;smithi165:172.21.15.165=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:05:57.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:56 smithi098 bash[22661]: cephadm 2024-09-17T09:05:55.235179+0000 mgr.a (mgr.14150) 65 : cephadm [INF] Saving service mon spec with placement smithi098:172.21.15.98=a;smithi134:172.21.15.134=b;smithi165:172.21.15.165=c;count:3 2024-09-17T09:05:57.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:56 smithi098 bash[22661]: cephadm 2024-09-17T09:05:55.715866+0000 mgr.a (mgr.14150) 66 : cephadm [INF] Deploying daemon mon.c on smithi165 2024-09-17T09:05:58.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:57 smithi098 bash[22661]: cluster 2024-09-17T09:05:56.484197+0000 mgr.a (mgr.14150) 67 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:00.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:05:59 smithi098 bash[22661]: cluster 2024-09-17T09:05:58.484618+0000 mgr.a (mgr.14150) 68 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:01.278 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-17T09:06:01.278 INFO:teuthology.orchestra.run.smithi165.stdout:{"epoch":1,"fsid":"7d5e8b1e-74d3-11ef-bceb-c7b262605968","modified":"2024-09-17T09:03:24.250611Z","created":"2024-09-17T09:03:24.250611Z","min_mon_release":18,"min_mon_release_name":"reef","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"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.98:3300","nonce":0},{"type":"v1","addr":"172.21.15.98:6789","nonce":0}]},"addr":"172.21.15.98:6789/0","public_addr":"172.21.15.98:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T09:06:01.279 INFO:teuthology.orchestra.run.smithi165.stderr:dumped monmap epoch 1 2024-09-17T09:06:01.564 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:01 smithi165 systemd[1]: Started Ceph mon.c for 7d5e8b1e-74d3-11ef-bceb-c7b262605968. 2024-09-17T09:06:02.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:01 smithi098 bash[22661]: cluster 2024-09-17T09:06:00.485059+0000 mgr.a (mgr.14150) 69 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:02.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:01 smithi098 bash[22661]: audit 2024-09-17T09:06:01.278662+0000 mon.a (mon.0) 149 : audit [DBG] from='client.? 172.21.15.165:0/3259086635' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T09:06:02.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:01 smithi098 bash[22661]: audit 2024-09-17T09:06:01.441120+0000 mon.a (mon.0) 150 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:01 smithi098 bash[22661]: audit 2024-09-17T09:06:01.446658+0000 mon.a (mon.0) 151 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:01 smithi098 bash[22661]: audit 2024-09-17T09:06:01.452354+0000 mon.a (mon.0) 152 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:01 smithi098 bash[22661]: audit 2024-09-17T09:06:01.453498+0000 mon.a (mon.0) 153 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T09:06:02.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:01 smithi098 bash[22661]: audit 2024-09-17T09:06:01.455209+0000 mon.a (mon.0) 154 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:02.700 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.680+0000 7f831b15eb00 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-17T09:06:02.700 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.680+0000 7f831b15eb00 0 ceph version 18.2.4-855-g19e2a2be (19e2a2beb6f41a3ab62650e38614eb29b59dcbb9) reef (stable), process ceph-mon, pid 7 2024-09-17T09:06:02.700 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.680+0000 7f831b15eb00 0 pidfile_write: ignore empty --pid-file 2024-09-17T09:06:02.700 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 0 load: jerasure load: lrc 2024-09-17T09:06:02.701 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: RocksDB version: 7.9.2 2024-09-17T09:06:02.701 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Git sha 0 2024-09-17T09:06:02.701 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Compile date 2024-09-16 15:15:13 2024-09-17T09:06:02.701 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: DB SUMMARY 2024-09-17T09:06:02.701 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: DB Session ID: 9CG3ZTCIYN8ON5DL098N 2024-09-17T09:06:02.701 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: CURRENT file: CURRENT 2024-09-17T09:06:02.701 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: IDENTITY file: IDENTITY 2024-09-17T09:06:02.701 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2024-09-17T09:06:02.701 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-c/store.db dir, Total Num: 0, files: 2024-09-17T09:06:02.701 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-c/store.db: 000004.log size: 511 ; 2024-09-17T09:06:02.701 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.error_if_exists: 0 2024-09-17T09:06:02.702 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.create_if_missing: 0 2024-09-17T09:06:02.702 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.paranoid_checks: 1 2024-09-17T09:06:02.702 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-17T09:06:02.702 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-17T09:06:02.702 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-17T09:06:02.702 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.env: 0x5568e33cbbc0 2024-09-17T09:06:02.702 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.fs: PosixFileSystem 2024-09-17T09:06:02.702 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.info_log: 0x5568e41eebe0 2024-09-17T09:06:02.702 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-17T09:06:02.702 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.statistics: (nil) 2024-09-17T09:06:02.702 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.use_fsync: 0 2024-09-17T09:06:02.702 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.max_log_file_size: 0 2024-09-17T09:06:02.705 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-17T09:06:02.705 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-17T09:06:02.705 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-17T09:06:02.705 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-17T09:06:02.705 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.allow_fallocate: 1 2024-09-17T09:06:02.705 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-17T09:06:02.705 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-17T09:06:02.705 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.use_direct_reads: 0 2024-09-17T09:06:02.705 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-17T09:06:02.705 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.create_missing_column_families: 0 2024-09-17T09:06:02.705 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.db_log_dir: 2024-09-17T09:06:02.706 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.wal_dir: 2024-09-17T09:06:02.706 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-17T09:06:02.706 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-17T09:06:02.706 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-17T09:06:02.706 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-17T09:06:02.706 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-17T09:06:02.706 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-17T09:06:02.706 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.advise_random_on_open: 1 2024-09-17T09:06:02.706 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-17T09:06:02.706 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.write_buffer_manager: 0x5568e41fc320 2024-09-17T09:06:02.706 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-17T09:06:02.706 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-17T09:06:02.707 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-17T09:06:02.707 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.rate_limiter: (nil) 2024-09-17T09:06:02.707 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-17T09:06:02.707 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-17T09:06:02.707 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-17T09:06:02.707 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-17T09:06:02.707 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.unordered_write: 0 2024-09-17T09:06:02.707 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-17T09:06:02.707 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-17T09:06:02.707 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-17T09:06:02.707 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-17T09:06:02.707 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.row_cache: None 2024-09-17T09:06:02.708 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.wal_filter: None 2024-09-17T09:06:02.708 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-17T09:06:02.708 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-17T09:06:02.708 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.two_write_queues: 0 2024-09-17T09:06:02.708 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.manual_wal_flush: 0 2024-09-17T09:06:02.708 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.wal_compression: 0 2024-09-17T09:06:02.708 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.atomic_flush: 0 2024-09-17T09:06:02.708 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-17T09:06:02.708 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-17T09:06:02.708 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-17T09:06:02.708 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.log_readahead_size: 0 2024-09-17T09:06:02.708 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-17T09:06:02.708 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-17T09:06:02.709 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-17T09:06:02.709 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-17T09:06:02.709 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-17T09:06:02.709 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-17T09:06:02.709 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-17T09:06:02.709 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.max_background_jobs: 2 2024-09-17T09:06:02.709 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.max_background_compactions: -1 2024-09-17T09:06:02.709 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.max_subcompactions: 1 2024-09-17T09:06:02.709 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-17T09:06:02.709 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-17T09:06:02.709 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-17T09:06:02.709 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.max_total_wal_size: 0 2024-09-17T09:06:02.709 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-17T09:06:02.709 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-17T09:06:02.710 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-17T09:06:02.710 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-17T09:06:02.710 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.max_open_files: -1 2024-09-17T09:06:02.710 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.bytes_per_sync: 0 2024-09-17T09:06:02.710 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-17T09:06:02.710 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-17T09:06:02.710 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-17T09:06:02.710 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.max_background_flushes: -1 2024-09-17T09:06:02.710 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Compression algorithms supported: 2024-09-17T09:06:02.710 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: kZSTD supported: 0 2024-09-17T09:06:02.710 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: kXpressCompression supported: 0 2024-09-17T09:06:02.710 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: kBZip2Compression supported: 0 2024-09-17T09:06:02.710 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-17T09:06:02.711 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: kLZ4Compression supported: 1 2024-09-17T09:06:02.711 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: kZlibCompression supported: 1 2024-09-17T09:06:02.711 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-17T09:06:02.711 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: kSnappyCompression supported: 1 2024-09-17T09:06:02.711 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-17T09:06:02.711 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-17T09:06:02.711 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-c/store.db/MANIFEST-000005 2024-09-17T09:06:02.711 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-17T09:06:02.711 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-17T09:06:02.711 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.merge_operator: 2024-09-17T09:06:02.711 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.compaction_filter: None 2024-09-17T09:06:02.711 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.compaction_filter_factory: None 2024-09-17T09:06:02.712 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-17T09:06:02.712 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-17T09:06:02.712 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-17T09:06:02.712 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x5568e41ee7e0) 2024-09-17T09:06:02.712 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cache_index_and_filter_blocks: 1 2024-09-17T09:06:02.712 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-17T09:06:02.712 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-17T09:06:02.712 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: pin_top_level_index_and_filter: 1 2024-09-17T09:06:02.712 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: index_type: 0 2024-09-17T09:06:02.712 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: data_block_index_type: 0 2024-09-17T09:06:02.712 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: index_shortening: 1 2024-09-17T09:06:02.712 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: data_block_hash_table_util_ratio: 0.750000 2024-09-17T09:06:02.712 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: checksum: 4 2024-09-17T09:06:02.713 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: no_block_cache: 0 2024-09-17T09:06:02.713 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: block_cache: 0x5568e41e51f0 2024-09-17T09:06:02.713 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: block_cache_name: BinnedLRUCache 2024-09-17T09:06:02.713 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: block_cache_options: 2024-09-17T09:06:02.713 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: capacity : 536870912 2024-09-17T09:06:02.713 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: num_shard_bits : 4 2024-09-17T09:06:02.713 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: strict_capacity_limit : 0 2024-09-17T09:06:02.713 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: high_pri_pool_ratio: 0.000 2024-09-17T09:06:02.713 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: block_cache_compressed: (nil) 2024-09-17T09:06:02.713 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: persistent_cache: (nil) 2024-09-17T09:06:02.713 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: block_size: 4096 2024-09-17T09:06:02.713 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: block_size_deviation: 10 2024-09-17T09:06:02.713 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: block_restart_interval: 16 2024-09-17T09:06:02.714 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: index_block_restart_interval: 1 2024-09-17T09:06:02.714 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: metadata_block_size: 4096 2024-09-17T09:06:02.714 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: partition_filters: 0 2024-09-17T09:06:02.714 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: use_delta_encoding: 1 2024-09-17T09:06:02.714 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: filter_policy: bloomfilter 2024-09-17T09:06:02.714 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: whole_key_filtering: 1 2024-09-17T09:06:02.714 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: verify_compression: 0 2024-09-17T09:06:02.714 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: read_amp_bytes_per_bit: 0 2024-09-17T09:06:02.714 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: format_version: 5 2024-09-17T09:06:02.714 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: enable_index_compression: 1 2024-09-17T09:06:02.714 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: block_align: 0 2024-09-17T09:06:02.714 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: max_auto_readahead_size: 262144 2024-09-17T09:06:02.714 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: prepopulate_block_cache: 0 2024-09-17T09:06:02.714 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: initial_auto_readahead_size: 8192 2024-09-17T09:06:02.715 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: num_file_reads_for_auto_readahead: 2 2024-09-17T09:06:02.715 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-17T09:06:02.715 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-17T09:06:02.715 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.compression: NoCompression 2024-09-17T09:06:02.715 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-17T09:06:02.715 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-17T09:06:02.715 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-17T09:06:02.715 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.num_levels: 7 2024-09-17T09:06:02.715 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-17T09:06:02.715 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-17T09:06:02.715 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-17T09:06:02.715 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-17T09:06:02.715 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-17T09:06:02.716 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-17T09:06:02.716 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-17T09:06:02.716 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-17T09:06:02.716 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-17T09:06:02.716 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-17T09:06:02.716 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-17T09:06:02.716 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-17T09:06:02.716 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-17T09:06:02.716 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.compression_opts.level: 32767 2024-09-17T09:06:02.716 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-17T09:06:02.716 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-17T09:06:02.716 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-17T09:06:02.716 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-17T09:06:02.717 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-17T09:06:02.717 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.compression_opts.enabled: false 2024-09-17T09:06:02.717 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-17T09:06:02.717 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-17T09:06:02.717 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-17T09:06:02.717 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-17T09:06:02.717 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-17T09:06:02.717 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-17T09:06:02.717 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-17T09:06:02.717 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-17T09:06:02.717 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-17T09:06:02.717 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-17T09:06:02.717 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-17T09:06:02.717 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-17T09:06:02.718 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-17T09:06:02.718 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-17T09:06:02.718 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-17T09:06:02.718 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-17T09:06:02.718 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-17T09:06:02.718 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-17T09:06:02.718 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-17T09:06:02.718 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.arena_block_size: 1048576 2024-09-17T09:06:02.718 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-17T09:06:02.718 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-17T09:06:02.718 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-17T09:06:02.718 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-17T09:06:02.718 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-17T09:06:02.719 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-17T09:06:02.719 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-17T09:06:02.719 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-17T09:06:02.719 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-17T09:06:02.719 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-17T09:06:02.719 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-17T09:06:02.719 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-17T09:06:02.719 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-17T09:06:02.719 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-17T09:06:02.719 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.inplace_update_support: 0 2024-09-17T09:06:02.719 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-17T09:06:02.719 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-17T09:06:02.719 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-17T09:06:02.720 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-17T09:06:02.720 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.bloom_locality: 0 2024-09-17T09:06:02.720 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.max_successive_merges: 0 2024-09-17T09:06:02.720 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-17T09:06:02.720 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-17T09:06:02.720 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.force_consistency_checks: 1 2024-09-17T09:06:02.720 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-17T09:06:02.720 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.ttl: 2592000 2024-09-17T09:06:02.720 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-17T09:06:02.720 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-17T09:06:02.720 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-17T09:06:02.720 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.enable_blob_files: false 2024-09-17T09:06:02.720 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.min_blob_size: 0 2024-09-17T09:06:02.721 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.blob_file_size: 268435456 2024-09-17T09:06:02.721 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-17T09:06:02.721 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-17T09:06:02.721 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-17T09:06:02.721 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-17T09:06:02.721 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-17T09:06:02.721 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-17T09:06:02.721 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-17T09:06:02.721 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-c/store.db/MANIFEST-000005 succeeded,manifest_file_number is 5, next_file_number is 7, 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-17T09:06:02.721 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-17T09:06:02.721 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: fb36d9c8-70ee-4ca7-a47e-66cff65fd5d4 2024-09-17T09:06:02.721 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726563962689001, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-09-17T09:06:02.722 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2024-09-17T09:06:02.722 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726563962689447, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 8, "file_size": 1648, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 1, "largest_seqno": 5, "table_properties": {"data_size": 523, "index_size": 31, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 69, "raw_key_size": 115, "raw_average_key_size": 23, "raw_value_size": 401, "raw_average_value_size": 80, "num_data_blocks": 1, "num_entries": 5, "num_filter_entries": 5, "num_deletions": 0, "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": 1726563962, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "fb36d9c8-70ee-4ca7-a47e-66cff65fd5d4", "db_session_id": "9CG3ZTCIYN8ON5DL098N", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2024-09-17T09:06:02.722 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726563962689573, "job": 1, "event": "recovery_finished"} 2024-09-17T09:06:02.722 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.684+0000 7f831b15eb00 4 rocksdb: [db/version_set.cc:5047] Creating manifest 10 2024-09-17T09:06:02.722 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.688+0000 7f831b15eb00 4 rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-c/store.db/000004.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-17T09:06:02.722 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.688+0000 7f831b15eb00 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x5568e420ee00 2024-09-17T09:06:02.722 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.688+0000 7f831b15eb00 4 rocksdb: DB pointer 0x5568e4306000 2024-09-17T09:06:02.722 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.688+0000 7f8310f29640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-17T09:06:02.722 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.688+0000 7f8310f29640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-17T09:06:02.722 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: ** DB Stats ** 2024-09-17T09:06:02.722 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-17T09:06:02.722 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: 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-17T09:06:02.723 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-17T09:06:02.723 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-17T09:06:02.723 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: 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-17T09:06:02.723 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-17T09:06:02.723 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-17T09:06:02.723 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: ** Compaction Stats [default] ** 2024-09-17T09:06:02.723 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: 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-17T09:06:02.723 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-17T09:06:02.723 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: L0 1/0 1.61 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.8 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-17T09:06:02.723 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: Sum 1/0 1.61 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.8 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-17T09:06:02.723 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.8 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-17T09:06:02.723 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: ** Compaction Stats [default] ** 2024-09-17T09:06:02.723 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: 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-17T09:06:02.724 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-17T09:06:02.724 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.8 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-17T09:06:02.724 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-17T09:06:02.724 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-17T09:06:02.724 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: Flush(GB): cumulative 0.000, interval 0.000 2024-09-17T09:06:02.724 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-17T09:06:02.724 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: AddFile(Total Files): cumulative 0, interval 0 2024-09-17T09:06:02.724 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: AddFile(L0 Files): cumulative 0, interval 0 2024-09-17T09:06:02.724 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: AddFile(Keys): cumulative 0, interval 0 2024-09-17T09:06:02.724 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: Cumulative compaction: 0.00 GB write, 0.49 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-17T09:06:02.724 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: Interval compaction: 0.00 GB write, 0.49 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-17T09:06:02.724 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: 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-17T09:06:02.724 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: Block cache BinnedLRUCache@0x5568e41e51f0#7 capacity: 512.00 MB usage: 0.22 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.1e-05 secs_since: 0 2024-09-17T09:06:02.725 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: Block cache entry stats(count,size,portion): FilterBlock(1,0.11 KB,2.08616e-05%) IndexBlock(1,0.11 KB,2.08616e-05%) Misc(1,0.00 KB,0%) 2024-09-17T09:06:02.725 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: ** File Read Latency Histogram By Level [default] ** 2024-09-17T09:06:02.725 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.688+0000 7f831b15eb00 0 mon.c does not exist in monmap, will attempt to join an existing cluster 2024-09-17T09:06:02.725 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.688+0000 7f831b15eb00 0 using public_addr v2:172.21.15.165:0/0 -> [v2:172.21.15.165:3300/0,v1:172.21.15.165:6789/0] 2024-09-17T09:06:02.725 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.688+0000 7f831b15eb00 0 starting mon.c rank -1 at public addrs [v2:172.21.15.165:3300/0,v1:172.21.15.165:6789/0] at bind addrs [v2:172.21.15.165:3300/0,v1:172.21.15.165:6789/0] mon_data /var/lib/ceph/mon/ceph-c fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 2024-09-17T09:06:02.725 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.688+0000 7f831b15eb00 1 mon.c@-1(???) e0 preinit fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 2024-09-17T09:06:02.886 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.716+0000 7f8313f2f640 0 mon.c@-1(synchronizing).mds e1 new map 2024-09-17T09:06:02.886 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.716+0000 7f8313f2f640 0 mon.c@-1(synchronizing).mds e1 print_map 2024-09-17T09:06:02.886 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: e1 2024-09-17T09:06:02.886 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: enable_multiple, ever_enabled_multiple: 1,1 2024-09-17T09:06:02.886 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2} 2024-09-17T09:06:02.887 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: legacy client fscid: -1 2024-09-17T09:06:02.887 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: 2024-09-17T09:06:02.887 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: No filesystems configured 2024-09-17T09:06:02.887 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.716+0000 7f8313f2f640 1 mon.c@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-09-17T09:06:02.887 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.716+0000 7f8313f2f640 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-17T09:06:02.887 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.716+0000 7f8313f2f640 1 mon.c@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-09-17T09:06:02.887 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.716+0000 7f8313f2f640 1 mon.c@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-09-17T09:06:02.887 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.716+0000 7f8313f2f640 1 mon.c@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-09-17T09:06:02.887 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.716+0000 7f8313f2f640 1 mon.c@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-09-17T09:06:02.887 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.716+0000 7f8313f2f640 0 mon.c@-1(synchronizing).osd e4 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-17T09:06:02.887 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.716+0000 7f8313f2f640 0 mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T09:06:02.887 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.716+0000 7f8313f2f640 0 mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T09:06:02.888 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.716+0000 7f8313f2f640 0 mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T09:06:02.888 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:04:58.471794+0000 mgr.a (mgr.14150) 14 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:02.888 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:05:00.472230+0000 mgr.a (mgr.14150) 15 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:02.888 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:01.233786+0000 mon.a (mon.0) 102 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.888 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:01.234841+0000 mon.a (mon.0) 103 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:06:02.888 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:01.237754+0000 mon.a (mon.0) 104 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:02.888 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:01.238615+0000 mon.a (mon.0) 105 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:06:02.888 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:01.228794+0000 mgr.a (mgr.14150) 16 : audit [DBG] from='client.14174 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:06:02.889 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cephadm 2024-09-17T09:05:01.239910+0000 mgr.a (mgr.14150) 17 : cephadm [INF] Updating smithi098:/etc/ceph/ceph.conf 2024-09-17T09:06:02.889 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cephadm 2024-09-17T09:05:01.340781+0000 mgr.a (mgr.14150) 18 : cephadm [INF] Updating smithi098:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T09:06:02.889 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cephadm 2024-09-17T09:05:01.425910+0000 mgr.a (mgr.14150) 19 : cephadm [INF] Updating smithi098:/etc/ceph/ceph.client.admin.keyring 2024-09-17T09:06:02.889 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cephadm 2024-09-17T09:05:01.514401+0000 mgr.a (mgr.14150) 20 : cephadm [INF] Updating smithi098:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T09:06:02.889 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:01.649527+0000 mon.a (mon.0) 106 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.890 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:01.654964+0000 mon.a (mon.0) 107 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.890 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:01.661298+0000 mon.a (mon.0) 108 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.890 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:05:02.472704+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-17T09:06:02.890 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:05:04.473199+0000 mgr.a (mgr.14150) 22 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:02.890 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:05:06.473734+0000 mgr.a (mgr.14150) 23 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:02.890 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:05:08.474216+0000 mgr.a (mgr.14150) 24 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:02.890 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:09.764742+0000 mgr.a (mgr.14150) 25 : audit [DBG] from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi134", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:06:02.890 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:05:10.474562+0000 mgr.a (mgr.14150) 26 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:02.890 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cephadm 2024-09-17T09:05:10.754996+0000 mgr.a (mgr.14150) 27 : cephadm [INF] Deploying cephadm binary to smithi134 2024-09-17T09:06:02.890 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:05:12.474933+0000 mgr.a (mgr.14150) 28 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:02.890 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:12.963137+0000 mon.a (mon.0) 109 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.890 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:12.964650+0000 mon.a (mon.0) 110 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:06:02.890 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:13.296012+0000 mon.a (mon.0) 111 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.891 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cephadm 2024-09-17T09:05:12.963893+0000 mgr.a (mgr.14150) 29 : cephadm [INF] Added host smithi134 2024-09-17T09:06:02.891 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:14.638253+0000 mon.a (mon.0) 112 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.891 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:05:14.475357+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-17T09:06:02.891 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:15.461682+0000 mon.a (mon.0) 113 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.891 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:05:16.475756+0000 mgr.a (mgr.14150) 31 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:02.891 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:05:18.476185+0000 mgr.a (mgr.14150) 32 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:02.891 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:05:20.476588+0000 mgr.a (mgr.14150) 33 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:02.891 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:20.698152+0000 mon.a (mon.0) 114 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.891 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:20.703364+0000 mon.a (mon.0) 115 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.891 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:20.709756+0000 mon.a (mon.0) 116 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.891 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:20.715020+0000 mon.a (mon.0) 117 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.891 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:20.716530+0000 mon.a (mon.0) 118 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi134", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:06:02.891 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:20.718707+0000 mon.a (mon.0) 119 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:02.892 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:20.720848+0000 mon.a (mon.0) 120 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:06:02.892 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cephadm 2024-09-17T09:05:20.723593+0000 mgr.a (mgr.14150) 34 : cephadm [INF] Updating smithi134:/etc/ceph/ceph.conf 2024-09-17T09:06:02.892 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:21.269809+0000 mon.a (mon.0) 121 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.892 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:21.275603+0000 mon.a (mon.0) 122 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.892 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:21.282323+0000 mon.a (mon.0) 123 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.892 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cephadm 2024-09-17T09:05:20.892665+0000 mgr.a (mgr.14150) 35 : cephadm [INF] Updating smithi134:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T09:06:02.892 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cephadm 2024-09-17T09:05:21.024427+0000 mgr.a (mgr.14150) 36 : cephadm [INF] Updating smithi134:/etc/ceph/ceph.client.admin.keyring 2024-09-17T09:06:02.892 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cephadm 2024-09-17T09:05:21.154725+0000 mgr.a (mgr.14150) 37 : cephadm [INF] Updating smithi134:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T09:06:02.892 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:21.494761+0000 mgr.a (mgr.14150) 38 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T09:06:02.892 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:05:22.477063+0000 mgr.a (mgr.14150) 39 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:02.892 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:05:24.477558+0000 mgr.a (mgr.14150) 40 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:02.892 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:05:26.478055+0000 mgr.a (mgr.14150) 41 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:02.893 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:05:28.478598+0000 mgr.a (mgr.14150) 42 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:02.893 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:29.941716+0000 mgr.a (mgr.14150) 43 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi165", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:06:02.893 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:05:30.479073+0000 mgr.a (mgr.14150) 44 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:02.893 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cephadm 2024-09-17T09:05:30.994423+0000 mgr.a (mgr.14150) 45 : cephadm [INF] Deploying cephadm binary to smithi165 2024-09-17T09:06:02.893 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:05:32.479559+0000 mgr.a (mgr.14150) 46 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:02.893 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:33.267673+0000 mon.a (mon.0) 124 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.893 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:33.269108+0000 mon.a (mon.0) 125 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:06:02.893 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:33.586189+0000 mon.a (mon.0) 126 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.893 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cephadm 2024-09-17T09:05:33.268314+0000 mgr.a (mgr.14150) 47 : cephadm [INF] Added host smithi165 2024-09-17T09:06:02.893 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:05:34.480049+0000 mgr.a (mgr.14150) 48 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:02.893 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:34.903626+0000 mon.a (mon.0) 127 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.893 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:35.685173+0000 mon.a (mon.0) 128 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.893 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:05:36.480435+0000 mgr.a (mgr.14150) 49 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:02.894 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:05:38.480825+0000 mgr.a (mgr.14150) 50 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:02.894 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:05:40.481135+0000 mgr.a (mgr.14150) 51 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:02.894 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:40.995469+0000 mon.a (mon.0) 129 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.894 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:41.000322+0000 mon.a (mon.0) 130 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.894 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:41.006049+0000 mon.a (mon.0) 131 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.894 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:41.010963+0000 mon.a (mon.0) 132 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.894 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:41.012292+0000 mon.a (mon.0) 133 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi165", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:06:02.894 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:41.014417+0000 mon.a (mon.0) 134 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:02.894 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:41.016136+0000 mon.a (mon.0) 135 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:06:02.894 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:41.569550+0000 mon.a (mon.0) 136 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.894 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:41.573061+0000 mon.a (mon.0) 137 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.894 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:41.576890+0000 mon.a (mon.0) 138 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.894 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cephadm 2024-09-17T09:05:41.018732+0000 mgr.a (mgr.14150) 52 : cephadm [INF] Updating smithi165:/etc/ceph/ceph.conf 2024-09-17T09:06:02.895 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cephadm 2024-09-17T09:05:41.173098+0000 mgr.a (mgr.14150) 53 : cephadm [INF] Updating smithi165:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T09:06:02.895 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cephadm 2024-09-17T09:05:41.315709+0000 mgr.a (mgr.14150) 54 : cephadm [INF] Updating smithi165:/etc/ceph/ceph.client.admin.keyring 2024-09-17T09:06:02.895 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cephadm 2024-09-17T09:05:41.450857+0000 mgr.a (mgr.14150) 55 : cephadm [INF] Updating smithi165:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T09:06:02.895 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:41.794734+0000 mgr.a (mgr.14150) 56 : audit [DBG] from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T09:06:02.895 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:05:42.481440+0000 mgr.a (mgr.14150) 57 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:02.895 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:05:44.481838+0000 mgr.a (mgr.14150) 58 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:02.895 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:05:46.482224+0000 mgr.a (mgr.14150) 59 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:02.895 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:05:48.482640+0000 mgr.a (mgr.14150) 60 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:02.895 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:50.376425+0000 mon.a (mon.0) 139 : audit [INF] from='client.? 172.21.15.98:0/4165265668' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-17T09:06:02.895 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:05:50.482995+0000 mgr.a (mgr.14150) 61 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:02.895 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:50.756262+0000 mon.a (mon.0) 140 : audit [INF] from='client.? 172.21.15.98:0/4165265668' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-17T09:06:02.895 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:05:50.756359+0000 mon.a (mon.0) 141 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-17T09:06:02.895 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:05:52.483388+0000 mgr.a (mgr.14150) 62 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:02.896 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:05:54.483753+0000 mgr.a (mgr.14150) 63 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:02.896 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:55.240882+0000 mon.a (mon.0) 142 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.896 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:55.242466+0000 mon.a (mon.0) 143 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:06:02.896 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:55.703463+0000 mon.a (mon.0) 144 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:02.896 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:55.705081+0000 mon.a (mon.0) 145 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:06:02.896 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:55.711105+0000 mon.a (mon.0) 146 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.896 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:55.713110+0000 mon.a (mon.0) 147 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T09:06:02.896 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:55.714279+0000 mon.a (mon.0) 148 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:02.896 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:05:55.230097+0000 mgr.a (mgr.14150) 64 : audit [DBG] from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi098:172.21.15.98=a;smithi134:172.21.15.134=b;smithi165:172.21.15.165=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:06:02.896 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cephadm 2024-09-17T09:05:55.235179+0000 mgr.a (mgr.14150) 65 : cephadm [INF] Saving service mon spec with placement smithi098:172.21.15.98=a;smithi134:172.21.15.134=b;smithi165:172.21.15.165=c;count:3 2024-09-17T09:06:02.896 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cephadm 2024-09-17T09:05:55.715866+0000 mgr.a (mgr.14150) 66 : cephadm [INF] Deploying daemon mon.c on smithi165 2024-09-17T09:06:02.896 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:05:56.484197+0000 mgr.a (mgr.14150) 67 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:02.896 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:05:58.484618+0000 mgr.a (mgr.14150) 68 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:02.897 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: cluster 2024-09-17T09:06:00.485059+0000 mgr.a (mgr.14150) 69 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:02.897 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:06:01.278662+0000 mon.a (mon.0) 149 : audit [DBG] from='client.? 172.21.15.165:0/3259086635' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T09:06:02.897 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:06:01.441120+0000 mon.a (mon.0) 150 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.897 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:06:01.446658+0000 mon.a (mon.0) 151 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.897 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:06:01.452354+0000 mon.a (mon.0) 152 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:02.897 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:06:01.453498+0000 mon.a (mon.0) 153 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T09:06:02.897 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: audit 2024-09-17T09:06:01.455209+0000 mon.a (mon.0) 154 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:02.897 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:02 smithi165 bash[24863]: debug 2024-09-17T09:06:02.716+0000 7f8313f2f640 1 mon.c@-1(synchronizing).paxosservice(auth 1..3) refresh upgraded, format 0 -> 3 2024-09-17T09:06:03.297 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-17T09:06:03.297 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T09:06:06.778 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:05:21.282323+0000 mon.a (mon.0) 123 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:06.778 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: cephadm 2024-09-17T09:05:20.892665+0000 mgr.a (mgr.14150) 35 : cephadm [INF] Updating smithi134:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T09:06:06.778 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: cephadm 2024-09-17T09:05:21.024427+0000 mgr.a (mgr.14150) 36 : cephadm [INF] Updating smithi134:/etc/ceph/ceph.client.admin.keyring 2024-09-17T09:06:06.778 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: cephadm 2024-09-17T09:05:21.154725+0000 mgr.a (mgr.14150) 37 : cephadm [INF] Updating smithi134:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T09:06:06.778 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:05:21.494761+0000 mgr.a (mgr.14150) 38 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T09:06:06.957 INFO:teuthology.orchestra.run.smithi165.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.c/config 2024-09-17T09:06:07.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: cluster 2024-09-17T09:05:22.477063+0000 mgr.a (mgr.14150) 39 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:07.049 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: cluster 2024-09-17T09:05:24.477558+0000 mgr.a (mgr.14150) 40 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:07.052 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: cluster 2024-09-17T09:05:26.478055+0000 mgr.a (mgr.14150) 41 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:07.053 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: cluster 2024-09-17T09:05:28.478598+0000 mgr.a (mgr.14150) 42 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:07.053 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:05:29.941716+0000 mgr.a (mgr.14150) 43 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi165", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:06:07.053 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: cluster 2024-09-17T09:05:30.479073+0000 mgr.a (mgr.14150) 44 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:07.053 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: cephadm 2024-09-17T09:05:30.994423+0000 mgr.a (mgr.14150) 45 : cephadm [INF] Deploying cephadm binary to smithi165 2024-09-17T09:06:07.053 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: cluster 2024-09-17T09:05:32.479559+0000 mgr.a (mgr.14150) 46 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:07.053 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:05:33.267673+0000 mon.a (mon.0) 124 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:07.053 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:05:33.269108+0000 mon.a (mon.0) 125 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:06:07.053 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:05:33.586189+0000 mon.a (mon.0) 126 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:07.053 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: cephadm 2024-09-17T09:05:33.268314+0000 mgr.a (mgr.14150) 47 : cephadm [INF] Added host smithi165 2024-09-17T09:06:07.053 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: cluster 2024-09-17T09:05:34.480049+0000 mgr.a (mgr.14150) 48 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:07.053 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:05:34.903626+0000 mon.a (mon.0) 127 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:07.053 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:05:35.685173+0000 mon.a (mon.0) 128 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:07.054 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: cluster 2024-09-17T09:05:36.480435+0000 mgr.a (mgr.14150) 49 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:07.054 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: cluster 2024-09-17T09:05:38.480825+0000 mgr.a (mgr.14150) 50 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:07.054 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: cluster 2024-09-17T09:05:40.481135+0000 mgr.a (mgr.14150) 51 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:07.054 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:05:40.995469+0000 mon.a (mon.0) 129 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:07.054 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:05:41.000322+0000 mon.a (mon.0) 130 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:07.054 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:05:41.006049+0000 mon.a (mon.0) 131 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:07.054 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:05:41.010963+0000 mon.a (mon.0) 132 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:07.054 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:05:41.012292+0000 mon.a (mon.0) 133 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi165", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:06:07.055 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:05:41.014417+0000 mon.a (mon.0) 134 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:07.055 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:05:41.016136+0000 mon.a (mon.0) 135 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:06:07.055 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:05:41.569550+0000 mon.a (mon.0) 136 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:07.055 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:05:41.573061+0000 mon.a (mon.0) 137 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:07.055 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:05:41.576890+0000 mon.a (mon.0) 138 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:07.055 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: cephadm 2024-09-17T09:05:41.018732+0000 mgr.a (mgr.14150) 52 : cephadm [INF] Updating smithi165:/etc/ceph/ceph.conf 2024-09-17T09:06:07.055 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: cephadm 2024-09-17T09:05:41.173098+0000 mgr.a (mgr.14150) 53 : cephadm [INF] Updating smithi165:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T09:06:07.055 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: cephadm 2024-09-17T09:05:41.315709+0000 mgr.a (mgr.14150) 54 : cephadm [INF] Updating smithi165:/etc/ceph/ceph.client.admin.keyring 2024-09-17T09:06:07.055 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: cephadm 2024-09-17T09:05:41.450857+0000 mgr.a (mgr.14150) 55 : cephadm [INF] Updating smithi165:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T09:06:07.055 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:05:41.794734+0000 mgr.a (mgr.14150) 56 : audit [DBG] from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T09:06:07.055 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: cluster 2024-09-17T09:05:42.481440+0000 mgr.a (mgr.14150) 57 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:07.056 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: cluster 2024-09-17T09:05:44.481838+0000 mgr.a (mgr.14150) 58 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:07.056 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: cluster 2024-09-17T09:05:46.482224+0000 mgr.a (mgr.14150) 59 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:07.056 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: cluster 2024-09-17T09:05:48.482640+0000 mgr.a (mgr.14150) 60 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:07.056 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:05:50.376425+0000 mon.a (mon.0) 139 : audit [INF] from='client.? 172.21.15.98:0/4165265668' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-17T09:06:07.056 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: cluster 2024-09-17T09:05:50.482995+0000 mgr.a (mgr.14150) 61 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:07.056 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:05:50.756262+0000 mon.a (mon.0) 140 : audit [INF] from='client.? 172.21.15.98:0/4165265668' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-17T09:06:07.056 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: cluster 2024-09-17T09:05:50.756359+0000 mon.a (mon.0) 141 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-17T09:06:07.056 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: cluster 2024-09-17T09:05:52.483388+0000 mgr.a (mgr.14150) 62 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:07.056 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: cluster 2024-09-17T09:05:54.483753+0000 mgr.a (mgr.14150) 63 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:07.056 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:05:55.240882+0000 mon.a (mon.0) 142 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:07.056 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:05:55.242466+0000 mon.a (mon.0) 143 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:06:07.056 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:05:55.703463+0000 mon.a (mon.0) 144 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:07.057 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:05:55.705081+0000 mon.a (mon.0) 145 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:06:07.057 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:05:55.711105+0000 mon.a (mon.0) 146 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:07.057 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:05:55.713110+0000 mon.a (mon.0) 147 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T09:06:07.057 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:05:55.714279+0000 mon.a (mon.0) 148 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:07.057 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:05:55.230097+0000 mgr.a (mgr.14150) 64 : audit [DBG] from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi098:172.21.15.98=a;smithi134:172.21.15.134=b;smithi165:172.21.15.165=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:06:07.057 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: cephadm 2024-09-17T09:05:55.235179+0000 mgr.a (mgr.14150) 65 : cephadm [INF] Saving service mon spec with placement smithi098:172.21.15.98=a;smithi134:172.21.15.134=b;smithi165:172.21.15.165=c;count:3 2024-09-17T09:06:07.057 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: cephadm 2024-09-17T09:05:55.715866+0000 mgr.a (mgr.14150) 66 : cephadm [INF] Deploying daemon mon.c on smithi165 2024-09-17T09:06:07.057 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: cluster 2024-09-17T09:05:56.484197+0000 mgr.a (mgr.14150) 67 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:07.057 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: cluster 2024-09-17T09:05:58.484618+0000 mgr.a (mgr.14150) 68 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:07.057 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: cluster 2024-09-17T09:06:00.485059+0000 mgr.a (mgr.14150) 69 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:07.057 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:06:01.278662+0000 mon.a (mon.0) 149 : audit [DBG] from='client.? 172.21.15.165:0/3259086635' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T09:06:07.057 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:06:01.441120+0000 mon.a (mon.0) 150 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:07.058 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:06:01.446658+0000 mon.a (mon.0) 151 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:07.058 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:06:01.452354+0000 mon.a (mon.0) 152 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:07.058 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:06:01.453498+0000 mon.a (mon.0) 153 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T09:06:07.058 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: audit 2024-09-17T09:06:01.455209+0000 mon.a (mon.0) 154 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:07.058 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:06 smithi134 bash[24188]: debug 2024-09-17T09:06:06.775+0000 7f0186c8e640 1 mon.b@-1(synchronizing).paxosservice(auth 1..3) refresh upgraded, format 0 -> 3 2024-09-17T09:06:08.135 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:07 smithi165 bash[24863]: cluster 2024-09-17T09:06:02.485563+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-17T09:06:08.135 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:07 smithi165 bash[24863]: audit 2024-09-17T09:06:02.733860+0000 mon.a (mon.0) 156 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T09:06:08.136 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:07 smithi165 bash[24863]: cluster 2024-09-17T09:06:02.734254+0000 mon.a (mon.0) 157 : cluster [INF] mon.a calling monitor election 2024-09-17T09:06:08.136 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:07 smithi165 bash[24863]: audit 2024-09-17T09:06:02.759576+0000 mon.a (mon.0) 158 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T09:06:08.136 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:07 smithi165 bash[24863]: audit 2024-09-17T09:06:03.728595+0000 mon.a (mon.0) 159 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T09:06:08.136 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:07 smithi165 bash[24863]: cluster 2024-09-17T09:06:04.486034+0000 mgr.a (mgr.14150) 72 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:08.136 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:07 smithi165 bash[24863]: cluster 2024-09-17T09:06:04.728390+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-09-17T09:06:08.136 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:07 smithi165 bash[24863]: audit 2024-09-17T09:06:04.728843+0000 mon.a (mon.0) 160 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T09:06:08.136 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:07 smithi165 bash[24863]: audit 2024-09-17T09:06:05.729031+0000 mon.a (mon.0) 161 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T09:06:08.136 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:07 smithi165 bash[24863]: cluster 2024-09-17T09:06:06.486542+0000 mgr.a (mgr.14150) 73 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:08.136 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:07 smithi165 bash[24863]: audit 2024-09-17T09:06:06.729006+0000 mon.a (mon.0) 162 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T09:06:08.136 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:07 smithi165 bash[24863]: audit 2024-09-17T09:06:06.781781+0000 mon.a (mon.0) 163 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:06:08.136 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:07 smithi165 bash[24863]: audit 2024-09-17T09:06:07.729261+0000 mon.a (mon.0) 164 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T09:06:08.136 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:07 smithi165 bash[24863]: cluster 2024-09-17T09:06:07.781797+0000 mon.a (mon.0) 165 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-17T09:06:08.136 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:07 smithi165 bash[24863]: audit 2024-09-17T09:06:07.782815+0000 mon.a (mon.0) 166 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:06:08.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:07 smithi165 bash[24863]: cluster 2024-09-17T09:06:07.787681+0000 mon.a (mon.0) 167 : cluster [DBG] monmap e2: 2 mons at {a=[v2:172.21.15.98:3300/0,v1:172.21.15.98:6789/0],c=[v2:172.21.15.165:3300/0,v1:172.21.15.165:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-17T09:06:08.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:07 smithi165 bash[24863]: cluster 2024-09-17T09:06:07.811267+0000 mon.a (mon.0) 168 : cluster [DBG] fsmap 2024-09-17T09:06:08.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:07 smithi165 bash[24863]: cluster 2024-09-17T09:06:07.811318+0000 mon.a (mon.0) 169 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-17T09:06:08.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:07 smithi165 bash[24863]: cluster 2024-09-17T09:06:07.811578+0000 mon.a (mon.0) 170 : cluster [DBG] mgrmap e13: a(active, since 97s) 2024-09-17T09:06:08.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:07 smithi165 bash[24863]: cluster 2024-09-17T09:06:07.811818+0000 mon.a (mon.0) 171 : cluster [INF] overall HEALTH_OK 2024-09-17T09:06:08.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:07 smithi165 bash[24863]: audit 2024-09-17T09:06:07.818084+0000 mon.a (mon.0) 172 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:08.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:07 smithi165 bash[24863]: audit 2024-09-17T09:06:07.824220+0000 mon.a (mon.0) 173 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:08.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:07 smithi165 bash[24863]: audit 2024-09-17T09:06:07.833186+0000 mon.a (mon.0) 174 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:08.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:07 smithi165 bash[24863]: audit 2024-09-17T09:06:07.840479+0000 mon.a (mon.0) 175 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:08.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:07 smithi098 bash[22661]: cluster 2024-09-17T09:06:02.485563+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-17T09:06:08.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:07 smithi098 bash[22661]: audit 2024-09-17T09:06:02.733860+0000 mon.a (mon.0) 156 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T09:06:08.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:07 smithi098 bash[22661]: cluster 2024-09-17T09:06:02.734254+0000 mon.a (mon.0) 157 : cluster [INF] mon.a calling monitor election 2024-09-17T09:06:08.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:07 smithi098 bash[22661]: audit 2024-09-17T09:06:02.759576+0000 mon.a (mon.0) 158 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T09:06:08.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:07 smithi098 bash[22661]: audit 2024-09-17T09:06:03.728595+0000 mon.a (mon.0) 159 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T09:06:08.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:07 smithi098 bash[22661]: cluster 2024-09-17T09:06:04.486034+0000 mgr.a (mgr.14150) 72 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:08.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:07 smithi098 bash[22661]: cluster 2024-09-17T09:06:04.728390+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-09-17T09:06:08.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:07 smithi098 bash[22661]: audit 2024-09-17T09:06:04.728843+0000 mon.a (mon.0) 160 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T09:06:08.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:07 smithi098 bash[22661]: audit 2024-09-17T09:06:05.729031+0000 mon.a (mon.0) 161 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T09:06:08.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:07 smithi098 bash[22661]: cluster 2024-09-17T09:06:06.486542+0000 mgr.a (mgr.14150) 73 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:08.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:07 smithi098 bash[22661]: audit 2024-09-17T09:06:06.729006+0000 mon.a (mon.0) 162 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T09:06:08.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:07 smithi098 bash[22661]: audit 2024-09-17T09:06:06.781781+0000 mon.a (mon.0) 163 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:06:08.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:07 smithi098 bash[22661]: audit 2024-09-17T09:06:07.729261+0000 mon.a (mon.0) 164 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T09:06:08.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:07 smithi098 bash[22661]: cluster 2024-09-17T09:06:07.781797+0000 mon.a (mon.0) 165 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-17T09:06:08.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:07 smithi098 bash[22661]: audit 2024-09-17T09:06:07.782815+0000 mon.a (mon.0) 166 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:06:08.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:07 smithi098 bash[22661]: cluster 2024-09-17T09:06:07.787681+0000 mon.a (mon.0) 167 : cluster [DBG] monmap e2: 2 mons at {a=[v2:172.21.15.98:3300/0,v1:172.21.15.98:6789/0],c=[v2:172.21.15.165:3300/0,v1:172.21.15.165:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-17T09:06:08.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:07 smithi098 bash[22661]: cluster 2024-09-17T09:06:07.811267+0000 mon.a (mon.0) 168 : cluster [DBG] fsmap 2024-09-17T09:06:08.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:07 smithi098 bash[22661]: cluster 2024-09-17T09:06:07.811318+0000 mon.a (mon.0) 169 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-17T09:06:08.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:07 smithi098 bash[22661]: cluster 2024-09-17T09:06:07.811578+0000 mon.a (mon.0) 170 : cluster [DBG] mgrmap e13: a(active, since 97s) 2024-09-17T09:06:08.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:07 smithi098 bash[22661]: cluster 2024-09-17T09:06:07.811818+0000 mon.a (mon.0) 171 : cluster [INF] overall HEALTH_OK 2024-09-17T09:06:08.363 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:07 smithi098 bash[22661]: audit 2024-09-17T09:06:07.818084+0000 mon.a (mon.0) 172 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:08.363 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:07 smithi098 bash[22661]: audit 2024-09-17T09:06:07.824220+0000 mon.a (mon.0) 173 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:08.363 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:07 smithi098 bash[22661]: audit 2024-09-17T09:06:07.833186+0000 mon.a (mon.0) 174 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:08.363 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:07 smithi098 bash[22661]: audit 2024-09-17T09:06:07.840479+0000 mon.a (mon.0) 175 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:14.136 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:13 smithi165 bash[24863]: cluster 2024-09-17T09:06:08.486948+0000 mgr.a (mgr.14150) 74 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:14.136 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:13 smithi165 bash[24863]: cluster 2024-09-17T09:06:08.787421+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-09-17T09:06:14.136 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:13 smithi165 bash[24863]: audit 2024-09-17T09:06:08.788356+0000 mon.a (mon.0) 179 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T09:06:14.136 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:13 smithi165 bash[24863]: audit 2024-09-17T09:06:08.788768+0000 mon.a (mon.0) 180 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:06:14.136 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:13 smithi165 bash[24863]: cluster 2024-09-17T09:06:08.789144+0000 mon.a (mon.0) 181 : cluster [INF] mon.a calling monitor election 2024-09-17T09:06:14.136 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:13 smithi165 bash[24863]: audit 2024-09-17T09:06:08.807761+0000 mon.a (mon.0) 182 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T09:06:14.136 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:13 smithi165 bash[24863]: audit 2024-09-17T09:06:09.782321+0000 mon.a (mon.0) 183 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:06:14.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:13 smithi165 bash[24863]: cluster 2024-09-17T09:06:10.487319+0000 mgr.a (mgr.14150) 75 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:14.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:13 smithi165 bash[24863]: audit 2024-09-17T09:06:10.782559+0000 mon.a (mon.0) 184 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:06:14.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:13 smithi165 bash[24863]: audit 2024-09-17T09:06:11.782612+0000 mon.a (mon.0) 185 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:06:14.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:13 smithi165 bash[24863]: cluster 2024-09-17T09:06:12.487687+0000 mgr.a (mgr.14150) 76 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:14.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:13 smithi165 bash[24863]: audit 2024-09-17T09:06:12.782895+0000 mon.a (mon.0) 186 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:06:14.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:13 smithi165 bash[24863]: audit 2024-09-17T09:06:13.783036+0000 mon.a (mon.0) 187 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:06:14.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:13 smithi165 bash[24863]: cluster 2024-09-17T09:06:13.807893+0000 mon.a (mon.0) 188 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-17T09:06:14.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:13 smithi165 bash[24863]: cluster 2024-09-17T09:06:13.813562+0000 mon.a (mon.0) 189 : cluster [DBG] monmap e3: 3 mons at {a=[v2:172.21.15.98:3300/0,v1:172.21.15.98:6789/0],b=[v2:172.21.15.134:3300/0,v1:172.21.15.134:6789/0],c=[v2:172.21.15.165:3300/0,v1:172.21.15.165:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-17T09:06:14.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:13 smithi165 bash[24863]: cluster 2024-09-17T09:06:13.814622+0000 mon.a (mon.0) 190 : cluster [DBG] fsmap 2024-09-17T09:06:14.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:13 smithi165 bash[24863]: cluster 2024-09-17T09:06:13.814678+0000 mon.a (mon.0) 191 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-17T09:06:14.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:13 smithi165 bash[24863]: cluster 2024-09-17T09:06:13.814929+0000 mon.a (mon.0) 192 : cluster [DBG] mgrmap e13: a(active, since 103s) 2024-09-17T09:06:14.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:13 smithi165 bash[24863]: cluster 2024-09-17T09:06:13.815227+0000 mon.a (mon.0) 193 : cluster [WRN] Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-09-17T09:06:14.138 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:13 smithi165 bash[24863]: cluster 2024-09-17T09:06:13.833578+0000 mon.a (mon.0) 194 : cluster [WRN] Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-09-17T09:06:14.138 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:13 smithi165 bash[24863]: cluster 2024-09-17T09:06:13.833626+0000 mon.a (mon.0) 195 : cluster [WRN] [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-09-17T09:06:14.138 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:13 smithi165 bash[24863]: cluster 2024-09-17T09:06:13.833668+0000 mon.a (mon.0) 196 : cluster [WRN] mon.b (rank 2) addr [v2:172.21.15.134:3300/0,v1:172.21.15.134:6789/0] is down (out of quorum) 2024-09-17T09:06:14.138 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:13 smithi165 bash[24863]: audit 2024-09-17T09:06:13.838741+0000 mon.a (mon.0) 197 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:14.138 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:13 smithi165 bash[24863]: audit 2024-09-17T09:06:13.844379+0000 mon.a (mon.0) 198 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:14.138 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:13 smithi165 bash[24863]: audit 2024-09-17T09:06:13.849874+0000 mon.a (mon.0) 199 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:14.138 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:13 smithi165 bash[24863]: audit 2024-09-17T09:06:13.855662+0000 mon.a (mon.0) 200 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:14.138 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:13 smithi165 bash[24863]: audit 2024-09-17T09:06:13.861408+0000 mon.a (mon.0) 201 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:14.138 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:13 smithi165 bash[24863]: audit 2024-09-17T09:06:13.862754+0000 mon.a (mon.0) 202 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:14.138 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:13 smithi165 bash[24863]: audit 2024-09-17T09:06:13.864667+0000 mon.a (mon.0) 203 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:06:14.208 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-17T09:06:14.208 INFO:teuthology.orchestra.run.smithi165.stdout:{"epoch":3,"fsid":"7d5e8b1e-74d3-11ef-bceb-c7b262605968","modified":"2024-09-17T09:06:08.782062Z","created":"2024-09-17T09:03:24.250611Z","min_mon_release":18,"min_mon_release_name":"reef","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"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.98:3300","nonce":0},{"type":"v1","addr":"172.21.15.98:6789","nonce":0}]},"addr":"172.21.15.98:6789/0","public_addr":"172.21.15.98:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:3300","nonce":0},{"type":"v1","addr":"172.21.15.165:6789","nonce":0}]},"addr":"172.21.15.165:6789/0","public_addr":"172.21.15.165:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":2,"name":"b","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.134:3300","nonce":0},{"type":"v1","addr":"172.21.15.134:6789","nonce":0}]},"addr":"172.21.15.134:6789/0","public_addr":"172.21.15.134:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-09-17T09:06:14.209 INFO:teuthology.orchestra.run.smithi165.stderr:dumped monmap epoch 3 2024-09-17T09:06:14.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:13 smithi098 bash[22661]: cluster 2024-09-17T09:06:08.486948+0000 mgr.a (mgr.14150) 74 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:14.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:13 smithi098 bash[22661]: cluster 2024-09-17T09:06:08.787421+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-09-17T09:06:14.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:13 smithi098 bash[22661]: audit 2024-09-17T09:06:08.788356+0000 mon.a (mon.0) 179 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T09:06:14.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:13 smithi098 bash[22661]: audit 2024-09-17T09:06:08.788768+0000 mon.a (mon.0) 180 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:06:14.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:13 smithi098 bash[22661]: cluster 2024-09-17T09:06:08.789144+0000 mon.a (mon.0) 181 : cluster [INF] mon.a calling monitor election 2024-09-17T09:06:14.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:13 smithi098 bash[22661]: audit 2024-09-17T09:06:08.807761+0000 mon.a (mon.0) 182 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T09:06:14.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:13 smithi098 bash[22661]: audit 2024-09-17T09:06:09.782321+0000 mon.a (mon.0) 183 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:06:14.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:13 smithi098 bash[22661]: cluster 2024-09-17T09:06:10.487319+0000 mgr.a (mgr.14150) 75 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:14.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:13 smithi098 bash[22661]: audit 2024-09-17T09:06:10.782559+0000 mon.a (mon.0) 184 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:06:14.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:13 smithi098 bash[22661]: audit 2024-09-17T09:06:11.782612+0000 mon.a (mon.0) 185 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:06:14.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:13 smithi098 bash[22661]: cluster 2024-09-17T09:06:12.487687+0000 mgr.a (mgr.14150) 76 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:14.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:13 smithi098 bash[22661]: audit 2024-09-17T09:06:12.782895+0000 mon.a (mon.0) 186 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:06:14.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:13 smithi098 bash[22661]: audit 2024-09-17T09:06:13.783036+0000 mon.a (mon.0) 187 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:06:14.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:13 smithi098 bash[22661]: cluster 2024-09-17T09:06:13.807893+0000 mon.a (mon.0) 188 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-17T09:06:14.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:13 smithi098 bash[22661]: cluster 2024-09-17T09:06:13.813562+0000 mon.a (mon.0) 189 : cluster [DBG] monmap e3: 3 mons at {a=[v2:172.21.15.98:3300/0,v1:172.21.15.98:6789/0],b=[v2:172.21.15.134:3300/0,v1:172.21.15.134:6789/0],c=[v2:172.21.15.165:3300/0,v1:172.21.15.165:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-17T09:06:14.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:13 smithi098 bash[22661]: cluster 2024-09-17T09:06:13.814622+0000 mon.a (mon.0) 190 : cluster [DBG] fsmap 2024-09-17T09:06:14.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:13 smithi098 bash[22661]: cluster 2024-09-17T09:06:13.814678+0000 mon.a (mon.0) 191 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-17T09:06:14.363 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:13 smithi098 bash[22661]: cluster 2024-09-17T09:06:13.814929+0000 mon.a (mon.0) 192 : cluster [DBG] mgrmap e13: a(active, since 103s) 2024-09-17T09:06:14.363 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:13 smithi098 bash[22661]: cluster 2024-09-17T09:06:13.815227+0000 mon.a (mon.0) 193 : cluster [WRN] Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-09-17T09:06:14.363 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:13 smithi098 bash[22661]: cluster 2024-09-17T09:06:13.833578+0000 mon.a (mon.0) 194 : cluster [WRN] Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-09-17T09:06:14.363 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:13 smithi098 bash[22661]: cluster 2024-09-17T09:06:13.833626+0000 mon.a (mon.0) 195 : cluster [WRN] [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-09-17T09:06:14.363 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:13 smithi098 bash[22661]: cluster 2024-09-17T09:06:13.833668+0000 mon.a (mon.0) 196 : cluster [WRN] mon.b (rank 2) addr [v2:172.21.15.134:3300/0,v1:172.21.15.134:6789/0] is down (out of quorum) 2024-09-17T09:06:14.363 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:13 smithi098 bash[22661]: audit 2024-09-17T09:06:13.838741+0000 mon.a (mon.0) 197 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:14.363 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:13 smithi098 bash[22661]: audit 2024-09-17T09:06:13.844379+0000 mon.a (mon.0) 198 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:14.363 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:13 smithi098 bash[22661]: audit 2024-09-17T09:06:13.849874+0000 mon.a (mon.0) 199 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:14.363 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:13 smithi098 bash[22661]: audit 2024-09-17T09:06:13.855662+0000 mon.a (mon.0) 200 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:14.363 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:13 smithi098 bash[22661]: audit 2024-09-17T09:06:13.861408+0000 mon.a (mon.0) 201 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:14.363 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:13 smithi098 bash[22661]: audit 2024-09-17T09:06:13.862754+0000 mon.a (mon.0) 202 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:14.363 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:13 smithi098 bash[22661]: audit 2024-09-17T09:06:13.864667+0000 mon.a (mon.0) 203 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:06:14.824 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-09-17T09:06:14.824 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph config generate-minimal-conf 2024-09-17T09:06:15.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:14 smithi098 bash[22661]: cephadm 2024-09-17T09:06:13.867087+0000 mgr.a (mgr.14150) 77 : cephadm [INF] Updating smithi098:/etc/ceph/ceph.conf 2024-09-17T09:06:15.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:14 smithi098 bash[22661]: cephadm 2024-09-17T09:06:13.867815+0000 mgr.a (mgr.14150) 78 : cephadm [INF] Updating smithi134:/etc/ceph/ceph.conf 2024-09-17T09:06:15.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:14 smithi098 bash[22661]: cephadm 2024-09-17T09:06:13.869195+0000 mgr.a (mgr.14150) 79 : cephadm [INF] Updating smithi165:/etc/ceph/ceph.conf 2024-09-17T09:06:15.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:14 smithi098 bash[22661]: cephadm 2024-09-17T09:06:14.104521+0000 mgr.a (mgr.14150) 80 : cephadm [INF] Updating smithi165:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T09:06:15.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:14 smithi098 bash[22661]: cephadm 2024-09-17T09:06:14.104816+0000 mgr.a (mgr.14150) 81 : cephadm [INF] Updating smithi098:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T09:06:15.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:14 smithi098 bash[22661]: cephadm 2024-09-17T09:06:14.105326+0000 mgr.a (mgr.14150) 82 : cephadm [INF] Updating smithi134:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T09:06:15.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:14 smithi098 bash[22661]: audit 2024-09-17T09:06:14.208494+0000 mon.a (mon.0) 204 : audit [DBG] from='client.? 172.21.15.165:0/2661761841' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T09:06:15.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:14 smithi098 bash[22661]: audit 2024-09-17T09:06:14.279597+0000 mon.a (mon.0) 205 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:15.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:14 smithi098 bash[22661]: audit 2024-09-17T09:06:14.284386+0000 mon.a (mon.0) 206 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:15.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:14 smithi098 bash[22661]: audit 2024-09-17T09:06:14.288417+0000 mon.a (mon.0) 207 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:15.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:14 smithi098 bash[22661]: audit 2024-09-17T09:06:14.293911+0000 mon.a (mon.0) 208 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:15.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:14 smithi098 bash[22661]: audit 2024-09-17T09:06:14.297155+0000 mon.a (mon.0) 209 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:15.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:14 smithi098 bash[22661]: audit 2024-09-17T09:06:14.300402+0000 mon.a (mon.0) 210 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:15.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:14 smithi098 bash[22661]: audit 2024-09-17T09:06:14.304795+0000 mon.a (mon.0) 211 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:15.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:14 smithi098 bash[22661]: audit 2024-09-17T09:06:14.356299+0000 mon.a (mon.0) 212 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:15.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:14 smithi098 bash[22661]: audit 2024-09-17T09:06:14.361773+0000 mon.a (mon.0) 213 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:15.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:14 smithi098 bash[22661]: audit 2024-09-17T09:06:14.367298+0000 mon.a (mon.0) 214 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:15.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:14 smithi098 bash[22661]: audit 2024-09-17T09:06:14.372599+0000 mon.a (mon.0) 215 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:15.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:14 smithi098 bash[22661]: cephadm 2024-09-17T09:06:14.373024+0000 mgr.a (mgr.14150) 83 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-09-17T09:06:15.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:14 smithi098 bash[22661]: audit 2024-09-17T09:06:14.373444+0000 mon.a (mon.0) 216 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T09:06:15.113 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:14 smithi098 bash[22661]: audit 2024-09-17T09:06:14.374443+0000 mon.a (mon.0) 217 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T09:06:15.113 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:14 smithi098 bash[22661]: audit 2024-09-17T09:06:14.375442+0000 mon.a (mon.0) 218 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:15.113 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:14 smithi098 bash[22661]: cephadm 2024-09-17T09:06:14.376457+0000 mgr.a (mgr.14150) 84 : cephadm [INF] Reconfiguring daemon mon.a on smithi098 2024-09-17T09:06:15.113 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:14 smithi098 bash[22661]: cluster 2024-09-17T09:06:14.488067+0000 mgr.a (mgr.14150) 85 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:15.113 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:14 smithi098 bash[22661]: audit 2024-09-17T09:06:14.783420+0000 mon.a (mon.0) 219 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:06:15.136 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:14 smithi165 bash[24863]: cephadm 2024-09-17T09:06:13.867087+0000 mgr.a (mgr.14150) 77 : cephadm [INF] Updating smithi098:/etc/ceph/ceph.conf 2024-09-17T09:06:15.136 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:14 smithi165 bash[24863]: cephadm 2024-09-17T09:06:13.867815+0000 mgr.a (mgr.14150) 78 : cephadm [INF] Updating smithi134:/etc/ceph/ceph.conf 2024-09-17T09:06:15.136 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:14 smithi165 bash[24863]: cephadm 2024-09-17T09:06:13.869195+0000 mgr.a (mgr.14150) 79 : cephadm [INF] Updating smithi165:/etc/ceph/ceph.conf 2024-09-17T09:06:15.136 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:14 smithi165 bash[24863]: cephadm 2024-09-17T09:06:14.104521+0000 mgr.a (mgr.14150) 80 : cephadm [INF] Updating smithi165:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T09:06:15.136 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:14 smithi165 bash[24863]: cephadm 2024-09-17T09:06:14.104816+0000 mgr.a (mgr.14150) 81 : cephadm [INF] Updating smithi098:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T09:06:15.136 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:14 smithi165 bash[24863]: cephadm 2024-09-17T09:06:14.105326+0000 mgr.a (mgr.14150) 82 : cephadm [INF] Updating smithi134:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T09:06:15.136 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:14 smithi165 bash[24863]: audit 2024-09-17T09:06:14.208494+0000 mon.a (mon.0) 204 : audit [DBG] from='client.? 172.21.15.165:0/2661761841' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T09:06:15.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:14 smithi165 bash[24863]: audit 2024-09-17T09:06:14.279597+0000 mon.a (mon.0) 205 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:15.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:14 smithi165 bash[24863]: audit 2024-09-17T09:06:14.284386+0000 mon.a (mon.0) 206 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:15.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:14 smithi165 bash[24863]: audit 2024-09-17T09:06:14.288417+0000 mon.a (mon.0) 207 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:15.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:14 smithi165 bash[24863]: audit 2024-09-17T09:06:14.293911+0000 mon.a (mon.0) 208 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:15.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:14 smithi165 bash[24863]: audit 2024-09-17T09:06:14.297155+0000 mon.a (mon.0) 209 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:15.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:14 smithi165 bash[24863]: audit 2024-09-17T09:06:14.300402+0000 mon.a (mon.0) 210 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:15.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:14 smithi165 bash[24863]: audit 2024-09-17T09:06:14.304795+0000 mon.a (mon.0) 211 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:15.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:14 smithi165 bash[24863]: audit 2024-09-17T09:06:14.356299+0000 mon.a (mon.0) 212 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:15.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:14 smithi165 bash[24863]: audit 2024-09-17T09:06:14.361773+0000 mon.a (mon.0) 213 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:15.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:14 smithi165 bash[24863]: audit 2024-09-17T09:06:14.367298+0000 mon.a (mon.0) 214 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:15.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:14 smithi165 bash[24863]: audit 2024-09-17T09:06:14.372599+0000 mon.a (mon.0) 215 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:15.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:14 smithi165 bash[24863]: cephadm 2024-09-17T09:06:14.373024+0000 mgr.a (mgr.14150) 83 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-09-17T09:06:15.137 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:14 smithi165 bash[24863]: audit 2024-09-17T09:06:14.373444+0000 mon.a (mon.0) 216 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T09:06:15.138 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:14 smithi165 bash[24863]: audit 2024-09-17T09:06:14.374443+0000 mon.a (mon.0) 217 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T09:06:15.138 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:14 smithi165 bash[24863]: audit 2024-09-17T09:06:14.375442+0000 mon.a (mon.0) 218 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:15.138 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:14 smithi165 bash[24863]: cephadm 2024-09-17T09:06:14.376457+0000 mgr.a (mgr.14150) 84 : cephadm [INF] Reconfiguring daemon mon.a on smithi098 2024-09-17T09:06:15.138 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:14 smithi165 bash[24863]: cluster 2024-09-17T09:06:14.488067+0000 mgr.a (mgr.14150) 85 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:15.138 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:14 smithi165 bash[24863]: audit 2024-09-17T09:06:14.783420+0000 mon.a (mon.0) 219 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:06:16.298 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cluster 2024-09-17T09:06:02.485563+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-17T09:06:16.298 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:02.733860+0000 mon.a (mon.0) 156 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T09:06:16.299 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cluster 2024-09-17T09:06:02.734254+0000 mon.a (mon.0) 157 : cluster [INF] mon.a calling monitor election 2024-09-17T09:06:16.299 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:02.759576+0000 mon.a (mon.0) 158 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T09:06:16.299 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:03.728595+0000 mon.a (mon.0) 159 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T09:06:16.299 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cluster 2024-09-17T09:06:04.486034+0000 mgr.a (mgr.14150) 72 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:16.299 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cluster 2024-09-17T09:06:04.728390+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-09-17T09:06:16.299 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:04.728843+0000 mon.a (mon.0) 160 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T09:06:16.299 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:05.729031+0000 mon.a (mon.0) 161 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T09:06:16.299 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cluster 2024-09-17T09:06:06.486542+0000 mgr.a (mgr.14150) 73 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:16.299 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:06.729006+0000 mon.a (mon.0) 162 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T09:06:16.299 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:06.781781+0000 mon.a (mon.0) 163 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:06:16.299 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:07.729261+0000 mon.a (mon.0) 164 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T09:06:16.299 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cluster 2024-09-17T09:06:07.781797+0000 mon.a (mon.0) 165 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-17T09:06:16.299 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:07.782815+0000 mon.a (mon.0) 166 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:06:16.300 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cluster 2024-09-17T09:06:07.787681+0000 mon.a (mon.0) 167 : cluster [DBG] monmap e2: 2 mons at {a=[v2:172.21.15.98:3300/0,v1:172.21.15.98:6789/0],c=[v2:172.21.15.165:3300/0,v1:172.21.15.165:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-17T09:06:16.300 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cluster 2024-09-17T09:06:07.811267+0000 mon.a (mon.0) 168 : cluster [DBG] fsmap 2024-09-17T09:06:16.300 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cluster 2024-09-17T09:06:07.811318+0000 mon.a (mon.0) 169 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-17T09:06:16.300 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cluster 2024-09-17T09:06:07.811578+0000 mon.a (mon.0) 170 : cluster [DBG] mgrmap e13: a(active, since 97s) 2024-09-17T09:06:16.300 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cluster 2024-09-17T09:06:07.811818+0000 mon.a (mon.0) 171 : cluster [INF] overall HEALTH_OK 2024-09-17T09:06:16.300 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:07.818084+0000 mon.a (mon.0) 172 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:16.301 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:07.824220+0000 mon.a (mon.0) 173 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:16.301 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:07.833186+0000 mon.a (mon.0) 174 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:16.301 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:07.840479+0000 mon.a (mon.0) 175 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:16.301 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cluster 2024-09-17T09:06:08.486948+0000 mgr.a (mgr.14150) 74 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:16.301 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cluster 2024-09-17T09:06:08.787421+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-09-17T09:06:16.301 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:08.788356+0000 mon.a (mon.0) 179 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T09:06:16.301 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:08.788768+0000 mon.a (mon.0) 180 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:06:16.301 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cluster 2024-09-17T09:06:08.789144+0000 mon.a (mon.0) 181 : cluster [INF] mon.a calling monitor election 2024-09-17T09:06:16.301 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:08.807761+0000 mon.a (mon.0) 182 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T09:06:16.301 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:09.782321+0000 mon.a (mon.0) 183 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:06:16.301 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cluster 2024-09-17T09:06:10.487319+0000 mgr.a (mgr.14150) 75 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:16.301 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:10.782559+0000 mon.a (mon.0) 184 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:06:16.302 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:11.782612+0000 mon.a (mon.0) 185 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:06:16.302 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cluster 2024-09-17T09:06:12.487687+0000 mgr.a (mgr.14150) 76 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:16.302 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:12.782895+0000 mon.a (mon.0) 186 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:06:16.302 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:13.783036+0000 mon.a (mon.0) 187 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:06:16.302 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cluster 2024-09-17T09:06:13.807893+0000 mon.a (mon.0) 188 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-17T09:06:16.302 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cluster 2024-09-17T09:06:13.813562+0000 mon.a (mon.0) 189 : cluster [DBG] monmap e3: 3 mons at {a=[v2:172.21.15.98:3300/0,v1:172.21.15.98:6789/0],b=[v2:172.21.15.134:3300/0,v1:172.21.15.134:6789/0],c=[v2:172.21.15.165:3300/0,v1:172.21.15.165:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-17T09:06:16.302 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cluster 2024-09-17T09:06:13.814622+0000 mon.a (mon.0) 190 : cluster [DBG] fsmap 2024-09-17T09:06:16.302 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cluster 2024-09-17T09:06:13.814678+0000 mon.a (mon.0) 191 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-17T09:06:16.302 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cluster 2024-09-17T09:06:13.814929+0000 mon.a (mon.0) 192 : cluster [DBG] mgrmap e13: a(active, since 103s) 2024-09-17T09:06:16.302 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cluster 2024-09-17T09:06:13.815227+0000 mon.a (mon.0) 193 : cluster [WRN] Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-09-17T09:06:16.302 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cluster 2024-09-17T09:06:13.833578+0000 mon.a (mon.0) 194 : cluster [WRN] Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-09-17T09:06:16.302 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cluster 2024-09-17T09:06:13.833626+0000 mon.a (mon.0) 195 : cluster [WRN] [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-09-17T09:06:16.302 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cluster 2024-09-17T09:06:13.833668+0000 mon.a (mon.0) 196 : cluster [WRN] mon.b (rank 2) addr [v2:172.21.15.134:3300/0,v1:172.21.15.134:6789/0] is down (out of quorum) 2024-09-17T09:06:16.303 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:13.838741+0000 mon.a (mon.0) 197 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:16.303 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:13.844379+0000 mon.a (mon.0) 198 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:16.303 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:13.849874+0000 mon.a (mon.0) 199 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:16.303 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:13.855662+0000 mon.a (mon.0) 200 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:16.303 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:13.861408+0000 mon.a (mon.0) 201 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:16.303 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:13.862754+0000 mon.a (mon.0) 202 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:16.303 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:13.864667+0000 mon.a (mon.0) 203 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:06:16.303 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cephadm 2024-09-17T09:06:13.867087+0000 mgr.a (mgr.14150) 77 : cephadm [INF] Updating smithi098:/etc/ceph/ceph.conf 2024-09-17T09:06:16.303 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cephadm 2024-09-17T09:06:13.867815+0000 mgr.a (mgr.14150) 78 : cephadm [INF] Updating smithi134:/etc/ceph/ceph.conf 2024-09-17T09:06:16.303 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cephadm 2024-09-17T09:06:13.869195+0000 mgr.a (mgr.14150) 79 : cephadm [INF] Updating smithi165:/etc/ceph/ceph.conf 2024-09-17T09:06:16.303 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cephadm 2024-09-17T09:06:14.104521+0000 mgr.a (mgr.14150) 80 : cephadm [INF] Updating smithi165:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T09:06:16.303 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cephadm 2024-09-17T09:06:14.104816+0000 mgr.a (mgr.14150) 81 : cephadm [INF] Updating smithi098:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T09:06:16.303 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cephadm 2024-09-17T09:06:14.105326+0000 mgr.a (mgr.14150) 82 : cephadm [INF] Updating smithi134:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T09:06:16.303 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:14.208494+0000 mon.a (mon.0) 204 : audit [DBG] from='client.? 172.21.15.165:0/2661761841' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T09:06:16.303 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:14.279597+0000 mon.a (mon.0) 205 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:16.304 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:14.284386+0000 mon.a (mon.0) 206 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:16.304 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:14.288417+0000 mon.a (mon.0) 207 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:16.304 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:14.293911+0000 mon.a (mon.0) 208 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:16.304 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:14.297155+0000 mon.a (mon.0) 209 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:16.304 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:14.300402+0000 mon.a (mon.0) 210 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:16.304 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:14.304795+0000 mon.a (mon.0) 211 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:16.304 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:14.356299+0000 mon.a (mon.0) 212 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:16.304 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:14.361773+0000 mon.a (mon.0) 213 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:16.304 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:14.367298+0000 mon.a (mon.0) 214 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:16.304 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:14.372599+0000 mon.a (mon.0) 215 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:16.304 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cephadm 2024-09-17T09:06:14.373024+0000 mgr.a (mgr.14150) 83 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-09-17T09:06:16.304 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:14.373444+0000 mon.a (mon.0) 216 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T09:06:16.304 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:14.374443+0000 mon.a (mon.0) 217 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T09:06:16.305 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:14.375442+0000 mon.a (mon.0) 218 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:16.305 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cephadm 2024-09-17T09:06:14.376457+0000 mgr.a (mgr.14150) 84 : cephadm [INF] Reconfiguring daemon mon.a on smithi098 2024-09-17T09:06:16.305 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: cluster 2024-09-17T09:06:14.488067+0000 mgr.a (mgr.14150) 85 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:16.305 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:15 smithi134 bash[24188]: audit 2024-09-17T09:06:14.783420+0000 mon.a (mon.0) 219 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:06:16.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:16 smithi098 bash[22661]: cluster 2024-09-17T09:06:10.783644+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-09-17T09:06:16.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:16 smithi098 bash[22661]: cluster 2024-09-17T09:06:15.817274+0000 mon.c (mon.1) 3 : cluster [INF] mon.c calling monitor election 2024-09-17T09:06:16.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:16 smithi098 bash[22661]: cluster 2024-09-17T09:06:15.817525+0000 mon.b (mon.2) 2 : cluster [INF] mon.b calling monitor election 2024-09-17T09:06:16.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:16 smithi098 bash[22661]: cluster 2024-09-17T09:06:15.818696+0000 mon.a (mon.0) 221 : cluster [INF] mon.a calling monitor election 2024-09-17T09:06:16.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:16 smithi098 bash[22661]: cluster 2024-09-17T09:06:15.839471+0000 mon.a (mon.0) 222 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-17T09:06:16.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:16 smithi098 bash[22661]: cluster 2024-09-17T09:06:15.848517+0000 mon.a (mon.0) 223 : cluster [DBG] monmap e3: 3 mons at {a=[v2:172.21.15.98:3300/0,v1:172.21.15.98:6789/0],b=[v2:172.21.15.134:3300/0,v1:172.21.15.134:6789/0],c=[v2:172.21.15.165:3300/0,v1:172.21.15.165:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-17T09:06:16.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:16 smithi098 bash[22661]: cluster 2024-09-17T09:06:15.849036+0000 mon.a (mon.0) 224 : cluster [DBG] fsmap 2024-09-17T09:06:16.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:16 smithi098 bash[22661]: cluster 2024-09-17T09:06:15.849068+0000 mon.a (mon.0) 225 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-17T09:06:16.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:16 smithi098 bash[22661]: cluster 2024-09-17T09:06:15.849219+0000 mon.a (mon.0) 226 : cluster [DBG] mgrmap e13: a(active, since 105s) 2024-09-17T09:06:16.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:16 smithi098 bash[22661]: cluster 2024-09-17T09:06:15.849385+0000 mon.a (mon.0) 227 : cluster [INF] Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-09-17T09:06:16.612 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:16 smithi098 bash[22661]: cluster 2024-09-17T09:06:15.849402+0000 mon.a (mon.0) 228 : cluster [INF] Cluster is now healthy 2024-09-17T09:06:16.612 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:16 smithi098 bash[22661]: cluster 2024-09-17T09:06:15.854052+0000 mon.a (mon.0) 229 : cluster [INF] overall HEALTH_OK 2024-09-17T09:06:16.635 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:16 smithi165 bash[24863]: cluster 2024-09-17T09:06:10.783644+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-09-17T09:06:16.635 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:16 smithi165 bash[24863]: cluster 2024-09-17T09:06:15.817274+0000 mon.c (mon.1) 3 : cluster [INF] mon.c calling monitor election 2024-09-17T09:06:16.635 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:16 smithi165 bash[24863]: cluster 2024-09-17T09:06:15.817525+0000 mon.b (mon.2) 2 : cluster [INF] mon.b calling monitor election 2024-09-17T09:06:16.635 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:16 smithi165 bash[24863]: cluster 2024-09-17T09:06:15.818696+0000 mon.a (mon.0) 221 : cluster [INF] mon.a calling monitor election 2024-09-17T09:06:16.636 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:16 smithi165 bash[24863]: cluster 2024-09-17T09:06:15.839471+0000 mon.a (mon.0) 222 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-17T09:06:16.636 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:16 smithi165 bash[24863]: cluster 2024-09-17T09:06:15.848517+0000 mon.a (mon.0) 223 : cluster [DBG] monmap e3: 3 mons at {a=[v2:172.21.15.98:3300/0,v1:172.21.15.98:6789/0],b=[v2:172.21.15.134:3300/0,v1:172.21.15.134:6789/0],c=[v2:172.21.15.165:3300/0,v1:172.21.15.165:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-17T09:06:16.636 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:16 smithi165 bash[24863]: cluster 2024-09-17T09:06:15.849036+0000 mon.a (mon.0) 224 : cluster [DBG] fsmap 2024-09-17T09:06:16.636 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:16 smithi165 bash[24863]: cluster 2024-09-17T09:06:15.849068+0000 mon.a (mon.0) 225 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-17T09:06:16.636 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:16 smithi165 bash[24863]: cluster 2024-09-17T09:06:15.849219+0000 mon.a (mon.0) 226 : cluster [DBG] mgrmap e13: a(active, since 105s) 2024-09-17T09:06:16.636 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:16 smithi165 bash[24863]: cluster 2024-09-17T09:06:15.849385+0000 mon.a (mon.0) 227 : cluster [INF] Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-09-17T09:06:16.636 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:16 smithi165 bash[24863]: cluster 2024-09-17T09:06:15.849402+0000 mon.a (mon.0) 228 : cluster [INF] Cluster is now healthy 2024-09-17T09:06:16.636 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:16 smithi165 bash[24863]: cluster 2024-09-17T09:06:15.854052+0000 mon.a (mon.0) 229 : cluster [INF] overall HEALTH_OK 2024-09-17T09:06:16.798 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:16 smithi134 bash[24188]: cluster 2024-09-17T09:06:10.783644+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-09-17T09:06:16.798 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:16 smithi134 bash[24188]: cluster 2024-09-17T09:06:15.817274+0000 mon.c (mon.1) 3 : cluster [INF] mon.c calling monitor election 2024-09-17T09:06:16.798 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:16 smithi134 bash[24188]: cluster 2024-09-17T09:06:15.817525+0000 mon.b (mon.2) 2 : cluster [INF] mon.b calling monitor election 2024-09-17T09:06:16.798 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:16 smithi134 bash[24188]: cluster 2024-09-17T09:06:15.818696+0000 mon.a (mon.0) 221 : cluster [INF] mon.a calling monitor election 2024-09-17T09:06:16.798 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:16 smithi134 bash[24188]: cluster 2024-09-17T09:06:15.839471+0000 mon.a (mon.0) 222 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-17T09:06:16.798 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:16 smithi134 bash[24188]: cluster 2024-09-17T09:06:15.848517+0000 mon.a (mon.0) 223 : cluster [DBG] monmap e3: 3 mons at {a=[v2:172.21.15.98:3300/0,v1:172.21.15.98:6789/0],b=[v2:172.21.15.134:3300/0,v1:172.21.15.134:6789/0],c=[v2:172.21.15.165:3300/0,v1:172.21.15.165:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-17T09:06:16.798 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:16 smithi134 bash[24188]: cluster 2024-09-17T09:06:15.849036+0000 mon.a (mon.0) 224 : cluster [DBG] fsmap 2024-09-17T09:06:16.799 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:16 smithi134 bash[24188]: cluster 2024-09-17T09:06:15.849068+0000 mon.a (mon.0) 225 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-17T09:06:16.799 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:16 smithi134 bash[24188]: cluster 2024-09-17T09:06:15.849219+0000 mon.a (mon.0) 226 : cluster [DBG] mgrmap e13: a(active, since 105s) 2024-09-17T09:06:16.799 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:16 smithi134 bash[24188]: cluster 2024-09-17T09:06:15.849385+0000 mon.a (mon.0) 227 : cluster [INF] Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-09-17T09:06:16.799 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:16 smithi134 bash[24188]: cluster 2024-09-17T09:06:15.849402+0000 mon.a (mon.0) 228 : cluster [INF] Cluster is now healthy 2024-09-17T09:06:16.799 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:16 smithi134 bash[24188]: cluster 2024-09-17T09:06:15.854052+0000 mon.a (mon.0) 229 : cluster [INF] overall HEALTH_OK 2024-09-17T09:06:17.781 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:17 smithi134 bash[24188]: cluster 2024-09-17T09:06:16.489055+0000 mgr.a (mgr.14150) 86 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:17.781 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:17 smithi134 bash[24188]: audit 2024-09-17T09:06:16.528428+0000 mon.a (mon.0) 230 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:17.781 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:17 smithi134 bash[24188]: audit 2024-09-17T09:06:16.534225+0000 mon.a (mon.0) 231 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:17.781 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:17 smithi134 bash[24188]: cephadm 2024-09-17T09:06:16.535331+0000 mgr.a (mgr.14150) 87 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-17T09:06:17.781 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:17 smithi134 bash[24188]: audit 2024-09-17T09:06:16.535717+0000 mon.a (mon.0) 232 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T09:06:17.782 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:17 smithi134 bash[24188]: audit 2024-09-17T09:06:16.536960+0000 mon.a (mon.0) 233 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T09:06:17.782 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:17 smithi134 bash[24188]: audit 2024-09-17T09:06:16.538201+0000 mon.a (mon.0) 234 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:17.782 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:17 smithi134 bash[24188]: cephadm 2024-09-17T09:06:16.539747+0000 mgr.a (mgr.14150) 88 : cephadm [INF] Reconfiguring daemon mon.b on smithi134 2024-09-17T09:06:17.782 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:17 smithi134 bash[24188]: audit 2024-09-17T09:06:16.783445+0000 mon.a (mon.0) 235 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:06:17.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:17 smithi098 bash[22661]: cluster 2024-09-17T09:06:16.489055+0000 mgr.a (mgr.14150) 86 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:17.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:17 smithi098 bash[22661]: audit 2024-09-17T09:06:16.528428+0000 mon.a (mon.0) 230 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:17.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:17 smithi098 bash[22661]: audit 2024-09-17T09:06:16.534225+0000 mon.a (mon.0) 231 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:17.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:17 smithi098 bash[22661]: cephadm 2024-09-17T09:06:16.535331+0000 mgr.a (mgr.14150) 87 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-17T09:06:17.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:17 smithi098 bash[22661]: audit 2024-09-17T09:06:16.535717+0000 mon.a (mon.0) 232 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T09:06:17.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:17 smithi098 bash[22661]: audit 2024-09-17T09:06:16.536960+0000 mon.a (mon.0) 233 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T09:06:17.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:17 smithi098 bash[22661]: audit 2024-09-17T09:06:16.538201+0000 mon.a (mon.0) 234 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:17.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:17 smithi098 bash[22661]: cephadm 2024-09-17T09:06:16.539747+0000 mgr.a (mgr.14150) 88 : cephadm [INF] Reconfiguring daemon mon.b on smithi134 2024-09-17T09:06:17.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:17 smithi098 bash[22661]: audit 2024-09-17T09:06:16.783445+0000 mon.a (mon.0) 235 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:06:17.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:17 smithi165 bash[24863]: cluster 2024-09-17T09:06:16.489055+0000 mgr.a (mgr.14150) 86 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:17.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:17 smithi165 bash[24863]: audit 2024-09-17T09:06:16.528428+0000 mon.a (mon.0) 230 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:17.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:17 smithi165 bash[24863]: audit 2024-09-17T09:06:16.534225+0000 mon.a (mon.0) 231 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:17.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:17 smithi165 bash[24863]: cephadm 2024-09-17T09:06:16.535331+0000 mgr.a (mgr.14150) 87 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-17T09:06:17.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:17 smithi165 bash[24863]: audit 2024-09-17T09:06:16.535717+0000 mon.a (mon.0) 232 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T09:06:17.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:17 smithi165 bash[24863]: audit 2024-09-17T09:06:16.536960+0000 mon.a (mon.0) 233 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T09:06:17.886 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:17 smithi165 bash[24863]: audit 2024-09-17T09:06:16.538201+0000 mon.a (mon.0) 234 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:17.886 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:17 smithi165 bash[24863]: cephadm 2024-09-17T09:06:16.539747+0000 mgr.a (mgr.14150) 88 : cephadm [INF] Reconfiguring daemon mon.b on smithi134 2024-09-17T09:06:17.886 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:17 smithi165 bash[24863]: audit 2024-09-17T09:06:16.783445+0000 mon.a (mon.0) 235 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:06:19.488 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:06:19.752 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:19 smithi165 bash[24863]: audit 2024-09-17T09:06:18.457998+0000 mon.a (mon.0) 236 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:19.752 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:19 smithi165 bash[24863]: audit 2024-09-17T09:06:18.466285+0000 mon.a (mon.0) 237 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:19.752 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:19 smithi165 bash[24863]: cephadm 2024-09-17T09:06:18.467556+0000 mgr.a (mgr.14150) 89 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-09-17T09:06:19.752 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:19 smithi165 bash[24863]: audit 2024-09-17T09:06:18.468112+0000 mon.a (mon.0) 238 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T09:06:19.752 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:19 smithi165 bash[24863]: audit 2024-09-17T09:06:18.469856+0000 mon.a (mon.0) 239 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T09:06:19.752 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:19 smithi165 bash[24863]: audit 2024-09-17T09:06:18.471510+0000 mon.a (mon.0) 240 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:19.752 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:19 smithi165 bash[24863]: cephadm 2024-09-17T09:06:18.473261+0000 mgr.a (mgr.14150) 90 : cephadm [INF] Reconfiguring daemon mon.c on smithi165 2024-09-17T09:06:19.752 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:19 smithi165 bash[24863]: cluster 2024-09-17T09:06:18.489444+0000 mgr.a (mgr.14150) 91 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:19.798 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:19 smithi134 bash[24188]: audit 2024-09-17T09:06:18.457998+0000 mon.a (mon.0) 236 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:19.798 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:19 smithi134 bash[24188]: audit 2024-09-17T09:06:18.466285+0000 mon.a (mon.0) 237 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:19.798 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:19 smithi134 bash[24188]: cephadm 2024-09-17T09:06:18.467556+0000 mgr.a (mgr.14150) 89 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-09-17T09:06:19.798 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:19 smithi134 bash[24188]: audit 2024-09-17T09:06:18.468112+0000 mon.a (mon.0) 238 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T09:06:19.798 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:19 smithi134 bash[24188]: audit 2024-09-17T09:06:18.469856+0000 mon.a (mon.0) 239 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T09:06:19.798 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:19 smithi134 bash[24188]: audit 2024-09-17T09:06:18.471510+0000 mon.a (mon.0) 240 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:19.798 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:19 smithi134 bash[24188]: cephadm 2024-09-17T09:06:18.473261+0000 mgr.a (mgr.14150) 90 : cephadm [INF] Reconfiguring daemon mon.c on smithi165 2024-09-17T09:06:19.799 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:19 smithi134 bash[24188]: cluster 2024-09-17T09:06:18.489444+0000 mgr.a (mgr.14150) 91 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:19.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:19 smithi098 bash[22661]: audit 2024-09-17T09:06:18.457998+0000 mon.a (mon.0) 236 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:19.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:19 smithi098 bash[22661]: audit 2024-09-17T09:06:18.466285+0000 mon.a (mon.0) 237 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:19.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:19 smithi098 bash[22661]: cephadm 2024-09-17T09:06:18.467556+0000 mgr.a (mgr.14150) 89 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-09-17T09:06:19.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:19 smithi098 bash[22661]: audit 2024-09-17T09:06:18.468112+0000 mon.a (mon.0) 238 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T09:06:19.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:19 smithi098 bash[22661]: audit 2024-09-17T09:06:18.469856+0000 mon.a (mon.0) 239 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T09:06:19.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:19 smithi098 bash[22661]: audit 2024-09-17T09:06:18.471510+0000 mon.a (mon.0) 240 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:19.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:19 smithi098 bash[22661]: cephadm 2024-09-17T09:06:18.473261+0000 mgr.a (mgr.14150) 90 : cephadm [INF] Reconfiguring daemon mon.c on smithi165 2024-09-17T09:06:19.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:19 smithi098 bash[22661]: cluster 2024-09-17T09:06:18.489444+0000 mgr.a (mgr.14150) 91 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:21.548 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:21 smithi134 bash[24188]: audit 2024-09-17T09:06:20.292115+0000 mon.a (mon.0) 241 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:21.548 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:21 smithi134 bash[24188]: audit 2024-09-17T09:06:20.297416+0000 mon.a (mon.0) 242 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:21.548 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:21 smithi134 bash[24188]: audit 2024-09-17T09:06:20.299198+0000 mon.a (mon.0) 243 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:06:21.548 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:21 smithi134 bash[24188]: cluster 2024-09-17T09:06:20.489876+0000 mgr.a (mgr.14150) 92 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:21.548 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:21 smithi134 bash[24188]: audit 2024-09-17T09:06:20.749731+0000 mon.a (mon.0) 244 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:21.548 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:21 smithi134 bash[24188]: audit 2024-09-17T09:06:20.750444+0000 mon.a (mon.0) 245 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:06:21.548 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:21 smithi134 bash[24188]: audit 2024-09-17T09:06:20.757604+0000 mon.a (mon.0) 246 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:21.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:21 smithi098 bash[22661]: audit 2024-09-17T09:06:20.292115+0000 mon.a (mon.0) 241 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:21.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:21 smithi098 bash[22661]: audit 2024-09-17T09:06:20.297416+0000 mon.a (mon.0) 242 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:21.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:21 smithi098 bash[22661]: audit 2024-09-17T09:06:20.299198+0000 mon.a (mon.0) 243 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:06:21.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:21 smithi098 bash[22661]: cluster 2024-09-17T09:06:20.489876+0000 mgr.a (mgr.14150) 92 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:21.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:21 smithi098 bash[22661]: audit 2024-09-17T09:06:20.749731+0000 mon.a (mon.0) 244 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:21.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:21 smithi098 bash[22661]: audit 2024-09-17T09:06:20.750444+0000 mon.a (mon.0) 245 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:06:21.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:21 smithi098 bash[22661]: audit 2024-09-17T09:06:20.757604+0000 mon.a (mon.0) 246 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:21.635 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:21 smithi165 bash[24863]: audit 2024-09-17T09:06:20.292115+0000 mon.a (mon.0) 241 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:21.635 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:21 smithi165 bash[24863]: audit 2024-09-17T09:06:20.297416+0000 mon.a (mon.0) 242 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:21.635 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:21 smithi165 bash[24863]: audit 2024-09-17T09:06:20.299198+0000 mon.a (mon.0) 243 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:06:21.635 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:21 smithi165 bash[24863]: cluster 2024-09-17T09:06:20.489876+0000 mgr.a (mgr.14150) 92 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:21.635 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:21 smithi165 bash[24863]: audit 2024-09-17T09:06:20.749731+0000 mon.a (mon.0) 244 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:21.635 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:21 smithi165 bash[24863]: audit 2024-09-17T09:06:20.750444+0000 mon.a (mon.0) 245 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:06:21.635 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:21 smithi165 bash[24863]: audit 2024-09-17T09:06:20.757604+0000 mon.a (mon.0) 246 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:22.815 INFO:teuthology.orchestra.run.smithi098.stdout:# minimal ceph.conf for 7d5e8b1e-74d3-11ef-bceb-c7b262605968 2024-09-17T09:06:22.815 INFO:teuthology.orchestra.run.smithi098.stdout:[global] 2024-09-17T09:06:22.815 INFO:teuthology.orchestra.run.smithi098.stdout: fsid = 7d5e8b1e-74d3-11ef-bceb-c7b262605968 2024-09-17T09:06:22.816 INFO:teuthology.orchestra.run.smithi098.stdout: mon_host = [v2:172.21.15.98:3300/0,v1:172.21.15.98:6789/0] [v2:172.21.15.134:3300/0,v1:172.21.15.134:6789/0] [v2:172.21.15.165:3300/0,v1:172.21.15.165:6789/0] 2024-09-17T09:06:23.393 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-09-17T09:06:23.393 DEBUG:teuthology.orchestra.run.smithi098:> set -ex 2024-09-17T09:06:23.393 DEBUG:teuthology.orchestra.run.smithi098:> sudo dd of=/etc/ceph/ceph.conf 2024-09-17T09:06:23.405 DEBUG:teuthology.orchestra.run.smithi098:> set -ex 2024-09-17T09:06:23.405 DEBUG:teuthology.orchestra.run.smithi098:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-17T09:06:23.461 DEBUG:teuthology.orchestra.run.smithi134:> set -ex 2024-09-17T09:06:23.461 DEBUG:teuthology.orchestra.run.smithi134:> sudo dd of=/etc/ceph/ceph.conf 2024-09-17T09:06:23.475 DEBUG:teuthology.orchestra.run.smithi134:> set -ex 2024-09-17T09:06:23.476 DEBUG:teuthology.orchestra.run.smithi134:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-17T09:06:23.531 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-09-17T09:06:23.531 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd of=/etc/ceph/ceph.conf 2024-09-17T09:06:23.547 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-09-17T09:06:23.547 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-17T09:06:23.602 INFO:tasks.cephadm:Adding mgr.a on smithi098 2024-09-17T09:06:23.603 INFO:tasks.cephadm:Adding mgr.b on smithi134 2024-09-17T09:06:23.603 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph orch apply mgr '2;smithi098=a;smithi134=b' 2024-09-17T09:06:23.798 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:23 smithi134 bash[24188]: cluster 2024-09-17T09:06:22.490222+0000 mgr.a (mgr.14150) 93 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:23.798 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:23 smithi134 bash[24188]: audit 2024-09-17T09:06:22.810751+0000 mon.a (mon.0) 247 : audit [DBG] from='client.? 172.21.15.98:0/3284120177' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:23.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:23 smithi098 bash[22661]: cluster 2024-09-17T09:06:22.490222+0000 mgr.a (mgr.14150) 93 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:23.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:23 smithi098 bash[22661]: audit 2024-09-17T09:06:22.810751+0000 mon.a (mon.0) 247 : audit [DBG] from='client.? 172.21.15.98:0/3284120177' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:23.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:23 smithi165 bash[24863]: cluster 2024-09-17T09:06:22.490222+0000 mgr.a (mgr.14150) 93 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:23.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:23 smithi165 bash[24863]: audit 2024-09-17T09:06:22.810751+0000 mon.a (mon.0) 247 : audit [DBG] from='client.? 172.21.15.98:0/3284120177' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:25.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:25 smithi098 bash[22661]: cluster 2024-09-17T09:06:24.490639+0000 mgr.a (mgr.14150) 94 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:25.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:25 smithi165 bash[24863]: cluster 2024-09-17T09:06:24.490639+0000 mgr.a (mgr.14150) 94 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:26.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:25 smithi134 bash[24188]: cluster 2024-09-17T09:06:24.490639+0000 mgr.a (mgr.14150) 94 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:27.300 INFO:teuthology.orchestra.run.smithi165.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.c/config 2024-09-17T09:06:27.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:27 smithi098 bash[22661]: cluster 2024-09-17T09:06:26.491043+0000 mgr.a (mgr.14150) 95 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:27.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:27 smithi165 bash[24863]: cluster 2024-09-17T09:06:26.491043+0000 mgr.a (mgr.14150) 95 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:28.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:27 smithi134 bash[24188]: cluster 2024-09-17T09:06:26.491043+0000 mgr.a (mgr.14150) 95 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:29.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:29 smithi098 bash[22661]: cluster 2024-09-17T09:06:28.491436+0000 mgr.a (mgr.14150) 96 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:29.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:29 smithi165 bash[24863]: cluster 2024-09-17T09:06:28.491436+0000 mgr.a (mgr.14150) 96 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:29.943 INFO:teuthology.orchestra.run.smithi165.stdout:Scheduled mgr update... 2024-09-17T09:06:30.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:29 smithi134 bash[24188]: cluster 2024-09-17T09:06:28.491436+0000 mgr.a (mgr.14150) 96 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:30.567 DEBUG:teuthology.orchestra.run.smithi134:mgr.b> sudo journalctl -f -n 0 -u ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@mgr.b.service 2024-09-17T09:06:30.570 INFO:tasks.cephadm:Deploying OSDs... 2024-09-17T09:06:30.570 DEBUG:teuthology.orchestra.run.smithi098:> set -ex 2024-09-17T09:06:30.570 DEBUG:teuthology.orchestra.run.smithi098:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T09:06:30.577 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-17T09:06:30.577 DEBUG:teuthology.orchestra.run.smithi098:> stat /dev/vg_nvme/lv_1 2024-09-17T09:06:30.622 INFO:teuthology.orchestra.run.smithi098.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-17T09:06:30.623 INFO:teuthology.orchestra.run.smithi098.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T09:06:30.623 INFO:teuthology.orchestra.run.smithi098.stdout:Device: 5h/5d Inode: 877 Links: 1 2024-09-17T09:06:30.623 INFO:teuthology.orchestra.run.smithi098.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T09:06:30.623 INFO:teuthology.orchestra.run.smithi098.stdout:Access: 2024-09-17 08:56:33.135197417 +0000 2024-09-17T09:06:30.623 INFO:teuthology.orchestra.run.smithi098.stdout:Modify: 2024-09-17 08:56:32.883165660 +0000 2024-09-17T09:06:30.623 INFO:teuthology.orchestra.run.smithi098.stdout:Change: 2024-09-17 08:56:32.883165660 +0000 2024-09-17T09:06:30.623 INFO:teuthology.orchestra.run.smithi098.stdout: Birth: - 2024-09-17T09:06:30.623 DEBUG:teuthology.orchestra.run.smithi098:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-17T09:06:30.677 INFO:teuthology.orchestra.run.smithi098.stderr:1+0 records in 2024-09-17T09:06:30.677 INFO:teuthology.orchestra.run.smithi098.stderr:1+0 records out 2024-09-17T09:06:30.677 INFO:teuthology.orchestra.run.smithi098.stderr:512 bytes copied, 0.000452101 s, 1.1 MB/s 2024-09-17T09:06:30.679 DEBUG:teuthology.orchestra.run.smithi098:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-17T09:06:30.727 DEBUG:teuthology.orchestra.run.smithi098:> stat /dev/vg_nvme/lv_2 2024-09-17T09:06:30.774 INFO:teuthology.orchestra.run.smithi098.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-17T09:06:30.774 INFO:teuthology.orchestra.run.smithi098.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T09:06:30.775 INFO:teuthology.orchestra.run.smithi098.stdout:Device: 5h/5d Inode: 897 Links: 1 2024-09-17T09:06:30.775 INFO:teuthology.orchestra.run.smithi098.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T09:06:30.775 INFO:teuthology.orchestra.run.smithi098.stdout:Access: 2024-09-17 08:56:33.631258956 +0000 2024-09-17T09:06:30.775 INFO:teuthology.orchestra.run.smithi098.stdout:Modify: 2024-09-17 08:56:33.383228188 +0000 2024-09-17T09:06:30.775 INFO:teuthology.orchestra.run.smithi098.stdout:Change: 2024-09-17 08:56:33.383228188 +0000 2024-09-17T09:06:30.775 INFO:teuthology.orchestra.run.smithi098.stdout: Birth: - 2024-09-17T09:06:30.775 DEBUG:teuthology.orchestra.run.smithi098:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-17T09:06:30.828 INFO:teuthology.orchestra.run.smithi098.stderr:1+0 records in 2024-09-17T09:06:30.828 INFO:teuthology.orchestra.run.smithi098.stderr:1+0 records out 2024-09-17T09:06:30.828 INFO:teuthology.orchestra.run.smithi098.stderr:512 bytes copied, 0.000441178 s, 1.2 MB/s 2024-09-17T09:06:30.830 DEBUG:teuthology.orchestra.run.smithi098:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-17T09:06:30.880 DEBUG:teuthology.orchestra.run.smithi098:> stat /dev/vg_nvme/lv_3 2024-09-17T09:06:30.930 INFO:teuthology.orchestra.run.smithi098.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-17T09:06:30.930 INFO:teuthology.orchestra.run.smithi098.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T09:06:30.930 INFO:teuthology.orchestra.run.smithi098.stdout:Device: 5h/5d Inode: 911 Links: 1 2024-09-17T09:06:30.930 INFO:teuthology.orchestra.run.smithi098.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T09:06:30.930 INFO:teuthology.orchestra.run.smithi098.stdout:Access: 2024-09-17 08:56:34.147322269 +0000 2024-09-17T09:06:30.930 INFO:teuthology.orchestra.run.smithi098.stdout:Modify: 2024-09-17 08:56:33.887290718 +0000 2024-09-17T09:06:30.930 INFO:teuthology.orchestra.run.smithi098.stdout:Change: 2024-09-17 08:56:33.887290718 +0000 2024-09-17T09:06:30.930 INFO:teuthology.orchestra.run.smithi098.stdout: Birth: - 2024-09-17T09:06:30.931 DEBUG:teuthology.orchestra.run.smithi098:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-17T09:06:30.985 INFO:teuthology.orchestra.run.smithi098.stderr:1+0 records in 2024-09-17T09:06:30.986 INFO:teuthology.orchestra.run.smithi098.stderr:1+0 records out 2024-09-17T09:06:30.986 INFO:teuthology.orchestra.run.smithi098.stderr:512 bytes copied, 0.000385705 s, 1.3 MB/s 2024-09-17T09:06:30.987 DEBUG:teuthology.orchestra.run.smithi098:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-17T09:06:31.036 DEBUG:teuthology.orchestra.run.smithi098:> stat /dev/vg_nvme/lv_4 2024-09-17T09:06:31.082 INFO:teuthology.orchestra.run.smithi098.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-17T09:06:31.082 INFO:teuthology.orchestra.run.smithi098.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T09:06:31.082 INFO:teuthology.orchestra.run.smithi098.stdout:Device: 5h/5d Inode: 931 Links: 1 2024-09-17T09:06:31.082 INFO:teuthology.orchestra.run.smithi098.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T09:06:31.082 INFO:teuthology.orchestra.run.smithi098.stdout:Access: 2024-09-17 08:56:34.631379898 +0000 2024-09-17T09:06:31.082 INFO:teuthology.orchestra.run.smithi098.stdout:Modify: 2024-09-17 08:56:34.379349893 +0000 2024-09-17T09:06:31.082 INFO:teuthology.orchestra.run.smithi098.stdout:Change: 2024-09-17 08:56:34.379349893 +0000 2024-09-17T09:06:31.082 INFO:teuthology.orchestra.run.smithi098.stdout: Birth: - 2024-09-17T09:06:31.083 DEBUG:teuthology.orchestra.run.smithi098:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-17T09:06:31.136 INFO:teuthology.orchestra.run.smithi098.stderr:1+0 records in 2024-09-17T09:06:31.137 INFO:teuthology.orchestra.run.smithi098.stderr:1+0 records out 2024-09-17T09:06:31.137 INFO:teuthology.orchestra.run.smithi098.stderr:512 bytes copied, 0.000401097 s, 1.3 MB/s 2024-09-17T09:06:31.138 DEBUG:teuthology.orchestra.run.smithi098:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-17T09:06:31.193 DEBUG:teuthology.orchestra.run.smithi134:> set -ex 2024-09-17T09:06:31.194 DEBUG:teuthology.orchestra.run.smithi134:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T09:06:31.201 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-17T09:06:31.201 DEBUG:teuthology.orchestra.run.smithi134:> stat /dev/vg_nvme/lv_1 2024-09-17T09:06:31.249 INFO:teuthology.orchestra.run.smithi134.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-17T09:06:31.249 INFO:teuthology.orchestra.run.smithi134.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T09:06:31.249 INFO:teuthology.orchestra.run.smithi134.stdout:Device: 5h/5d Inode: 879 Links: 1 2024-09-17T09:06:31.249 INFO:teuthology.orchestra.run.smithi134.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T09:06:31.249 INFO:teuthology.orchestra.run.smithi134.stdout:Access: 2024-09-17 08:56:33.538927289 +0000 2024-09-17T09:06:31.249 INFO:teuthology.orchestra.run.smithi134.stdout:Modify: 2024-09-17 08:56:33.290929505 +0000 2024-09-17T09:06:31.249 INFO:teuthology.orchestra.run.smithi134.stdout:Change: 2024-09-17 08:56:33.290929505 +0000 2024-09-17T09:06:31.249 INFO:teuthology.orchestra.run.smithi134.stdout: Birth: - 2024-09-17T09:06:31.250 DEBUG:teuthology.orchestra.run.smithi134:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-17T09:06:31.282 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:30 smithi134 bash[24188]: audit 2024-09-17T09:06:29.932732+0000 mgr.a (mgr.14150) 97 : audit [DBG] from='client.24109 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi098=a;smithi134=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:06:31.283 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:30 smithi134 bash[24188]: cephadm 2024-09-17T09:06:29.936018+0000 mgr.a (mgr.14150) 98 : cephadm [INF] Saving service mgr spec with placement smithi098=a;smithi134=b;count:2 2024-09-17T09:06:31.283 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:30 smithi134 bash[24188]: audit 2024-09-17T09:06:29.942274+0000 mon.a (mon.0) 248 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:31.283 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:30 smithi134 bash[24188]: audit 2024-09-17T09:06:29.943873+0000 mon.a (mon.0) 249 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:06:31.283 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:30 smithi134 bash[24188]: audit 2024-09-17T09:06:29.947283+0000 mon.a (mon.0) 250 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:31.283 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:30 smithi134 bash[24188]: audit 2024-09-17T09:06:29.949273+0000 mon.a (mon.0) 251 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:06:31.283 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:30 smithi134 bash[24188]: audit 2024-09-17T09:06:29.958119+0000 mon.a (mon.0) 252 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:31.283 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:30 smithi134 bash[24188]: audit 2024-09-17T09:06:29.961278+0000 mon.a (mon.0) 253 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T09:06:31.283 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:30 smithi134 bash[24188]: audit 2024-09-17T09:06:29.966866+0000 mon.a (mon.0) 254 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-17T09:06:31.283 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:30 smithi134 bash[24188]: audit 2024-09-17T09:06:29.968524+0000 mon.a (mon.0) 255 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T09:06:31.283 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:30 smithi134 bash[24188]: audit 2024-09-17T09:06:29.970678+0000 mon.a (mon.0) 256 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:31.283 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:30 smithi134 bash[24188]: cephadm 2024-09-17T09:06:29.972747+0000 mgr.a (mgr.14150) 99 : cephadm [INF] Deploying daemon mgr.b on smithi134 2024-09-17T09:06:31.283 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:30 smithi134 bash[24188]: cluster 2024-09-17T09:06:30.491828+0000 mgr.a (mgr.14150) 100 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:31.293 INFO:teuthology.orchestra.run.smithi134.stderr:1+0 records in 2024-09-17T09:06:31.293 INFO:teuthology.orchestra.run.smithi134.stderr:1+0 records out 2024-09-17T09:06:31.293 INFO:teuthology.orchestra.run.smithi134.stderr:512 bytes copied, 0.00031952 s, 1.6 MB/s 2024-09-17T09:06:31.294 DEBUG:teuthology.orchestra.run.smithi134:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-17T09:06:31.341 DEBUG:teuthology.orchestra.run.smithi134:> stat /dev/vg_nvme/lv_2 2024-09-17T09:06:31.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:30 smithi098 bash[22661]: audit 2024-09-17T09:06:29.932732+0000 mgr.a (mgr.14150) 97 : audit [DBG] from='client.24109 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi098=a;smithi134=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:06:31.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:30 smithi098 bash[22661]: cephadm 2024-09-17T09:06:29.936018+0000 mgr.a (mgr.14150) 98 : cephadm [INF] Saving service mgr spec with placement smithi098=a;smithi134=b;count:2 2024-09-17T09:06:31.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:30 smithi098 bash[22661]: audit 2024-09-17T09:06:29.942274+0000 mon.a (mon.0) 248 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:31.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:30 smithi098 bash[22661]: audit 2024-09-17T09:06:29.943873+0000 mon.a (mon.0) 249 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:06:31.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:30 smithi098 bash[22661]: audit 2024-09-17T09:06:29.947283+0000 mon.a (mon.0) 250 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:31.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:30 smithi098 bash[22661]: audit 2024-09-17T09:06:29.949273+0000 mon.a (mon.0) 251 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:06:31.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:30 smithi098 bash[22661]: audit 2024-09-17T09:06:29.958119+0000 mon.a (mon.0) 252 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:31.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:30 smithi098 bash[22661]: audit 2024-09-17T09:06:29.961278+0000 mon.a (mon.0) 253 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T09:06:31.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:30 smithi098 bash[22661]: audit 2024-09-17T09:06:29.966866+0000 mon.a (mon.0) 254 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-17T09:06:31.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:30 smithi098 bash[22661]: audit 2024-09-17T09:06:29.968524+0000 mon.a (mon.0) 255 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T09:06:31.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:30 smithi098 bash[22661]: audit 2024-09-17T09:06:29.970678+0000 mon.a (mon.0) 256 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:31.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:30 smithi098 bash[22661]: cephadm 2024-09-17T09:06:29.972747+0000 mgr.a (mgr.14150) 99 : cephadm [INF] Deploying daemon mgr.b on smithi134 2024-09-17T09:06:31.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:30 smithi098 bash[22661]: cluster 2024-09-17T09:06:30.491828+0000 mgr.a (mgr.14150) 100 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:31.385 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:30 smithi165 bash[24863]: audit 2024-09-17T09:06:29.932732+0000 mgr.a (mgr.14150) 97 : audit [DBG] from='client.24109 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi098=a;smithi134=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:06:31.385 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:30 smithi165 bash[24863]: cephadm 2024-09-17T09:06:29.936018+0000 mgr.a (mgr.14150) 98 : cephadm [INF] Saving service mgr spec with placement smithi098=a;smithi134=b;count:2 2024-09-17T09:06:31.386 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:30 smithi165 bash[24863]: audit 2024-09-17T09:06:29.942274+0000 mon.a (mon.0) 248 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:31.386 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:30 smithi165 bash[24863]: audit 2024-09-17T09:06:29.943873+0000 mon.a (mon.0) 249 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:06:31.386 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:30 smithi165 bash[24863]: audit 2024-09-17T09:06:29.947283+0000 mon.a (mon.0) 250 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:31.386 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:30 smithi165 bash[24863]: audit 2024-09-17T09:06:29.949273+0000 mon.a (mon.0) 251 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:06:31.386 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:30 smithi165 bash[24863]: audit 2024-09-17T09:06:29.958119+0000 mon.a (mon.0) 252 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:31.386 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:30 smithi165 bash[24863]: audit 2024-09-17T09:06:29.961278+0000 mon.a (mon.0) 253 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T09:06:31.386 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:30 smithi165 bash[24863]: audit 2024-09-17T09:06:29.966866+0000 mon.a (mon.0) 254 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-17T09:06:31.387 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:30 smithi165 bash[24863]: audit 2024-09-17T09:06:29.968524+0000 mon.a (mon.0) 255 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T09:06:31.387 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:30 smithi165 bash[24863]: audit 2024-09-17T09:06:29.970678+0000 mon.a (mon.0) 256 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:31.387 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:30 smithi165 bash[24863]: cephadm 2024-09-17T09:06:29.972747+0000 mgr.a (mgr.14150) 99 : cephadm [INF] Deploying daemon mgr.b on smithi134 2024-09-17T09:06:31.387 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:30 smithi165 bash[24863]: cluster 2024-09-17T09:06:30.491828+0000 mgr.a (mgr.14150) 100 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:31.389 INFO:teuthology.orchestra.run.smithi134.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-17T09:06:31.389 INFO:teuthology.orchestra.run.smithi134.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T09:06:31.389 INFO:teuthology.orchestra.run.smithi134.stdout:Device: 5h/5d Inode: 897 Links: 1 2024-09-17T09:06:31.389 INFO:teuthology.orchestra.run.smithi134.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T09:06:31.389 INFO:teuthology.orchestra.run.smithi134.stdout:Access: 2024-09-17 08:56:34.038922823 +0000 2024-09-17T09:06:31.389 INFO:teuthology.orchestra.run.smithi134.stdout:Modify: 2024-09-17 08:56:33.798924967 +0000 2024-09-17T09:06:31.389 INFO:teuthology.orchestra.run.smithi134.stdout:Change: 2024-09-17 08:56:33.798924967 +0000 2024-09-17T09:06:31.389 INFO:teuthology.orchestra.run.smithi134.stdout: Birth: - 2024-09-17T09:06:31.389 DEBUG:teuthology.orchestra.run.smithi134:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-17T09:06:31.441 INFO:teuthology.orchestra.run.smithi134.stderr:1+0 records in 2024-09-17T09:06:31.442 INFO:teuthology.orchestra.run.smithi134.stderr:1+0 records out 2024-09-17T09:06:31.442 INFO:teuthology.orchestra.run.smithi134.stderr:512 bytes copied, 0.000269937 s, 1.9 MB/s 2024-09-17T09:06:31.443 DEBUG:teuthology.orchestra.run.smithi134:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-17T09:06:31.493 DEBUG:teuthology.orchestra.run.smithi134:> stat /dev/vg_nvme/lv_3 2024-09-17T09:06:31.540 INFO:teuthology.orchestra.run.smithi134.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-17T09:06:31.540 INFO:teuthology.orchestra.run.smithi134.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T09:06:31.540 INFO:teuthology.orchestra.run.smithi134.stdout:Device: 5h/5d Inode: 919 Links: 1 2024-09-17T09:06:31.540 INFO:teuthology.orchestra.run.smithi134.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T09:06:31.540 INFO:teuthology.orchestra.run.smithi134.stdout:Access: 2024-09-17 08:56:34.286920608 +0000 2024-09-17T09:06:31.540 INFO:teuthology.orchestra.run.smithi134.stdout:Modify: 2024-09-17 08:56:34.282920644 +0000 2024-09-17T09:06:31.540 INFO:teuthology.orchestra.run.smithi134.stdout:Change: 2024-09-17 08:56:34.282920644 +0000 2024-09-17T09:06:31.540 INFO:teuthology.orchestra.run.smithi134.stdout: Birth: - 2024-09-17T09:06:31.541 DEBUG:teuthology.orchestra.run.smithi134:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-17T09:06:31.597 INFO:teuthology.orchestra.run.smithi134.stderr:1+0 records in 2024-09-17T09:06:31.597 INFO:teuthology.orchestra.run.smithi134.stderr:1+0 records out 2024-09-17T09:06:31.597 INFO:teuthology.orchestra.run.smithi134.stderr:512 bytes copied, 0.00042342 s, 1.2 MB/s 2024-09-17T09:06:31.599 DEBUG:teuthology.orchestra.run.smithi134:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-17T09:06:31.650 DEBUG:teuthology.orchestra.run.smithi134:> stat /dev/vg_nvme/lv_4 2024-09-17T09:06:31.696 INFO:teuthology.orchestra.run.smithi134.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-17T09:06:31.696 INFO:teuthology.orchestra.run.smithi134.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T09:06:31.696 INFO:teuthology.orchestra.run.smithi134.stdout:Device: 5h/5d Inode: 931 Links: 1 2024-09-17T09:06:31.696 INFO:teuthology.orchestra.run.smithi134.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T09:06:31.696 INFO:teuthology.orchestra.run.smithi134.stdout:Access: 2024-09-17 08:56:35.014914106 +0000 2024-09-17T09:06:31.696 INFO:teuthology.orchestra.run.smithi134.stdout:Modify: 2024-09-17 08:56:34.778916214 +0000 2024-09-17T09:06:31.696 INFO:teuthology.orchestra.run.smithi134.stdout:Change: 2024-09-17 08:56:34.778916214 +0000 2024-09-17T09:06:31.696 INFO:teuthology.orchestra.run.smithi134.stdout: Birth: - 2024-09-17T09:06:31.697 DEBUG:teuthology.orchestra.run.smithi134:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-17T09:06:31.750 INFO:teuthology.orchestra.run.smithi134.stderr:1+0 records in 2024-09-17T09:06:31.750 INFO:teuthology.orchestra.run.smithi134.stderr:1+0 records out 2024-09-17T09:06:31.750 INFO:teuthology.orchestra.run.smithi134.stderr:512 bytes copied, 0.000387025 s, 1.3 MB/s 2024-09-17T09:06:31.751 DEBUG:teuthology.orchestra.run.smithi134:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-17T09:06:31.801 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-09-17T09:06:31.801 DEBUG:teuthology.orchestra.run.smithi165:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T09:06:31.807 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-17T09:06:31.808 DEBUG:teuthology.orchestra.run.smithi165:> stat /dev/vg_nvme/lv_1 2024-09-17T09:06:31.855 INFO:teuthology.orchestra.run.smithi165.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-17T09:06:31.855 INFO:teuthology.orchestra.run.smithi165.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T09:06:31.855 INFO:teuthology.orchestra.run.smithi165.stdout:Device: 5h/5d Inode: 875 Links: 1 2024-09-17T09:06:31.855 INFO:teuthology.orchestra.run.smithi165.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T09:06:31.856 INFO:teuthology.orchestra.run.smithi165.stdout:Access: 2024-09-17 08:56:36.595300753 +0000 2024-09-17T09:06:31.856 INFO:teuthology.orchestra.run.smithi165.stdout:Modify: 2024-09-17 08:56:36.347302969 +0000 2024-09-17T09:06:31.856 INFO:teuthology.orchestra.run.smithi165.stdout:Change: 2024-09-17 08:56:36.347302969 +0000 2024-09-17T09:06:31.856 INFO:teuthology.orchestra.run.smithi165.stdout: Birth: - 2024-09-17T09:06:31.856 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-17T09:06:31.911 INFO:teuthology.orchestra.run.smithi165.stderr:1+0 records in 2024-09-17T09:06:31.911 INFO:teuthology.orchestra.run.smithi165.stderr:1+0 records out 2024-09-17T09:06:31.911 INFO:teuthology.orchestra.run.smithi165.stderr:512 bytes copied, 0.000415676 s, 1.2 MB/s 2024-09-17T09:06:31.912 DEBUG:teuthology.orchestra.run.smithi165:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-17T09:06:31.960 DEBUG:teuthology.orchestra.run.smithi165:> stat /dev/vg_nvme/lv_2 2024-09-17T09:06:32.007 INFO:teuthology.orchestra.run.smithi165.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-17T09:06:32.007 INFO:teuthology.orchestra.run.smithi165.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T09:06:32.007 INFO:teuthology.orchestra.run.smithi165.stdout:Device: 5h/5d Inode: 895 Links: 1 2024-09-17T09:06:32.007 INFO:teuthology.orchestra.run.smithi165.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T09:06:32.007 INFO:teuthology.orchestra.run.smithi165.stdout:Access: 2024-09-17 08:56:37.067296537 +0000 2024-09-17T09:06:32.007 INFO:teuthology.orchestra.run.smithi165.stdout:Modify: 2024-09-17 08:56:36.831298645 +0000 2024-09-17T09:06:32.007 INFO:teuthology.orchestra.run.smithi165.stdout:Change: 2024-09-17 08:56:36.831298645 +0000 2024-09-17T09:06:32.007 INFO:teuthology.orchestra.run.smithi165.stdout: Birth: - 2024-09-17T09:06:32.007 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-17T09:06:32.061 INFO:teuthology.orchestra.run.smithi165.stderr:1+0 records in 2024-09-17T09:06:32.061 INFO:teuthology.orchestra.run.smithi165.stderr:1+0 records out 2024-09-17T09:06:32.061 INFO:teuthology.orchestra.run.smithi165.stderr:512 bytes copied, 0.000429006 s, 1.2 MB/s 2024-09-17T09:06:32.062 DEBUG:teuthology.orchestra.run.smithi165:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-17T09:06:32.112 DEBUG:teuthology.orchestra.run.smithi165:> stat /dev/vg_nvme/lv_3 2024-09-17T09:06:32.163 INFO:teuthology.orchestra.run.smithi165.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-17T09:06:32.163 INFO:teuthology.orchestra.run.smithi165.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T09:06:32.163 INFO:teuthology.orchestra.run.smithi165.stdout:Device: 5h/5d Inode: 912 Links: 1 2024-09-17T09:06:32.163 INFO:teuthology.orchestra.run.smithi165.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T09:06:32.163 INFO:teuthology.orchestra.run.smithi165.stdout:Access: 2024-09-17 08:56:37.555292177 +0000 2024-09-17T09:06:32.163 INFO:teuthology.orchestra.run.smithi165.stdout:Modify: 2024-09-17 08:56:37.327294215 +0000 2024-09-17T09:06:32.163 INFO:teuthology.orchestra.run.smithi165.stdout:Change: 2024-09-17 08:56:37.327294215 +0000 2024-09-17T09:06:32.163 INFO:teuthology.orchestra.run.smithi165.stdout: Birth: - 2024-09-17T09:06:32.163 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-17T09:06:32.217 INFO:teuthology.orchestra.run.smithi165.stderr:1+0 records in 2024-09-17T09:06:32.217 INFO:teuthology.orchestra.run.smithi165.stderr:1+0 records out 2024-09-17T09:06:32.217 INFO:teuthology.orchestra.run.smithi165.stderr:512 bytes copied, 0.00043184 s, 1.2 MB/s 2024-09-17T09:06:32.218 DEBUG:teuthology.orchestra.run.smithi165:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-17T09:06:32.268 DEBUG:teuthology.orchestra.run.smithi165:> stat /dev/vg_nvme/lv_4 2024-09-17T09:06:32.314 INFO:teuthology.orchestra.run.smithi165.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-17T09:06:32.315 INFO:teuthology.orchestra.run.smithi165.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T09:06:32.315 INFO:teuthology.orchestra.run.smithi165.stdout:Device: 5h/5d Inode: 929 Links: 1 2024-09-17T09:06:32.315 INFO:teuthology.orchestra.run.smithi165.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T09:06:32.315 INFO:teuthology.orchestra.run.smithi165.stdout:Access: 2024-09-17 08:56:38.079287497 +0000 2024-09-17T09:06:32.315 INFO:teuthology.orchestra.run.smithi165.stdout:Modify: 2024-09-17 08:56:37.819289819 +0000 2024-09-17T09:06:32.315 INFO:teuthology.orchestra.run.smithi165.stdout:Change: 2024-09-17 08:56:37.819289819 +0000 2024-09-17T09:06:32.315 INFO:teuthology.orchestra.run.smithi165.stdout: Birth: - 2024-09-17T09:06:32.315 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-17T09:06:32.369 INFO:teuthology.orchestra.run.smithi165.stderr:1+0 records in 2024-09-17T09:06:32.369 INFO:teuthology.orchestra.run.smithi165.stderr:1+0 records out 2024-09-17T09:06:32.369 INFO:teuthology.orchestra.run.smithi165.stderr:512 bytes copied, 0.000297959 s, 1.7 MB/s 2024-09-17T09:06:32.370 DEBUG:teuthology.orchestra.run.smithi165:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-17T09:06:32.420 INFO:tasks.cephadm:Deploying osd.0 on smithi098 with /dev/vg_nvme/lv_4... 2024-09-17T09:06:32.420 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-09-17T09:06:32.445 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:32 smithi134 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:06:32.446 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:06:32 smithi134 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:06:32.446 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:06:32 smithi134 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:06:32.446 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:06:32 smithi134 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:06:32.798 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:32 smithi134 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:06:32.798 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:06:32 smithi134 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:06:32.798 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:06:32 smithi134 systemd[1]: Started Ceph mgr.b for 7d5e8b1e-74d3-11ef-bceb-c7b262605968. 2024-09-17T09:06:33.798 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:33 smithi134 bash[24188]: cluster 2024-09-17T09:06:32.492345+0000 mgr.a (mgr.14150) 101 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:33.798 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:33 smithi134 bash[24188]: audit 2024-09-17T09:06:32.576198+0000 mon.a (mon.0) 257 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:33.798 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:33 smithi134 bash[24188]: audit 2024-09-17T09:06:32.582989+0000 mon.a (mon.0) 258 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:33.798 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:33 smithi134 bash[24188]: audit 2024-09-17T09:06:32.589508+0000 mon.a (mon.0) 259 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:33.798 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:33 smithi134 bash[24188]: audit 2024-09-17T09:06:32.595287+0000 mon.a (mon.0) 260 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:33.798 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:33 smithi134 bash[24188]: audit 2024-09-17T09:06:32.640404+0000 mon.a (mon.0) 261 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:06:33.798 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:06:33 smithi134 bash[24698]: debug 2024-09-17T09:06:33.554+0000 7f28884c7640 1 -- 172.21.15.134:0/3555401298 <== mon.2 v2:172.21.15.134:3300/0 4 ==== auth_reply(proto 2 0 (0) Success) v1 ==== 194+0+0 (secure 0 0 0) 0x55eba5f36d00 con 0x55eba5f28800 2024-09-17T09:06:33.799 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:06:33 smithi134 bash[24698]: debug 2024-09-17T09:06:33.666+0000 7f288ad30040 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-17T09:06:33.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:33 smithi098 bash[22661]: cluster 2024-09-17T09:06:32.492345+0000 mgr.a (mgr.14150) 101 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:33.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:33 smithi098 bash[22661]: audit 2024-09-17T09:06:32.576198+0000 mon.a (mon.0) 257 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:33.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:33 smithi098 bash[22661]: audit 2024-09-17T09:06:32.582989+0000 mon.a (mon.0) 258 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:33.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:33 smithi098 bash[22661]: audit 2024-09-17T09:06:32.589508+0000 mon.a (mon.0) 259 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:33.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:33 smithi098 bash[22661]: audit 2024-09-17T09:06:32.595287+0000 mon.a (mon.0) 260 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:33.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:33 smithi098 bash[22661]: audit 2024-09-17T09:06:32.640404+0000 mon.a (mon.0) 261 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:06:33.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:33 smithi165 bash[24863]: cluster 2024-09-17T09:06:32.492345+0000 mgr.a (mgr.14150) 101 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:33.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:33 smithi165 bash[24863]: audit 2024-09-17T09:06:32.576198+0000 mon.a (mon.0) 257 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:33.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:33 smithi165 bash[24863]: audit 2024-09-17T09:06:32.582989+0000 mon.a (mon.0) 258 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:33.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:33 smithi165 bash[24863]: audit 2024-09-17T09:06:32.589508+0000 mon.a (mon.0) 259 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:33.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:33 smithi165 bash[24863]: audit 2024-09-17T09:06:32.595287+0000 mon.a (mon.0) 260 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:33.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:33 smithi165 bash[24863]: audit 2024-09-17T09:06:32.640404+0000 mon.a (mon.0) 261 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:06:35.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:34 smithi098 bash[22661]: audit 2024-09-17T09:06:33.847128+0000 mon.a (mon.0) 262 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:35.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:34 smithi098 bash[22661]: cluster 2024-09-17T09:06:34.492814+0000 mgr.a (mgr.14150) 102 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:35.135 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:34 smithi165 bash[24863]: audit 2024-09-17T09:06:33.847128+0000 mon.a (mon.0) 262 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:35.135 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:34 smithi165 bash[24863]: cluster 2024-09-17T09:06:34.492814+0000 mgr.a (mgr.14150) 102 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:35.298 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:34 smithi134 bash[24188]: audit 2024-09-17T09:06:33.847128+0000 mon.a (mon.0) 262 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:35.298 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:34 smithi134 bash[24188]: cluster 2024-09-17T09:06:34.492814+0000 mgr.a (mgr.14150) 102 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:35.298 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:06:34 smithi134 bash[24698]: debug 2024-09-17T09:06:34.842+0000 7f288ad30040 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-17T09:06:35.298 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:06:34 smithi134 bash[24698]: debug 2024-09-17T09:06:34.906+0000 7f288ad30040 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-17T09:06:35.298 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:06:35 smithi134 bash[24698]: debug 2024-09-17T09:06:35.054+0000 7f288ad30040 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-17T09:06:36.006 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:06:35 smithi134 bash[24698]: debug 2024-09-17T09:06:35.686+0000 7f288ad30040 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-17T09:06:36.006 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:06:35 smithi134 bash[24698]: debug 2024-09-17T09:06:35.754+0000 7f288ad30040 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-17T09:06:36.006 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:06:35 smithi134 bash[24698]: debug 2024-09-17T09:06:35.822+0000 7f288ad30040 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-17T09:06:36.298 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:06:36 smithi134 bash[24698]: debug 2024-09-17T09:06:36.002+0000 7f288ad30040 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-17T09:06:36.298 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:06:36 smithi134 bash[24698]: debug 2024-09-17T09:06:36.078+0000 7f288ad30040 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-17T09:06:36.298 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:06:36 smithi134 bash[24698]: debug 2024-09-17T09:06:36.146+0000 7f288ad30040 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-17T09:06:36.652 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:06:36 smithi134 bash[24698]: debug 2024-09-17T09:06:36.394+0000 7f288ad30040 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-17T09:06:36.653 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:06:36 smithi134 bash[24698]: debug 2024-09-17T09:06:36.458+0000 7f288ad30040 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-17T09:06:36.975 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:06:36 smithi134 bash[24698]: debug 2024-09-17T09:06:36.650+0000 7f288ad30040 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-17T09:06:36.975 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:06:36 smithi134 bash[24698]: debug 2024-09-17T09:06:36.722+0000 7f288ad30040 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-17T09:06:37.084 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:06:37.297 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:06:36 smithi134 bash[24698]: debug 2024-09-17T09:06:36.970+0000 7f288ad30040 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-09-17T09:06:37.298 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:06:37 smithi134 bash[24698]: debug 2024-09-17T09:06:37.142+0000 7f288ad30040 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-17T09:06:37.566 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:37 smithi134 bash[24188]: cluster 2024-09-17T09:06:36.493236+0000 mgr.a (mgr.14150) 103 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:37.567 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:06:37 smithi134 bash[24698]: debug 2024-09-17T09:06:37.302+0000 7f288ad30040 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-17T09:06:37.567 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:06:37 smithi134 bash[24698]: debug 2024-09-17T09:06:37.378+0000 7f288ad30040 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-17T09:06:37.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:37 smithi098 bash[22661]: cluster 2024-09-17T09:06:36.493236+0000 mgr.a (mgr.14150) 103 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:37.884 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:37 smithi165 bash[24863]: cluster 2024-09-17T09:06:36.493236+0000 mgr.a (mgr.14150) 103 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:38.047 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:06:37 smithi134 bash[24698]: debug 2024-09-17T09:06:37.562+0000 7f288ad30040 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-17T09:06:38.625 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:06:38 smithi134 bash[24698]: debug 2024-09-17T09:06:38.362+0000 7f288ad30040 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-17T09:06:38.625 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:06:38 smithi134 bash[24698]: debug 2024-09-17T09:06:38.434+0000 7f288ad30040 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-17T09:06:38.816 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:38 smithi098 bash[22661]: audit 2024-09-17T09:06:37.624694+0000 mon.a (mon.0) 263 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:38.816 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:38 smithi098 bash[22661]: audit 2024-09-17T09:06:37.629497+0000 mon.a (mon.0) 264 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:38.816 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:38 smithi098 bash[22661]: audit 2024-09-17T09:06:37.630760+0000 mon.a (mon.0) 265 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:38.816 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:38 smithi098 bash[22661]: audit 2024-09-17T09:06:37.632111+0000 mon.a (mon.0) 266 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:06:38.816 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:38 smithi098 bash[22661]: audit 2024-09-17T09:06:37.640112+0000 mon.a (mon.0) 267 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:38.816 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:38 smithi098 bash[22661]: cephadm 2024-09-17T09:06:37.726736+0000 mgr.a (mgr.14150) 104 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-09-17T09:06:38.816 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:38 smithi098 bash[22661]: audit 2024-09-17T09:06:37.727454+0000 mon.a (mon.0) 268 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T09:06:38.816 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:38 smithi098 bash[22661]: audit 2024-09-17T09:06:37.729164+0000 mon.a (mon.0) 269 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T09:06:38.816 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:38 smithi098 bash[22661]: audit 2024-09-17T09:06:37.730569+0000 mon.a (mon.0) 270 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:38.817 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:38 smithi098 bash[22661]: cephadm 2024-09-17T09:06:37.732177+0000 mgr.a (mgr.14150) 105 : cephadm [INF] Reconfiguring daemon mgr.a on smithi098 2024-09-17T09:06:38.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:38 smithi165 bash[24863]: audit 2024-09-17T09:06:37.624694+0000 mon.a (mon.0) 263 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:38.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:38 smithi165 bash[24863]: audit 2024-09-17T09:06:37.629497+0000 mon.a (mon.0) 264 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:38.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:38 smithi165 bash[24863]: audit 2024-09-17T09:06:37.630760+0000 mon.a (mon.0) 265 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:38.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:38 smithi165 bash[24863]: audit 2024-09-17T09:06:37.632111+0000 mon.a (mon.0) 266 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:06:38.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:38 smithi165 bash[24863]: audit 2024-09-17T09:06:37.640112+0000 mon.a (mon.0) 267 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:38.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:38 smithi165 bash[24863]: cephadm 2024-09-17T09:06:37.726736+0000 mgr.a (mgr.14150) 104 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-09-17T09:06:38.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:38 smithi165 bash[24863]: audit 2024-09-17T09:06:37.727454+0000 mon.a (mon.0) 268 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T09:06:38.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:38 smithi165 bash[24863]: audit 2024-09-17T09:06:37.729164+0000 mon.a (mon.0) 269 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T09:06:38.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:38 smithi165 bash[24863]: audit 2024-09-17T09:06:37.730569+0000 mon.a (mon.0) 270 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:38.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:38 smithi165 bash[24863]: cephadm 2024-09-17T09:06:37.732177+0000 mgr.a (mgr.14150) 105 : cephadm [INF] Reconfiguring daemon mgr.a on smithi098 2024-09-17T09:06:39.048 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:06:38 smithi134 bash[24698]: debug 2024-09-17T09:06:38.654+0000 7f288ad30040 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-17T09:06:39.048 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:06:38 smithi134 bash[24698]: debug 2024-09-17T09:06:38.726+0000 7f288ad30040 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-17T09:06:39.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:38 smithi134 bash[24188]: audit 2024-09-17T09:06:37.624694+0000 mon.a (mon.0) 263 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:39.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:38 smithi134 bash[24188]: audit 2024-09-17T09:06:37.629497+0000 mon.a (mon.0) 264 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:39.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:38 smithi134 bash[24188]: audit 2024-09-17T09:06:37.630760+0000 mon.a (mon.0) 265 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:39.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:38 smithi134 bash[24188]: audit 2024-09-17T09:06:37.632111+0000 mon.a (mon.0) 266 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:06:39.049 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:38 smithi134 bash[24188]: audit 2024-09-17T09:06:37.640112+0000 mon.a (mon.0) 267 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:39.049 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:38 smithi134 bash[24188]: cephadm 2024-09-17T09:06:37.726736+0000 mgr.a (mgr.14150) 104 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-09-17T09:06:39.049 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:38 smithi134 bash[24188]: audit 2024-09-17T09:06:37.727454+0000 mon.a (mon.0) 268 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T09:06:39.049 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:38 smithi134 bash[24188]: audit 2024-09-17T09:06:37.729164+0000 mon.a (mon.0) 269 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T09:06:39.049 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:38 smithi134 bash[24188]: audit 2024-09-17T09:06:37.730569+0000 mon.a (mon.0) 270 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:39.049 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:38 smithi134 bash[24188]: cephadm 2024-09-17T09:06:37.732177+0000 mgr.a (mgr.14150) 105 : cephadm [INF] Reconfiguring daemon mgr.a on smithi098 2024-09-17T09:06:39.548 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:06:39 smithi134 bash[24698]: debug 2024-09-17T09:06:39.106+0000 7f288ad30040 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-17T09:06:39.548 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:06:39 smithi134 bash[24698]: debug 2024-09-17T09:06:39.182+0000 7f288ad30040 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-17T09:06:40.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:39 smithi134 bash[24188]: cluster 2024-09-17T09:06:38.493539+0000 mgr.a (mgr.14150) 106 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:40.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:39 smithi134 bash[24188]: cluster 2024-09-17T09:06:39.208140+0000 mon.a (mon.0) 271 : cluster [DBG] Standby manager daemon b started 2024-09-17T09:06:40.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:39 smithi134 bash[24188]: audit 2024-09-17T09:06:39.208625+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.134:0/2187624615' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-17T09:06:40.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:39 smithi134 bash[24188]: audit 2024-09-17T09:06:39.209446+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.134:0/2187624615' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-17T09:06:40.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:39 smithi134 bash[24188]: audit 2024-09-17T09:06:39.210900+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.134:0/2187624615' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-17T09:06:40.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:39 smithi134 bash[24188]: audit 2024-09-17T09:06:39.211481+0000 mon.b (mon.2) 6 : audit [DBG] from='mgr.? 172.21.15.134:0/2187624615' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-17T09:06:40.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:39 smithi098 bash[22661]: cluster 2024-09-17T09:06:38.493539+0000 mgr.a (mgr.14150) 106 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:40.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:39 smithi098 bash[22661]: cluster 2024-09-17T09:06:39.208140+0000 mon.a (mon.0) 271 : cluster [DBG] Standby manager daemon b started 2024-09-17T09:06:40.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:39 smithi098 bash[22661]: audit 2024-09-17T09:06:39.208625+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.134:0/2187624615' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-17T09:06:40.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:39 smithi098 bash[22661]: audit 2024-09-17T09:06:39.209446+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.134:0/2187624615' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-17T09:06:40.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:39 smithi098 bash[22661]: audit 2024-09-17T09:06:39.210900+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.134:0/2187624615' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-17T09:06:40.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:39 smithi098 bash[22661]: audit 2024-09-17T09:06:39.211481+0000 mon.b (mon.2) 6 : audit [DBG] from='mgr.? 172.21.15.134:0/2187624615' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-17T09:06:40.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:39 smithi165 bash[24863]: cluster 2024-09-17T09:06:38.493539+0000 mgr.a (mgr.14150) 106 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:40.135 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:39 smithi165 bash[24863]: cluster 2024-09-17T09:06:39.208140+0000 mon.a (mon.0) 271 : cluster [DBG] Standby manager daemon b started 2024-09-17T09:06:40.135 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:39 smithi165 bash[24863]: audit 2024-09-17T09:06:39.208625+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.134:0/2187624615' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-17T09:06:40.135 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:39 smithi165 bash[24863]: audit 2024-09-17T09:06:39.209446+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.134:0/2187624615' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-17T09:06:40.135 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:39 smithi165 bash[24863]: audit 2024-09-17T09:06:39.210900+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.134:0/2187624615' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-17T09:06:40.135 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:39 smithi165 bash[24863]: audit 2024-09-17T09:06:39.211481+0000 mon.b (mon.2) 6 : audit [DBG] from='mgr.? 172.21.15.134:0/2187624615' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-17T09:06:40.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:40 smithi098 bash[22661]: cluster 2024-09-17T09:06:39.660118+0000 mon.a (mon.0) 272 : cluster [DBG] mgrmap e14: a(active, since 2m), standbys: b 2024-09-17T09:06:40.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:40 smithi098 bash[22661]: audit 2024-09-17T09:06:39.660339+0000 mon.a (mon.0) 273 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-17T09:06:41.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:40 smithi134 bash[24188]: cluster 2024-09-17T09:06:39.660118+0000 mon.a (mon.0) 272 : cluster [DBG] mgrmap e14: a(active, since 2m), standbys: b 2024-09-17T09:06:41.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:40 smithi134 bash[24188]: audit 2024-09-17T09:06:39.660339+0000 mon.a (mon.0) 273 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-17T09:06:41.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:40 smithi165 bash[24863]: cluster 2024-09-17T09:06:39.660118+0000 mon.a (mon.0) 272 : cluster [DBG] mgrmap e14: a(active, since 2m), standbys: b 2024-09-17T09:06:41.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:40 smithi165 bash[24863]: audit 2024-09-17T09:06:39.660339+0000 mon.a (mon.0) 273 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-17T09:06:41.589 INFO:teuthology.orchestra.run.smithi098.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-09-17T09:06:41.774 INFO:teuthology.orchestra.run.smithi098.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-09-17T09:06:41.792 INFO:teuthology.orchestra.run.smithi098.stderr: stderr: 10+0 records in 2024-09-17T09:06:41.792 INFO:teuthology.orchestra.run.smithi098.stderr:10+0 records out 2024-09-17T09:06:41.792 INFO:teuthology.orchestra.run.smithi098.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.015435 s, 679 MB/s 2024-09-17T09:06:41.792 INFO:teuthology.orchestra.run.smithi098.stderr:--> Zapping successful for: 2024-09-17T09:06:42.011 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:41 smithi098 bash[22661]: cluster 2024-09-17T09:06:40.493960+0000 mgr.a (mgr.14150) 107 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:42.011 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:41 smithi098 bash[22661]: audit 2024-09-17T09:06:40.969036+0000 mon.a (mon.0) 274 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:42.011 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:41 smithi098 bash[22661]: audit 2024-09-17T09:06:40.973386+0000 mon.a (mon.0) 275 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:42.011 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:41 smithi098 bash[22661]: audit 2024-09-17T09:06:40.974942+0000 mon.a (mon.0) 276 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:06:42.011 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:41 smithi098 bash[22661]: audit 2024-09-17T09:06:41.402819+0000 mon.a (mon.0) 277 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:42.012 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:41 smithi098 bash[22661]: audit 2024-09-17T09:06:41.404280+0000 mon.a (mon.0) 278 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:06:42.012 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:41 smithi098 bash[22661]: audit 2024-09-17T09:06:41.413255+0000 mon.a (mon.0) 279 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:42.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:41 smithi134 bash[24188]: cluster 2024-09-17T09:06:40.493960+0000 mgr.a (mgr.14150) 107 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:42.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:41 smithi134 bash[24188]: audit 2024-09-17T09:06:40.969036+0000 mon.a (mon.0) 274 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:42.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:41 smithi134 bash[24188]: audit 2024-09-17T09:06:40.973386+0000 mon.a (mon.0) 275 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:42.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:41 smithi134 bash[24188]: audit 2024-09-17T09:06:40.974942+0000 mon.a (mon.0) 276 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:06:42.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:41 smithi134 bash[24188]: audit 2024-09-17T09:06:41.402819+0000 mon.a (mon.0) 277 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:42.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:41 smithi134 bash[24188]: audit 2024-09-17T09:06:41.404280+0000 mon.a (mon.0) 278 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:06:42.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:41 smithi134 bash[24188]: audit 2024-09-17T09:06:41.413255+0000 mon.a (mon.0) 279 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:42.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:41 smithi165 bash[24863]: cluster 2024-09-17T09:06:40.493960+0000 mgr.a (mgr.14150) 107 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:42.135 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:41 smithi165 bash[24863]: audit 2024-09-17T09:06:40.969036+0000 mon.a (mon.0) 274 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:42.135 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:41 smithi165 bash[24863]: audit 2024-09-17T09:06:40.973386+0000 mon.a (mon.0) 275 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:42.135 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:41 smithi165 bash[24863]: audit 2024-09-17T09:06:40.974942+0000 mon.a (mon.0) 276 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:06:42.135 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:41 smithi165 bash[24863]: audit 2024-09-17T09:06:41.402819+0000 mon.a (mon.0) 277 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:42.135 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:41 smithi165 bash[24863]: audit 2024-09-17T09:06:41.404280+0000 mon.a (mon.0) 278 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:06:42.135 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:41 smithi165 bash[24863]: audit 2024-09-17T09:06:41.413255+0000 mon.a (mon.0) 279 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:06:42.513 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi098:vg_nvme/lv_4 2024-09-17T09:06:44.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:43 smithi134 bash[24188]: cluster 2024-09-17T09:06:42.494349+0000 mgr.a (mgr.14150) 108 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:44.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:43 smithi098 bash[22661]: cluster 2024-09-17T09:06:42.494349+0000 mgr.a (mgr.14150) 108 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:44.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:43 smithi165 bash[24863]: cluster 2024-09-17T09:06:42.494349+0000 mgr.a (mgr.14150) 108 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:46.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:45 smithi134 bash[24188]: cluster 2024-09-17T09:06:44.494797+0000 mgr.a (mgr.14150) 109 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:46.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:45 smithi098 bash[22661]: cluster 2024-09-17T09:06:44.494797+0000 mgr.a (mgr.14150) 109 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:46.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:45 smithi165 bash[24863]: cluster 2024-09-17T09:06:44.494797+0000 mgr.a (mgr.14150) 109 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:47.175 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:06:48.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:47 smithi134 bash[24188]: cluster 2024-09-17T09:06:46.495189+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-17T09:06:48.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:47 smithi098 bash[22661]: cluster 2024-09-17T09:06:46.495189+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-17T09:06:48.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:47 smithi165 bash[24863]: cluster 2024-09-17T09:06:46.495189+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-17T09:06:50.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:49 smithi134 bash[24188]: cluster 2024-09-17T09:06:48.495541+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-17T09:06:50.081 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:49 smithi098 bash[22661]: cluster 2024-09-17T09:06:48.495541+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-17T09:06:50.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:49 smithi165 bash[24863]: cluster 2024-09-17T09:06:48.495541+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-17T09:06:51.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:50 smithi134 bash[24188]: audit 2024-09-17T09:06:50.415271+0000 mon.a (mon.0) 280 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T09:06:51.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:50 smithi134 bash[24188]: audit 2024-09-17T09:06:50.420723+0000 mon.a (mon.0) 281 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T09:06:51.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:50 smithi134 bash[24188]: audit 2024-09-17T09:06:50.421871+0000 mon.a (mon.0) 282 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:51.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:50 smithi098 bash[22661]: audit 2024-09-17T09:06:50.415271+0000 mon.a (mon.0) 280 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T09:06:51.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:50 smithi098 bash[22661]: audit 2024-09-17T09:06:50.420723+0000 mon.a (mon.0) 281 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T09:06:51.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:50 smithi098 bash[22661]: audit 2024-09-17T09:06:50.421871+0000 mon.a (mon.0) 282 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:51.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:50 smithi165 bash[24863]: audit 2024-09-17T09:06:50.415271+0000 mon.a (mon.0) 280 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T09:06:51.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:50 smithi165 bash[24863]: audit 2024-09-17T09:06:50.420723+0000 mon.a (mon.0) 281 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T09:06:51.135 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:50 smithi165 bash[24863]: audit 2024-09-17T09:06:50.421871+0000 mon.a (mon.0) 282 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:06:52.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:51 smithi134 bash[24188]: audit 2024-09-17T09:06:50.412566+0000 mgr.a (mgr.14150) 112 : audit [DBG] from='client.14211 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi098:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:06:52.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:51 smithi134 bash[24188]: cluster 2024-09-17T09:06:50.495910+0000 mgr.a (mgr.14150) 113 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:52.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:51 smithi098 bash[22661]: audit 2024-09-17T09:06:50.412566+0000 mgr.a (mgr.14150) 112 : audit [DBG] from='client.14211 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi098:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:06:52.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:51 smithi098 bash[22661]: cluster 2024-09-17T09:06:50.495910+0000 mgr.a (mgr.14150) 113 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:52.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:51 smithi165 bash[24863]: audit 2024-09-17T09:06:50.412566+0000 mgr.a (mgr.14150) 112 : audit [DBG] from='client.14211 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi098:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:06:52.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:51 smithi165 bash[24863]: cluster 2024-09-17T09:06:50.495910+0000 mgr.a (mgr.14150) 113 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:54.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:53 smithi134 bash[24188]: cluster 2024-09-17T09:06:52.496397+0000 mgr.a (mgr.14150) 114 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:54.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:53 smithi098 bash[22661]: cluster 2024-09-17T09:06:52.496397+0000 mgr.a (mgr.14150) 114 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:54.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:53 smithi165 bash[24863]: cluster 2024-09-17T09:06:52.496397+0000 mgr.a (mgr.14150) 114 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:56.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:55 smithi134 bash[24188]: cluster 2024-09-17T09:06:54.496862+0000 mgr.a (mgr.14150) 115 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:56.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:55 smithi098 bash[22661]: cluster 2024-09-17T09:06:54.496862+0000 mgr.a (mgr.14150) 115 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:56.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:55 smithi165 bash[24863]: cluster 2024-09-17T09:06:54.496862+0000 mgr.a (mgr.14150) 115 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:58.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:57 smithi134 bash[24188]: cluster 2024-09-17T09:06:56.497219+0000 mgr.a (mgr.14150) 116 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:58.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:57 smithi098 bash[22661]: cluster 2024-09-17T09:06:56.497219+0000 mgr.a (mgr.14150) 116 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:06:58.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:57 smithi165 bash[24863]: cluster 2024-09-17T09:06:56.497219+0000 mgr.a (mgr.14150) 116 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:00.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:59 smithi134 bash[24188]: cluster 2024-09-17T09:06:58.497613+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-17T09:07:00.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:59 smithi134 bash[24188]: audit 2024-09-17T09:06:58.912244+0000 mon.a (mon.0) 283 : audit [INF] from='client.? 172.21.15.98:0/2214027019' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f00394e9-be33-4836-a0c4-bf9b4da9b292"}]: dispatch 2024-09-17T09:07:00.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:59 smithi134 bash[24188]: audit 2024-09-17T09:06:58.919137+0000 mon.a (mon.0) 284 : audit [INF] from='client.? 172.21.15.98:0/2214027019' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f00394e9-be33-4836-a0c4-bf9b4da9b292"}]': finished 2024-09-17T09:07:00.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:59 smithi134 bash[24188]: cluster 2024-09-17T09:06:58.919218+0000 mon.a (mon.0) 285 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-09-17T09:07:00.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:59 smithi134 bash[24188]: audit 2024-09-17T09:06:58.919349+0000 mon.a (mon.0) 286 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T09:07:00.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:06:59 smithi134 bash[24188]: audit 2024-09-17T09:06:59.530205+0000 mon.a (mon.0) 287 : audit [DBG] from='client.? 172.21.15.98:0/3417070044' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T09:07:00.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:59 smithi098 bash[22661]: cluster 2024-09-17T09:06:58.497613+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-17T09:07:00.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:59 smithi098 bash[22661]: audit 2024-09-17T09:06:58.912244+0000 mon.a (mon.0) 283 : audit [INF] from='client.? 172.21.15.98:0/2214027019' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f00394e9-be33-4836-a0c4-bf9b4da9b292"}]: dispatch 2024-09-17T09:07:00.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:59 smithi098 bash[22661]: audit 2024-09-17T09:06:58.919137+0000 mon.a (mon.0) 284 : audit [INF] from='client.? 172.21.15.98:0/2214027019' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f00394e9-be33-4836-a0c4-bf9b4da9b292"}]': finished 2024-09-17T09:07:00.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:59 smithi098 bash[22661]: cluster 2024-09-17T09:06:58.919218+0000 mon.a (mon.0) 285 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-09-17T09:07:00.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:59 smithi098 bash[22661]: audit 2024-09-17T09:06:58.919349+0000 mon.a (mon.0) 286 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T09:07:00.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:06:59 smithi098 bash[22661]: audit 2024-09-17T09:06:59.530205+0000 mon.a (mon.0) 287 : audit [DBG] from='client.? 172.21.15.98:0/3417070044' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T09:07:00.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:59 smithi165 bash[24863]: cluster 2024-09-17T09:06:58.497613+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-17T09:07:00.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:59 smithi165 bash[24863]: audit 2024-09-17T09:06:58.912244+0000 mon.a (mon.0) 283 : audit [INF] from='client.? 172.21.15.98:0/2214027019' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f00394e9-be33-4836-a0c4-bf9b4da9b292"}]: dispatch 2024-09-17T09:07:00.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:59 smithi165 bash[24863]: audit 2024-09-17T09:06:58.919137+0000 mon.a (mon.0) 284 : audit [INF] from='client.? 172.21.15.98:0/2214027019' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f00394e9-be33-4836-a0c4-bf9b4da9b292"}]': finished 2024-09-17T09:07:00.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:59 smithi165 bash[24863]: cluster 2024-09-17T09:06:58.919218+0000 mon.a (mon.0) 285 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-09-17T09:07:00.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:59 smithi165 bash[24863]: audit 2024-09-17T09:06:58.919349+0000 mon.a (mon.0) 286 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T09:07:00.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:06:59 smithi165 bash[24863]: audit 2024-09-17T09:06:59.530205+0000 mon.a (mon.0) 287 : audit [DBG] from='client.? 172.21.15.98:0/3417070044' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T09:07:01.973 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:01 smithi098 bash[22661]: cluster 2024-09-17T09:07:00.497952+0000 mgr.a (mgr.14150) 118 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:02.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:01 smithi134 bash[24188]: cluster 2024-09-17T09:07:00.497952+0000 mgr.a (mgr.14150) 118 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:02.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:01 smithi165 bash[24863]: cluster 2024-09-17T09:07:00.497952+0000 mgr.a (mgr.14150) 118 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:04.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:03 smithi134 bash[24188]: cluster 2024-09-17T09:07:02.498370+0000 mgr.a (mgr.14150) 119 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:04.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:03 smithi098 bash[22661]: cluster 2024-09-17T09:07:02.498370+0000 mgr.a (mgr.14150) 119 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:04.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:03 smithi165 bash[24863]: cluster 2024-09-17T09:07:02.498370+0000 mgr.a (mgr.14150) 119 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:06.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:05 smithi134 bash[24188]: cluster 2024-09-17T09:07:04.498817+0000 mgr.a (mgr.14150) 120 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:06.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:05 smithi098 bash[22661]: cluster 2024-09-17T09:07:04.498817+0000 mgr.a (mgr.14150) 120 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:06.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:05 smithi165 bash[24863]: cluster 2024-09-17T09:07:04.498817+0000 mgr.a (mgr.14150) 120 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:08.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:07 smithi134 bash[24188]: cluster 2024-09-17T09:07:06.499245+0000 mgr.a (mgr.14150) 121 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:08.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:07 smithi098 bash[22661]: cluster 2024-09-17T09:07:06.499245+0000 mgr.a (mgr.14150) 121 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:08.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:07 smithi165 bash[24863]: cluster 2024-09-17T09:07:06.499245+0000 mgr.a (mgr.14150) 121 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:10.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:09 smithi134 bash[24188]: cluster 2024-09-17T09:07:08.499707+0000 mgr.a (mgr.14150) 122 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:10.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:09 smithi098 bash[22661]: cluster 2024-09-17T09:07:08.499707+0000 mgr.a (mgr.14150) 122 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:10.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:09 smithi165 bash[24863]: cluster 2024-09-17T09:07:08.499707+0000 mgr.a (mgr.14150) 122 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:12.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:11 smithi134 bash[24188]: cluster 2024-09-17T09:07:10.500182+0000 mgr.a (mgr.14150) 123 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:12.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:11 smithi134 bash[24188]: audit 2024-09-17T09:07:11.546898+0000 mon.a (mon.0) 288 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-17T09:07:12.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:11 smithi134 bash[24188]: audit 2024-09-17T09:07:11.548314+0000 mon.a (mon.0) 289 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:07:12.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:11 smithi098 bash[22661]: cluster 2024-09-17T09:07:10.500182+0000 mgr.a (mgr.14150) 123 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:12.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:11 smithi098 bash[22661]: audit 2024-09-17T09:07:11.546898+0000 mon.a (mon.0) 288 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-17T09:07:12.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:11 smithi098 bash[22661]: audit 2024-09-17T09:07:11.548314+0000 mon.a (mon.0) 289 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:07:12.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:11 smithi165 bash[24863]: cluster 2024-09-17T09:07:10.500182+0000 mgr.a (mgr.14150) 123 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:12.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:11 smithi165 bash[24863]: audit 2024-09-17T09:07:11.546898+0000 mon.a (mon.0) 288 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-17T09:07:12.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:11 smithi165 bash[24863]: audit 2024-09-17T09:07:11.548314+0000 mon.a (mon.0) 289 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:07:13.018 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:12 smithi098 bash[22661]: cephadm 2024-09-17T09:07:11.549459+0000 mgr.a (mgr.14150) 124 : cephadm [INF] Deploying daemon osd.0 on smithi098 2024-09-17T09:07:13.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:12 smithi134 bash[24188]: cephadm 2024-09-17T09:07:11.549459+0000 mgr.a (mgr.14150) 124 : cephadm [INF] Deploying daemon osd.0 on smithi098 2024-09-17T09:07:13.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:12 smithi165 bash[24863]: cephadm 2024-09-17T09:07:11.549459+0000 mgr.a (mgr.14150) 124 : cephadm [INF] Deploying daemon osd.0 on smithi098 2024-09-17T09:07:14.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:13 smithi134 bash[24188]: cluster 2024-09-17T09:07:12.500549+0000 mgr.a (mgr.14150) 125 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:14.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:13 smithi098 bash[22661]: cluster 2024-09-17T09:07:12.500549+0000 mgr.a (mgr.14150) 125 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:14.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:13 smithi165 bash[24863]: cluster 2024-09-17T09:07:12.500549+0000 mgr.a (mgr.14150) 125 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:15.971 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:07:15 smithi098 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:07:15.971 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:15 smithi098 bash[22661]: cluster 2024-09-17T09:07:14.500968+0000 mgr.a (mgr.14150) 126 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:15.972 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:15 smithi098 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:07:16.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:15 smithi134 bash[24188]: cluster 2024-09-17T09:07:14.500968+0000 mgr.a (mgr.14150) 126 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:16.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:15 smithi165 bash[24863]: cluster 2024-09-17T09:07:14.500968+0000 mgr.a (mgr.14150) 126 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:16.296 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:07:16 smithi098 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:07:16.297 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:16 smithi098 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:07:17.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:16 smithi134 bash[24188]: audit 2024-09-17T09:07:16.206812+0000 mon.a (mon.0) 290 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:07:17.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:16 smithi134 bash[24188]: audit 2024-09-17T09:07:16.210745+0000 mon.a (mon.0) 291 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:17.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:16 smithi134 bash[24188]: audit 2024-09-17T09:07:16.216656+0000 mon.a (mon.0) 292 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:17.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:16 smithi098 bash[22661]: audit 2024-09-17T09:07:16.206812+0000 mon.a (mon.0) 290 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:07:17.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:16 smithi098 bash[22661]: audit 2024-09-17T09:07:16.210745+0000 mon.a (mon.0) 291 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:17.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:16 smithi098 bash[22661]: audit 2024-09-17T09:07:16.216656+0000 mon.a (mon.0) 292 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:17.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:16 smithi165 bash[24863]: audit 2024-09-17T09:07:16.206812+0000 mon.a (mon.0) 290 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:07:17.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:16 smithi165 bash[24863]: audit 2024-09-17T09:07:16.210745+0000 mon.a (mon.0) 291 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:17.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:16 smithi165 bash[24863]: audit 2024-09-17T09:07:16.216656+0000 mon.a (mon.0) 292 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:17.922 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:17 smithi098 bash[22661]: cluster 2024-09-17T09:07:16.501437+0000 mgr.a (mgr.14150) 127 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:18.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:17 smithi134 bash[24188]: cluster 2024-09-17T09:07:16.501437+0000 mgr.a (mgr.14150) 127 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:18.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:17 smithi165 bash[24863]: cluster 2024-09-17T09:07:16.501437+0000 mgr.a (mgr.14150) 127 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:20.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:19 smithi134 bash[24188]: cluster 2024-09-17T09:07:18.501835+0000 mgr.a (mgr.14150) 128 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:20.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:19 smithi098 bash[22661]: cluster 2024-09-17T09:07:18.501835+0000 mgr.a (mgr.14150) 128 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:20.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:19 smithi165 bash[24863]: cluster 2024-09-17T09:07:18.501835+0000 mgr.a (mgr.14150) 128 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:22.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:21 smithi134 bash[24188]: cluster 2024-09-17T09:07:20.502156+0000 mgr.a (mgr.14150) 129 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:22.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:21 smithi134 bash[24188]: audit 2024-09-17T09:07:21.255894+0000 mon.a (mon.0) 293 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:22.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:21 smithi134 bash[24188]: audit 2024-09-17T09:07:21.261330+0000 mon.a (mon.0) 294 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:22.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:21 smithi134 bash[24188]: audit 2024-09-17T09:07:21.689005+0000 mon.a (mon.0) 295 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:07:22.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:21 smithi134 bash[24188]: audit 2024-09-17T09:07:21.690117+0000 mon.a (mon.0) 296 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:07:22.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:21 smithi134 bash[24188]: audit 2024-09-17T09:07:21.696116+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:22.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:21 smithi098 bash[22661]: cluster 2024-09-17T09:07:20.502156+0000 mgr.a (mgr.14150) 129 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:22.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:21 smithi098 bash[22661]: audit 2024-09-17T09:07:21.255894+0000 mon.a (mon.0) 293 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:22.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:21 smithi098 bash[22661]: audit 2024-09-17T09:07:21.261330+0000 mon.a (mon.0) 294 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:22.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:21 smithi098 bash[22661]: audit 2024-09-17T09:07:21.689005+0000 mon.a (mon.0) 295 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:07:22.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:21 smithi098 bash[22661]: audit 2024-09-17T09:07:21.690117+0000 mon.a (mon.0) 296 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:07:22.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:21 smithi098 bash[22661]: audit 2024-09-17T09:07:21.696116+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:22.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:21 smithi165 bash[24863]: cluster 2024-09-17T09:07:20.502156+0000 mgr.a (mgr.14150) 129 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:22.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:21 smithi165 bash[24863]: audit 2024-09-17T09:07:21.255894+0000 mon.a (mon.0) 293 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:22.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:21 smithi165 bash[24863]: audit 2024-09-17T09:07:21.261330+0000 mon.a (mon.0) 294 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:22.135 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:21 smithi165 bash[24863]: audit 2024-09-17T09:07:21.689005+0000 mon.a (mon.0) 295 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:07:22.135 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:21 smithi165 bash[24863]: audit 2024-09-17T09:07:21.690117+0000 mon.a (mon.0) 296 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:07:22.135 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:21 smithi165 bash[24863]: audit 2024-09-17T09:07:21.696116+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:24.039 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:23 smithi098 bash[22661]: cluster 2024-09-17T09:07:22.502654+0000 mgr.a (mgr.14150) 130 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:24.039 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:23 smithi098 bash[22661]: audit 2024-09-17T09:07:22.898679+0000 mon.a (mon.0) 298 : audit [INF] from='osd.0 [v2:172.21.15.98:6802/51610821,v1:172.21.15.98:6803/51610821]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-17T09:07:24.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:23 smithi134 bash[24188]: cluster 2024-09-17T09:07:22.502654+0000 mgr.a (mgr.14150) 130 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:24.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:23 smithi134 bash[24188]: audit 2024-09-17T09:07:22.898679+0000 mon.a (mon.0) 298 : audit [INF] from='osd.0 [v2:172.21.15.98:6802/51610821,v1:172.21.15.98:6803/51610821]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-17T09:07:24.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:23 smithi165 bash[24863]: cluster 2024-09-17T09:07:22.502654+0000 mgr.a (mgr.14150) 130 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:24.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:23 smithi165 bash[24863]: audit 2024-09-17T09:07:22.898679+0000 mon.a (mon.0) 298 : audit [INF] from='osd.0 [v2:172.21.15.98:6802/51610821,v1:172.21.15.98:6803/51610821]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-17T09:07:25.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:24 smithi134 bash[24188]: audit 2024-09-17T09:07:23.763312+0000 mon.a (mon.0) 299 : audit [INF] from='osd.0 [v2:172.21.15.98:6802/51610821,v1:172.21.15.98:6803/51610821]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-17T09:07:25.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:24 smithi134 bash[24188]: cluster 2024-09-17T09:07:23.763412+0000 mon.a (mon.0) 300 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-17T09:07:25.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:24 smithi134 bash[24188]: audit 2024-09-17T09:07:23.764131+0000 mon.a (mon.0) 301 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T09:07:25.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:24 smithi134 bash[24188]: audit 2024-09-17T09:07:23.764972+0000 mon.a (mon.0) 302 : audit [INF] from='osd.0 [v2:172.21.15.98:6802/51610821,v1:172.21.15.98:6803/51610821]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi098", "root=default"]}]: dispatch 2024-09-17T09:07:25.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:24 smithi134 bash[24188]: audit 2024-09-17T09:07:24.765724+0000 mon.a (mon.0) 303 : audit [INF] from='osd.0 [v2:172.21.15.98:6802/51610821,v1:172.21.15.98:6803/51610821]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi098", "root=default"]}]': finished 2024-09-17T09:07:25.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:24 smithi098 bash[22661]: audit 2024-09-17T09:07:23.763312+0000 mon.a (mon.0) 299 : audit [INF] from='osd.0 [v2:172.21.15.98:6802/51610821,v1:172.21.15.98:6803/51610821]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-17T09:07:25.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:24 smithi098 bash[22661]: cluster 2024-09-17T09:07:23.763412+0000 mon.a (mon.0) 300 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-17T09:07:25.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:24 smithi098 bash[22661]: audit 2024-09-17T09:07:23.764131+0000 mon.a (mon.0) 301 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T09:07:25.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:24 smithi098 bash[22661]: audit 2024-09-17T09:07:23.764972+0000 mon.a (mon.0) 302 : audit [INF] from='osd.0 [v2:172.21.15.98:6802/51610821,v1:172.21.15.98:6803/51610821]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi098", "root=default"]}]: dispatch 2024-09-17T09:07:25.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:24 smithi098 bash[22661]: audit 2024-09-17T09:07:24.765724+0000 mon.a (mon.0) 303 : audit [INF] from='osd.0 [v2:172.21.15.98:6802/51610821,v1:172.21.15.98:6803/51610821]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi098", "root=default"]}]': finished 2024-09-17T09:07:25.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:24 smithi165 bash[24863]: audit 2024-09-17T09:07:23.763312+0000 mon.a (mon.0) 299 : audit [INF] from='osd.0 [v2:172.21.15.98:6802/51610821,v1:172.21.15.98:6803/51610821]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-17T09:07:25.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:24 smithi165 bash[24863]: cluster 2024-09-17T09:07:23.763412+0000 mon.a (mon.0) 300 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-17T09:07:25.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:24 smithi165 bash[24863]: audit 2024-09-17T09:07:23.764131+0000 mon.a (mon.0) 301 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T09:07:25.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:24 smithi165 bash[24863]: audit 2024-09-17T09:07:23.764972+0000 mon.a (mon.0) 302 : audit [INF] from='osd.0 [v2:172.21.15.98:6802/51610821,v1:172.21.15.98:6803/51610821]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi098", "root=default"]}]: dispatch 2024-09-17T09:07:25.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:24 smithi165 bash[24863]: audit 2024-09-17T09:07:24.765724+0000 mon.a (mon.0) 303 : audit [INF] from='osd.0 [v2:172.21.15.98:6802/51610821,v1:172.21.15.98:6803/51610821]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi098", "root=default"]}]': finished 2024-09-17T09:07:25.236 INFO:teuthology.orchestra.run.smithi098.stdout:Created osd(s) 0 on host 'smithi098' 2024-09-17T09:07:25.915 DEBUG:teuthology.orchestra.run.smithi098:osd.0> sudo journalctl -f -n 0 -u ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@osd.0.service 2024-09-17T09:07:25.918 INFO:tasks.cephadm:Deploying osd.1 on smithi098 with /dev/vg_nvme/lv_3... 2024-09-17T09:07:25.918 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-09-17T09:07:26.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:25 smithi134 bash[24188]: cluster 2024-09-17T09:07:24.503103+0000 mgr.a (mgr.14150) 131 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:26.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:25 smithi134 bash[24188]: cluster 2024-09-17T09:07:24.765853+0000 mon.a (mon.0) 304 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-09-17T09:07:26.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:25 smithi134 bash[24188]: audit 2024-09-17T09:07:24.766066+0000 mon.a (mon.0) 305 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T09:07:26.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:25 smithi134 bash[24188]: audit 2024-09-17T09:07:24.779385+0000 mon.a (mon.0) 306 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T09:07:26.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:25 smithi134 bash[24188]: audit 2024-09-17T09:07:25.214615+0000 mon.a (mon.0) 307 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:07:26.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:25 smithi134 bash[24188]: audit 2024-09-17T09:07:25.224014+0000 mon.a (mon.0) 308 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:26.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:25 smithi134 bash[24188]: audit 2024-09-17T09:07:25.231710+0000 mon.a (mon.0) 309 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:26.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:25 smithi134 bash[24188]: audit 2024-09-17T09:07:25.285308+0000 mon.a (mon.0) 310 : audit [INF] from='osd.0 [v2:172.21.15.98:6802/51610821,v1:172.21.15.98:6803/51610821]' entity='osd.0' 2024-09-17T09:07:26.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:25 smithi134 bash[24188]: audit 2024-09-17T09:07:25.773640+0000 mon.a (mon.0) 311 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T09:07:26.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:25 smithi098 bash[22661]: cluster 2024-09-17T09:07:24.503103+0000 mgr.a (mgr.14150) 131 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:26.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:25 smithi098 bash[22661]: cluster 2024-09-17T09:07:24.765853+0000 mon.a (mon.0) 304 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-09-17T09:07:26.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:25 smithi098 bash[22661]: audit 2024-09-17T09:07:24.766066+0000 mon.a (mon.0) 305 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T09:07:26.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:25 smithi098 bash[22661]: audit 2024-09-17T09:07:24.779385+0000 mon.a (mon.0) 306 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T09:07:26.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:25 smithi098 bash[22661]: audit 2024-09-17T09:07:25.214615+0000 mon.a (mon.0) 307 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:07:26.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:25 smithi098 bash[22661]: audit 2024-09-17T09:07:25.224014+0000 mon.a (mon.0) 308 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:26.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:25 smithi098 bash[22661]: audit 2024-09-17T09:07:25.231710+0000 mon.a (mon.0) 309 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:26.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:25 smithi098 bash[22661]: audit 2024-09-17T09:07:25.285308+0000 mon.a (mon.0) 310 : audit [INF] from='osd.0 [v2:172.21.15.98:6802/51610821,v1:172.21.15.98:6803/51610821]' entity='osd.0' 2024-09-17T09:07:26.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:25 smithi098 bash[22661]: audit 2024-09-17T09:07:25.773640+0000 mon.a (mon.0) 311 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T09:07:26.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:25 smithi165 bash[24863]: cluster 2024-09-17T09:07:24.503103+0000 mgr.a (mgr.14150) 131 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:26.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:25 smithi165 bash[24863]: cluster 2024-09-17T09:07:24.765853+0000 mon.a (mon.0) 304 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-09-17T09:07:26.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:25 smithi165 bash[24863]: audit 2024-09-17T09:07:24.766066+0000 mon.a (mon.0) 305 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T09:07:26.135 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:25 smithi165 bash[24863]: audit 2024-09-17T09:07:24.779385+0000 mon.a (mon.0) 306 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T09:07:26.135 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:25 smithi165 bash[24863]: audit 2024-09-17T09:07:25.214615+0000 mon.a (mon.0) 307 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:07:26.135 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:25 smithi165 bash[24863]: audit 2024-09-17T09:07:25.224014+0000 mon.a (mon.0) 308 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:26.135 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:25 smithi165 bash[24863]: audit 2024-09-17T09:07:25.231710+0000 mon.a (mon.0) 309 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:26.135 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:25 smithi165 bash[24863]: audit 2024-09-17T09:07:25.285308+0000 mon.a (mon.0) 310 : audit [INF] from='osd.0 [v2:172.21.15.98:6802/51610821,v1:172.21.15.98:6803/51610821]' entity='osd.0' 2024-09-17T09:07:26.135 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:25 smithi165 bash[24863]: audit 2024-09-17T09:07:25.773640+0000 mon.a (mon.0) 311 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T09:07:27.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:26 smithi134 bash[24188]: cluster 2024-09-17T09:07:23.883841+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-17T09:07:27.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:26 smithi134 bash[24188]: cluster 2024-09-17T09:07:23.883914+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-17T09:07:27.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:26 smithi134 bash[24188]: cluster 2024-09-17T09:07:26.288689+0000 mon.a (mon.0) 312 : cluster [INF] osd.0 [v2:172.21.15.98:6802/51610821,v1:172.21.15.98:6803/51610821] boot 2024-09-17T09:07:27.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:26 smithi134 bash[24188]: cluster 2024-09-17T09:07:26.288769+0000 mon.a (mon.0) 313 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-09-17T09:07:27.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:26 smithi134 bash[24188]: audit 2024-09-17T09:07:26.289276+0000 mon.a (mon.0) 314 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T09:07:27.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:26 smithi098 bash[22661]: cluster 2024-09-17T09:07:23.883841+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-17T09:07:27.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:26 smithi098 bash[22661]: cluster 2024-09-17T09:07:23.883914+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-17T09:07:27.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:26 smithi098 bash[22661]: cluster 2024-09-17T09:07:26.288689+0000 mon.a (mon.0) 312 : cluster [INF] osd.0 [v2:172.21.15.98:6802/51610821,v1:172.21.15.98:6803/51610821] boot 2024-09-17T09:07:27.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:26 smithi098 bash[22661]: cluster 2024-09-17T09:07:26.288769+0000 mon.a (mon.0) 313 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-09-17T09:07:27.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:26 smithi098 bash[22661]: audit 2024-09-17T09:07:26.289276+0000 mon.a (mon.0) 314 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T09:07:27.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:26 smithi165 bash[24863]: cluster 2024-09-17T09:07:23.883841+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-17T09:07:27.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:26 smithi165 bash[24863]: cluster 2024-09-17T09:07:23.883914+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-17T09:07:27.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:26 smithi165 bash[24863]: cluster 2024-09-17T09:07:26.288689+0000 mon.a (mon.0) 312 : cluster [INF] osd.0 [v2:172.21.15.98:6802/51610821,v1:172.21.15.98:6803/51610821] boot 2024-09-17T09:07:27.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:26 smithi165 bash[24863]: cluster 2024-09-17T09:07:26.288769+0000 mon.a (mon.0) 313 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-09-17T09:07:27.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:26 smithi165 bash[24863]: audit 2024-09-17T09:07:26.289276+0000 mon.a (mon.0) 314 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T09:07:28.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:27 smithi134 bash[24188]: cluster 2024-09-17T09:07:26.503588+0000 mgr.a (mgr.14150) 132 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:28.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:27 smithi098 bash[22661]: cluster 2024-09-17T09:07:26.503588+0000 mgr.a (mgr.14150) 132 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:28.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:27 smithi165 bash[24863]: cluster 2024-09-17T09:07:26.503588+0000 mgr.a (mgr.14150) 132 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T09:07:29.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:28 smithi134 bash[24188]: cluster 2024-09-17T09:07:27.791698+0000 mon.a (mon.0) 315 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-09-17T09:07:29.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:28 smithi098 bash[22661]: cluster 2024-09-17T09:07:27.791698+0000 mon.a (mon.0) 315 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-09-17T09:07:29.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:28 smithi165 bash[24863]: cluster 2024-09-17T09:07:27.791698+0000 mon.a (mon.0) 315 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-09-17T09:07:30.049 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:07:30.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:29 smithi098 bash[22661]: cluster 2024-09-17T09:07:28.504085+0000 mgr.a (mgr.14150) 133 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:30.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:29 smithi165 bash[24863]: cluster 2024-09-17T09:07:28.504085+0000 mgr.a (mgr.14150) 133 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:30.297 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:29 smithi134 bash[24188]: cluster 2024-09-17T09:07:28.504085+0000 mgr.a (mgr.14150) 133 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:32.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:31 smithi098 bash[22661]: cluster 2024-09-17T09:07:30.504511+0000 mgr.a (mgr.14150) 134 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:32.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:31 smithi165 bash[24863]: cluster 2024-09-17T09:07:30.504511+0000 mgr.a (mgr.14150) 134 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:32.297 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:31 smithi134 bash[24188]: cluster 2024-09-17T09:07:30.504511+0000 mgr.a (mgr.14150) 134 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:33.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:33 smithi098 bash[22661]: cluster 2024-09-17T09:07:32.504972+0000 mgr.a (mgr.14150) 135 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:34.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:33 smithi165 bash[24863]: cluster 2024-09-17T09:07:32.504972+0000 mgr.a (mgr.14150) 135 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:34.297 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:33 smithi134 bash[24188]: cluster 2024-09-17T09:07:32.504972+0000 mgr.a (mgr.14150) 135 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:35.220 INFO:teuthology.orchestra.run.smithi098.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-09-17T09:07:35.428 INFO:teuthology.orchestra.run.smithi098.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-09-17T09:07:35.444 INFO:teuthology.orchestra.run.smithi098.stderr: stderr: 10+0 records in 2024-09-17T09:07:35.444 INFO:teuthology.orchestra.run.smithi098.stderr:10+0 records out 2024-09-17T09:07:35.444 INFO:teuthology.orchestra.run.smithi098.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0139835 s, 750 MB/s 2024-09-17T09:07:35.444 INFO:teuthology.orchestra.run.smithi098.stderr:--> Zapping successful for: 2024-09-17T09:07:36.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:35 smithi098 bash[22661]: cluster 2024-09-17T09:07:34.505437+0000 mgr.a (mgr.14150) 136 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:36.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:35 smithi165 bash[24863]: cluster 2024-09-17T09:07:34.505437+0000 mgr.a (mgr.14150) 136 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:36.297 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:35 smithi134 bash[24188]: cluster 2024-09-17T09:07:34.505437+0000 mgr.a (mgr.14150) 136 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:36.550 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi098:vg_nvme/lv_3 2024-09-17T09:07:37.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:37 smithi098 bash[22661]: cluster 2024-09-17T09:07:36.505918+0000 mgr.a (mgr.14150) 137 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:37.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:37 smithi098 bash[22661]: cephadm 2024-09-17T09:07:36.589355+0000 mgr.a (mgr.14150) 138 : cephadm [INF] Detected new or changed devices on smithi098 2024-09-17T09:07:37.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:37 smithi098 bash[22661]: audit 2024-09-17T09:07:36.595442+0000 mon.a (mon.0) 316 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:37.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:37 smithi098 bash[22661]: audit 2024-09-17T09:07:36.600107+0000 mon.a (mon.0) 317 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:37.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:37 smithi098 bash[22661]: audit 2024-09-17T09:07:36.601034+0000 mon.a (mon.0) 318 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:07:37.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:37 smithi098 bash[22661]: cephadm 2024-09-17T09:07:36.601683+0000 mgr.a (mgr.14150) 139 : cephadm [INF] Adjusting osd_memory_target on smithi098 to 17265M 2024-09-17T09:07:37.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:37 smithi098 bash[22661]: audit 2024-09-17T09:07:36.608127+0000 mon.a (mon.0) 319 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:37.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:37 smithi098 bash[22661]: audit 2024-09-17T09:07:36.609384+0000 mon.a (mon.0) 320 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:07:37.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:37 smithi098 bash[22661]: audit 2024-09-17T09:07:36.610322+0000 mon.a (mon.0) 321 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:07:37.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:37 smithi098 bash[22661]: audit 2024-09-17T09:07:36.617063+0000 mon.a (mon.0) 322 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:37.884 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:37 smithi165 bash[24863]: cluster 2024-09-17T09:07:36.505918+0000 mgr.a (mgr.14150) 137 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:37.884 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:37 smithi165 bash[24863]: cephadm 2024-09-17T09:07:36.589355+0000 mgr.a (mgr.14150) 138 : cephadm [INF] Detected new or changed devices on smithi098 2024-09-17T09:07:37.884 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:37 smithi165 bash[24863]: audit 2024-09-17T09:07:36.595442+0000 mon.a (mon.0) 316 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:37.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:37 smithi165 bash[24863]: audit 2024-09-17T09:07:36.600107+0000 mon.a (mon.0) 317 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:37.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:37 smithi165 bash[24863]: audit 2024-09-17T09:07:36.601034+0000 mon.a (mon.0) 318 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:07:37.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:37 smithi165 bash[24863]: cephadm 2024-09-17T09:07:36.601683+0000 mgr.a (mgr.14150) 139 : cephadm [INF] Adjusting osd_memory_target on smithi098 to 17265M 2024-09-17T09:07:37.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:37 smithi165 bash[24863]: audit 2024-09-17T09:07:36.608127+0000 mon.a (mon.0) 319 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:37.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:37 smithi165 bash[24863]: audit 2024-09-17T09:07:36.609384+0000 mon.a (mon.0) 320 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:07:37.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:37 smithi165 bash[24863]: audit 2024-09-17T09:07:36.610322+0000 mon.a (mon.0) 321 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:07:37.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:37 smithi165 bash[24863]: audit 2024-09-17T09:07:36.617063+0000 mon.a (mon.0) 322 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:38.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:37 smithi134 bash[24188]: cluster 2024-09-17T09:07:36.505918+0000 mgr.a (mgr.14150) 137 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:38.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:37 smithi134 bash[24188]: cephadm 2024-09-17T09:07:36.589355+0000 mgr.a (mgr.14150) 138 : cephadm [INF] Detected new or changed devices on smithi098 2024-09-17T09:07:38.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:37 smithi134 bash[24188]: audit 2024-09-17T09:07:36.595442+0000 mon.a (mon.0) 316 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:38.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:37 smithi134 bash[24188]: audit 2024-09-17T09:07:36.600107+0000 mon.a (mon.0) 317 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:38.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:37 smithi134 bash[24188]: audit 2024-09-17T09:07:36.601034+0000 mon.a (mon.0) 318 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:07:38.049 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:37 smithi134 bash[24188]: cephadm 2024-09-17T09:07:36.601683+0000 mgr.a (mgr.14150) 139 : cephadm [INF] Adjusting osd_memory_target on smithi098 to 17265M 2024-09-17T09:07:38.049 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:37 smithi134 bash[24188]: audit 2024-09-17T09:07:36.608127+0000 mon.a (mon.0) 319 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:38.049 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:37 smithi134 bash[24188]: audit 2024-09-17T09:07:36.609384+0000 mon.a (mon.0) 320 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:07:38.049 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:37 smithi134 bash[24188]: audit 2024-09-17T09:07:36.610322+0000 mon.a (mon.0) 321 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:07:38.049 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:37 smithi134 bash[24188]: audit 2024-09-17T09:07:36.617063+0000 mon.a (mon.0) 322 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:07:39.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:39 smithi098 bash[22661]: cluster 2024-09-17T09:07:38.506368+0000 mgr.a (mgr.14150) 140 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:39.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:39 smithi165 bash[24863]: cluster 2024-09-17T09:07:38.506368+0000 mgr.a (mgr.14150) 140 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:40.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:39 smithi134 bash[24188]: cluster 2024-09-17T09:07:38.506368+0000 mgr.a (mgr.14150) 140 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:41.229 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:07:41.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:41 smithi098 bash[22661]: cluster 2024-09-17T09:07:40.506879+0000 mgr.a (mgr.14150) 141 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:41.884 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:41 smithi165 bash[24863]: cluster 2024-09-17T09:07:40.506879+0000 mgr.a (mgr.14150) 141 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:42.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:41 smithi134 bash[24188]: cluster 2024-09-17T09:07:40.506879+0000 mgr.a (mgr.14150) 141 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:43.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:43 smithi098 bash[22661]: cluster 2024-09-17T09:07:42.507178+0000 mgr.a (mgr.14150) 142 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:43.884 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:43 smithi165 bash[24863]: cluster 2024-09-17T09:07:42.507178+0000 mgr.a (mgr.14150) 142 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:44.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:43 smithi134 bash[24188]: cluster 2024-09-17T09:07:42.507178+0000 mgr.a (mgr.14150) 142 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:44.884 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:44 smithi165 bash[24863]: audit 2024-09-17T09:07:44.563100+0000 mon.a (mon.0) 323 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T09:07:44.884 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:44 smithi165 bash[24863]: audit 2024-09-17T09:07:44.566290+0000 mon.a (mon.0) 324 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T09:07:44.884 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:44 smithi165 bash[24863]: audit 2024-09-17T09:07:44.567496+0000 mon.a (mon.0) 325 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:07:45.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:44 smithi134 bash[24188]: audit 2024-09-17T09:07:44.563100+0000 mon.a (mon.0) 323 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T09:07:45.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:44 smithi134 bash[24188]: audit 2024-09-17T09:07:44.566290+0000 mon.a (mon.0) 324 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T09:07:45.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:44 smithi134 bash[24188]: audit 2024-09-17T09:07:44.567496+0000 mon.a (mon.0) 325 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:07:45.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:44 smithi098 bash[22661]: audit 2024-09-17T09:07:44.563100+0000 mon.a (mon.0) 323 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T09:07:45.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:44 smithi098 bash[22661]: audit 2024-09-17T09:07:44.566290+0000 mon.a (mon.0) 324 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T09:07:45.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:44 smithi098 bash[22661]: audit 2024-09-17T09:07:44.567496+0000 mon.a (mon.0) 325 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:07:45.884 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:45 smithi165 bash[24863]: cluster 2024-09-17T09:07:44.507463+0000 mgr.a (mgr.14150) 143 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:45.884 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:45 smithi165 bash[24863]: audit 2024-09-17T09:07:44.557027+0000 mgr.a (mgr.14150) 144 : audit [DBG] from='client.14238 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi098:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:07:46.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:45 smithi134 bash[24188]: cluster 2024-09-17T09:07:44.507463+0000 mgr.a (mgr.14150) 143 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:46.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:45 smithi134 bash[24188]: audit 2024-09-17T09:07:44.557027+0000 mgr.a (mgr.14150) 144 : audit [DBG] from='client.14238 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi098:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:07:46.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:45 smithi098 bash[22661]: cluster 2024-09-17T09:07:44.507463+0000 mgr.a (mgr.14150) 143 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:46.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:45 smithi098 bash[22661]: audit 2024-09-17T09:07:44.557027+0000 mgr.a (mgr.14150) 144 : audit [DBG] from='client.14238 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi098:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:07:47.884 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:47 smithi165 bash[24863]: cluster 2024-09-17T09:07:46.507888+0000 mgr.a (mgr.14150) 145 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:48.049 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:47 smithi134 bash[24188]: cluster 2024-09-17T09:07:46.507888+0000 mgr.a (mgr.14150) 145 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:48.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:47 smithi098 bash[22661]: cluster 2024-09-17T09:07:46.507888+0000 mgr.a (mgr.14150) 145 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:49.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:49 smithi098 bash[22661]: cluster 2024-09-17T09:07:48.508341+0000 mgr.a (mgr.14150) 146 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:49.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:49 smithi165 bash[24863]: cluster 2024-09-17T09:07:48.508341+0000 mgr.a (mgr.14150) 146 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:50.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:49 smithi134 bash[24188]: cluster 2024-09-17T09:07:48.508341+0000 mgr.a (mgr.14150) 146 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:51.884 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:51 smithi165 bash[24863]: cluster 2024-09-17T09:07:50.508719+0000 mgr.a (mgr.14150) 147 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:52.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:51 smithi134 bash[24188]: cluster 2024-09-17T09:07:50.508719+0000 mgr.a (mgr.14150) 147 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:52.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:51 smithi098 bash[22661]: cluster 2024-09-17T09:07:50.508719+0000 mgr.a (mgr.14150) 147 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:53.884 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:53 smithi165 bash[24863]: cluster 2024-09-17T09:07:52.509133+0000 mgr.a (mgr.14150) 148 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:53.884 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:53 smithi165 bash[24863]: audit 2024-09-17T09:07:52.962508+0000 mon.a (mon.0) 326 : audit [INF] from='client.? 172.21.15.98:0/2929120106' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "6a67c173-811f-4af5-b8e9-8d357b5ffb3a"}]: dispatch 2024-09-17T09:07:53.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:53 smithi165 bash[24863]: audit 2024-09-17T09:07:52.972952+0000 mon.a (mon.0) 327 : audit [INF] from='client.? 172.21.15.98:0/2929120106' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "6a67c173-811f-4af5-b8e9-8d357b5ffb3a"}]': finished 2024-09-17T09:07:53.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:53 smithi165 bash[24863]: cluster 2024-09-17T09:07:52.973047+0000 mon.a (mon.0) 328 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-09-17T09:07:53.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:53 smithi165 bash[24863]: audit 2024-09-17T09:07:52.973173+0000 mon.a (mon.0) 329 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T09:07:54.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:53 smithi134 bash[24188]: cluster 2024-09-17T09:07:52.509133+0000 mgr.a (mgr.14150) 148 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:54.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:53 smithi134 bash[24188]: audit 2024-09-17T09:07:52.962508+0000 mon.a (mon.0) 326 : audit [INF] from='client.? 172.21.15.98:0/2929120106' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "6a67c173-811f-4af5-b8e9-8d357b5ffb3a"}]: dispatch 2024-09-17T09:07:54.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:53 smithi134 bash[24188]: audit 2024-09-17T09:07:52.972952+0000 mon.a (mon.0) 327 : audit [INF] from='client.? 172.21.15.98:0/2929120106' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "6a67c173-811f-4af5-b8e9-8d357b5ffb3a"}]': finished 2024-09-17T09:07:54.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:53 smithi134 bash[24188]: cluster 2024-09-17T09:07:52.973047+0000 mon.a (mon.0) 328 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-09-17T09:07:54.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:53 smithi134 bash[24188]: audit 2024-09-17T09:07:52.973173+0000 mon.a (mon.0) 329 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T09:07:54.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:53 smithi098 bash[22661]: cluster 2024-09-17T09:07:52.509133+0000 mgr.a (mgr.14150) 148 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:54.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:53 smithi098 bash[22661]: audit 2024-09-17T09:07:52.962508+0000 mon.a (mon.0) 326 : audit [INF] from='client.? 172.21.15.98:0/2929120106' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "6a67c173-811f-4af5-b8e9-8d357b5ffb3a"}]: dispatch 2024-09-17T09:07:54.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:53 smithi098 bash[22661]: audit 2024-09-17T09:07:52.972952+0000 mon.a (mon.0) 327 : audit [INF] from='client.? 172.21.15.98:0/2929120106' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "6a67c173-811f-4af5-b8e9-8d357b5ffb3a"}]': finished 2024-09-17T09:07:54.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:53 smithi098 bash[22661]: cluster 2024-09-17T09:07:52.973047+0000 mon.a (mon.0) 328 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-09-17T09:07:54.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:53 smithi098 bash[22661]: audit 2024-09-17T09:07:52.973173+0000 mon.a (mon.0) 329 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T09:07:55.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:54 smithi134 bash[24188]: audit 2024-09-17T09:07:53.644155+0000 mon.a (mon.0) 330 : audit [DBG] from='client.? 172.21.15.98:0/2309796233' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T09:07:55.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:54 smithi098 bash[22661]: audit 2024-09-17T09:07:53.644155+0000 mon.a (mon.0) 330 : audit [DBG] from='client.? 172.21.15.98:0/2309796233' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T09:07:55.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:54 smithi165 bash[24863]: audit 2024-09-17T09:07:53.644155+0000 mon.a (mon.0) 330 : audit [DBG] from='client.? 172.21.15.98:0/2309796233' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T09:07:56.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:55 smithi134 bash[24188]: cluster 2024-09-17T09:07:54.509598+0000 mgr.a (mgr.14150) 149 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:56.101 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:55 smithi098 bash[22661]: cluster 2024-09-17T09:07:54.509598+0000 mgr.a (mgr.14150) 149 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:56.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:55 smithi165 bash[24863]: cluster 2024-09-17T09:07:54.509598+0000 mgr.a (mgr.14150) 149 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:58.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:57 smithi134 bash[24188]: cluster 2024-09-17T09:07:56.510072+0000 mgr.a (mgr.14150) 150 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:58.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:57 smithi098 bash[22661]: cluster 2024-09-17T09:07:56.510072+0000 mgr.a (mgr.14150) 150 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:07:58.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:57 smithi165 bash[24863]: cluster 2024-09-17T09:07:56.510072+0000 mgr.a (mgr.14150) 150 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:00.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:07:59 smithi134 bash[24188]: cluster 2024-09-17T09:07:58.510605+0000 mgr.a (mgr.14150) 151 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:00.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:07:59 smithi098 bash[22661]: cluster 2024-09-17T09:07:58.510605+0000 mgr.a (mgr.14150) 151 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:00.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:07:59 smithi165 bash[24863]: cluster 2024-09-17T09:07:58.510605+0000 mgr.a (mgr.14150) 151 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:02.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:01 smithi134 bash[24188]: cluster 2024-09-17T09:08:00.511061+0000 mgr.a (mgr.14150) 152 : cluster [DBG] pgmap v105: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:02.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:01 smithi098 bash[22661]: cluster 2024-09-17T09:08:00.511061+0000 mgr.a (mgr.14150) 152 : cluster [DBG] pgmap v105: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:02.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:01 smithi165 bash[24863]: cluster 2024-09-17T09:08:00.511061+0000 mgr.a (mgr.14150) 152 : cluster [DBG] pgmap v105: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:04.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:03 smithi134 bash[24188]: cluster 2024-09-17T09:08:02.511531+0000 mgr.a (mgr.14150) 153 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:04.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:03 smithi098 bash[22661]: cluster 2024-09-17T09:08:02.511531+0000 mgr.a (mgr.14150) 153 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:04.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:03 smithi165 bash[24863]: cluster 2024-09-17T09:08:02.511531+0000 mgr.a (mgr.14150) 153 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:06.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:05 smithi134 bash[24188]: cluster 2024-09-17T09:08:04.511972+0000 mgr.a (mgr.14150) 154 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:06.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:05 smithi098 bash[22661]: cluster 2024-09-17T09:08:04.511972+0000 mgr.a (mgr.14150) 154 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:06.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:05 smithi165 bash[24863]: cluster 2024-09-17T09:08:04.511972+0000 mgr.a (mgr.14150) 154 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:07.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:06 smithi134 bash[24188]: audit 2024-09-17T09:08:05.861893+0000 mon.a (mon.0) 331 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-17T09:08:07.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:06 smithi134 bash[24188]: audit 2024-09-17T09:08:05.863520+0000 mon.a (mon.0) 332 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:08:07.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:06 smithi098 bash[22661]: audit 2024-09-17T09:08:05.861893+0000 mon.a (mon.0) 331 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-17T09:08:07.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:06 smithi098 bash[22661]: audit 2024-09-17T09:08:05.863520+0000 mon.a (mon.0) 332 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:08:07.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:06 smithi165 bash[24863]: audit 2024-09-17T09:08:05.861893+0000 mon.a (mon.0) 331 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-17T09:08:07.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:06 smithi165 bash[24863]: audit 2024-09-17T09:08:05.863520+0000 mon.a (mon.0) 332 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:08:08.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:07 smithi134 bash[24188]: cephadm 2024-09-17T09:08:05.864855+0000 mgr.a (mgr.14150) 155 : cephadm [INF] Deploying daemon osd.1 on smithi098 2024-09-17T09:08:08.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:07 smithi134 bash[24188]: cluster 2024-09-17T09:08:06.512403+0000 mgr.a (mgr.14150) 156 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:08.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:07 smithi098 bash[22661]: cephadm 2024-09-17T09:08:05.864855+0000 mgr.a (mgr.14150) 155 : cephadm [INF] Deploying daemon osd.1 on smithi098 2024-09-17T09:08:08.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:07 smithi098 bash[22661]: cluster 2024-09-17T09:08:06.512403+0000 mgr.a (mgr.14150) 156 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:08.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:07 smithi165 bash[24863]: cephadm 2024-09-17T09:08:05.864855+0000 mgr.a (mgr.14150) 155 : cephadm [INF] Deploying daemon osd.1 on smithi098 2024-09-17T09:08:08.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:07 smithi165 bash[24863]: cluster 2024-09-17T09:08:06.512403+0000 mgr.a (mgr.14150) 156 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:09.854 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:09 smithi098 bash[22661]: cluster 2024-09-17T09:08:08.512884+0000 mgr.a (mgr.14150) 157 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:10.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:09 smithi134 bash[24188]: cluster 2024-09-17T09:08:08.512884+0000 mgr.a (mgr.14150) 157 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:10.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:09 smithi165 bash[24863]: cluster 2024-09-17T09:08:08.512884+0000 mgr.a (mgr.14150) 157 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:10.643 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:10 smithi098 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:08:10.643 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:08:10 smithi098 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:08:10.644 INFO:journalctl@ceph.osd.0.smithi098.stdout:Sep 17 09:08:10 smithi098 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:08:11.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:10 smithi098 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:08:11.111 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:08:10 smithi098 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:08:11.111 INFO:journalctl@ceph.osd.0.smithi098.stdout:Sep 17 09:08:10 smithi098 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:08:11.943 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:11 smithi098 bash[22661]: cluster 2024-09-17T09:08:10.513242+0000 mgr.a (mgr.14150) 158 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:11.943 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:11 smithi098 bash[22661]: audit 2024-09-17T09:08:10.906838+0000 mon.a (mon.0) 333 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:08:11.943 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:11 smithi098 bash[22661]: audit 2024-09-17T09:08:10.911136+0000 mon.a (mon.0) 334 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:11.943 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:11 smithi098 bash[22661]: audit 2024-09-17T09:08:10.916203+0000 mon.a (mon.0) 335 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:12.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:11 smithi134 bash[24188]: cluster 2024-09-17T09:08:10.513242+0000 mgr.a (mgr.14150) 158 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:12.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:11 smithi134 bash[24188]: audit 2024-09-17T09:08:10.906838+0000 mon.a (mon.0) 333 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:08:12.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:11 smithi134 bash[24188]: audit 2024-09-17T09:08:10.911136+0000 mon.a (mon.0) 334 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:12.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:11 smithi134 bash[24188]: audit 2024-09-17T09:08:10.916203+0000 mon.a (mon.0) 335 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:12.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:11 smithi165 bash[24863]: cluster 2024-09-17T09:08:10.513242+0000 mgr.a (mgr.14150) 158 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:12.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:11 smithi165 bash[24863]: audit 2024-09-17T09:08:10.906838+0000 mon.a (mon.0) 333 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:08:12.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:11 smithi165 bash[24863]: audit 2024-09-17T09:08:10.911136+0000 mon.a (mon.0) 334 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:12.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:11 smithi165 bash[24863]: audit 2024-09-17T09:08:10.916203+0000 mon.a (mon.0) 335 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:13.972 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:13 smithi098 bash[22661]: cluster 2024-09-17T09:08:12.513721+0000 mgr.a (mgr.14150) 159 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:14.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:13 smithi134 bash[24188]: cluster 2024-09-17T09:08:12.513721+0000 mgr.a (mgr.14150) 159 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:14.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:13 smithi165 bash[24863]: cluster 2024-09-17T09:08:12.513721+0000 mgr.a (mgr.14150) 159 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:16.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:15 smithi134 bash[24188]: cluster 2024-09-17T09:08:14.514206+0000 mgr.a (mgr.14150) 160 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:16.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:15 smithi098 bash[22661]: cluster 2024-09-17T09:08:14.514206+0000 mgr.a (mgr.14150) 160 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:16.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:15 smithi165 bash[24863]: cluster 2024-09-17T09:08:14.514206+0000 mgr.a (mgr.14150) 160 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:17.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:17 smithi098 bash[22661]: audit 2024-09-17T09:08:16.030419+0000 mon.a (mon.0) 336 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:17.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:17 smithi098 bash[22661]: audit 2024-09-17T09:08:16.034448+0000 mon.a (mon.0) 337 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:17.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:17 smithi098 bash[22661]: audit 2024-09-17T09:08:16.035179+0000 mon.a (mon.0) 338 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:08:17.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:17 smithi098 bash[22661]: audit 2024-09-17T09:08:16.035853+0000 mon.a (mon.0) 339 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:08:17.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:17 smithi098 bash[22661]: audit 2024-09-17T09:08:16.041074+0000 mon.a (mon.0) 340 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:17.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:17 smithi098 bash[22661]: cluster 2024-09-17T09:08:16.514680+0000 mgr.a (mgr.14150) 161 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:17.297 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:17 smithi134 bash[24188]: audit 2024-09-17T09:08:16.030419+0000 mon.a (mon.0) 336 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:17.297 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:17 smithi134 bash[24188]: audit 2024-09-17T09:08:16.034448+0000 mon.a (mon.0) 337 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:17.298 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:17 smithi134 bash[24188]: audit 2024-09-17T09:08:16.035179+0000 mon.a (mon.0) 338 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:08:17.298 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:17 smithi134 bash[24188]: audit 2024-09-17T09:08:16.035853+0000 mon.a (mon.0) 339 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:08:17.298 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:17 smithi134 bash[24188]: audit 2024-09-17T09:08:16.041074+0000 mon.a (mon.0) 340 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:17.298 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:17 smithi134 bash[24188]: cluster 2024-09-17T09:08:16.514680+0000 mgr.a (mgr.14150) 161 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:17.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:17 smithi165 bash[24863]: audit 2024-09-17T09:08:16.030419+0000 mon.a (mon.0) 336 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:17.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:17 smithi165 bash[24863]: audit 2024-09-17T09:08:16.034448+0000 mon.a (mon.0) 337 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:17.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:17 smithi165 bash[24863]: audit 2024-09-17T09:08:16.035179+0000 mon.a (mon.0) 338 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:08:17.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:17 smithi165 bash[24863]: audit 2024-09-17T09:08:16.035853+0000 mon.a (mon.0) 339 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:08:17.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:17 smithi165 bash[24863]: audit 2024-09-17T09:08:16.041074+0000 mon.a (mon.0) 340 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:17.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:17 smithi165 bash[24863]: cluster 2024-09-17T09:08:16.514680+0000 mgr.a (mgr.14150) 161 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:18.297 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:18 smithi134 bash[24188]: audit 2024-09-17T09:08:17.679406+0000 mon.a (mon.0) 341 : audit [INF] from='osd.1 [v2:172.21.15.98:6810/3374388819,v1:172.21.15.98:6811/3374388819]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-17T09:08:18.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:18 smithi098 bash[22661]: audit 2024-09-17T09:08:17.679406+0000 mon.a (mon.0) 341 : audit [INF] from='osd.1 [v2:172.21.15.98:6810/3374388819,v1:172.21.15.98:6811/3374388819]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-17T09:08:18.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:18 smithi165 bash[24863]: audit 2024-09-17T09:08:17.679406+0000 mon.a (mon.0) 341 : audit [INF] from='osd.1 [v2:172.21.15.98:6810/3374388819,v1:172.21.15.98:6811/3374388819]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-17T09:08:19.332 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:19 smithi098 bash[22661]: audit 2024-09-17T09:08:18.055748+0000 mon.a (mon.0) 342 : audit [INF] from='osd.1 [v2:172.21.15.98:6810/3374388819,v1:172.21.15.98:6811/3374388819]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-17T09:08:19.332 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:19 smithi098 bash[22661]: cluster 2024-09-17T09:08:18.055863+0000 mon.a (mon.0) 343 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-09-17T09:08:19.332 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:19 smithi098 bash[22661]: audit 2024-09-17T09:08:18.056084+0000 mon.a (mon.0) 344 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T09:08:19.332 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:19 smithi098 bash[22661]: audit 2024-09-17T09:08:18.056926+0000 mon.a (mon.0) 345 : audit [INF] from='osd.1 [v2:172.21.15.98:6810/3374388819,v1:172.21.15.98:6811/3374388819]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi098", "root=default"]}]: dispatch 2024-09-17T09:08:19.332 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:19 smithi098 bash[22661]: cluster 2024-09-17T09:08:18.515104+0000 mgr.a (mgr.14150) 162 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:19.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:19 smithi165 bash[24863]: audit 2024-09-17T09:08:18.055748+0000 mon.a (mon.0) 342 : audit [INF] from='osd.1 [v2:172.21.15.98:6810/3374388819,v1:172.21.15.98:6811/3374388819]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-17T09:08:19.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:19 smithi165 bash[24863]: cluster 2024-09-17T09:08:18.055863+0000 mon.a (mon.0) 343 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-09-17T09:08:19.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:19 smithi165 bash[24863]: audit 2024-09-17T09:08:18.056084+0000 mon.a (mon.0) 344 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T09:08:19.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:19 smithi165 bash[24863]: audit 2024-09-17T09:08:18.056926+0000 mon.a (mon.0) 345 : audit [INF] from='osd.1 [v2:172.21.15.98:6810/3374388819,v1:172.21.15.98:6811/3374388819]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi098", "root=default"]}]: dispatch 2024-09-17T09:08:19.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:19 smithi165 bash[24863]: cluster 2024-09-17T09:08:18.515104+0000 mgr.a (mgr.14150) 162 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:19.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:19 smithi134 bash[24188]: audit 2024-09-17T09:08:18.055748+0000 mon.a (mon.0) 342 : audit [INF] from='osd.1 [v2:172.21.15.98:6810/3374388819,v1:172.21.15.98:6811/3374388819]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-17T09:08:19.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:19 smithi134 bash[24188]: cluster 2024-09-17T09:08:18.055863+0000 mon.a (mon.0) 343 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-09-17T09:08:19.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:19 smithi134 bash[24188]: audit 2024-09-17T09:08:18.056084+0000 mon.a (mon.0) 344 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T09:08:19.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:19 smithi134 bash[24188]: audit 2024-09-17T09:08:18.056926+0000 mon.a (mon.0) 345 : audit [INF] from='osd.1 [v2:172.21.15.98:6810/3374388819,v1:172.21.15.98:6811/3374388819]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi098", "root=default"]}]: dispatch 2024-09-17T09:08:19.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:19 smithi134 bash[24188]: cluster 2024-09-17T09:08:18.515104+0000 mgr.a (mgr.14150) 162 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:19.829 INFO:teuthology.orchestra.run.smithi098.stdout:Created osd(s) 1 on host 'smithi098' 2024-09-17T09:08:20.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:20 smithi098 bash[22661]: audit 2024-09-17T09:08:19.054955+0000 mon.a (mon.0) 346 : audit [INF] from='osd.1 [v2:172.21.15.98:6810/3374388819,v1:172.21.15.98:6811/3374388819]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi098", "root=default"]}]': finished 2024-09-17T09:08:20.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:20 smithi098 bash[22661]: cluster 2024-09-17T09:08:19.055010+0000 mon.a (mon.0) 347 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-09-17T09:08:20.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:20 smithi098 bash[22661]: audit 2024-09-17T09:08:19.055365+0000 mon.a (mon.0) 348 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T09:08:20.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:20 smithi098 bash[22661]: audit 2024-09-17T09:08:19.063658+0000 mon.a (mon.0) 349 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T09:08:20.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:20 smithi098 bash[22661]: audit 2024-09-17T09:08:19.809062+0000 mon.a (mon.0) 350 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:08:20.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:20 smithi098 bash[22661]: audit 2024-09-17T09:08:19.816841+0000 mon.a (mon.0) 351 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:20.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:20 smithi098 bash[22661]: audit 2024-09-17T09:08:19.824980+0000 mon.a (mon.0) 352 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:20.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:20 smithi165 bash[24863]: audit 2024-09-17T09:08:19.054955+0000 mon.a (mon.0) 346 : audit [INF] from='osd.1 [v2:172.21.15.98:6810/3374388819,v1:172.21.15.98:6811/3374388819]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi098", "root=default"]}]': finished 2024-09-17T09:08:20.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:20 smithi165 bash[24863]: cluster 2024-09-17T09:08:19.055010+0000 mon.a (mon.0) 347 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-09-17T09:08:20.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:20 smithi165 bash[24863]: audit 2024-09-17T09:08:19.055365+0000 mon.a (mon.0) 348 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T09:08:20.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:20 smithi165 bash[24863]: audit 2024-09-17T09:08:19.063658+0000 mon.a (mon.0) 349 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T09:08:20.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:20 smithi165 bash[24863]: audit 2024-09-17T09:08:19.809062+0000 mon.a (mon.0) 350 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:08:20.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:20 smithi165 bash[24863]: audit 2024-09-17T09:08:19.816841+0000 mon.a (mon.0) 351 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:20.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:20 smithi165 bash[24863]: audit 2024-09-17T09:08:19.824980+0000 mon.a (mon.0) 352 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:20.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:20 smithi134 bash[24188]: audit 2024-09-17T09:08:19.054955+0000 mon.a (mon.0) 346 : audit [INF] from='osd.1 [v2:172.21.15.98:6810/3374388819,v1:172.21.15.98:6811/3374388819]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi098", "root=default"]}]': finished 2024-09-17T09:08:20.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:20 smithi134 bash[24188]: cluster 2024-09-17T09:08:19.055010+0000 mon.a (mon.0) 347 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-09-17T09:08:20.548 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:20 smithi134 bash[24188]: audit 2024-09-17T09:08:19.055365+0000 mon.a (mon.0) 348 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T09:08:20.548 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:20 smithi134 bash[24188]: audit 2024-09-17T09:08:19.063658+0000 mon.a (mon.0) 349 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T09:08:20.548 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:20 smithi134 bash[24188]: audit 2024-09-17T09:08:19.809062+0000 mon.a (mon.0) 350 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:08:20.548 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:20 smithi134 bash[24188]: audit 2024-09-17T09:08:19.816841+0000 mon.a (mon.0) 351 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:20.548 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:20 smithi134 bash[24188]: audit 2024-09-17T09:08:19.824980+0000 mon.a (mon.0) 352 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:20.568 DEBUG:teuthology.orchestra.run.smithi098:osd.1> sudo journalctl -f -n 0 -u ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@osd.1.service 2024-09-17T09:08:20.571 INFO:tasks.cephadm:Deploying osd.2 on smithi134 with /dev/vg_nvme/lv_4... 2024-09-17T09:08:20.571 DEBUG:teuthology.orchestra.run.smithi134:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-09-17T09:08:21.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:21 smithi098 bash[22661]: cluster 2024-09-17T09:08:18.718225+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-17T09:08:21.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:21 smithi098 bash[22661]: cluster 2024-09-17T09:08:18.718329+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-17T09:08:21.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:21 smithi098 bash[22661]: audit 2024-09-17T09:08:20.061126+0000 mon.a (mon.0) 353 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T09:08:21.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:21 smithi098 bash[22661]: cluster 2024-09-17T09:08:20.066984+0000 mon.a (mon.0) 354 : cluster [INF] osd.1 [v2:172.21.15.98:6810/3374388819,v1:172.21.15.98:6811/3374388819] boot 2024-09-17T09:08:21.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:21 smithi098 bash[22661]: cluster 2024-09-17T09:08:20.067037+0000 mon.a (mon.0) 355 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-09-17T09:08:21.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:21 smithi098 bash[22661]: audit 2024-09-17T09:08:20.067564+0000 mon.a (mon.0) 356 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T09:08:21.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:21 smithi098 bash[22661]: cluster 2024-09-17T09:08:20.515497+0000 mgr.a (mgr.14150) 163 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:21.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:21 smithi165 bash[24863]: cluster 2024-09-17T09:08:18.718225+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-17T09:08:21.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:21 smithi165 bash[24863]: cluster 2024-09-17T09:08:18.718329+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-17T09:08:21.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:21 smithi165 bash[24863]: audit 2024-09-17T09:08:20.061126+0000 mon.a (mon.0) 353 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T09:08:21.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:21 smithi165 bash[24863]: cluster 2024-09-17T09:08:20.066984+0000 mon.a (mon.0) 354 : cluster [INF] osd.1 [v2:172.21.15.98:6810/3374388819,v1:172.21.15.98:6811/3374388819] boot 2024-09-17T09:08:21.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:21 smithi165 bash[24863]: cluster 2024-09-17T09:08:20.067037+0000 mon.a (mon.0) 355 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-09-17T09:08:21.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:21 smithi165 bash[24863]: audit 2024-09-17T09:08:20.067564+0000 mon.a (mon.0) 356 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T09:08:21.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:21 smithi165 bash[24863]: cluster 2024-09-17T09:08:20.515497+0000 mgr.a (mgr.14150) 163 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:21.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:21 smithi134 bash[24188]: cluster 2024-09-17T09:08:18.718225+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-17T09:08:21.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:21 smithi134 bash[24188]: cluster 2024-09-17T09:08:18.718329+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-17T09:08:21.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:21 smithi134 bash[24188]: audit 2024-09-17T09:08:20.061126+0000 mon.a (mon.0) 353 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T09:08:21.548 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:21 smithi134 bash[24188]: cluster 2024-09-17T09:08:20.066984+0000 mon.a (mon.0) 354 : cluster [INF] osd.1 [v2:172.21.15.98:6810/3374388819,v1:172.21.15.98:6811/3374388819] boot 2024-09-17T09:08:21.548 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:21 smithi134 bash[24188]: cluster 2024-09-17T09:08:20.067037+0000 mon.a (mon.0) 355 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-09-17T09:08:21.548 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:21 smithi134 bash[24188]: audit 2024-09-17T09:08:20.067564+0000 mon.a (mon.0) 356 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T09:08:21.548 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:21 smithi134 bash[24188]: cluster 2024-09-17T09:08:20.515497+0000 mgr.a (mgr.14150) 163 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-17T09:08:22.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:22 smithi098 bash[22661]: cluster 2024-09-17T09:08:21.089591+0000 mon.a (mon.0) 357 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-09-17T09:08:22.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:22 smithi165 bash[24863]: cluster 2024-09-17T09:08:21.089591+0000 mon.a (mon.0) 357 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-09-17T09:08:22.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:22 smithi134 bash[24188]: cluster 2024-09-17T09:08:21.089591+0000 mon.a (mon.0) 357 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-09-17T09:08:23.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:23 smithi098 bash[22661]: cluster 2024-09-17T09:08:22.515983+0000 mgr.a (mgr.14150) 164 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:23.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:23 smithi165 bash[24863]: cluster 2024-09-17T09:08:22.515983+0000 mgr.a (mgr.14150) 164 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:23.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:23 smithi134 bash[24188]: cluster 2024-09-17T09:08:22.515983+0000 mgr.a (mgr.14150) 164 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:25.241 INFO:teuthology.orchestra.run.smithi134.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.b/config 2024-09-17T09:08:25.797 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:25 smithi134 bash[24188]: cluster 2024-09-17T09:08:24.516454+0000 mgr.a (mgr.14150) 165 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:25.827 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:25 smithi098 bash[22661]: cluster 2024-09-17T09:08:24.516454+0000 mgr.a (mgr.14150) 165 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:25.884 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:25 smithi165 bash[24863]: cluster 2024-09-17T09:08:24.516454+0000 mgr.a (mgr.14150) 165 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:27.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:27 smithi098 bash[22661]: cluster 2024-09-17T09:08:26.516900+0000 mgr.a (mgr.14150) 166 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:27.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:27 smithi165 bash[24863]: cluster 2024-09-17T09:08:26.516900+0000 mgr.a (mgr.14150) 166 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:28.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:27 smithi134 bash[24188]: cluster 2024-09-17T09:08:26.516900+0000 mgr.a (mgr.14150) 166 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:28.129 INFO:teuthology.orchestra.run.smithi134.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-09-17T09:08:28.317 INFO:teuthology.orchestra.run.smithi134.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-09-17T09:08:28.333 INFO:teuthology.orchestra.run.smithi134.stderr: stderr: 10+0 records in 2024-09-17T09:08:28.333 INFO:teuthology.orchestra.run.smithi134.stderr:10+0 records out 2024-09-17T09:08:28.333 INFO:teuthology.orchestra.run.smithi134.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0138812 s, 755 MB/s 2024-09-17T09:08:28.333 INFO:teuthology.orchestra.run.smithi134.stderr:--> Zapping successful for: 2024-09-17T09:08:28.898 DEBUG:teuthology.orchestra.run.smithi134:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi134:vg_nvme/lv_4 2024-09-17T09:08:29.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:29 smithi098 bash[22661]: cluster 2024-09-17T09:08:28.517243+0000 mgr.a (mgr.14150) 167 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:29.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:29 smithi098 bash[22661]: audit 2024-09-17T09:08:29.574166+0000 mon.a (mon.0) 358 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:29.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:29 smithi165 bash[24863]: cluster 2024-09-17T09:08:28.517243+0000 mgr.a (mgr.14150) 167 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:29.884 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:29 smithi165 bash[24863]: audit 2024-09-17T09:08:29.574166+0000 mon.a (mon.0) 358 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:30.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:29 smithi134 bash[24188]: cluster 2024-09-17T09:08:28.517243+0000 mgr.a (mgr.14150) 167 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:30.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:29 smithi134 bash[24188]: audit 2024-09-17T09:08:29.574166+0000 mon.a (mon.0) 358 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:30.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:30 smithi098 bash[22661]: cephadm 2024-09-17T09:08:29.565426+0000 mgr.a (mgr.14150) 168 : cephadm [INF] Detected new or changed devices on smithi098 2024-09-17T09:08:30.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:30 smithi098 bash[22661]: audit 2024-09-17T09:08:29.582606+0000 mon.a (mon.0) 359 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:30.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:30 smithi098 bash[22661]: audit 2024-09-17T09:08:29.584507+0000 mon.a (mon.0) 360 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:08:30.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:30 smithi098 bash[22661]: audit 2024-09-17T09:08:29.591168+0000 mon.a (mon.0) 361 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:08:30.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:30 smithi098 bash[22661]: cephadm 2024-09-17T09:08:29.592455+0000 mgr.a (mgr.14150) 169 : cephadm [INF] Adjusting osd_memory_target on smithi098 to 8632M 2024-09-17T09:08:30.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:30 smithi098 bash[22661]: audit 2024-09-17T09:08:29.600383+0000 mon.a (mon.0) 362 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:30.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:30 smithi098 bash[22661]: audit 2024-09-17T09:08:29.602685+0000 mon.a (mon.0) 363 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:08:30.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:30 smithi098 bash[22661]: audit 2024-09-17T09:08:29.604346+0000 mon.a (mon.0) 364 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:08:30.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:30 smithi098 bash[22661]: audit 2024-09-17T09:08:29.614037+0000 mon.a (mon.0) 365 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:30.884 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:30 smithi165 bash[24863]: cephadm 2024-09-17T09:08:29.565426+0000 mgr.a (mgr.14150) 168 : cephadm [INF] Detected new or changed devices on smithi098 2024-09-17T09:08:30.884 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:30 smithi165 bash[24863]: audit 2024-09-17T09:08:29.582606+0000 mon.a (mon.0) 359 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:30.884 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:30 smithi165 bash[24863]: audit 2024-09-17T09:08:29.584507+0000 mon.a (mon.0) 360 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:08:30.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:30 smithi165 bash[24863]: audit 2024-09-17T09:08:29.591168+0000 mon.a (mon.0) 361 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:08:30.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:30 smithi165 bash[24863]: cephadm 2024-09-17T09:08:29.592455+0000 mgr.a (mgr.14150) 169 : cephadm [INF] Adjusting osd_memory_target on smithi098 to 8632M 2024-09-17T09:08:30.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:30 smithi165 bash[24863]: audit 2024-09-17T09:08:29.600383+0000 mon.a (mon.0) 362 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:30.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:30 smithi165 bash[24863]: audit 2024-09-17T09:08:29.602685+0000 mon.a (mon.0) 363 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:08:30.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:30 smithi165 bash[24863]: audit 2024-09-17T09:08:29.604346+0000 mon.a (mon.0) 364 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:08:30.885 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:30 smithi165 bash[24863]: audit 2024-09-17T09:08:29.614037+0000 mon.a (mon.0) 365 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:31.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:30 smithi134 bash[24188]: cephadm 2024-09-17T09:08:29.565426+0000 mgr.a (mgr.14150) 168 : cephadm [INF] Detected new or changed devices on smithi098 2024-09-17T09:08:31.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:30 smithi134 bash[24188]: audit 2024-09-17T09:08:29.582606+0000 mon.a (mon.0) 359 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:31.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:30 smithi134 bash[24188]: audit 2024-09-17T09:08:29.584507+0000 mon.a (mon.0) 360 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:08:31.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:30 smithi134 bash[24188]: audit 2024-09-17T09:08:29.591168+0000 mon.a (mon.0) 361 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:08:31.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:30 smithi134 bash[24188]: cephadm 2024-09-17T09:08:29.592455+0000 mgr.a (mgr.14150) 169 : cephadm [INF] Adjusting osd_memory_target on smithi098 to 8632M 2024-09-17T09:08:31.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:30 smithi134 bash[24188]: audit 2024-09-17T09:08:29.600383+0000 mon.a (mon.0) 362 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:31.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:30 smithi134 bash[24188]: audit 2024-09-17T09:08:29.602685+0000 mon.a (mon.0) 363 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:08:31.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:30 smithi134 bash[24188]: audit 2024-09-17T09:08:29.604346+0000 mon.a (mon.0) 364 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:08:31.048 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:30 smithi134 bash[24188]: audit 2024-09-17T09:08:29.614037+0000 mon.a (mon.0) 365 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:08:31.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:31 smithi165 bash[24863]: cluster 2024-09-17T09:08:30.517670+0000 mgr.a (mgr.14150) 170 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:32.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:31 smithi134 bash[24188]: cluster 2024-09-17T09:08:30.517670+0000 mgr.a (mgr.14150) 170 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:32.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:31 smithi098 bash[22661]: cluster 2024-09-17T09:08:30.517670+0000 mgr.a (mgr.14150) 170 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:33.562 INFO:teuthology.orchestra.run.smithi134.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.b/config 2024-09-17T09:08:33.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:33 smithi165 bash[24863]: cluster 2024-09-17T09:08:32.518142+0000 mgr.a (mgr.14150) 171 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:34.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:33 smithi134 bash[24188]: cluster 2024-09-17T09:08:32.518142+0000 mgr.a (mgr.14150) 171 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:34.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:33 smithi098 bash[22661]: cluster 2024-09-17T09:08:32.518142+0000 mgr.a (mgr.14150) 171 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:35.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:35 smithi165 bash[24863]: cluster 2024-09-17T09:08:34.518613+0000 mgr.a (mgr.14150) 172 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:35.965 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:35 smithi134 bash[24188]: cluster 2024-09-17T09:08:34.518613+0000 mgr.a (mgr.14150) 172 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:36.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:35 smithi098 bash[22661]: cluster 2024-09-17T09:08:34.518613+0000 mgr.a (mgr.14150) 172 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:36.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:36 smithi165 bash[24863]: audit 2024-09-17T09:08:36.318044+0000 mon.a (mon.0) 366 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T09:08:36.884 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:36 smithi165 bash[24863]: audit 2024-09-17T09:08:36.323900+0000 mon.a (mon.0) 367 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T09:08:36.884 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:36 smithi165 bash[24863]: audit 2024-09-17T09:08:36.325661+0000 mon.a (mon.0) 368 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:08:37.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:36 smithi134 bash[24188]: audit 2024-09-17T09:08:36.318044+0000 mon.a (mon.0) 366 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T09:08:37.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:36 smithi134 bash[24188]: audit 2024-09-17T09:08:36.323900+0000 mon.a (mon.0) 367 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T09:08:37.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:36 smithi134 bash[24188]: audit 2024-09-17T09:08:36.325661+0000 mon.a (mon.0) 368 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:08:37.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:36 smithi098 bash[22661]: audit 2024-09-17T09:08:36.318044+0000 mon.a (mon.0) 366 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T09:08:37.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:36 smithi098 bash[22661]: audit 2024-09-17T09:08:36.323900+0000 mon.a (mon.0) 367 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T09:08:37.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:36 smithi098 bash[22661]: audit 2024-09-17T09:08:36.325661+0000 mon.a (mon.0) 368 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:08:37.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:37 smithi165 bash[24863]: audit 2024-09-17T09:08:36.311446+0000 mgr.a (mgr.14150) 173 : audit [DBG] from='client.24146 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi134:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:08:37.884 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:37 smithi165 bash[24863]: cluster 2024-09-17T09:08:36.519006+0000 mgr.a (mgr.14150) 174 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:38.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:37 smithi134 bash[24188]: audit 2024-09-17T09:08:36.311446+0000 mgr.a (mgr.14150) 173 : audit [DBG] from='client.24146 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi134:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:08:38.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:37 smithi134 bash[24188]: cluster 2024-09-17T09:08:36.519006+0000 mgr.a (mgr.14150) 174 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:38.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:37 smithi098 bash[22661]: audit 2024-09-17T09:08:36.311446+0000 mgr.a (mgr.14150) 173 : audit [DBG] from='client.24146 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi134:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:08:38.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:37 smithi098 bash[22661]: cluster 2024-09-17T09:08:36.519006+0000 mgr.a (mgr.14150) 174 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:40.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:39 smithi134 bash[24188]: cluster 2024-09-17T09:08:38.519495+0000 mgr.a (mgr.14150) 175 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:40.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:39 smithi098 bash[22661]: cluster 2024-09-17T09:08:38.519495+0000 mgr.a (mgr.14150) 175 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:40.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:39 smithi165 bash[24863]: cluster 2024-09-17T09:08:38.519495+0000 mgr.a (mgr.14150) 175 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:42.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:41 smithi134 bash[24188]: cluster 2024-09-17T09:08:40.519979+0000 mgr.a (mgr.14150) 176 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:42.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:41 smithi098 bash[22661]: cluster 2024-09-17T09:08:40.519979+0000 mgr.a (mgr.14150) 176 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:42.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:41 smithi165 bash[24863]: cluster 2024-09-17T09:08:40.519979+0000 mgr.a (mgr.14150) 176 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:44.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:43 smithi134 bash[24188]: cluster 2024-09-17T09:08:42.520440+0000 mgr.a (mgr.14150) 177 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:44.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:43 smithi098 bash[22661]: cluster 2024-09-17T09:08:42.520440+0000 mgr.a (mgr.14150) 177 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:44.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:43 smithi165 bash[24863]: cluster 2024-09-17T09:08:42.520440+0000 mgr.a (mgr.14150) 177 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:45.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:44 smithi134 bash[24188]: audit 2024-09-17T09:08:44.352818+0000 mon.b (mon.2) 7 : audit [INF] from='client.? 172.21.15.134:0/2384325081' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "d7864208-dafd-4f82-adef-5623c3ed0461"}]: dispatch 2024-09-17T09:08:45.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:44 smithi134 bash[24188]: audit 2024-09-17T09:08:44.353233+0000 mon.a (mon.0) 369 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "d7864208-dafd-4f82-adef-5623c3ed0461"}]: dispatch 2024-09-17T09:08:45.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:44 smithi134 bash[24188]: audit 2024-09-17T09:08:44.363632+0000 mon.a (mon.0) 370 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "d7864208-dafd-4f82-adef-5623c3ed0461"}]': finished 2024-09-17T09:08:45.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:44 smithi134 bash[24188]: cluster 2024-09-17T09:08:44.363754+0000 mon.a (mon.0) 371 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-09-17T09:08:45.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:44 smithi134 bash[24188]: audit 2024-09-17T09:08:44.363953+0000 mon.a (mon.0) 372 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T09:08:45.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:44 smithi098 bash[22661]: audit 2024-09-17T09:08:44.352818+0000 mon.b (mon.2) 7 : audit [INF] from='client.? 172.21.15.134:0/2384325081' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "d7864208-dafd-4f82-adef-5623c3ed0461"}]: dispatch 2024-09-17T09:08:45.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:44 smithi098 bash[22661]: audit 2024-09-17T09:08:44.353233+0000 mon.a (mon.0) 369 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "d7864208-dafd-4f82-adef-5623c3ed0461"}]: dispatch 2024-09-17T09:08:45.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:44 smithi098 bash[22661]: audit 2024-09-17T09:08:44.363632+0000 mon.a (mon.0) 370 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "d7864208-dafd-4f82-adef-5623c3ed0461"}]': finished 2024-09-17T09:08:45.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:44 smithi098 bash[22661]: cluster 2024-09-17T09:08:44.363754+0000 mon.a (mon.0) 371 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-09-17T09:08:45.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:44 smithi098 bash[22661]: audit 2024-09-17T09:08:44.363953+0000 mon.a (mon.0) 372 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T09:08:45.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:44 smithi165 bash[24863]: audit 2024-09-17T09:08:44.352818+0000 mon.b (mon.2) 7 : audit [INF] from='client.? 172.21.15.134:0/2384325081' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "d7864208-dafd-4f82-adef-5623c3ed0461"}]: dispatch 2024-09-17T09:08:45.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:44 smithi165 bash[24863]: audit 2024-09-17T09:08:44.353233+0000 mon.a (mon.0) 369 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "d7864208-dafd-4f82-adef-5623c3ed0461"}]: dispatch 2024-09-17T09:08:45.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:44 smithi165 bash[24863]: audit 2024-09-17T09:08:44.363632+0000 mon.a (mon.0) 370 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "d7864208-dafd-4f82-adef-5623c3ed0461"}]': finished 2024-09-17T09:08:45.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:44 smithi165 bash[24863]: cluster 2024-09-17T09:08:44.363754+0000 mon.a (mon.0) 371 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-09-17T09:08:45.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:44 smithi165 bash[24863]: audit 2024-09-17T09:08:44.363953+0000 mon.a (mon.0) 372 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T09:08:46.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:45 smithi134 bash[24188]: cluster 2024-09-17T09:08:44.520899+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-17T09:08:46.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:45 smithi134 bash[24188]: audit 2024-09-17T09:08:44.987098+0000 mon.b (mon.2) 8 : audit [DBG] from='client.? 172.21.15.134:0/472891321' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T09:08:46.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:45 smithi098 bash[22661]: cluster 2024-09-17T09:08:44.520899+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-17T09:08:46.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:45 smithi098 bash[22661]: audit 2024-09-17T09:08:44.987098+0000 mon.b (mon.2) 8 : audit [DBG] from='client.? 172.21.15.134:0/472891321' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T09:08:46.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:45 smithi165 bash[24863]: cluster 2024-09-17T09:08:44.520899+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-17T09:08:46.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:45 smithi165 bash[24863]: audit 2024-09-17T09:08:44.987098+0000 mon.b (mon.2) 8 : audit [DBG] from='client.? 172.21.15.134:0/472891321' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T09:08:47.797 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:47 smithi134 bash[24188]: cluster 2024-09-17T09:08:46.521369+0000 mgr.a (mgr.14150) 179 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:48.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:47 smithi098 bash[22661]: cluster 2024-09-17T09:08:46.521369+0000 mgr.a (mgr.14150) 179 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:48.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:47 smithi165 bash[24863]: cluster 2024-09-17T09:08:46.521369+0000 mgr.a (mgr.14150) 179 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:50.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:49 smithi134 bash[24188]: cluster 2024-09-17T09:08:48.521785+0000 mgr.a (mgr.14150) 180 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:50.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:49 smithi098 bash[22661]: cluster 2024-09-17T09:08:48.521785+0000 mgr.a (mgr.14150) 180 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:50.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:49 smithi165 bash[24863]: cluster 2024-09-17T09:08:48.521785+0000 mgr.a (mgr.14150) 180 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:52.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:51 smithi134 bash[24188]: cluster 2024-09-17T09:08:50.522239+0000 mgr.a (mgr.14150) 181 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:52.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:51 smithi098 bash[22661]: cluster 2024-09-17T09:08:50.522239+0000 mgr.a (mgr.14150) 181 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:52.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:51 smithi165 bash[24863]: cluster 2024-09-17T09:08:50.522239+0000 mgr.a (mgr.14150) 181 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:53.950 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:53 smithi134 bash[24188]: cluster 2024-09-17T09:08:52.522719+0000 mgr.a (mgr.14150) 182 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:54.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:53 smithi098 bash[22661]: cluster 2024-09-17T09:08:52.522719+0000 mgr.a (mgr.14150) 182 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:54.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:53 smithi165 bash[24863]: cluster 2024-09-17T09:08:52.522719+0000 mgr.a (mgr.14150) 182 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:55.787 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:55 smithi134 bash[24188]: cluster 2024-09-17T09:08:54.523178+0000 mgr.a (mgr.14150) 183 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:56.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:55 smithi098 bash[22661]: cluster 2024-09-17T09:08:54.523178+0000 mgr.a (mgr.14150) 183 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:56.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:55 smithi165 bash[24863]: cluster 2024-09-17T09:08:54.523178+0000 mgr.a (mgr.14150) 183 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:08:57.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:56 smithi134 bash[24188]: audit 2024-09-17T09:08:56.391683+0000 mon.a (mon.0) 373 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-17T09:08:57.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:56 smithi134 bash[24188]: audit 2024-09-17T09:08:56.393423+0000 mon.a (mon.0) 374 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:08:57.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:56 smithi098 bash[22661]: audit 2024-09-17T09:08:56.391683+0000 mon.a (mon.0) 373 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-17T09:08:57.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:56 smithi098 bash[22661]: audit 2024-09-17T09:08:56.393423+0000 mon.a (mon.0) 374 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:08:57.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:56 smithi165 bash[24863]: audit 2024-09-17T09:08:56.391683+0000 mon.a (mon.0) 373 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-17T09:08:57.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:56 smithi165 bash[24863]: audit 2024-09-17T09:08:56.393423+0000 mon.a (mon.0) 374 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:08:57.943 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:57 smithi134 bash[24188]: cephadm 2024-09-17T09:08:56.394880+0000 mgr.a (mgr.14150) 184 : cephadm [INF] Deploying daemon osd.2 on smithi134 2024-09-17T09:08:57.944 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:57 smithi134 bash[24188]: cluster 2024-09-17T09:08:56.523574+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-17T09:08:58.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:57 smithi098 bash[22661]: cephadm 2024-09-17T09:08:56.394880+0000 mgr.a (mgr.14150) 184 : cephadm [INF] Deploying daemon osd.2 on smithi134 2024-09-17T09:08:58.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:57 smithi098 bash[22661]: cluster 2024-09-17T09:08:56.523574+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-17T09:08:58.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:57 smithi165 bash[24863]: cephadm 2024-09-17T09:08:56.394880+0000 mgr.a (mgr.14150) 184 : cephadm [INF] Deploying daemon osd.2 on smithi134 2024-09-17T09:08:58.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:57 smithi165 bash[24863]: cluster 2024-09-17T09:08:56.523574+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-17T09:09:00.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:08:59 smithi134 bash[24188]: cluster 2024-09-17T09:08:58.524065+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-17T09:09:00.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:08:59 smithi098 bash[22661]: cluster 2024-09-17T09:08:58.524065+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-17T09:09:00.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:08:59 smithi165 bash[24863]: cluster 2024-09-17T09:08:58.524065+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-17T09:09:00.509 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:00 smithi134 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:09:00.510 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:09:00 smithi134 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:09:00.797 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:09:00 smithi134 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:09:00.797 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:00 smithi134 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:09:00.797 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:00 smithi134 bash[24188]: audit 2024-09-17T09:09:00.645828+0000 mon.a (mon.0) 375 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:09:00.797 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:00 smithi134 bash[24188]: audit 2024-09-17T09:09:00.653269+0000 mon.a (mon.0) 376 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:00.797 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:00 smithi134 bash[24188]: audit 2024-09-17T09:09:00.661413+0000 mon.a (mon.0) 377 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:01.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:00 smithi098 bash[22661]: audit 2024-09-17T09:09:00.645828+0000 mon.a (mon.0) 375 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:09:01.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:00 smithi098 bash[22661]: audit 2024-09-17T09:09:00.653269+0000 mon.a (mon.0) 376 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:01.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:00 smithi098 bash[22661]: audit 2024-09-17T09:09:00.661413+0000 mon.a (mon.0) 377 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:01.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:00 smithi165 bash[24863]: audit 2024-09-17T09:09:00.645828+0000 mon.a (mon.0) 375 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:09:01.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:00 smithi165 bash[24863]: audit 2024-09-17T09:09:00.653269+0000 mon.a (mon.0) 376 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:01.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:00 smithi165 bash[24863]: audit 2024-09-17T09:09:00.661413+0000 mon.a (mon.0) 377 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:01.797 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:01 smithi134 bash[24188]: cluster 2024-09-17T09:09:00.524540+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-17T09:09:02.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:01 smithi098 bash[22661]: cluster 2024-09-17T09:09:00.524540+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-17T09:09:02.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:01 smithi165 bash[24863]: cluster 2024-09-17T09:09:00.524540+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-17T09:09:03.969 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:03 smithi134 bash[24188]: cluster 2024-09-17T09:09:02.525017+0000 mgr.a (mgr.14150) 188 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:09:04.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:03 smithi098 bash[22661]: cluster 2024-09-17T09:09:02.525017+0000 mgr.a (mgr.14150) 188 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:09:04.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:03 smithi165 bash[24863]: cluster 2024-09-17T09:09:02.525017+0000 mgr.a (mgr.14150) 188 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:09:06.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:05 smithi134 bash[24188]: cluster 2024-09-17T09:09:04.525473+0000 mgr.a (mgr.14150) 189 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:09:06.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:05 smithi098 bash[22661]: cluster 2024-09-17T09:09:04.525473+0000 mgr.a (mgr.14150) 189 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:09:06.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:05 smithi165 bash[24863]: cluster 2024-09-17T09:09:04.525473+0000 mgr.a (mgr.14150) 189 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:09:08.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:07 smithi134 bash[24188]: cluster 2024-09-17T09:09:06.525929+0000 mgr.a (mgr.14150) 190 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:09:08.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:07 smithi134 bash[24188]: audit 2024-09-17T09:09:06.953305+0000 mon.a (mon.0) 378 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-17T09:09:08.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:07 smithi134 bash[24188]: audit 2024-09-17T09:09:06.953397+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.134:6800/1810538513,v1:172.21.15.134:6801/1810538513]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-17T09:09:08.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:07 smithi134 bash[24188]: audit 2024-09-17T09:09:07.325588+0000 mon.a (mon.0) 379 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:08.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:07 smithi134 bash[24188]: audit 2024-09-17T09:09:07.333833+0000 mon.a (mon.0) 380 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:08.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:07 smithi098 bash[22661]: cluster 2024-09-17T09:09:06.525929+0000 mgr.a (mgr.14150) 190 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:09:08.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:07 smithi098 bash[22661]: audit 2024-09-17T09:09:06.953305+0000 mon.a (mon.0) 378 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-17T09:09:08.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:07 smithi098 bash[22661]: audit 2024-09-17T09:09:06.953397+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.134:6800/1810538513,v1:172.21.15.134:6801/1810538513]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-17T09:09:08.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:07 smithi098 bash[22661]: audit 2024-09-17T09:09:07.325588+0000 mon.a (mon.0) 379 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:08.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:07 smithi098 bash[22661]: audit 2024-09-17T09:09:07.333833+0000 mon.a (mon.0) 380 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:08.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:07 smithi165 bash[24863]: cluster 2024-09-17T09:09:06.525929+0000 mgr.a (mgr.14150) 190 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:09:08.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:07 smithi165 bash[24863]: audit 2024-09-17T09:09:06.953305+0000 mon.a (mon.0) 378 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-17T09:09:08.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:07 smithi165 bash[24863]: audit 2024-09-17T09:09:06.953397+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.134:6800/1810538513,v1:172.21.15.134:6801/1810538513]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-17T09:09:08.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:07 smithi165 bash[24863]: audit 2024-09-17T09:09:07.325588+0000 mon.a (mon.0) 379 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:08.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:07 smithi165 bash[24863]: audit 2024-09-17T09:09:07.333833+0000 mon.a (mon.0) 380 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:09.037 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:08 smithi134 bash[24188]: audit 2024-09-17T09:09:07.721632+0000 mon.a (mon.0) 381 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-17T09:09:09.037 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:08 smithi134 bash[24188]: cluster 2024-09-17T09:09:07.721825+0000 mon.a (mon.0) 382 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-09-17T09:09:09.037 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:08 smithi134 bash[24188]: audit 2024-09-17T09:09:07.722085+0000 mon.a (mon.0) 383 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T09:09:09.037 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:08 smithi134 bash[24188]: audit 2024-09-17T09:09:07.723393+0000 mon.a (mon.0) 384 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi134", "root=default"]}]: dispatch 2024-09-17T09:09:09.037 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:08 smithi134 bash[24188]: audit 2024-09-17T09:09:07.723537+0000 mon.b (mon.2) 10 : audit [INF] from='osd.2 [v2:172.21.15.134:6800/1810538513,v1:172.21.15.134:6801/1810538513]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi134", "root=default"]}]: dispatch 2024-09-17T09:09:09.037 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:08 smithi134 bash[24188]: audit 2024-09-17T09:09:07.839226+0000 mon.a (mon.0) 385 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:09:09.037 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:08 smithi134 bash[24188]: audit 2024-09-17T09:09:07.840897+0000 mon.a (mon.0) 386 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:09:09.038 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:08 smithi134 bash[24188]: audit 2024-09-17T09:09:07.849093+0000 mon.a (mon.0) 387 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:09.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:08 smithi098 bash[22661]: audit 2024-09-17T09:09:07.721632+0000 mon.a (mon.0) 381 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-17T09:09:09.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:08 smithi098 bash[22661]: cluster 2024-09-17T09:09:07.721825+0000 mon.a (mon.0) 382 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-09-17T09:09:09.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:08 smithi098 bash[22661]: audit 2024-09-17T09:09:07.722085+0000 mon.a (mon.0) 383 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T09:09:09.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:08 smithi098 bash[22661]: audit 2024-09-17T09:09:07.723393+0000 mon.a (mon.0) 384 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi134", "root=default"]}]: dispatch 2024-09-17T09:09:09.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:08 smithi098 bash[22661]: audit 2024-09-17T09:09:07.723537+0000 mon.b (mon.2) 10 : audit [INF] from='osd.2 [v2:172.21.15.134:6800/1810538513,v1:172.21.15.134:6801/1810538513]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi134", "root=default"]}]: dispatch 2024-09-17T09:09:09.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:08 smithi098 bash[22661]: audit 2024-09-17T09:09:07.839226+0000 mon.a (mon.0) 385 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:09:09.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:08 smithi098 bash[22661]: audit 2024-09-17T09:09:07.840897+0000 mon.a (mon.0) 386 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:09:09.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:08 smithi098 bash[22661]: audit 2024-09-17T09:09:07.849093+0000 mon.a (mon.0) 387 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:09.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:08 smithi165 bash[24863]: audit 2024-09-17T09:09:07.721632+0000 mon.a (mon.0) 381 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-17T09:09:09.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:08 smithi165 bash[24863]: cluster 2024-09-17T09:09:07.721825+0000 mon.a (mon.0) 382 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-09-17T09:09:09.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:08 smithi165 bash[24863]: audit 2024-09-17T09:09:07.722085+0000 mon.a (mon.0) 383 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T09:09:09.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:08 smithi165 bash[24863]: audit 2024-09-17T09:09:07.723393+0000 mon.a (mon.0) 384 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi134", "root=default"]}]: dispatch 2024-09-17T09:09:09.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:08 smithi165 bash[24863]: audit 2024-09-17T09:09:07.723537+0000 mon.b (mon.2) 10 : audit [INF] from='osd.2 [v2:172.21.15.134:6800/1810538513,v1:172.21.15.134:6801/1810538513]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi134", "root=default"]}]: dispatch 2024-09-17T09:09:09.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:08 smithi165 bash[24863]: audit 2024-09-17T09:09:07.839226+0000 mon.a (mon.0) 385 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:09:09.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:08 smithi165 bash[24863]: audit 2024-09-17T09:09:07.840897+0000 mon.a (mon.0) 386 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:09:09.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:08 smithi165 bash[24863]: audit 2024-09-17T09:09:07.849093+0000 mon.a (mon.0) 387 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:10.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:09 smithi134 bash[24188]: cluster 2024-09-17T09:09:08.526400+0000 mgr.a (mgr.14150) 191 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:09:10.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:09 smithi134 bash[24188]: audit 2024-09-17T09:09:08.724396+0000 mon.a (mon.0) 388 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi134", "root=default"]}]': finished 2024-09-17T09:09:10.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:09 smithi134 bash[24188]: cluster 2024-09-17T09:09:08.724591+0000 mon.a (mon.0) 389 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-09-17T09:09:10.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:09 smithi134 bash[24188]: audit 2024-09-17T09:09:08.725312+0000 mon.a (mon.0) 390 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T09:09:10.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:09 smithi134 bash[24188]: audit 2024-09-17T09:09:08.736020+0000 mon.a (mon.0) 391 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T09:09:10.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:09 smithi134 bash[24188]: audit 2024-09-17T09:09:09.243920+0000 mon.a (mon.0) 392 : audit [INF] from='osd.2 ' entity='osd.2' 2024-09-17T09:09:10.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:09 smithi098 bash[22661]: cluster 2024-09-17T09:09:08.526400+0000 mgr.a (mgr.14150) 191 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:09:10.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:09 smithi098 bash[22661]: audit 2024-09-17T09:09:08.724396+0000 mon.a (mon.0) 388 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi134", "root=default"]}]': finished 2024-09-17T09:09:10.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:09 smithi098 bash[22661]: cluster 2024-09-17T09:09:08.724591+0000 mon.a (mon.0) 389 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-09-17T09:09:10.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:09 smithi098 bash[22661]: audit 2024-09-17T09:09:08.725312+0000 mon.a (mon.0) 390 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T09:09:10.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:09 smithi098 bash[22661]: audit 2024-09-17T09:09:08.736020+0000 mon.a (mon.0) 391 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T09:09:10.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:09 smithi098 bash[22661]: audit 2024-09-17T09:09:09.243920+0000 mon.a (mon.0) 392 : audit [INF] from='osd.2 ' entity='osd.2' 2024-09-17T09:09:10.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:09 smithi165 bash[24863]: cluster 2024-09-17T09:09:08.526400+0000 mgr.a (mgr.14150) 191 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:09:10.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:09 smithi165 bash[24863]: audit 2024-09-17T09:09:08.724396+0000 mon.a (mon.0) 388 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi134", "root=default"]}]': finished 2024-09-17T09:09:10.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:09 smithi165 bash[24863]: cluster 2024-09-17T09:09:08.724591+0000 mon.a (mon.0) 389 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-09-17T09:09:10.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:09 smithi165 bash[24863]: audit 2024-09-17T09:09:08.725312+0000 mon.a (mon.0) 390 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T09:09:10.134 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:09 smithi165 bash[24863]: audit 2024-09-17T09:09:08.736020+0000 mon.a (mon.0) 391 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T09:09:10.135 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:09 smithi165 bash[24863]: audit 2024-09-17T09:09:09.243920+0000 mon.a (mon.0) 392 : audit [INF] from='osd.2 ' entity='osd.2' 2024-09-17T09:09:11.085 INFO:teuthology.orchestra.run.smithi134.stdout:Created osd(s) 2 on host 'smithi134' 2024-09-17T09:09:11.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:11 smithi098 bash[22661]: cluster 2024-09-17T09:09:07.934276+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-17T09:09:11.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:11 smithi098 bash[22661]: cluster 2024-09-17T09:09:07.934402+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-17T09:09:11.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:11 smithi098 bash[22661]: audit 2024-09-17T09:09:09.735752+0000 mon.a (mon.0) 393 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T09:09:11.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:11 smithi098 bash[22661]: cluster 2024-09-17T09:09:10.245760+0000 mon.a (mon.0) 394 : cluster [INF] osd.2 [v2:172.21.15.134:6800/1810538513,v1:172.21.15.134:6801/1810538513] boot 2024-09-17T09:09:11.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:11 smithi098 bash[22661]: cluster 2024-09-17T09:09:10.245856+0000 mon.a (mon.0) 395 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-09-17T09:09:11.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:11 smithi098 bash[22661]: audit 2024-09-17T09:09:10.246083+0000 mon.a (mon.0) 396 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T09:09:11.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:11 smithi098 bash[22661]: audit 2024-09-17T09:09:10.630751+0000 mon.a (mon.0) 397 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' 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-17T09:09:11.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:11 smithi165 bash[24863]: cluster 2024-09-17T09:09:07.934276+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-17T09:09:11.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:11 smithi165 bash[24863]: cluster 2024-09-17T09:09:07.934402+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-17T09:09:11.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:11 smithi165 bash[24863]: audit 2024-09-17T09:09:09.735752+0000 mon.a (mon.0) 393 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T09:09:11.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:11 smithi165 bash[24863]: cluster 2024-09-17T09:09:10.245760+0000 mon.a (mon.0) 394 : cluster [INF] osd.2 [v2:172.21.15.134:6800/1810538513,v1:172.21.15.134:6801/1810538513] boot 2024-09-17T09:09:11.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:11 smithi165 bash[24863]: cluster 2024-09-17T09:09:10.245856+0000 mon.a (mon.0) 395 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-09-17T09:09:11.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:11 smithi165 bash[24863]: audit 2024-09-17T09:09:10.246083+0000 mon.a (mon.0) 396 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T09:09:11.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:11 smithi165 bash[24863]: audit 2024-09-17T09:09:10.630751+0000 mon.a (mon.0) 397 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' 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-17T09:09:11.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:11 smithi134 bash[24188]: cluster 2024-09-17T09:09:07.934276+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-17T09:09:11.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:11 smithi134 bash[24188]: cluster 2024-09-17T09:09:07.934402+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-17T09:09:11.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:11 smithi134 bash[24188]: audit 2024-09-17T09:09:09.735752+0000 mon.a (mon.0) 393 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T09:09:11.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:11 smithi134 bash[24188]: cluster 2024-09-17T09:09:10.245760+0000 mon.a (mon.0) 394 : cluster [INF] osd.2 [v2:172.21.15.134:6800/1810538513,v1:172.21.15.134:6801/1810538513] boot 2024-09-17T09:09:11.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:11 smithi134 bash[24188]: cluster 2024-09-17T09:09:10.245856+0000 mon.a (mon.0) 395 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-09-17T09:09:11.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:11 smithi134 bash[24188]: audit 2024-09-17T09:09:10.246083+0000 mon.a (mon.0) 396 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T09:09:11.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:11 smithi134 bash[24188]: audit 2024-09-17T09:09:10.630751+0000 mon.a (mon.0) 397 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' 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-17T09:09:11.664 DEBUG:teuthology.orchestra.run.smithi134:osd.2> sudo journalctl -f -n 0 -u ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@osd.2.service 2024-09-17T09:09:11.667 INFO:tasks.cephadm:Deploying osd.3 on smithi134 with /dev/vg_nvme/lv_3... 2024-09-17T09:09:11.667 DEBUG:teuthology.orchestra.run.smithi134:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-09-17T09:09:12.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:12 smithi098 bash[22661]: cluster 2024-09-17T09:09:10.526853+0000 mgr.a (mgr.14150) 192 : cluster [DBG] pgmap v148: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:09:12.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:12 smithi098 bash[22661]: audit 2024-09-17T09:09:11.068536+0000 mon.a (mon.0) 398 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:09:12.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:12 smithi098 bash[22661]: audit 2024-09-17T09:09:11.074902+0000 mon.a (mon.0) 399 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:12.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:12 smithi098 bash[22661]: audit 2024-09-17T09:09:11.082032+0000 mon.a (mon.0) 400 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:12.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:12 smithi098 bash[22661]: audit 2024-09-17T09:09:11.252087+0000 mon.a (mon.0) 401 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' 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-17T09:09:12.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:12 smithi098 bash[22661]: cluster 2024-09-17T09:09:11.252202+0000 mon.a (mon.0) 402 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-09-17T09:09:12.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:12 smithi098 bash[22661]: audit 2024-09-17T09:09:11.254739+0000 mon.a (mon.0) 403 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-17T09:09:12.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:12 smithi165 bash[24863]: cluster 2024-09-17T09:09:10.526853+0000 mgr.a (mgr.14150) 192 : cluster [DBG] pgmap v148: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:09:12.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:12 smithi165 bash[24863]: audit 2024-09-17T09:09:11.068536+0000 mon.a (mon.0) 398 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:09:12.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:12 smithi165 bash[24863]: audit 2024-09-17T09:09:11.074902+0000 mon.a (mon.0) 399 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:12.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:12 smithi165 bash[24863]: audit 2024-09-17T09:09:11.082032+0000 mon.a (mon.0) 400 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:12.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:12 smithi165 bash[24863]: audit 2024-09-17T09:09:11.252087+0000 mon.a (mon.0) 401 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' 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-17T09:09:12.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:12 smithi165 bash[24863]: cluster 2024-09-17T09:09:11.252202+0000 mon.a (mon.0) 402 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-09-17T09:09:12.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:12 smithi165 bash[24863]: audit 2024-09-17T09:09:11.254739+0000 mon.a (mon.0) 403 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-17T09:09:12.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:12 smithi134 bash[24188]: cluster 2024-09-17T09:09:10.526853+0000 mgr.a (mgr.14150) 192 : cluster [DBG] pgmap v148: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T09:09:12.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:12 smithi134 bash[24188]: audit 2024-09-17T09:09:11.068536+0000 mon.a (mon.0) 398 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:09:12.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:12 smithi134 bash[24188]: audit 2024-09-17T09:09:11.074902+0000 mon.a (mon.0) 399 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:12.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:12 smithi134 bash[24188]: audit 2024-09-17T09:09:11.082032+0000 mon.a (mon.0) 400 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:12.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:12 smithi134 bash[24188]: audit 2024-09-17T09:09:11.252087+0000 mon.a (mon.0) 401 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' 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-17T09:09:12.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:12 smithi134 bash[24188]: cluster 2024-09-17T09:09:11.252202+0000 mon.a (mon.0) 402 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-09-17T09:09:12.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:12 smithi134 bash[24188]: audit 2024-09-17T09:09:11.254739+0000 mon.a (mon.0) 403 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-17T09:09:13.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:13 smithi134 bash[24188]: audit 2024-09-17T09:09:12.254309+0000 mon.a (mon.0) 404 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-17T09:09:13.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:13 smithi134 bash[24188]: cluster 2024-09-17T09:09:12.254509+0000 mon.a (mon.0) 405 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-09-17T09:09:13.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:13 smithi134 bash[24188]: cluster 2024-09-17T09:09:12.527226+0000 mgr.a (mgr.14150) 193 : cluster [DBG] pgmap v151: 1 pgs: 1 unknown; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:13.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:13 smithi098 bash[22661]: audit 2024-09-17T09:09:12.254309+0000 mon.a (mon.0) 404 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-17T09:09:13.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:13 smithi098 bash[22661]: cluster 2024-09-17T09:09:12.254509+0000 mon.a (mon.0) 405 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-09-17T09:09:13.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:13 smithi098 bash[22661]: cluster 2024-09-17T09:09:12.527226+0000 mgr.a (mgr.14150) 193 : cluster [DBG] pgmap v151: 1 pgs: 1 unknown; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:13.633 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:13 smithi165 bash[24863]: audit 2024-09-17T09:09:12.254309+0000 mon.a (mon.0) 404 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-17T09:09:13.633 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:13 smithi165 bash[24863]: cluster 2024-09-17T09:09:12.254509+0000 mon.a (mon.0) 405 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-09-17T09:09:13.633 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:13 smithi165 bash[24863]: cluster 2024-09-17T09:09:12.527226+0000 mgr.a (mgr.14150) 193 : cluster [DBG] pgmap v151: 1 pgs: 1 unknown; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:14.546 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:14 smithi134 bash[24188]: cluster 2024-09-17T09:09:13.274906+0000 mon.a (mon.0) 406 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-09-17T09:09:14.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:14 smithi134 bash[24188]: cluster 2024-09-17T09:09:13.275002+0000 mon.a (mon.0) 407 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-09-17T09:09:14.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:14 smithi134 bash[24188]: audit 2024-09-17T09:09:13.413008+0000 mon.a (mon.0) 408 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:14.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:14 smithi098 bash[22661]: cluster 2024-09-17T09:09:13.274906+0000 mon.a (mon.0) 406 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-09-17T09:09:14.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:14 smithi098 bash[22661]: cluster 2024-09-17T09:09:13.275002+0000 mon.a (mon.0) 407 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-09-17T09:09:14.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:14 smithi098 bash[22661]: audit 2024-09-17T09:09:13.413008+0000 mon.a (mon.0) 408 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:14.633 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:14 smithi165 bash[24863]: cluster 2024-09-17T09:09:13.274906+0000 mon.a (mon.0) 406 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-09-17T09:09:14.633 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:14 smithi165 bash[24863]: cluster 2024-09-17T09:09:13.275002+0000 mon.a (mon.0) 407 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-09-17T09:09:14.633 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:14 smithi165 bash[24863]: audit 2024-09-17T09:09:13.413008+0000 mon.a (mon.0) 408 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:15.914 INFO:teuthology.orchestra.run.smithi134.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.b/config 2024-09-17T09:09:16.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:16 smithi134 bash[24188]: cluster 2024-09-17T09:09:14.527706+0000 mgr.a (mgr.14150) 194 : cluster [DBG] pgmap v153: 1 pgs: 1 unknown; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:16.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:16 smithi134 bash[24188]: audit 2024-09-17T09:09:15.241683+0000 mon.a (mon.0) 409 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:16.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:16 smithi134 bash[24188]: audit 2024-09-17T09:09:15.244638+0000 mon.a (mon.0) 410 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T09:09:16.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:16 smithi098 bash[22661]: cluster 2024-09-17T09:09:14.527706+0000 mgr.a (mgr.14150) 194 : cluster [DBG] pgmap v153: 1 pgs: 1 unknown; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:16.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:16 smithi098 bash[22661]: audit 2024-09-17T09:09:15.241683+0000 mon.a (mon.0) 409 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:16.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:16 smithi098 bash[22661]: audit 2024-09-17T09:09:15.244638+0000 mon.a (mon.0) 410 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T09:09:17.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:16 smithi165 bash[24863]: cluster 2024-09-17T09:09:14.527706+0000 mgr.a (mgr.14150) 194 : cluster [DBG] pgmap v153: 1 pgs: 1 unknown; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:17.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:16 smithi165 bash[24863]: audit 2024-09-17T09:09:15.241683+0000 mon.a (mon.0) 409 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:17.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:16 smithi165 bash[24863]: audit 2024-09-17T09:09:15.244638+0000 mon.a (mon.0) 410 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T09:09:18.297 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:17 smithi134 bash[24188]: audit 2024-09-17T09:09:16.108020+0000 mon.a (mon.0) 411 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T09:09:18.297 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:17 smithi134 bash[24188]: audit 2024-09-17T09:09:16.109246+0000 mon.a (mon.0) 412 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T09:09:18.297 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:17 smithi134 bash[24188]: audit 2024-09-17T09:09:16.109503+0000 mon.a (mon.0) 413 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:09:18.297 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:17 smithi134 bash[24188]: audit 2024-09-17T09:09:16.113469+0000 mon.a (mon.0) 414 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T09:09:18.297 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:17 smithi134 bash[24188]: audit 2024-09-17T09:09:16.116602+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T09:09:18.297 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:17 smithi134 bash[24188]: audit 2024-09-17T09:09:16.118330+0000 mon.a (mon.0) 415 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T09:09:18.298 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:17 smithi134 bash[24188]: audit 2024-09-17T09:09:16.118751+0000 mon.a (mon.0) 416 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:09:18.298 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:17 smithi134 bash[24188]: audit 2024-09-17T09:09:16.119060+0000 mon.a (mon.0) 417 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T09:09:18.298 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:17 smithi134 bash[24188]: cluster 2024-09-17T09:09:16.528238+0000 mgr.a (mgr.14150) 195 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:18.298 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:17 smithi134 bash[24188]: audit 2024-09-17T09:09:16.983059+0000 mon.c (mon.1) 5 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T09:09:18.298 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:17 smithi134 bash[24188]: audit 2024-09-17T09:09:17.033194+0000 mon.a (mon.0) 418 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:18.298 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:17 smithi134 bash[24188]: audit 2024-09-17T09:09:17.036508+0000 mon.a (mon.0) 419 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T09:09:18.298 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:17 smithi134 bash[24188]: audit 2024-09-17T09:09:17.037001+0000 mon.a (mon.0) 420 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:09:18.298 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:17 smithi134 bash[24188]: audit 2024-09-17T09:09:17.037469+0000 mon.a (mon.0) 421 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T09:09:18.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:17 smithi098 bash[22661]: audit 2024-09-17T09:09:16.108020+0000 mon.a (mon.0) 411 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T09:09:18.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:17 smithi098 bash[22661]: audit 2024-09-17T09:09:16.109246+0000 mon.a (mon.0) 412 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T09:09:18.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:17 smithi098 bash[22661]: audit 2024-09-17T09:09:16.109503+0000 mon.a (mon.0) 413 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:09:18.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:17 smithi098 bash[22661]: audit 2024-09-17T09:09:16.113469+0000 mon.a (mon.0) 414 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T09:09:18.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:17 smithi098 bash[22661]: audit 2024-09-17T09:09:16.116602+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T09:09:18.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:17 smithi098 bash[22661]: audit 2024-09-17T09:09:16.118330+0000 mon.a (mon.0) 415 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T09:09:18.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:17 smithi098 bash[22661]: audit 2024-09-17T09:09:16.118751+0000 mon.a (mon.0) 416 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:09:18.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:17 smithi098 bash[22661]: audit 2024-09-17T09:09:16.119060+0000 mon.a (mon.0) 417 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T09:09:18.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:17 smithi098 bash[22661]: cluster 2024-09-17T09:09:16.528238+0000 mgr.a (mgr.14150) 195 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:18.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:17 smithi098 bash[22661]: audit 2024-09-17T09:09:16.983059+0000 mon.c (mon.1) 5 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T09:09:18.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:17 smithi098 bash[22661]: audit 2024-09-17T09:09:17.033194+0000 mon.a (mon.0) 418 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:18.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:17 smithi098 bash[22661]: audit 2024-09-17T09:09:17.036508+0000 mon.a (mon.0) 419 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T09:09:18.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:17 smithi098 bash[22661]: audit 2024-09-17T09:09:17.037001+0000 mon.a (mon.0) 420 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:09:18.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:17 smithi098 bash[22661]: audit 2024-09-17T09:09:17.037469+0000 mon.a (mon.0) 421 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T09:09:18.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:17 smithi165 bash[24863]: audit 2024-09-17T09:09:16.108020+0000 mon.a (mon.0) 411 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T09:09:18.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:17 smithi165 bash[24863]: audit 2024-09-17T09:09:16.109246+0000 mon.a (mon.0) 412 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T09:09:18.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:17 smithi165 bash[24863]: audit 2024-09-17T09:09:16.109503+0000 mon.a (mon.0) 413 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:09:18.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:17 smithi165 bash[24863]: audit 2024-09-17T09:09:16.113469+0000 mon.a (mon.0) 414 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T09:09:18.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:17 smithi165 bash[24863]: audit 2024-09-17T09:09:16.116602+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T09:09:18.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:17 smithi165 bash[24863]: audit 2024-09-17T09:09:16.118330+0000 mon.a (mon.0) 415 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T09:09:18.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:17 smithi165 bash[24863]: audit 2024-09-17T09:09:16.118751+0000 mon.a (mon.0) 416 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:09:18.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:17 smithi165 bash[24863]: audit 2024-09-17T09:09:16.119060+0000 mon.a (mon.0) 417 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T09:09:18.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:17 smithi165 bash[24863]: cluster 2024-09-17T09:09:16.528238+0000 mgr.a (mgr.14150) 195 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:18.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:17 smithi165 bash[24863]: audit 2024-09-17T09:09:16.983059+0000 mon.c (mon.1) 5 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T09:09:18.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:17 smithi165 bash[24863]: audit 2024-09-17T09:09:17.033194+0000 mon.a (mon.0) 418 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:18.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:17 smithi165 bash[24863]: audit 2024-09-17T09:09:17.036508+0000 mon.a (mon.0) 419 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T09:09:18.385 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:17 smithi165 bash[24863]: audit 2024-09-17T09:09:17.037001+0000 mon.a (mon.0) 420 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:09:18.385 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:17 smithi165 bash[24863]: audit 2024-09-17T09:09:17.037469+0000 mon.a (mon.0) 421 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T09:09:19.296 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:18 smithi134 bash[24188]: audit 2024-09-17T09:09:17.037018+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T09:09:19.297 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:18 smithi134 bash[24188]: audit 2024-09-17T09:09:17.918905+0000 mon.b (mon.2) 12 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T09:09:19.297 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:18 smithi134 bash[24188]: cluster 2024-09-17T09:09:18.528781+0000 mgr.a (mgr.14150) 196 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:19.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:18 smithi098 bash[22661]: audit 2024-09-17T09:09:17.037018+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T09:09:19.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:18 smithi098 bash[22661]: audit 2024-09-17T09:09:17.918905+0000 mon.b (mon.2) 12 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T09:09:19.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:18 smithi098 bash[22661]: cluster 2024-09-17T09:09:18.528781+0000 mgr.a (mgr.14150) 196 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:19.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:18 smithi165 bash[24863]: audit 2024-09-17T09:09:17.037018+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T09:09:19.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:18 smithi165 bash[24863]: audit 2024-09-17T09:09:17.918905+0000 mon.b (mon.2) 12 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T09:09:19.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:18 smithi165 bash[24863]: cluster 2024-09-17T09:09:18.528781+0000 mgr.a (mgr.14150) 196 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:20.696 INFO:teuthology.orchestra.run.smithi134.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-09-17T09:09:20.909 INFO:teuthology.orchestra.run.smithi134.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-09-17T09:09:20.926 INFO:teuthology.orchestra.run.smithi134.stderr: stderr: 10+0 records in 2024-09-17T09:09:20.926 INFO:teuthology.orchestra.run.smithi134.stderr:10+0 records out 2024-09-17T09:09:20.926 INFO:teuthology.orchestra.run.smithi134.stderr:10485760 bytes (10 MB, 10 MiB) copied, 0.0153311 s, 684 MB/s 2024-09-17T09:09:20.927 INFO:teuthology.orchestra.run.smithi134.stderr:--> Zapping successful for: 2024-09-17T09:09:21.687 DEBUG:teuthology.orchestra.run.smithi134:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi134:vg_nvme/lv_3 2024-09-17T09:09:21.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:21 smithi098 bash[22661]: cluster 2024-09-17T09:09:20.529292+0000 mgr.a (mgr.14150) 197 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:21.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:21 smithi165 bash[24863]: cluster 2024-09-17T09:09:20.529292+0000 mgr.a (mgr.14150) 197 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:22.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:21 smithi134 bash[24188]: cluster 2024-09-17T09:09:20.529292+0000 mgr.a (mgr.14150) 197 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:23.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:23 smithi134 bash[24188]: cephadm 2024-09-17T09:09:22.156225+0000 mgr.a (mgr.14150) 198 : cephadm [INF] Detected new or changed devices on smithi134 2024-09-17T09:09:23.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:23 smithi134 bash[24188]: audit 2024-09-17T09:09:22.164646+0000 mon.a (mon.0) 422 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:23.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:23 smithi134 bash[24188]: audit 2024-09-17T09:09:22.172765+0000 mon.a (mon.0) 423 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:23.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:23 smithi134 bash[24188]: audit 2024-09-17T09:09:22.174464+0000 mon.a (mon.0) 424 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:09:23.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:23 smithi134 bash[24188]: cephadm 2024-09-17T09:09:22.175770+0000 mgr.a (mgr.14150) 199 : cephadm [INF] Adjusting osd_memory_target on smithi134 to 17265M 2024-09-17T09:09:23.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:23 smithi134 bash[24188]: audit 2024-09-17T09:09:22.183680+0000 mon.a (mon.0) 425 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:23.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:23 smithi134 bash[24188]: audit 2024-09-17T09:09:22.185588+0000 mon.a (mon.0) 426 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:09:23.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:23 smithi134 bash[24188]: audit 2024-09-17T09:09:22.187332+0000 mon.a (mon.0) 427 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:09:23.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:23 smithi134 bash[24188]: audit 2024-09-17T09:09:22.196899+0000 mon.a (mon.0) 428 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:23.548 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:23 smithi134 bash[24188]: cluster 2024-09-17T09:09:22.529869+0000 mgr.a (mgr.14150) 200 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 3.0 KiB/s rd, 131 KiB/s wr, 9 op/s 2024-09-17T09:09:23.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:23 smithi098 bash[22661]: cephadm 2024-09-17T09:09:22.156225+0000 mgr.a (mgr.14150) 198 : cephadm [INF] Detected new or changed devices on smithi134 2024-09-17T09:09:23.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:23 smithi098 bash[22661]: audit 2024-09-17T09:09:22.164646+0000 mon.a (mon.0) 422 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:23.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:23 smithi098 bash[22661]: audit 2024-09-17T09:09:22.172765+0000 mon.a (mon.0) 423 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:23.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:23 smithi098 bash[22661]: audit 2024-09-17T09:09:22.174464+0000 mon.a (mon.0) 424 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:09:23.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:23 smithi098 bash[22661]: cephadm 2024-09-17T09:09:22.175770+0000 mgr.a (mgr.14150) 199 : cephadm [INF] Adjusting osd_memory_target on smithi134 to 17265M 2024-09-17T09:09:23.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:23 smithi098 bash[22661]: audit 2024-09-17T09:09:22.183680+0000 mon.a (mon.0) 425 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:23.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:23 smithi098 bash[22661]: audit 2024-09-17T09:09:22.185588+0000 mon.a (mon.0) 426 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:09:23.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:23 smithi098 bash[22661]: audit 2024-09-17T09:09:22.187332+0000 mon.a (mon.0) 427 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:09:23.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:23 smithi098 bash[22661]: audit 2024-09-17T09:09:22.196899+0000 mon.a (mon.0) 428 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:23.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:23 smithi098 bash[22661]: cluster 2024-09-17T09:09:22.529869+0000 mgr.a (mgr.14150) 200 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 3.0 KiB/s rd, 131 KiB/s wr, 9 op/s 2024-09-17T09:09:23.633 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:23 smithi165 bash[24863]: cephadm 2024-09-17T09:09:22.156225+0000 mgr.a (mgr.14150) 198 : cephadm [INF] Detected new or changed devices on smithi134 2024-09-17T09:09:23.633 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:23 smithi165 bash[24863]: audit 2024-09-17T09:09:22.164646+0000 mon.a (mon.0) 422 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:23.633 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:23 smithi165 bash[24863]: audit 2024-09-17T09:09:22.172765+0000 mon.a (mon.0) 423 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:23.633 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:23 smithi165 bash[24863]: audit 2024-09-17T09:09:22.174464+0000 mon.a (mon.0) 424 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:09:23.634 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:23 smithi165 bash[24863]: cephadm 2024-09-17T09:09:22.175770+0000 mgr.a (mgr.14150) 199 : cephadm [INF] Adjusting osd_memory_target on smithi134 to 17265M 2024-09-17T09:09:23.634 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:23 smithi165 bash[24863]: audit 2024-09-17T09:09:22.183680+0000 mon.a (mon.0) 425 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:23.634 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:23 smithi165 bash[24863]: audit 2024-09-17T09:09:22.185588+0000 mon.a (mon.0) 426 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:09:23.634 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:23 smithi165 bash[24863]: audit 2024-09-17T09:09:22.187332+0000 mon.a (mon.0) 427 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:09:23.634 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:23 smithi165 bash[24863]: audit 2024-09-17T09:09:22.196899+0000 mon.a (mon.0) 428 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:23.634 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:23 smithi165 bash[24863]: cluster 2024-09-17T09:09:22.529869+0000 mgr.a (mgr.14150) 200 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 3.0 KiB/s rd, 131 KiB/s wr, 9 op/s 2024-09-17T09:09:25.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:25 smithi098 bash[22661]: cluster 2024-09-17T09:09:24.530428+0000 mgr.a (mgr.14150) 201 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 98 KiB/s wr, 6 op/s 2024-09-17T09:09:25.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:25 smithi165 bash[24863]: cluster 2024-09-17T09:09:24.530428+0000 mgr.a (mgr.14150) 201 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 98 KiB/s wr, 6 op/s 2024-09-17T09:09:26.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:25 smithi134 bash[24188]: cluster 2024-09-17T09:09:24.530428+0000 mgr.a (mgr.14150) 201 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 98 KiB/s wr, 6 op/s 2024-09-17T09:09:26.364 INFO:teuthology.orchestra.run.smithi134.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.b/config 2024-09-17T09:09:27.729 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:27 smithi134 bash[24188]: cluster 2024-09-17T09:09:26.530979+0000 mgr.a (mgr.14150) 202 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 1.8 KiB/s rd, 78 KiB/s wr, 5 op/s 2024-09-17T09:09:27.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:27 smithi098 bash[22661]: cluster 2024-09-17T09:09:26.530979+0000 mgr.a (mgr.14150) 202 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 1.8 KiB/s rd, 78 KiB/s wr, 5 op/s 2024-09-17T09:09:27.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:27 smithi165 bash[24863]: cluster 2024-09-17T09:09:26.530979+0000 mgr.a (mgr.14150) 202 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 1.8 KiB/s rd, 78 KiB/s wr, 5 op/s 2024-09-17T09:09:29.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:29 smithi098 bash[22661]: cluster 2024-09-17T09:09:28.531553+0000 mgr.a (mgr.14150) 203 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-17T09:09:29.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:29 smithi098 bash[22661]: audit 2024-09-17T09:09:29.479477+0000 mon.a (mon.0) 429 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T09:09:29.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:29 smithi098 bash[22661]: audit 2024-09-17T09:09:29.485331+0000 mon.a (mon.0) 430 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T09:09:29.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:29 smithi098 bash[22661]: audit 2024-09-17T09:09:29.487096+0000 mon.a (mon.0) 431 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:09:29.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:29 smithi165 bash[24863]: cluster 2024-09-17T09:09:28.531553+0000 mgr.a (mgr.14150) 203 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-17T09:09:29.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:29 smithi165 bash[24863]: audit 2024-09-17T09:09:29.479477+0000 mon.a (mon.0) 429 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T09:09:29.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:29 smithi165 bash[24863]: audit 2024-09-17T09:09:29.485331+0000 mon.a (mon.0) 430 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T09:09:29.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:29 smithi165 bash[24863]: audit 2024-09-17T09:09:29.487096+0000 mon.a (mon.0) 431 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:09:30.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:29 smithi134 bash[24188]: cluster 2024-09-17T09:09:28.531553+0000 mgr.a (mgr.14150) 203 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-17T09:09:30.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:29 smithi134 bash[24188]: audit 2024-09-17T09:09:29.479477+0000 mon.a (mon.0) 429 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T09:09:30.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:29 smithi134 bash[24188]: audit 2024-09-17T09:09:29.485331+0000 mon.a (mon.0) 430 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T09:09:30.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:29 smithi134 bash[24188]: audit 2024-09-17T09:09:29.487096+0000 mon.a (mon.0) 431 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:09:30.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:30 smithi098 bash[22661]: audit 2024-09-17T09:09:29.473149+0000 mgr.a (mgr.14150) 204 : audit [DBG] from='client.24182 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi134:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:09:30.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:30 smithi165 bash[24863]: audit 2024-09-17T09:09:29.473149+0000 mgr.a (mgr.14150) 204 : audit [DBG] from='client.24182 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi134:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:09:31.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:30 smithi134 bash[24188]: audit 2024-09-17T09:09:29.473149+0000 mgr.a (mgr.14150) 204 : audit [DBG] from='client.24182 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi134:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:09:31.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:31 smithi098 bash[22661]: cluster 2024-09-17T09:09:30.532085+0000 mgr.a (mgr.14150) 205 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-17T09:09:31.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:31 smithi165 bash[24863]: cluster 2024-09-17T09:09:30.532085+0000 mgr.a (mgr.14150) 205 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-17T09:09:32.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:31 smithi134 bash[24188]: cluster 2024-09-17T09:09:30.532085+0000 mgr.a (mgr.14150) 205 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-17T09:09:33.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:33 smithi098 bash[22661]: cluster 2024-09-17T09:09:32.532646+0000 mgr.a (mgr.14150) 206 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-17T09:09:33.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:33 smithi165 bash[24863]: cluster 2024-09-17T09:09:32.532646+0000 mgr.a (mgr.14150) 206 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-17T09:09:34.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:33 smithi134 bash[24188]: cluster 2024-09-17T09:09:32.532646+0000 mgr.a (mgr.14150) 206 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-17T09:09:35.661 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:35 smithi134 bash[24188]: cluster 2024-09-17T09:09:34.533175+0000 mgr.a (mgr.14150) 207 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:35.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:35 smithi165 bash[24863]: cluster 2024-09-17T09:09:34.533175+0000 mgr.a (mgr.14150) 207 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:36.113 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:35 smithi098 bash[22661]: cluster 2024-09-17T09:09:34.533175+0000 mgr.a (mgr.14150) 207 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:37.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:37 smithi165 bash[24863]: cluster 2024-09-17T09:09:36.533694+0000 mgr.a (mgr.14150) 208 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:38.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:37 smithi134 bash[24188]: cluster 2024-09-17T09:09:36.533694+0000 mgr.a (mgr.14150) 208 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:38.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:37 smithi098 bash[22661]: cluster 2024-09-17T09:09:36.533694+0000 mgr.a (mgr.14150) 208 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:38.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:38 smithi165 bash[24863]: audit 2024-09-17T09:09:37.772236+0000 mon.a (mon.0) 432 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ef5afe90-675d-4993-8c36-920122a16d34"}]: dispatch 2024-09-17T09:09:38.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:38 smithi165 bash[24863]: audit 2024-09-17T09:09:37.772621+0000 mon.b (mon.2) 13 : audit [INF] from='client.? 172.21.15.134:0/1416952723' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ef5afe90-675d-4993-8c36-920122a16d34"}]: dispatch 2024-09-17T09:09:38.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:38 smithi165 bash[24863]: audit 2024-09-17T09:09:37.780302+0000 mon.a (mon.0) 433 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ef5afe90-675d-4993-8c36-920122a16d34"}]': finished 2024-09-17T09:09:38.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:38 smithi165 bash[24863]: cluster 2024-09-17T09:09:37.780454+0000 mon.a (mon.0) 434 : cluster [DBG] osdmap e22: 4 total, 3 up, 4 in 2024-09-17T09:09:38.884 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:38 smithi165 bash[24863]: audit 2024-09-17T09:09:37.780737+0000 mon.a (mon.0) 435 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T09:09:38.884 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:38 smithi165 bash[24863]: audit 2024-09-17T09:09:38.415957+0000 mon.b (mon.2) 14 : audit [DBG] from='client.? 172.21.15.134:0/3887548167' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T09:09:39.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:38 smithi134 bash[24188]: audit 2024-09-17T09:09:37.772236+0000 mon.a (mon.0) 432 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ef5afe90-675d-4993-8c36-920122a16d34"}]: dispatch 2024-09-17T09:09:39.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:38 smithi134 bash[24188]: audit 2024-09-17T09:09:37.772621+0000 mon.b (mon.2) 13 : audit [INF] from='client.? 172.21.15.134:0/1416952723' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ef5afe90-675d-4993-8c36-920122a16d34"}]: dispatch 2024-09-17T09:09:39.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:38 smithi134 bash[24188]: audit 2024-09-17T09:09:37.780302+0000 mon.a (mon.0) 433 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ef5afe90-675d-4993-8c36-920122a16d34"}]': finished 2024-09-17T09:09:39.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:38 smithi134 bash[24188]: cluster 2024-09-17T09:09:37.780454+0000 mon.a (mon.0) 434 : cluster [DBG] osdmap e22: 4 total, 3 up, 4 in 2024-09-17T09:09:39.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:38 smithi134 bash[24188]: audit 2024-09-17T09:09:37.780737+0000 mon.a (mon.0) 435 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T09:09:39.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:38 smithi134 bash[24188]: audit 2024-09-17T09:09:38.415957+0000 mon.b (mon.2) 14 : audit [DBG] from='client.? 172.21.15.134:0/3887548167' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T09:09:39.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:38 smithi098 bash[22661]: audit 2024-09-17T09:09:37.772236+0000 mon.a (mon.0) 432 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ef5afe90-675d-4993-8c36-920122a16d34"}]: dispatch 2024-09-17T09:09:39.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:38 smithi098 bash[22661]: audit 2024-09-17T09:09:37.772621+0000 mon.b (mon.2) 13 : audit [INF] from='client.? 172.21.15.134:0/1416952723' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ef5afe90-675d-4993-8c36-920122a16d34"}]: dispatch 2024-09-17T09:09:39.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:38 smithi098 bash[22661]: audit 2024-09-17T09:09:37.780302+0000 mon.a (mon.0) 433 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ef5afe90-675d-4993-8c36-920122a16d34"}]': finished 2024-09-17T09:09:39.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:38 smithi098 bash[22661]: cluster 2024-09-17T09:09:37.780454+0000 mon.a (mon.0) 434 : cluster [DBG] osdmap e22: 4 total, 3 up, 4 in 2024-09-17T09:09:39.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:38 smithi098 bash[22661]: audit 2024-09-17T09:09:37.780737+0000 mon.a (mon.0) 435 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T09:09:39.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:38 smithi098 bash[22661]: audit 2024-09-17T09:09:38.415957+0000 mon.b (mon.2) 14 : audit [DBG] from='client.? 172.21.15.134:0/3887548167' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T09:09:40.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:39 smithi134 bash[24188]: cluster 2024-09-17T09:09:38.534213+0000 mgr.a (mgr.14150) 209 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:40.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:39 smithi098 bash[22661]: cluster 2024-09-17T09:09:38.534213+0000 mgr.a (mgr.14150) 209 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:40.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:39 smithi165 bash[24863]: cluster 2024-09-17T09:09:38.534213+0000 mgr.a (mgr.14150) 209 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:42.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:41 smithi134 bash[24188]: cluster 2024-09-17T09:09:40.534795+0000 mgr.a (mgr.14150) 210 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:42.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:41 smithi098 bash[22661]: cluster 2024-09-17T09:09:40.534795+0000 mgr.a (mgr.14150) 210 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:42.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:41 smithi165 bash[24863]: cluster 2024-09-17T09:09:40.534795+0000 mgr.a (mgr.14150) 210 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:44.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:43 smithi134 bash[24188]: cluster 2024-09-17T09:09:42.535376+0000 mgr.a (mgr.14150) 211 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:44.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:43 smithi098 bash[22661]: cluster 2024-09-17T09:09:42.535376+0000 mgr.a (mgr.14150) 211 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:44.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:43 smithi165 bash[24863]: cluster 2024-09-17T09:09:42.535376+0000 mgr.a (mgr.14150) 211 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:46.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:45 smithi134 bash[24188]: cluster 2024-09-17T09:09:44.535921+0000 mgr.a (mgr.14150) 212 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:46.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:45 smithi098 bash[22661]: cluster 2024-09-17T09:09:44.535921+0000 mgr.a (mgr.14150) 212 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:46.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:45 smithi165 bash[24863]: cluster 2024-09-17T09:09:44.535921+0000 mgr.a (mgr.14150) 212 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:48.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:47 smithi134 bash[24188]: cluster 2024-09-17T09:09:46.536459+0000 mgr.a (mgr.14150) 213 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:48.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:47 smithi098 bash[22661]: cluster 2024-09-17T09:09:46.536459+0000 mgr.a (mgr.14150) 213 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:48.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:47 smithi165 bash[24863]: cluster 2024-09-17T09:09:46.536459+0000 mgr.a (mgr.14150) 213 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:50.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:49 smithi134 bash[24188]: cluster 2024-09-17T09:09:48.537002+0000 mgr.a (mgr.14150) 214 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:50.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:49 smithi098 bash[22661]: cluster 2024-09-17T09:09:48.537002+0000 mgr.a (mgr.14150) 214 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:50.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:49 smithi165 bash[24863]: cluster 2024-09-17T09:09:48.537002+0000 mgr.a (mgr.14150) 214 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:51.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:50 smithi098 bash[22661]: audit 2024-09-17T09:09:50.265904+0000 mon.a (mon.0) 436 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-17T09:09:51.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:50 smithi098 bash[22661]: audit 2024-09-17T09:09:50.267712+0000 mon.a (mon.0) 437 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:09:51.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:50 smithi165 bash[24863]: audit 2024-09-17T09:09:50.265904+0000 mon.a (mon.0) 436 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-17T09:09:51.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:50 smithi165 bash[24863]: audit 2024-09-17T09:09:50.267712+0000 mon.a (mon.0) 437 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:09:51.296 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:50 smithi134 bash[24188]: audit 2024-09-17T09:09:50.265904+0000 mon.a (mon.0) 436 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-17T09:09:51.296 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:50 smithi134 bash[24188]: audit 2024-09-17T09:09:50.267712+0000 mon.a (mon.0) 437 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:09:51.934 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:51 smithi134 bash[24188]: cephadm 2024-09-17T09:09:50.269253+0000 mgr.a (mgr.14150) 215 : cephadm [INF] Deploying daemon osd.3 on smithi134 2024-09-17T09:09:51.934 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:51 smithi134 bash[24188]: cluster 2024-09-17T09:09:50.537497+0000 mgr.a (mgr.14150) 216 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:52.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:51 smithi098 bash[22661]: cephadm 2024-09-17T09:09:50.269253+0000 mgr.a (mgr.14150) 215 : cephadm [INF] Deploying daemon osd.3 on smithi134 2024-09-17T09:09:52.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:51 smithi098 bash[22661]: cluster 2024-09-17T09:09:50.537497+0000 mgr.a (mgr.14150) 216 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:52.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:51 smithi165 bash[24863]: cephadm 2024-09-17T09:09:50.269253+0000 mgr.a (mgr.14150) 215 : cephadm [INF] Deploying daemon osd.3 on smithi134 2024-09-17T09:09:52.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:51 smithi165 bash[24863]: cluster 2024-09-17T09:09:50.537497+0000 mgr.a (mgr.14150) 216 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:54.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:53 smithi134 bash[24188]: cluster 2024-09-17T09:09:52.538033+0000 mgr.a (mgr.14150) 217 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:54.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:53 smithi098 bash[22661]: cluster 2024-09-17T09:09:52.538033+0000 mgr.a (mgr.14150) 217 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:54.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:53 smithi165 bash[24863]: cluster 2024-09-17T09:09:52.538033+0000 mgr.a (mgr.14150) 217 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:54.654 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:54 smithi134 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:09:54.654 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:09:54 smithi134 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:09:54.655 INFO:journalctl@ceph.osd.2.smithi134.stdout:Sep 17 09:09:54 smithi134 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:09:54.979 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:09:54 smithi134 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:09:54.979 INFO:journalctl@ceph.osd.2.smithi134.stdout:Sep 17 09:09:54 smithi134 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:09:54.979 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:54 smithi134 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:09:56.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:55 smithi098 bash[22661]: cluster 2024-09-17T09:09:54.538593+0000 mgr.a (mgr.14150) 218 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:56.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:55 smithi098 bash[22661]: audit 2024-09-17T09:09:54.912020+0000 mon.a (mon.0) 438 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:09:56.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:55 smithi098 bash[22661]: audit 2024-09-17T09:09:54.919389+0000 mon.a (mon.0) 439 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:56.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:55 smithi098 bash[22661]: audit 2024-09-17T09:09:54.927439+0000 mon.a (mon.0) 440 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:56.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:55 smithi165 bash[24863]: cluster 2024-09-17T09:09:54.538593+0000 mgr.a (mgr.14150) 218 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:56.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:55 smithi165 bash[24863]: audit 2024-09-17T09:09:54.912020+0000 mon.a (mon.0) 438 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:09:56.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:55 smithi165 bash[24863]: audit 2024-09-17T09:09:54.919389+0000 mon.a (mon.0) 439 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:56.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:55 smithi165 bash[24863]: audit 2024-09-17T09:09:54.927439+0000 mon.a (mon.0) 440 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:56.296 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:55 smithi134 bash[24188]: cluster 2024-09-17T09:09:54.538593+0000 mgr.a (mgr.14150) 218 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:56.296 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:55 smithi134 bash[24188]: audit 2024-09-17T09:09:54.912020+0000 mon.a (mon.0) 438 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:09:56.296 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:55 smithi134 bash[24188]: audit 2024-09-17T09:09:54.919389+0000 mon.a (mon.0) 439 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:56.296 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:55 smithi134 bash[24188]: audit 2024-09-17T09:09:54.927439+0000 mon.a (mon.0) 440 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:09:58.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:57 smithi098 bash[22661]: cluster 2024-09-17T09:09:56.539130+0000 mgr.a (mgr.14150) 219 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:58.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:57 smithi165 bash[24863]: cluster 2024-09-17T09:09:56.539130+0000 mgr.a (mgr.14150) 219 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:09:58.296 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:57 smithi134 bash[24188]: cluster 2024-09-17T09:09:56.539130+0000 mgr.a (mgr.14150) 219 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:10:00.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:09:59 smithi098 bash[22661]: cluster 2024-09-17T09:09:58.539650+0000 mgr.a (mgr.14150) 220 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:10:00.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:09:59 smithi165 bash[24863]: cluster 2024-09-17T09:09:58.539650+0000 mgr.a (mgr.14150) 220 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:10:00.296 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:09:59 smithi134 bash[24188]: cluster 2024-09-17T09:09:58.539650+0000 mgr.a (mgr.14150) 220 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:10:01.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:00 smithi098 bash[22661]: cluster 2024-09-17T09:10:00.000165+0000 mon.a (mon.0) 441 : cluster [INF] overall HEALTH_OK 2024-09-17T09:10:01.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:00 smithi098 bash[22661]: audit 2024-09-17T09:10:00.069264+0000 mon.a (mon.0) 442 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:01.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:00 smithi098 bash[22661]: audit 2024-09-17T09:10:00.079363+0000 mon.a (mon.0) 443 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:01.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:00 smithi098 bash[22661]: audit 2024-09-17T09:10:00.081295+0000 mon.a (mon.0) 444 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:10:01.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:00 smithi098 bash[22661]: audit 2024-09-17T09:10:00.083005+0000 mon.a (mon.0) 445 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:10:01.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:00 smithi098 bash[22661]: audit 2024-09-17T09:10:00.094170+0000 mon.a (mon.0) 446 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:01.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:00 smithi165 bash[24863]: cluster 2024-09-17T09:10:00.000165+0000 mon.a (mon.0) 441 : cluster [INF] overall HEALTH_OK 2024-09-17T09:10:01.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:00 smithi165 bash[24863]: audit 2024-09-17T09:10:00.069264+0000 mon.a (mon.0) 442 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:01.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:00 smithi165 bash[24863]: audit 2024-09-17T09:10:00.079363+0000 mon.a (mon.0) 443 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:01.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:00 smithi165 bash[24863]: audit 2024-09-17T09:10:00.081295+0000 mon.a (mon.0) 444 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:10:01.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:00 smithi165 bash[24863]: audit 2024-09-17T09:10:00.083005+0000 mon.a (mon.0) 445 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:10:01.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:00 smithi165 bash[24863]: audit 2024-09-17T09:10:00.094170+0000 mon.a (mon.0) 446 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:01.239 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:00 smithi134 bash[24188]: cluster 2024-09-17T09:10:00.000165+0000 mon.a (mon.0) 441 : cluster [INF] overall HEALTH_OK 2024-09-17T09:10:01.239 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:00 smithi134 bash[24188]: audit 2024-09-17T09:10:00.069264+0000 mon.a (mon.0) 442 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:01.239 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:00 smithi134 bash[24188]: audit 2024-09-17T09:10:00.079363+0000 mon.a (mon.0) 443 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:01.239 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:00 smithi134 bash[24188]: audit 2024-09-17T09:10:00.081295+0000 mon.a (mon.0) 444 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:10:01.239 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:00 smithi134 bash[24188]: audit 2024-09-17T09:10:00.083005+0000 mon.a (mon.0) 445 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:10:01.240 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:00 smithi134 bash[24188]: audit 2024-09-17T09:10:00.094170+0000 mon.a (mon.0) 446 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:02.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:01 smithi098 bash[22661]: cluster 2024-09-17T09:10:00.540179+0000 mgr.a (mgr.14150) 221 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:10:02.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:01 smithi098 bash[22661]: audit 2024-09-17T09:10:01.513964+0000 mon.a (mon.0) 447 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-17T09:10:02.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:01 smithi098 bash[22661]: audit 2024-09-17T09:10:01.514647+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.134:6808/361081964,v1:172.21.15.134:6809/361081964]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-17T09:10:02.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:01 smithi165 bash[24863]: cluster 2024-09-17T09:10:00.540179+0000 mgr.a (mgr.14150) 221 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:10:02.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:01 smithi165 bash[24863]: audit 2024-09-17T09:10:01.513964+0000 mon.a (mon.0) 447 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-17T09:10:02.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:01 smithi165 bash[24863]: audit 2024-09-17T09:10:01.514647+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.134:6808/361081964,v1:172.21.15.134:6809/361081964]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-17T09:10:02.296 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:01 smithi134 bash[24188]: cluster 2024-09-17T09:10:00.540179+0000 mgr.a (mgr.14150) 221 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:10:02.296 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:01 smithi134 bash[24188]: audit 2024-09-17T09:10:01.513964+0000 mon.a (mon.0) 447 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-17T09:10:02.296 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:01 smithi134 bash[24188]: audit 2024-09-17T09:10:01.514647+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.134:6808/361081964,v1:172.21.15.134:6809/361081964]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-17T09:10:03.296 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:03 smithi134 bash[24188]: audit 2024-09-17T09:10:02.101331+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"]}]': finished 2024-09-17T09:10:03.296 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:03 smithi134 bash[24188]: cluster 2024-09-17T09:10:02.101455+0000 mon.a (mon.0) 449 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-09-17T09:10:03.296 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:03 smithi134 bash[24188]: audit 2024-09-17T09:10:02.101728+0000 mon.a (mon.0) 450 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T09:10:03.296 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:03 smithi134 bash[24188]: audit 2024-09-17T09:10:02.103967+0000 mon.a (mon.0) 451 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi134", "root=default"]}]: dispatch 2024-09-17T09:10:03.296 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:03 smithi134 bash[24188]: audit 2024-09-17T09:10:02.104717+0000 mon.b (mon.2) 16 : audit [INF] from='osd.3 [v2:172.21.15.134:6808/361081964,v1:172.21.15.134:6809/361081964]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi134", "root=default"]}]: dispatch 2024-09-17T09:10:03.296 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:03 smithi134 bash[24188]: cluster 2024-09-17T09:10:02.540728+0000 mgr.a (mgr.14150) 222 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:10:03.360 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:03 smithi098 bash[22661]: audit 2024-09-17T09:10:02.101331+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"]}]': finished 2024-09-17T09:10:03.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:03 smithi098 bash[22661]: cluster 2024-09-17T09:10:02.101455+0000 mon.a (mon.0) 449 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-09-17T09:10:03.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:03 smithi098 bash[22661]: audit 2024-09-17T09:10:02.101728+0000 mon.a (mon.0) 450 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T09:10:03.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:03 smithi098 bash[22661]: audit 2024-09-17T09:10:02.103967+0000 mon.a (mon.0) 451 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi134", "root=default"]}]: dispatch 2024-09-17T09:10:03.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:03 smithi098 bash[22661]: audit 2024-09-17T09:10:02.104717+0000 mon.b (mon.2) 16 : audit [INF] from='osd.3 [v2:172.21.15.134:6808/361081964,v1:172.21.15.134:6809/361081964]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi134", "root=default"]}]: dispatch 2024-09-17T09:10:03.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:03 smithi098 bash[22661]: cluster 2024-09-17T09:10:02.540728+0000 mgr.a (mgr.14150) 222 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:10:03.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:03 smithi165 bash[24863]: audit 2024-09-17T09:10:02.101331+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"]}]': finished 2024-09-17T09:10:03.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:03 smithi165 bash[24863]: cluster 2024-09-17T09:10:02.101455+0000 mon.a (mon.0) 449 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-09-17T09:10:03.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:03 smithi165 bash[24863]: audit 2024-09-17T09:10:02.101728+0000 mon.a (mon.0) 450 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T09:10:03.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:03 smithi165 bash[24863]: audit 2024-09-17T09:10:02.103967+0000 mon.a (mon.0) 451 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi134", "root=default"]}]: dispatch 2024-09-17T09:10:03.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:03 smithi165 bash[24863]: audit 2024-09-17T09:10:02.104717+0000 mon.b (mon.2) 16 : audit [INF] from='osd.3 [v2:172.21.15.134:6808/361081964,v1:172.21.15.134:6809/361081964]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi134", "root=default"]}]: dispatch 2024-09-17T09:10:03.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:03 smithi165 bash[24863]: cluster 2024-09-17T09:10:02.540728+0000 mgr.a (mgr.14150) 222 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T09:10:04.002 INFO:teuthology.orchestra.run.smithi134.stdout:Created osd(s) 3 on host 'smithi134' 2024-09-17T09:10:04.296 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:04 smithi134 bash[24188]: audit 2024-09-17T09:10:03.104580+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=smithi134", "root=default"]}]': finished 2024-09-17T09:10:04.296 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:04 smithi134 bash[24188]: cluster 2024-09-17T09:10:03.104834+0000 mon.a (mon.0) 453 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-09-17T09:10:04.296 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:04 smithi134 bash[24188]: audit 2024-09-17T09:10:03.105606+0000 mon.a (mon.0) 454 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T09:10:04.296 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:04 smithi134 bash[24188]: audit 2024-09-17T09:10:03.112922+0000 mon.a (mon.0) 455 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T09:10:04.296 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:04 smithi134 bash[24188]: audit 2024-09-17T09:10:03.615036+0000 mon.a (mon.0) 456 : audit [INF] from='osd.3 ' entity='osd.3' 2024-09-17T09:10:04.296 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:04 smithi134 bash[24188]: audit 2024-09-17T09:10:03.980598+0000 mon.a (mon.0) 457 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:10:04.296 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:04 smithi134 bash[24188]: audit 2024-09-17T09:10:03.987847+0000 mon.a (mon.0) 458 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:04.297 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:04 smithi134 bash[24188]: audit 2024-09-17T09:10:03.996047+0000 mon.a (mon.0) 459 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:04.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:04 smithi165 bash[24863]: audit 2024-09-17T09:10:03.104580+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=smithi134", "root=default"]}]': finished 2024-09-17T09:10:04.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:04 smithi165 bash[24863]: cluster 2024-09-17T09:10:03.104834+0000 mon.a (mon.0) 453 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-09-17T09:10:04.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:04 smithi165 bash[24863]: audit 2024-09-17T09:10:03.105606+0000 mon.a (mon.0) 454 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T09:10:04.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:04 smithi165 bash[24863]: audit 2024-09-17T09:10:03.112922+0000 mon.a (mon.0) 455 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T09:10:04.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:04 smithi165 bash[24863]: audit 2024-09-17T09:10:03.615036+0000 mon.a (mon.0) 456 : audit [INF] from='osd.3 ' entity='osd.3' 2024-09-17T09:10:04.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:04 smithi165 bash[24863]: audit 2024-09-17T09:10:03.980598+0000 mon.a (mon.0) 457 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:10:04.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:04 smithi165 bash[24863]: audit 2024-09-17T09:10:03.987847+0000 mon.a (mon.0) 458 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:04.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:04 smithi165 bash[24863]: audit 2024-09-17T09:10:03.996047+0000 mon.a (mon.0) 459 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:04.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:04 smithi098 bash[22661]: audit 2024-09-17T09:10:03.104580+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=smithi134", "root=default"]}]': finished 2024-09-17T09:10:04.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:04 smithi098 bash[22661]: cluster 2024-09-17T09:10:03.104834+0000 mon.a (mon.0) 453 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-09-17T09:10:04.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:04 smithi098 bash[22661]: audit 2024-09-17T09:10:03.105606+0000 mon.a (mon.0) 454 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T09:10:04.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:04 smithi098 bash[22661]: audit 2024-09-17T09:10:03.112922+0000 mon.a (mon.0) 455 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T09:10:04.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:04 smithi098 bash[22661]: audit 2024-09-17T09:10:03.615036+0000 mon.a (mon.0) 456 : audit [INF] from='osd.3 ' entity='osd.3' 2024-09-17T09:10:04.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:04 smithi098 bash[22661]: audit 2024-09-17T09:10:03.980598+0000 mon.a (mon.0) 457 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:10:04.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:04 smithi098 bash[22661]: audit 2024-09-17T09:10:03.987847+0000 mon.a (mon.0) 458 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:04.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:04 smithi098 bash[22661]: audit 2024-09-17T09:10:03.996047+0000 mon.a (mon.0) 459 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:04.646 DEBUG:teuthology.orchestra.run.smithi134:osd.3> sudo journalctl -f -n 0 -u ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@osd.3.service 2024-09-17T09:10:04.649 INFO:tasks.cephadm:Deploying osd.4 on smithi165 with /dev/vg_nvme/lv_4... 2024-09-17T09:10:04.649 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-09-17T09:10:05.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:05 smithi165 bash[24863]: cluster 2024-09-17T09:10:02.482059+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-17T09:10:05.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:05 smithi165 bash[24863]: cluster 2024-09-17T09:10:02.482172+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-17T09:10:05.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:05 smithi165 bash[24863]: cluster 2024-09-17T09:10:04.107935+0000 mon.a (mon.0) 460 : cluster [INF] osd.3 [v2:172.21.15.134:6808/361081964,v1:172.21.15.134:6809/361081964] boot 2024-09-17T09:10:05.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:05 smithi165 bash[24863]: cluster 2024-09-17T09:10:04.108083+0000 mon.a (mon.0) 461 : cluster [DBG] osdmap e25: 4 total, 4 up, 4 in 2024-09-17T09:10:05.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:05 smithi165 bash[24863]: audit 2024-09-17T09:10:04.108613+0000 mon.a (mon.0) 462 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T09:10:05.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:05 smithi165 bash[24863]: cluster 2024-09-17T09:10:04.541291+0000 mgr.a (mgr.14150) 223 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 516 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:05.384 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:05 smithi165 bash[24863]: cluster 2024-09-17T09:10:05.109957+0000 mon.a (mon.0) 463 : cluster [DBG] osdmap e26: 4 total, 4 up, 4 in 2024-09-17T09:10:05.546 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:05 smithi134 bash[24188]: cluster 2024-09-17T09:10:02.482059+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-17T09:10:05.546 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:05 smithi134 bash[24188]: cluster 2024-09-17T09:10:02.482172+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-17T09:10:05.546 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:05 smithi134 bash[24188]: cluster 2024-09-17T09:10:04.107935+0000 mon.a (mon.0) 460 : cluster [INF] osd.3 [v2:172.21.15.134:6808/361081964,v1:172.21.15.134:6809/361081964] boot 2024-09-17T09:10:05.546 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:05 smithi134 bash[24188]: cluster 2024-09-17T09:10:04.108083+0000 mon.a (mon.0) 461 : cluster [DBG] osdmap e25: 4 total, 4 up, 4 in 2024-09-17T09:10:05.546 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:05 smithi134 bash[24188]: audit 2024-09-17T09:10:04.108613+0000 mon.a (mon.0) 462 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T09:10:05.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:05 smithi134 bash[24188]: cluster 2024-09-17T09:10:04.541291+0000 mgr.a (mgr.14150) 223 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 516 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:05.547 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:05 smithi134 bash[24188]: cluster 2024-09-17T09:10:05.109957+0000 mon.a (mon.0) 463 : cluster [DBG] osdmap e26: 4 total, 4 up, 4 in 2024-09-17T09:10:05.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:05 smithi098 bash[22661]: cluster 2024-09-17T09:10:02.482059+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-17T09:10:05.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:05 smithi098 bash[22661]: cluster 2024-09-17T09:10:02.482172+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-17T09:10:05.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:05 smithi098 bash[22661]: cluster 2024-09-17T09:10:04.107935+0000 mon.a (mon.0) 460 : cluster [INF] osd.3 [v2:172.21.15.134:6808/361081964,v1:172.21.15.134:6809/361081964] boot 2024-09-17T09:10:05.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:05 smithi098 bash[22661]: cluster 2024-09-17T09:10:04.108083+0000 mon.a (mon.0) 461 : cluster [DBG] osdmap e25: 4 total, 4 up, 4 in 2024-09-17T09:10:05.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:05 smithi098 bash[22661]: audit 2024-09-17T09:10:04.108613+0000 mon.a (mon.0) 462 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T09:10:05.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:05 smithi098 bash[22661]: cluster 2024-09-17T09:10:04.541291+0000 mgr.a (mgr.14150) 223 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 516 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:05.611 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:05 smithi098 bash[22661]: cluster 2024-09-17T09:10:05.109957+0000 mon.a (mon.0) 463 : cluster [DBG] osdmap e26: 4 total, 4 up, 4 in 2024-09-17T09:10:07.360 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:07 smithi098 bash[22661]: cluster 2024-09-17T09:10:06.112033+0000 mon.a (mon.0) 464 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-09-17T09:10:07.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:07 smithi098 bash[22661]: cluster 2024-09-17T09:10:06.272892+0000 mon.a (mon.0) 465 : cluster [DBG] osdmap e28: 4 total, 4 up, 4 in 2024-09-17T09:10:07.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:07 smithi098 bash[22661]: cluster 2024-09-17T09:10:06.541866+0000 mgr.a (mgr.14150) 224 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 516 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:07.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:07 smithi165 bash[24863]: cluster 2024-09-17T09:10:06.112033+0000 mon.a (mon.0) 464 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-09-17T09:10:07.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:07 smithi165 bash[24863]: cluster 2024-09-17T09:10:06.272892+0000 mon.a (mon.0) 465 : cluster [DBG] osdmap e28: 4 total, 4 up, 4 in 2024-09-17T09:10:07.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:07 smithi165 bash[24863]: cluster 2024-09-17T09:10:06.541866+0000 mgr.a (mgr.14150) 224 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 516 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:07.546 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:07 smithi134 bash[24188]: cluster 2024-09-17T09:10:06.112033+0000 mon.a (mon.0) 464 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-09-17T09:10:07.546 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:07 smithi134 bash[24188]: cluster 2024-09-17T09:10:06.272892+0000 mon.a (mon.0) 465 : cluster [DBG] osdmap e28: 4 total, 4 up, 4 in 2024-09-17T09:10:07.546 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:07 smithi134 bash[24188]: cluster 2024-09-17T09:10:06.541866+0000 mgr.a (mgr.14150) 224 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 516 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:08.309 INFO:teuthology.orchestra.run.smithi165.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.c/config 2024-09-17T09:10:08.546 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:08 smithi134 bash[24188]: cluster 2024-09-17T09:10:07.278714+0000 mon.a (mon.0) 466 : cluster [DBG] osdmap e29: 4 total, 4 up, 4 in 2024-09-17T09:10:08.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:08 smithi098 bash[22661]: cluster 2024-09-17T09:10:07.278714+0000 mon.a (mon.0) 466 : cluster [DBG] osdmap e29: 4 total, 4 up, 4 in 2024-09-17T09:10:08.633 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:08 smithi165 bash[24863]: cluster 2024-09-17T09:10:07.278714+0000 mon.a (mon.0) 466 : cluster [DBG] osdmap e29: 4 total, 4 up, 4 in 2024-09-17T09:10:09.530 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:09 smithi165 bash[24863]: cluster 2024-09-17T09:10:08.542407+0000 mgr.a (mgr.14150) 225 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 516 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:09.545 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:09 smithi134 bash[24188]: cluster 2024-09-17T09:10:08.542407+0000 mgr.a (mgr.14150) 225 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 516 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:09.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:09 smithi098 bash[22661]: cluster 2024-09-17T09:10:08.542407+0000 mgr.a (mgr.14150) 225 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 516 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:11.029 INFO:teuthology.orchestra.run.smithi165.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-09-17T09:10:11.189 INFO:teuthology.orchestra.run.smithi165.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-09-17T09:10:11.204 INFO:teuthology.orchestra.run.smithi165.stderr: stderr: 10+0 records in 2024-09-17T09:10:11.204 INFO:teuthology.orchestra.run.smithi165.stderr:10+0 records out 2024-09-17T09:10:11.204 INFO:teuthology.orchestra.run.smithi165.stderr:10485760 bytes (10 MB, 10 MiB) copied, 0.013453 s, 779 MB/s 2024-09-17T09:10:11.204 INFO:teuthology.orchestra.run.smithi165.stderr: stderr: 2024-09-17T09:10:11.205 INFO:teuthology.orchestra.run.smithi165.stderr:--> Zapping successful for: 2024-09-17T09:10:11.781 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi165:vg_nvme/lv_4 2024-09-17T09:10:11.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:11 smithi098 bash[22661]: cluster 2024-09-17T09:10:10.542957+0000 mgr.a (mgr.14150) 226 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail; 106 KiB/s, 0 objects/s recovering 2024-09-17T09:10:11.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:11 smithi165 bash[24863]: cluster 2024-09-17T09:10:10.542957+0000 mgr.a (mgr.14150) 226 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail; 106 KiB/s, 0 objects/s recovering 2024-09-17T09:10:12.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:11 smithi134 bash[24188]: cluster 2024-09-17T09:10:10.542957+0000 mgr.a (mgr.14150) 226 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail; 106 KiB/s, 0 objects/s recovering 2024-09-17T09:10:13.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:13 smithi098 bash[22661]: cluster 2024-09-17T09:10:12.543567+0000 mgr.a (mgr.14150) 227 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 90 KiB/s, 0 objects/s recovering 2024-09-17T09:10:13.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:13 smithi098 bash[22661]: audit 2024-09-17T09:10:13.578673+0000 mon.a (mon.0) 467 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:13.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:13 smithi098 bash[22661]: audit 2024-09-17T09:10:13.589194+0000 mon.a (mon.0) 468 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:13.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:13 smithi098 bash[22661]: audit 2024-09-17T09:10:13.591145+0000 mon.a (mon.0) 469 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:10:13.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:13 smithi098 bash[22661]: audit 2024-09-17T09:10:13.592892+0000 mon.a (mon.0) 470 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:10:13.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:13 smithi165 bash[24863]: cluster 2024-09-17T09:10:12.543567+0000 mgr.a (mgr.14150) 227 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 90 KiB/s, 0 objects/s recovering 2024-09-17T09:10:13.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:13 smithi165 bash[24863]: audit 2024-09-17T09:10:13.578673+0000 mon.a (mon.0) 467 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:13.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:13 smithi165 bash[24863]: audit 2024-09-17T09:10:13.589194+0000 mon.a (mon.0) 468 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:13.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:13 smithi165 bash[24863]: audit 2024-09-17T09:10:13.591145+0000 mon.a (mon.0) 469 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:10:13.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:13 smithi165 bash[24863]: audit 2024-09-17T09:10:13.592892+0000 mon.a (mon.0) 470 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:10:14.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:13 smithi134 bash[24188]: cluster 2024-09-17T09:10:12.543567+0000 mgr.a (mgr.14150) 227 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 90 KiB/s, 0 objects/s recovering 2024-09-17T09:10:14.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:13 smithi134 bash[24188]: audit 2024-09-17T09:10:13.578673+0000 mon.a (mon.0) 467 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:14.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:13 smithi134 bash[24188]: audit 2024-09-17T09:10:13.589194+0000 mon.a (mon.0) 468 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:14.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:13 smithi134 bash[24188]: audit 2024-09-17T09:10:13.591145+0000 mon.a (mon.0) 469 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:10:14.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:13 smithi134 bash[24188]: audit 2024-09-17T09:10:13.592892+0000 mon.a (mon.0) 470 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:10:14.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:14 smithi098 bash[22661]: cephadm 2024-09-17T09:10:13.570007+0000 mgr.a (mgr.14150) 228 : cephadm [INF] Detected new or changed devices on smithi134 2024-09-17T09:10:14.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:14 smithi098 bash[22661]: cephadm 2024-09-17T09:10:13.594089+0000 mgr.a (mgr.14150) 229 : cephadm [INF] Adjusting osd_memory_target on smithi134 to 8632M 2024-09-17T09:10:14.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:14 smithi098 bash[22661]: audit 2024-09-17T09:10:13.603630+0000 mon.a (mon.0) 471 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:14.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:14 smithi098 bash[22661]: audit 2024-09-17T09:10:13.605873+0000 mon.a (mon.0) 472 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:10:14.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:14 smithi098 bash[22661]: audit 2024-09-17T09:10:13.613129+0000 mon.a (mon.0) 473 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:10:14.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:14 smithi098 bash[22661]: audit 2024-09-17T09:10:13.624590+0000 mon.a (mon.0) 474 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:14.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:14 smithi165 bash[24863]: cephadm 2024-09-17T09:10:13.570007+0000 mgr.a (mgr.14150) 228 : cephadm [INF] Detected new or changed devices on smithi134 2024-09-17T09:10:14.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:14 smithi165 bash[24863]: cephadm 2024-09-17T09:10:13.594089+0000 mgr.a (mgr.14150) 229 : cephadm [INF] Adjusting osd_memory_target on smithi134 to 8632M 2024-09-17T09:10:14.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:14 smithi165 bash[24863]: audit 2024-09-17T09:10:13.603630+0000 mon.a (mon.0) 471 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:14.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:14 smithi165 bash[24863]: audit 2024-09-17T09:10:13.605873+0000 mon.a (mon.0) 472 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:10:14.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:14 smithi165 bash[24863]: audit 2024-09-17T09:10:13.613129+0000 mon.a (mon.0) 473 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:10:14.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:14 smithi165 bash[24863]: audit 2024-09-17T09:10:13.624590+0000 mon.a (mon.0) 474 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:15.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:14 smithi134 bash[24188]: cephadm 2024-09-17T09:10:13.570007+0000 mgr.a (mgr.14150) 228 : cephadm [INF] Detected new or changed devices on smithi134 2024-09-17T09:10:15.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:14 smithi134 bash[24188]: cephadm 2024-09-17T09:10:13.594089+0000 mgr.a (mgr.14150) 229 : cephadm [INF] Adjusting osd_memory_target on smithi134 to 8632M 2024-09-17T09:10:15.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:14 smithi134 bash[24188]: audit 2024-09-17T09:10:13.603630+0000 mon.a (mon.0) 471 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:15.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:14 smithi134 bash[24188]: audit 2024-09-17T09:10:13.605873+0000 mon.a (mon.0) 472 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:10:15.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:14 smithi134 bash[24188]: audit 2024-09-17T09:10:13.613129+0000 mon.a (mon.0) 473 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:10:15.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:14 smithi134 bash[24188]: audit 2024-09-17T09:10:13.624590+0000 mon.a (mon.0) 474 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:15.437 INFO:teuthology.orchestra.run.smithi165.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.c/config 2024-09-17T09:10:15.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:15 smithi165 bash[24863]: cluster 2024-09-17T09:10:14.544168+0000 mgr.a (mgr.14150) 230 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 70 KiB/s, 0 objects/s recovering 2024-09-17T09:10:16.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:15 smithi134 bash[24188]: cluster 2024-09-17T09:10:14.544168+0000 mgr.a (mgr.14150) 230 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 70 KiB/s, 0 objects/s recovering 2024-09-17T09:10:16.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:15 smithi098 bash[22661]: cluster 2024-09-17T09:10:14.544168+0000 mgr.a (mgr.14150) 230 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 70 KiB/s, 0 objects/s recovering 2024-09-17T09:10:17.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:17 smithi165 bash[24863]: cluster 2024-09-17T09:10:16.544705+0000 mgr.a (mgr.14150) 231 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-17T09:10:18.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:17 smithi134 bash[24188]: cluster 2024-09-17T09:10:16.544705+0000 mgr.a (mgr.14150) 231 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-17T09:10:18.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:17 smithi098 bash[22661]: cluster 2024-09-17T09:10:16.544705+0000 mgr.a (mgr.14150) 231 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-17T09:10:19.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:18 smithi134 bash[24188]: audit 2024-09-17T09:10:18.028816+0000 mon.a (mon.0) 475 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T09:10:19.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:18 smithi134 bash[24188]: audit 2024-09-17T09:10:18.034664+0000 mon.a (mon.0) 476 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T09:10:19.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:18 smithi134 bash[24188]: audit 2024-09-17T09:10:18.036332+0000 mon.a (mon.0) 477 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:10:19.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:18 smithi098 bash[22661]: audit 2024-09-17T09:10:18.028816+0000 mon.a (mon.0) 475 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T09:10:19.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:18 smithi098 bash[22661]: audit 2024-09-17T09:10:18.034664+0000 mon.a (mon.0) 476 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T09:10:19.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:18 smithi098 bash[22661]: audit 2024-09-17T09:10:18.036332+0000 mon.a (mon.0) 477 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:10:19.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:18 smithi165 bash[24863]: audit 2024-09-17T09:10:18.028816+0000 mon.a (mon.0) 475 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T09:10:19.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:18 smithi165 bash[24863]: audit 2024-09-17T09:10:18.034664+0000 mon.a (mon.0) 476 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T09:10:19.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:18 smithi165 bash[24863]: audit 2024-09-17T09:10:18.036332+0000 mon.a (mon.0) 477 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:10:20.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:19 smithi134 bash[24188]: audit 2024-09-17T09:10:18.022262+0000 mgr.a (mgr.14150) 232 : audit [DBG] from='client.24193 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi165:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:10:20.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:19 smithi134 bash[24188]: cluster 2024-09-17T09:10:18.545225+0000 mgr.a (mgr.14150) 233 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 51 KiB/s, 0 objects/s recovering 2024-09-17T09:10:20.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:19 smithi098 bash[22661]: audit 2024-09-17T09:10:18.022262+0000 mgr.a (mgr.14150) 232 : audit [DBG] from='client.24193 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi165:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:10:20.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:19 smithi098 bash[22661]: cluster 2024-09-17T09:10:18.545225+0000 mgr.a (mgr.14150) 233 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 51 KiB/s, 0 objects/s recovering 2024-09-17T09:10:20.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:19 smithi165 bash[24863]: audit 2024-09-17T09:10:18.022262+0000 mgr.a (mgr.14150) 232 : audit [DBG] from='client.24193 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi165:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:10:20.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:19 smithi165 bash[24863]: cluster 2024-09-17T09:10:18.545225+0000 mgr.a (mgr.14150) 233 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 51 KiB/s, 0 objects/s recovering 2024-09-17T09:10:22.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:21 smithi134 bash[24188]: cluster 2024-09-17T09:10:20.545769+0000 mgr.a (mgr.14150) 234 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-17T09:10:22.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:21 smithi098 bash[22661]: cluster 2024-09-17T09:10:20.545769+0000 mgr.a (mgr.14150) 234 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-17T09:10:22.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:21 smithi165 bash[24863]: cluster 2024-09-17T09:10:20.545769+0000 mgr.a (mgr.14150) 234 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-17T09:10:24.027 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:23 smithi165 bash[24863]: cluster 2024-09-17T09:10:22.546313+0000 mgr.a (mgr.14150) 235 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:24.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:23 smithi134 bash[24188]: cluster 2024-09-17T09:10:22.546313+0000 mgr.a (mgr.14150) 235 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:24.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:23 smithi098 bash[22661]: cluster 2024-09-17T09:10:22.546313+0000 mgr.a (mgr.14150) 235 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:26.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:25 smithi134 bash[24188]: cluster 2024-09-17T09:10:24.546858+0000 mgr.a (mgr.14150) 236 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:26.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:25 smithi098 bash[22661]: cluster 2024-09-17T09:10:24.546858+0000 mgr.a (mgr.14150) 236 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:26.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:25 smithi165 bash[24863]: cluster 2024-09-17T09:10:24.546858+0000 mgr.a (mgr.14150) 236 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:27.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:26 smithi134 bash[24188]: audit 2024-09-17T09:10:26.001896+0000 mon.c (mon.1) 6 : audit [INF] from='client.? 172.21.15.165:0/382282305' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "48a02c26-f9cf-4ce3-860f-f6045884bf65"}]: dispatch 2024-09-17T09:10:27.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:26 smithi134 bash[24188]: audit 2024-09-17T09:10:26.002298+0000 mon.a (mon.0) 478 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "48a02c26-f9cf-4ce3-860f-f6045884bf65"}]: dispatch 2024-09-17T09:10:27.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:26 smithi134 bash[24188]: audit 2024-09-17T09:10:26.013693+0000 mon.a (mon.0) 479 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "48a02c26-f9cf-4ce3-860f-f6045884bf65"}]': finished 2024-09-17T09:10:27.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:26 smithi134 bash[24188]: cluster 2024-09-17T09:10:26.013809+0000 mon.a (mon.0) 480 : cluster [DBG] osdmap e30: 5 total, 4 up, 5 in 2024-09-17T09:10:27.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:26 smithi134 bash[24188]: audit 2024-09-17T09:10:26.014073+0000 mon.a (mon.0) 481 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T09:10:27.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:26 smithi098 bash[22661]: audit 2024-09-17T09:10:26.001896+0000 mon.c (mon.1) 6 : audit [INF] from='client.? 172.21.15.165:0/382282305' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "48a02c26-f9cf-4ce3-860f-f6045884bf65"}]: dispatch 2024-09-17T09:10:27.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:26 smithi098 bash[22661]: audit 2024-09-17T09:10:26.002298+0000 mon.a (mon.0) 478 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "48a02c26-f9cf-4ce3-860f-f6045884bf65"}]: dispatch 2024-09-17T09:10:27.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:26 smithi098 bash[22661]: audit 2024-09-17T09:10:26.013693+0000 mon.a (mon.0) 479 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "48a02c26-f9cf-4ce3-860f-f6045884bf65"}]': finished 2024-09-17T09:10:27.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:26 smithi098 bash[22661]: cluster 2024-09-17T09:10:26.013809+0000 mon.a (mon.0) 480 : cluster [DBG] osdmap e30: 5 total, 4 up, 5 in 2024-09-17T09:10:27.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:26 smithi098 bash[22661]: audit 2024-09-17T09:10:26.014073+0000 mon.a (mon.0) 481 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T09:10:27.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:26 smithi165 bash[24863]: audit 2024-09-17T09:10:26.001896+0000 mon.c (mon.1) 6 : audit [INF] from='client.? 172.21.15.165:0/382282305' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "48a02c26-f9cf-4ce3-860f-f6045884bf65"}]: dispatch 2024-09-17T09:10:27.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:26 smithi165 bash[24863]: audit 2024-09-17T09:10:26.002298+0000 mon.a (mon.0) 478 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "48a02c26-f9cf-4ce3-860f-f6045884bf65"}]: dispatch 2024-09-17T09:10:27.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:26 smithi165 bash[24863]: audit 2024-09-17T09:10:26.013693+0000 mon.a (mon.0) 479 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "48a02c26-f9cf-4ce3-860f-f6045884bf65"}]': finished 2024-09-17T09:10:27.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:26 smithi165 bash[24863]: cluster 2024-09-17T09:10:26.013809+0000 mon.a (mon.0) 480 : cluster [DBG] osdmap e30: 5 total, 4 up, 5 in 2024-09-17T09:10:27.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:26 smithi165 bash[24863]: audit 2024-09-17T09:10:26.014073+0000 mon.a (mon.0) 481 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T09:10:28.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:27 smithi134 bash[24188]: cluster 2024-09-17T09:10:26.547399+0000 mgr.a (mgr.14150) 237 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:28.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:27 smithi134 bash[24188]: audit 2024-09-17T09:10:26.674747+0000 mon.c (mon.1) 7 : audit [DBG] from='client.? 172.21.15.165:0/49092031' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T09:10:28.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:27 smithi098 bash[22661]: cluster 2024-09-17T09:10:26.547399+0000 mgr.a (mgr.14150) 237 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:28.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:27 smithi098 bash[22661]: audit 2024-09-17T09:10:26.674747+0000 mon.c (mon.1) 7 : audit [DBG] from='client.? 172.21.15.165:0/49092031' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T09:10:28.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:27 smithi165 bash[24863]: cluster 2024-09-17T09:10:26.547399+0000 mgr.a (mgr.14150) 237 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:28.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:27 smithi165 bash[24863]: audit 2024-09-17T09:10:26.674747+0000 mon.c (mon.1) 7 : audit [DBG] from='client.? 172.21.15.165:0/49092031' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T09:10:30.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:29 smithi134 bash[24188]: cluster 2024-09-17T09:10:28.547910+0000 mgr.a (mgr.14150) 238 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:30.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:29 smithi098 bash[22661]: cluster 2024-09-17T09:10:28.547910+0000 mgr.a (mgr.14150) 238 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:30.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:29 smithi165 bash[24863]: cluster 2024-09-17T09:10:28.547910+0000 mgr.a (mgr.14150) 238 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:32.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:31 smithi134 bash[24188]: cluster 2024-09-17T09:10:30.548463+0000 mgr.a (mgr.14150) 239 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:32.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:31 smithi098 bash[22661]: cluster 2024-09-17T09:10:30.548463+0000 mgr.a (mgr.14150) 239 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:32.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:31 smithi165 bash[24863]: cluster 2024-09-17T09:10:30.548463+0000 mgr.a (mgr.14150) 239 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:34.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:33 smithi134 bash[24188]: cluster 2024-09-17T09:10:32.548989+0000 mgr.a (mgr.14150) 240 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:34.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:33 smithi098 bash[22661]: cluster 2024-09-17T09:10:32.548989+0000 mgr.a (mgr.14150) 240 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:34.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:33 smithi165 bash[24863]: cluster 2024-09-17T09:10:32.548989+0000 mgr.a (mgr.14150) 240 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:35.791 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:35 smithi165 bash[24863]: cluster 2024-09-17T09:10:34.549523+0000 mgr.a (mgr.14150) 241 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:36.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:35 smithi134 bash[24188]: cluster 2024-09-17T09:10:34.549523+0000 mgr.a (mgr.14150) 241 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:36.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:35 smithi098 bash[22661]: cluster 2024-09-17T09:10:34.549523+0000 mgr.a (mgr.14150) 241 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:38.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:37 smithi134 bash[24188]: cluster 2024-09-17T09:10:36.550075+0000 mgr.a (mgr.14150) 242 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:38.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:37 smithi098 bash[22661]: cluster 2024-09-17T09:10:36.550075+0000 mgr.a (mgr.14150) 242 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:38.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:37 smithi165 bash[24863]: cluster 2024-09-17T09:10:36.550075+0000 mgr.a (mgr.14150) 242 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:39.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:38 smithi134 bash[24188]: audit 2024-09-17T09:10:37.956275+0000 mon.a (mon.0) 482 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-17T09:10:39.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:38 smithi134 bash[24188]: audit 2024-09-17T09:10:37.958152+0000 mon.a (mon.0) 483 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:10:39.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:38 smithi098 bash[22661]: audit 2024-09-17T09:10:37.956275+0000 mon.a (mon.0) 482 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-17T09:10:39.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:38 smithi098 bash[22661]: audit 2024-09-17T09:10:37.958152+0000 mon.a (mon.0) 483 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:10:39.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:38 smithi165 bash[24863]: audit 2024-09-17T09:10:37.956275+0000 mon.a (mon.0) 482 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-17T09:10:39.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:38 smithi165 bash[24863]: audit 2024-09-17T09:10:37.958152+0000 mon.a (mon.0) 483 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:10:39.882 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:39 smithi165 bash[24863]: cephadm 2024-09-17T09:10:37.959632+0000 mgr.a (mgr.14150) 243 : cephadm [INF] Deploying daemon osd.4 on smithi165 2024-09-17T09:10:39.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:39 smithi165 bash[24863]: cluster 2024-09-17T09:10:38.550629+0000 mgr.a (mgr.14150) 244 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:40.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:39 smithi134 bash[24188]: cephadm 2024-09-17T09:10:37.959632+0000 mgr.a (mgr.14150) 243 : cephadm [INF] Deploying daemon osd.4 on smithi165 2024-09-17T09:10:40.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:39 smithi134 bash[24188]: cluster 2024-09-17T09:10:38.550629+0000 mgr.a (mgr.14150) 244 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:40.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:39 smithi098 bash[22661]: cephadm 2024-09-17T09:10:37.959632+0000 mgr.a (mgr.14150) 243 : cephadm [INF] Deploying daemon osd.4 on smithi165 2024-09-17T09:10:40.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:39 smithi098 bash[22661]: cluster 2024-09-17T09:10:38.550629+0000 mgr.a (mgr.14150) 244 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:41.935 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:41 smithi165 bash[24863]: cluster 2024-09-17T09:10:40.551174+0000 mgr.a (mgr.14150) 245 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:41.935 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:41 smithi165 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:10:42.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:41 smithi134 bash[24188]: cluster 2024-09-17T09:10:40.551174+0000 mgr.a (mgr.14150) 245 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:42.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:41 smithi098 bash[22661]: cluster 2024-09-17T09:10:40.551174+0000 mgr.a (mgr.14150) 245 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:42.278 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:42 smithi165 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:10:43.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:42 smithi134 bash[24188]: audit 2024-09-17T09:10:42.193504+0000 mon.a (mon.0) 484 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:10:43.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:42 smithi134 bash[24188]: audit 2024-09-17T09:10:42.201119+0000 mon.a (mon.0) 485 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:43.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:42 smithi134 bash[24188]: audit 2024-09-17T09:10:42.208980+0000 mon.a (mon.0) 486 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:43.093 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:42 smithi165 bash[24863]: audit 2024-09-17T09:10:42.193504+0000 mon.a (mon.0) 484 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:10:43.094 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:42 smithi165 bash[24863]: audit 2024-09-17T09:10:42.201119+0000 mon.a (mon.0) 485 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:43.094 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:42 smithi165 bash[24863]: audit 2024-09-17T09:10:42.208980+0000 mon.a (mon.0) 486 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:43.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:42 smithi098 bash[22661]: audit 2024-09-17T09:10:42.193504+0000 mon.a (mon.0) 484 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:10:43.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:42 smithi098 bash[22661]: audit 2024-09-17T09:10:42.201119+0000 mon.a (mon.0) 485 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:43.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:42 smithi098 bash[22661]: audit 2024-09-17T09:10:42.208980+0000 mon.a (mon.0) 486 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:43.757 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:43 smithi165 bash[24863]: cluster 2024-09-17T09:10:42.551730+0000 mgr.a (mgr.14150) 246 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:44.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:43 smithi134 bash[24188]: cluster 2024-09-17T09:10:42.551730+0000 mgr.a (mgr.14150) 246 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:44.113 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:43 smithi098 bash[22661]: cluster 2024-09-17T09:10:42.551730+0000 mgr.a (mgr.14150) 246 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:45.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:45 smithi165 bash[24863]: cluster 2024-09-17T09:10:44.552303+0000 mgr.a (mgr.14150) 247 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:46.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:45 smithi134 bash[24188]: cluster 2024-09-17T09:10:44.552303+0000 mgr.a (mgr.14150) 247 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:46.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:45 smithi098 bash[22661]: cluster 2024-09-17T09:10:44.552303+0000 mgr.a (mgr.14150) 247 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:48.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:47 smithi134 bash[24188]: cluster 2024-09-17T09:10:46.552849+0000 mgr.a (mgr.14150) 248 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:48.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:47 smithi134 bash[24188]: audit 2024-09-17T09:10:47.284312+0000 mon.a (mon.0) 487 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:48.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:47 smithi134 bash[24188]: audit 2024-09-17T09:10:47.292067+0000 mon.a (mon.0) 488 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:48.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:47 smithi134 bash[24188]: audit 2024-09-17T09:10:47.293919+0000 mon.a (mon.0) 489 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:10:48.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:47 smithi134 bash[24188]: audit 2024-09-17T09:10:47.295572+0000 mon.a (mon.0) 490 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:10:48.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:47 smithi134 bash[24188]: audit 2024-09-17T09:10:47.305381+0000 mon.a (mon.0) 491 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:48.065 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:47 smithi165 bash[24863]: cluster 2024-09-17T09:10:46.552849+0000 mgr.a (mgr.14150) 248 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:48.066 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:47 smithi165 bash[24863]: audit 2024-09-17T09:10:47.284312+0000 mon.a (mon.0) 487 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:48.066 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:47 smithi165 bash[24863]: audit 2024-09-17T09:10:47.292067+0000 mon.a (mon.0) 488 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:48.066 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:47 smithi165 bash[24863]: audit 2024-09-17T09:10:47.293919+0000 mon.a (mon.0) 489 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:10:48.066 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:47 smithi165 bash[24863]: audit 2024-09-17T09:10:47.295572+0000 mon.a (mon.0) 490 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:10:48.066 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:47 smithi165 bash[24863]: audit 2024-09-17T09:10:47.305381+0000 mon.a (mon.0) 491 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:48.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:47 smithi098 bash[22661]: cluster 2024-09-17T09:10:46.552849+0000 mgr.a (mgr.14150) 248 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:48.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:47 smithi098 bash[22661]: audit 2024-09-17T09:10:47.284312+0000 mon.a (mon.0) 487 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:48.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:47 smithi098 bash[22661]: audit 2024-09-17T09:10:47.292067+0000 mon.a (mon.0) 488 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:48.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:47 smithi098 bash[22661]: audit 2024-09-17T09:10:47.293919+0000 mon.a (mon.0) 489 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:10:48.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:47 smithi098 bash[22661]: audit 2024-09-17T09:10:47.295572+0000 mon.a (mon.0) 490 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:10:48.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:47 smithi098 bash[22661]: audit 2024-09-17T09:10:47.305381+0000 mon.a (mon.0) 491 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:48.960 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:48 smithi165 bash[24863]: audit 2024-09-17T09:10:48.434807+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.165:6800/946302502,v1:172.21.15.165:6801/946302502]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-17T09:10:48.961 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:48 smithi165 bash[24863]: audit 2024-09-17T09:10:48.434818+0000 mon.a (mon.0) 492 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-17T09:10:49.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:48 smithi134 bash[24188]: audit 2024-09-17T09:10:48.434807+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.165:6800/946302502,v1:172.21.15.165:6801/946302502]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-17T09:10:49.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:48 smithi134 bash[24188]: audit 2024-09-17T09:10:48.434818+0000 mon.a (mon.0) 492 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-17T09:10:49.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:48 smithi098 bash[22661]: audit 2024-09-17T09:10:48.434807+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.165:6800/946302502,v1:172.21.15.165:6801/946302502]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-17T09:10:49.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:48 smithi098 bash[22661]: audit 2024-09-17T09:10:48.434818+0000 mon.a (mon.0) 492 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-17T09:10:50.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:49 smithi134 bash[24188]: cluster 2024-09-17T09:10:48.553376+0000 mgr.a (mgr.14150) 249 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:50.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:49 smithi134 bash[24188]: audit 2024-09-17T09:10:48.718942+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"]}]': finished 2024-09-17T09:10:50.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:49 smithi134 bash[24188]: cluster 2024-09-17T09:10:48.719125+0000 mon.a (mon.0) 494 : cluster [DBG] osdmap e31: 5 total, 4 up, 5 in 2024-09-17T09:10:50.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:49 smithi134 bash[24188]: audit 2024-09-17T09:10:48.719393+0000 mon.a (mon.0) 495 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T09:10:50.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:49 smithi134 bash[24188]: audit 2024-09-17T09:10:48.722490+0000 mon.c (mon.1) 9 : audit [INF] from='osd.4 [v2:172.21.15.165:6800/946302502,v1:172.21.15.165:6801/946302502]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]: dispatch 2024-09-17T09:10:50.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:49 smithi134 bash[24188]: audit 2024-09-17T09:10:48.722717+0000 mon.a (mon.0) 496 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]: dispatch 2024-09-17T09:10:50.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:49 smithi098 bash[22661]: cluster 2024-09-17T09:10:48.553376+0000 mgr.a (mgr.14150) 249 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:50.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:49 smithi098 bash[22661]: audit 2024-09-17T09:10:48.718942+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"]}]': finished 2024-09-17T09:10:50.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:49 smithi098 bash[22661]: cluster 2024-09-17T09:10:48.719125+0000 mon.a (mon.0) 494 : cluster [DBG] osdmap e31: 5 total, 4 up, 5 in 2024-09-17T09:10:50.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:49 smithi098 bash[22661]: audit 2024-09-17T09:10:48.719393+0000 mon.a (mon.0) 495 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T09:10:50.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:49 smithi098 bash[22661]: audit 2024-09-17T09:10:48.722490+0000 mon.c (mon.1) 9 : audit [INF] from='osd.4 [v2:172.21.15.165:6800/946302502,v1:172.21.15.165:6801/946302502]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]: dispatch 2024-09-17T09:10:50.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:49 smithi098 bash[22661]: audit 2024-09-17T09:10:48.722717+0000 mon.a (mon.0) 496 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]: dispatch 2024-09-17T09:10:50.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:49 smithi165 bash[24863]: cluster 2024-09-17T09:10:48.553376+0000 mgr.a (mgr.14150) 249 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:50.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:49 smithi165 bash[24863]: audit 2024-09-17T09:10:48.718942+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"]}]': finished 2024-09-17T09:10:50.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:49 smithi165 bash[24863]: cluster 2024-09-17T09:10:48.719125+0000 mon.a (mon.0) 494 : cluster [DBG] osdmap e31: 5 total, 4 up, 5 in 2024-09-17T09:10:50.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:49 smithi165 bash[24863]: audit 2024-09-17T09:10:48.719393+0000 mon.a (mon.0) 495 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T09:10:50.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:49 smithi165 bash[24863]: audit 2024-09-17T09:10:48.722490+0000 mon.c (mon.1) 9 : audit [INF] from='osd.4 [v2:172.21.15.165:6800/946302502,v1:172.21.15.165:6801/946302502]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]: dispatch 2024-09-17T09:10:50.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:49 smithi165 bash[24863]: audit 2024-09-17T09:10:48.722717+0000 mon.a (mon.0) 496 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]: dispatch 2024-09-17T09:10:50.977 INFO:teuthology.orchestra.run.smithi165.stdout:Created osd(s) 4 on host 'smithi165' 2024-09-17T09:10:50.994 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:50 smithi165 bash[24863]: audit 2024-09-17T09:10:49.722085+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=smithi165", "root=default"]}]': finished 2024-09-17T09:10:50.994 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:50 smithi165 bash[24863]: cluster 2024-09-17T09:10:49.722218+0000 mon.a (mon.0) 498 : cluster [DBG] osdmap e32: 5 total, 4 up, 5 in 2024-09-17T09:10:50.994 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:50 smithi165 bash[24863]: audit 2024-09-17T09:10:49.722821+0000 mon.a (mon.0) 499 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T09:10:50.994 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:50 smithi165 bash[24863]: audit 2024-09-17T09:10:49.733973+0000 mon.a (mon.0) 500 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T09:10:51.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:50 smithi134 bash[24188]: audit 2024-09-17T09:10:49.722085+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=smithi165", "root=default"]}]': finished 2024-09-17T09:10:51.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:50 smithi134 bash[24188]: cluster 2024-09-17T09:10:49.722218+0000 mon.a (mon.0) 498 : cluster [DBG] osdmap e32: 5 total, 4 up, 5 in 2024-09-17T09:10:51.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:50 smithi134 bash[24188]: audit 2024-09-17T09:10:49.722821+0000 mon.a (mon.0) 499 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T09:10:51.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:50 smithi134 bash[24188]: audit 2024-09-17T09:10:49.733973+0000 mon.a (mon.0) 500 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T09:10:51.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:50 smithi098 bash[22661]: audit 2024-09-17T09:10:49.722085+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=smithi165", "root=default"]}]': finished 2024-09-17T09:10:51.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:50 smithi098 bash[22661]: cluster 2024-09-17T09:10:49.722218+0000 mon.a (mon.0) 498 : cluster [DBG] osdmap e32: 5 total, 4 up, 5 in 2024-09-17T09:10:51.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:50 smithi098 bash[22661]: audit 2024-09-17T09:10:49.722821+0000 mon.a (mon.0) 499 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T09:10:51.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:50 smithi098 bash[22661]: audit 2024-09-17T09:10:49.733973+0000 mon.a (mon.0) 500 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T09:10:51.575 DEBUG:teuthology.orchestra.run.smithi165:osd.4> sudo journalctl -f -n 0 -u ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@osd.4.service 2024-09-17T09:10:51.577 INFO:tasks.cephadm:Deploying osd.5 on smithi165 with /dev/vg_nvme/lv_3... 2024-09-17T09:10:51.577 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-09-17T09:10:51.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:51 smithi165 bash[24863]: cluster 2024-09-17T09:10:49.406835+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-17T09:10:51.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:51 smithi165 bash[24863]: cluster 2024-09-17T09:10:49.406909+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-17T09:10:51.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:51 smithi165 bash[24863]: cluster 2024-09-17T09:10:50.553877+0000 mgr.a (mgr.14150) 250 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:51.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:51 smithi165 bash[24863]: audit 2024-09-17T09:10:50.733890+0000 mon.a (mon.0) 501 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T09:10:51.884 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:51 smithi165 bash[24863]: cluster 2024-09-17T09:10:50.746230+0000 mon.a (mon.0) 502 : cluster [INF] osd.4 [v2:172.21.15.165:6800/946302502,v1:172.21.15.165:6801/946302502] boot 2024-09-17T09:10:51.884 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:51 smithi165 bash[24863]: cluster 2024-09-17T09:10:50.746286+0000 mon.a (mon.0) 503 : cluster [DBG] osdmap e33: 5 total, 5 up, 5 in 2024-09-17T09:10:51.884 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:51 smithi165 bash[24863]: audit 2024-09-17T09:10:50.746703+0000 mon.a (mon.0) 504 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T09:10:51.884 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:51 smithi165 bash[24863]: audit 2024-09-17T09:10:50.957147+0000 mon.a (mon.0) 505 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:10:51.884 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:51 smithi165 bash[24863]: audit 2024-09-17T09:10:50.964583+0000 mon.a (mon.0) 506 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:51.884 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:51 smithi165 bash[24863]: audit 2024-09-17T09:10:50.973519+0000 mon.a (mon.0) 507 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:51.884 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:51 smithi165 bash[24863]: cluster 2024-09-17T09:10:51.284917+0000 mon.a (mon.0) 508 : cluster [DBG] osdmap e34: 5 total, 5 up, 5 in 2024-09-17T09:10:52.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:51 smithi134 bash[24188]: cluster 2024-09-17T09:10:49.406835+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-17T09:10:52.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:51 smithi134 bash[24188]: cluster 2024-09-17T09:10:49.406909+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-17T09:10:52.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:51 smithi134 bash[24188]: cluster 2024-09-17T09:10:50.553877+0000 mgr.a (mgr.14150) 250 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:52.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:51 smithi134 bash[24188]: audit 2024-09-17T09:10:50.733890+0000 mon.a (mon.0) 501 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T09:10:52.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:51 smithi134 bash[24188]: cluster 2024-09-17T09:10:50.746230+0000 mon.a (mon.0) 502 : cluster [INF] osd.4 [v2:172.21.15.165:6800/946302502,v1:172.21.15.165:6801/946302502] boot 2024-09-17T09:10:52.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:51 smithi134 bash[24188]: cluster 2024-09-17T09:10:50.746286+0000 mon.a (mon.0) 503 : cluster [DBG] osdmap e33: 5 total, 5 up, 5 in 2024-09-17T09:10:52.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:51 smithi134 bash[24188]: audit 2024-09-17T09:10:50.746703+0000 mon.a (mon.0) 504 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T09:10:52.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:51 smithi134 bash[24188]: audit 2024-09-17T09:10:50.957147+0000 mon.a (mon.0) 505 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:10:52.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:51 smithi134 bash[24188]: audit 2024-09-17T09:10:50.964583+0000 mon.a (mon.0) 506 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:52.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:51 smithi134 bash[24188]: audit 2024-09-17T09:10:50.973519+0000 mon.a (mon.0) 507 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:52.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:51 smithi134 bash[24188]: cluster 2024-09-17T09:10:51.284917+0000 mon.a (mon.0) 508 : cluster [DBG] osdmap e34: 5 total, 5 up, 5 in 2024-09-17T09:10:52.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:51 smithi098 bash[22661]: cluster 2024-09-17T09:10:49.406835+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-17T09:10:52.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:51 smithi098 bash[22661]: cluster 2024-09-17T09:10:49.406909+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-17T09:10:52.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:51 smithi098 bash[22661]: cluster 2024-09-17T09:10:50.553877+0000 mgr.a (mgr.14150) 250 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:10:52.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:51 smithi098 bash[22661]: audit 2024-09-17T09:10:50.733890+0000 mon.a (mon.0) 501 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T09:10:52.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:51 smithi098 bash[22661]: cluster 2024-09-17T09:10:50.746230+0000 mon.a (mon.0) 502 : cluster [INF] osd.4 [v2:172.21.15.165:6800/946302502,v1:172.21.15.165:6801/946302502] boot 2024-09-17T09:10:52.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:51 smithi098 bash[22661]: cluster 2024-09-17T09:10:50.746286+0000 mon.a (mon.0) 503 : cluster [DBG] osdmap e33: 5 total, 5 up, 5 in 2024-09-17T09:10:52.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:51 smithi098 bash[22661]: audit 2024-09-17T09:10:50.746703+0000 mon.a (mon.0) 504 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T09:10:52.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:51 smithi098 bash[22661]: audit 2024-09-17T09:10:50.957147+0000 mon.a (mon.0) 505 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:10:52.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:51 smithi098 bash[22661]: audit 2024-09-17T09:10:50.964583+0000 mon.a (mon.0) 506 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:52.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:51 smithi098 bash[22661]: audit 2024-09-17T09:10:50.973519+0000 mon.a (mon.0) 507 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:10:52.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:51 smithi098 bash[22661]: cluster 2024-09-17T09:10:51.284917+0000 mon.a (mon.0) 508 : cluster [DBG] osdmap e34: 5 total, 5 up, 5 in 2024-09-17T09:10:53.545 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:53 smithi134 bash[24188]: cluster 2024-09-17T09:10:52.284674+0000 mon.a (mon.0) 509 : cluster [DBG] osdmap e35: 5 total, 5 up, 5 in 2024-09-17T09:10:53.545 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:53 smithi134 bash[24188]: cluster 2024-09-17T09:10:52.554381+0000 mgr.a (mgr.14150) 251 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-17T09:10:53.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:53 smithi098 bash[22661]: cluster 2024-09-17T09:10:52.284674+0000 mon.a (mon.0) 509 : cluster [DBG] osdmap e35: 5 total, 5 up, 5 in 2024-09-17T09:10:53.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:53 smithi098 bash[22661]: cluster 2024-09-17T09:10:52.554381+0000 mgr.a (mgr.14150) 251 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-17T09:10:53.632 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:53 smithi165 bash[24863]: cluster 2024-09-17T09:10:52.284674+0000 mon.a (mon.0) 509 : cluster [DBG] osdmap e35: 5 total, 5 up, 5 in 2024-09-17T09:10:53.633 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:53 smithi165 bash[24863]: cluster 2024-09-17T09:10:52.554381+0000 mgr.a (mgr.14150) 251 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-17T09:10:54.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:54 smithi098 bash[22661]: cluster 2024-09-17T09:10:53.293593+0000 mon.a (mon.0) 510 : cluster [DBG] osdmap e36: 5 total, 5 up, 5 in 2024-09-17T09:10:54.632 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:54 smithi165 bash[24863]: cluster 2024-09-17T09:10:53.293593+0000 mon.a (mon.0) 510 : cluster [DBG] osdmap e36: 5 total, 5 up, 5 in 2024-09-17T09:10:54.795 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:54 smithi134 bash[24188]: cluster 2024-09-17T09:10:53.293593+0000 mon.a (mon.0) 510 : cluster [DBG] osdmap e36: 5 total, 5 up, 5 in 2024-09-17T09:10:55.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:55 smithi098 bash[22661]: cluster 2024-09-17T09:10:54.296007+0000 mon.a (mon.0) 511 : cluster [DBG] osdmap e37: 5 total, 5 up, 5 in 2024-09-17T09:10:55.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:55 smithi098 bash[22661]: cluster 2024-09-17T09:10:54.554946+0000 mgr.a (mgr.14150) 252 : cluster [DBG] pgmap v219: 1 pgs: 1 peering; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 151 KiB/s, 0 objects/s recovering 2024-09-17T09:10:55.632 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:55 smithi165 bash[24863]: cluster 2024-09-17T09:10:54.296007+0000 mon.a (mon.0) 511 : cluster [DBG] osdmap e37: 5 total, 5 up, 5 in 2024-09-17T09:10:55.633 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:55 smithi165 bash[24863]: cluster 2024-09-17T09:10:54.554946+0000 mgr.a (mgr.14150) 252 : cluster [DBG] pgmap v219: 1 pgs: 1 peering; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 151 KiB/s, 0 objects/s recovering 2024-09-17T09:10:55.795 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:55 smithi134 bash[24188]: cluster 2024-09-17T09:10:54.296007+0000 mon.a (mon.0) 511 : cluster [DBG] osdmap e37: 5 total, 5 up, 5 in 2024-09-17T09:10:55.795 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:55 smithi134 bash[24188]: cluster 2024-09-17T09:10:54.554946+0000 mgr.a (mgr.14150) 252 : cluster [DBG] pgmap v219: 1 pgs: 1 peering; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 151 KiB/s, 0 objects/s recovering 2024-09-17T09:10:55.796 INFO:teuthology.orchestra.run.smithi165.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.c/config 2024-09-17T09:10:57.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:57 smithi165 bash[24863]: cluster 2024-09-17T09:10:56.555439+0000 mgr.a (mgr.14150) 253 : cluster [DBG] pgmap v220: 1 pgs: 1 peering; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 109 KiB/s, 0 objects/s recovering 2024-09-17T09:10:58.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:57 smithi134 bash[24188]: cluster 2024-09-17T09:10:56.555439+0000 mgr.a (mgr.14150) 253 : cluster [DBG] pgmap v220: 1 pgs: 1 peering; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 109 KiB/s, 0 objects/s recovering 2024-09-17T09:10:58.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:57 smithi098 bash[22661]: cluster 2024-09-17T09:10:56.555439+0000 mgr.a (mgr.14150) 253 : cluster [DBG] pgmap v220: 1 pgs: 1 peering; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 109 KiB/s, 0 objects/s recovering 2024-09-17T09:10:59.882 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:10:59 smithi165 bash[24863]: cluster 2024-09-17T09:10:58.555975+0000 mgr.a (mgr.14150) 254 : cluster [DBG] pgmap v221: 1 pgs: 1 peering; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 92 KiB/s, 0 objects/s recovering 2024-09-17T09:11:00.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:10:59 smithi134 bash[24188]: cluster 2024-09-17T09:10:58.555975+0000 mgr.a (mgr.14150) 254 : cluster [DBG] pgmap v221: 1 pgs: 1 peering; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 92 KiB/s, 0 objects/s recovering 2024-09-17T09:11:00.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:10:59 smithi098 bash[22661]: cluster 2024-09-17T09:10:58.555975+0000 mgr.a (mgr.14150) 254 : cluster [DBG] pgmap v221: 1 pgs: 1 peering; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 92 KiB/s, 0 objects/s recovering 2024-09-17T09:11:00.302 INFO:teuthology.orchestra.run.smithi165.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-09-17T09:11:00.504 INFO:teuthology.orchestra.run.smithi165.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-09-17T09:11:00.521 INFO:teuthology.orchestra.run.smithi165.stderr: stderr: 10+0 records in 2024-09-17T09:11:00.521 INFO:teuthology.orchestra.run.smithi165.stderr:10+0 records out 2024-09-17T09:11:00.521 INFO:teuthology.orchestra.run.smithi165.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0142962 s, 733 MB/s 2024-09-17T09:11:00.521 INFO:teuthology.orchestra.run.smithi165.stderr:--> Zapping successful for: 2024-09-17T09:11:01.226 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi165:vg_nvme/lv_3 2024-09-17T09:11:01.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:01 smithi165 bash[24863]: cluster 2024-09-17T09:11:00.556574+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-17T09:11:01.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:01 smithi165 bash[24863]: audit 2024-09-17T09:11:01.592903+0000 mon.a (mon.0) 512 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:01.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:01 smithi165 bash[24863]: audit 2024-09-17T09:11:01.600838+0000 mon.a (mon.0) 513 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:01.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:01 smithi165 bash[24863]: audit 2024-09-17T09:11:01.602699+0000 mon.a (mon.0) 514 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:11:01.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:01 smithi165 bash[24863]: audit 2024-09-17T09:11:01.612190+0000 mon.a (mon.0) 515 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:01.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:01 smithi165 bash[24863]: audit 2024-09-17T09:11:01.614195+0000 mon.a (mon.0) 516 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:11:01.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:01 smithi165 bash[24863]: audit 2024-09-17T09:11:01.615911+0000 mon.a (mon.0) 517 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:11:02.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:01 smithi134 bash[24188]: cluster 2024-09-17T09:11:00.556574+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-17T09:11:02.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:01 smithi134 bash[24188]: audit 2024-09-17T09:11:01.592903+0000 mon.a (mon.0) 512 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:02.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:01 smithi134 bash[24188]: audit 2024-09-17T09:11:01.600838+0000 mon.a (mon.0) 513 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:02.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:01 smithi134 bash[24188]: audit 2024-09-17T09:11:01.602699+0000 mon.a (mon.0) 514 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:11:02.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:01 smithi134 bash[24188]: audit 2024-09-17T09:11:01.612190+0000 mon.a (mon.0) 515 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:02.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:01 smithi134 bash[24188]: audit 2024-09-17T09:11:01.614195+0000 mon.a (mon.0) 516 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:11:02.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:01 smithi134 bash[24188]: audit 2024-09-17T09:11:01.615911+0000 mon.a (mon.0) 517 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:11:02.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:01 smithi098 bash[22661]: cluster 2024-09-17T09:11:00.556574+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-17T09:11:02.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:01 smithi098 bash[22661]: audit 2024-09-17T09:11:01.592903+0000 mon.a (mon.0) 512 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:02.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:01 smithi098 bash[22661]: audit 2024-09-17T09:11:01.600838+0000 mon.a (mon.0) 513 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:02.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:01 smithi098 bash[22661]: audit 2024-09-17T09:11:01.602699+0000 mon.a (mon.0) 514 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:11:02.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:01 smithi098 bash[22661]: audit 2024-09-17T09:11:01.612190+0000 mon.a (mon.0) 515 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:02.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:01 smithi098 bash[22661]: audit 2024-09-17T09:11:01.614195+0000 mon.a (mon.0) 516 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:11:02.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:01 smithi098 bash[22661]: audit 2024-09-17T09:11:01.615911+0000 mon.a (mon.0) 517 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:11:03.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:02 smithi134 bash[24188]: cephadm 2024-09-17T09:11:01.584630+0000 mgr.a (mgr.14150) 256 : cephadm [INF] Detected new or changed devices on smithi165 2024-09-17T09:11:03.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:02 smithi134 bash[24188]: cephadm 2024-09-17T09:11:01.604057+0000 mgr.a (mgr.14150) 257 : cephadm [INF] Adjusting osd_memory_target on smithi165 to 21361M 2024-09-17T09:11:03.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:02 smithi134 bash[24188]: audit 2024-09-17T09:11:01.630163+0000 mon.a (mon.0) 518 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:03.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:02 smithi098 bash[22661]: cephadm 2024-09-17T09:11:01.584630+0000 mgr.a (mgr.14150) 256 : cephadm [INF] Detected new or changed devices on smithi165 2024-09-17T09:11:03.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:02 smithi098 bash[22661]: cephadm 2024-09-17T09:11:01.604057+0000 mgr.a (mgr.14150) 257 : cephadm [INF] Adjusting osd_memory_target on smithi165 to 21361M 2024-09-17T09:11:03.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:02 smithi098 bash[22661]: audit 2024-09-17T09:11:01.630163+0000 mon.a (mon.0) 518 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:03.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:02 smithi165 bash[24863]: cephadm 2024-09-17T09:11:01.584630+0000 mgr.a (mgr.14150) 256 : cephadm [INF] Detected new or changed devices on smithi165 2024-09-17T09:11:03.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:02 smithi165 bash[24863]: cephadm 2024-09-17T09:11:01.604057+0000 mgr.a (mgr.14150) 257 : cephadm [INF] Adjusting osd_memory_target on smithi165 to 21361M 2024-09-17T09:11:03.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:02 smithi165 bash[24863]: audit 2024-09-17T09:11:01.630163+0000 mon.a (mon.0) 518 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:04.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:03 smithi134 bash[24188]: cluster 2024-09-17T09:11:02.557153+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; 62 KiB/s, 0 objects/s recovering 2024-09-17T09:11:04.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:03 smithi098 bash[22661]: cluster 2024-09-17T09:11:02.557153+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; 62 KiB/s, 0 objects/s recovering 2024-09-17T09:11:04.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:03 smithi165 bash[24863]: cluster 2024-09-17T09:11:02.557153+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; 62 KiB/s, 0 objects/s recovering 2024-09-17T09:11:05.898 INFO:teuthology.orchestra.run.smithi165.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.c/config 2024-09-17T09:11:05.994 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:05 smithi165 bash[24863]: cluster 2024-09-17T09:11:04.557691+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 2024-09-17T09:11:06.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:05 smithi134 bash[24188]: cluster 2024-09-17T09:11:04.557691+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 2024-09-17T09:11:06.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:05 smithi098 bash[22661]: cluster 2024-09-17T09:11:04.557691+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 2024-09-17T09:11:08.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:07 smithi134 bash[24188]: cluster 2024-09-17T09:11:06.558205+0000 mgr.a (mgr.14150) 260 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-17T09:11:08.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:07 smithi098 bash[22661]: cluster 2024-09-17T09:11:06.558205+0000 mgr.a (mgr.14150) 260 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-17T09:11:08.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:07 smithi165 bash[24863]: cluster 2024-09-17T09:11:06.558205+0000 mgr.a (mgr.14150) 260 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-17T09:11:10.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:09 smithi134 bash[24188]: cluster 2024-09-17T09:11:08.558758+0000 mgr.a (mgr.14150) 261 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-17T09:11:10.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:09 smithi134 bash[24188]: audit 2024-09-17T09:11:09.031318+0000 mon.a (mon.0) 519 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T09:11:10.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:09 smithi134 bash[24188]: audit 2024-09-17T09:11:09.037618+0000 mon.a (mon.0) 520 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T09:11:10.046 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:09 smithi134 bash[24188]: audit 2024-09-17T09:11:09.039389+0000 mon.a (mon.0) 521 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:11:10.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:09 smithi098 bash[22661]: cluster 2024-09-17T09:11:08.558758+0000 mgr.a (mgr.14150) 261 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-17T09:11:10.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:09 smithi098 bash[22661]: audit 2024-09-17T09:11:09.031318+0000 mon.a (mon.0) 519 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T09:11:10.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:09 smithi098 bash[22661]: audit 2024-09-17T09:11:09.037618+0000 mon.a (mon.0) 520 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T09:11:10.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:09 smithi098 bash[22661]: audit 2024-09-17T09:11:09.039389+0000 mon.a (mon.0) 521 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:11:10.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:09 smithi165 bash[24863]: cluster 2024-09-17T09:11:08.558758+0000 mgr.a (mgr.14150) 261 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-17T09:11:10.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:09 smithi165 bash[24863]: audit 2024-09-17T09:11:09.031318+0000 mon.a (mon.0) 519 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T09:11:10.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:09 smithi165 bash[24863]: audit 2024-09-17T09:11:09.037618+0000 mon.a (mon.0) 520 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T09:11:10.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:09 smithi165 bash[24863]: audit 2024-09-17T09:11:09.039389+0000 mon.a (mon.0) 521 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:11:11.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:10 smithi134 bash[24188]: audit 2024-09-17T09:11:09.025191+0000 mgr.a (mgr.14150) 262 : audit [DBG] from='client.24220 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi165:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:11:11.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:10 smithi098 bash[22661]: audit 2024-09-17T09:11:09.025191+0000 mgr.a (mgr.14150) 262 : audit [DBG] from='client.24220 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi165:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:11:11.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:10 smithi165 bash[24863]: audit 2024-09-17T09:11:09.025191+0000 mgr.a (mgr.14150) 262 : audit [DBG] from='client.24220 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi165:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:11:12.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:11 smithi134 bash[24188]: cluster 2024-09-17T09:11:10.559368+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-17T09:11:12.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:11 smithi098 bash[22661]: cluster 2024-09-17T09:11:10.559368+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-17T09:11:12.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:11 smithi165 bash[24863]: cluster 2024-09-17T09:11:10.559368+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-17T09:11:13.959 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:13 smithi165 bash[24863]: cluster 2024-09-17T09:11:12.559995+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-17T09:11:14.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:13 smithi134 bash[24188]: cluster 2024-09-17T09:11:12.559995+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-17T09:11:14.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:13 smithi098 bash[22661]: cluster 2024-09-17T09:11:12.559995+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-17T09:11:16.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:15 smithi134 bash[24188]: cluster 2024-09-17T09:11:14.560652+0000 mgr.a (mgr.14150) 265 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-17T09:11:16.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:15 smithi098 bash[22661]: cluster 2024-09-17T09:11:14.560652+0000 mgr.a (mgr.14150) 265 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-17T09:11:16.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:15 smithi165 bash[24863]: cluster 2024-09-17T09:11:14.560652+0000 mgr.a (mgr.14150) 265 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-17T09:11:18.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:17 smithi134 bash[24188]: cluster 2024-09-17T09:11:16.561294+0000 mgr.a (mgr.14150) 266 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-17T09:11:18.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:17 smithi134 bash[24188]: audit 2024-09-17T09:11:17.311120+0000 mon.c (mon.1) 10 : audit [INF] from='client.? 172.21.15.165:0/1046607753' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "44fede18-4a27-40bb-8b7c-3206a402a9bb"}]: dispatch 2024-09-17T09:11:18.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:17 smithi134 bash[24188]: audit 2024-09-17T09:11:17.311175+0000 mon.a (mon.0) 522 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "44fede18-4a27-40bb-8b7c-3206a402a9bb"}]: dispatch 2024-09-17T09:11:18.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:17 smithi134 bash[24188]: audit 2024-09-17T09:11:17.319742+0000 mon.a (mon.0) 523 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "44fede18-4a27-40bb-8b7c-3206a402a9bb"}]': finished 2024-09-17T09:11:18.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:17 smithi134 bash[24188]: cluster 2024-09-17T09:11:17.319927+0000 mon.a (mon.0) 524 : cluster [DBG] osdmap e38: 6 total, 5 up, 6 in 2024-09-17T09:11:18.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:17 smithi134 bash[24188]: audit 2024-09-17T09:11:17.320192+0000 mon.a (mon.0) 525 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T09:11:18.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:17 smithi098 bash[22661]: cluster 2024-09-17T09:11:16.561294+0000 mgr.a (mgr.14150) 266 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-17T09:11:18.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:17 smithi098 bash[22661]: audit 2024-09-17T09:11:17.311120+0000 mon.c (mon.1) 10 : audit [INF] from='client.? 172.21.15.165:0/1046607753' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "44fede18-4a27-40bb-8b7c-3206a402a9bb"}]: dispatch 2024-09-17T09:11:18.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:17 smithi098 bash[22661]: audit 2024-09-17T09:11:17.311175+0000 mon.a (mon.0) 522 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "44fede18-4a27-40bb-8b7c-3206a402a9bb"}]: dispatch 2024-09-17T09:11:18.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:17 smithi098 bash[22661]: audit 2024-09-17T09:11:17.319742+0000 mon.a (mon.0) 523 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "44fede18-4a27-40bb-8b7c-3206a402a9bb"}]': finished 2024-09-17T09:11:18.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:17 smithi098 bash[22661]: cluster 2024-09-17T09:11:17.319927+0000 mon.a (mon.0) 524 : cluster [DBG] osdmap e38: 6 total, 5 up, 6 in 2024-09-17T09:11:18.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:17 smithi098 bash[22661]: audit 2024-09-17T09:11:17.320192+0000 mon.a (mon.0) 525 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T09:11:18.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:17 smithi165 bash[24863]: cluster 2024-09-17T09:11:16.561294+0000 mgr.a (mgr.14150) 266 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-17T09:11:18.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:17 smithi165 bash[24863]: audit 2024-09-17T09:11:17.311120+0000 mon.c (mon.1) 10 : audit [INF] from='client.? 172.21.15.165:0/1046607753' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "44fede18-4a27-40bb-8b7c-3206a402a9bb"}]: dispatch 2024-09-17T09:11:18.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:17 smithi165 bash[24863]: audit 2024-09-17T09:11:17.311175+0000 mon.a (mon.0) 522 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "44fede18-4a27-40bb-8b7c-3206a402a9bb"}]: dispatch 2024-09-17T09:11:18.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:17 smithi165 bash[24863]: audit 2024-09-17T09:11:17.319742+0000 mon.a (mon.0) 523 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "44fede18-4a27-40bb-8b7c-3206a402a9bb"}]': finished 2024-09-17T09:11:18.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:17 smithi165 bash[24863]: cluster 2024-09-17T09:11:17.319927+0000 mon.a (mon.0) 524 : cluster [DBG] osdmap e38: 6 total, 5 up, 6 in 2024-09-17T09:11:18.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:17 smithi165 bash[24863]: audit 2024-09-17T09:11:17.320192+0000 mon.a (mon.0) 525 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T09:11:19.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:18 smithi134 bash[24188]: audit 2024-09-17T09:11:17.974013+0000 mon.c (mon.1) 11 : audit [DBG] from='client.? 172.21.15.165:0/793623678' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T09:11:19.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:18 smithi098 bash[22661]: audit 2024-09-17T09:11:17.974013+0000 mon.c (mon.1) 11 : audit [DBG] from='client.? 172.21.15.165:0/793623678' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T09:11:19.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:18 smithi165 bash[24863]: audit 2024-09-17T09:11:17.974013+0000 mon.c (mon.1) 11 : audit [DBG] from='client.? 172.21.15.165:0/793623678' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T09:11:20.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:19 smithi134 bash[24188]: cluster 2024-09-17T09:11:18.561845+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-17T09:11:20.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:19 smithi098 bash[22661]: cluster 2024-09-17T09:11:18.561845+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-17T09:11:20.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:19 smithi165 bash[24863]: cluster 2024-09-17T09:11:18.561845+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-17T09:11:22.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:21 smithi134 bash[24188]: cluster 2024-09-17T09:11:20.562356+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-17T09:11:22.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:21 smithi098 bash[22661]: cluster 2024-09-17T09:11:20.562356+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-17T09:11:22.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:21 smithi165 bash[24863]: cluster 2024-09-17T09:11:20.562356+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-17T09:11:24.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:23 smithi134 bash[24188]: cluster 2024-09-17T09:11:22.562937+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-17T09:11:24.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:23 smithi098 bash[22661]: cluster 2024-09-17T09:11:22.562937+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-17T09:11:24.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:23 smithi165 bash[24863]: cluster 2024-09-17T09:11:22.562937+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-17T09:11:26.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:25 smithi134 bash[24188]: cluster 2024-09-17T09:11:24.563496+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-17T09:11:26.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:25 smithi098 bash[22661]: cluster 2024-09-17T09:11:24.563496+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-17T09:11:26.113 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:25 smithi165 bash[24863]: cluster 2024-09-17T09:11:24.563496+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-17T09:11:28.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:27 smithi134 bash[24188]: cluster 2024-09-17T09:11:26.564082+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-17T09:11:28.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:27 smithi098 bash[22661]: cluster 2024-09-17T09:11:26.564082+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-17T09:11:28.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:27 smithi165 bash[24863]: cluster 2024-09-17T09:11:26.564082+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-17T09:11:30.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:29 smithi134 bash[24188]: cluster 2024-09-17T09:11:28.564618+0000 mgr.a (mgr.14150) 272 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-17T09:11:30.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:29 smithi134 bash[24188]: audit 2024-09-17T09:11:29.644011+0000 mon.a (mon.0) 526 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-17T09:11:30.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:29 smithi134 bash[24188]: audit 2024-09-17T09:11:29.645950+0000 mon.a (mon.0) 527 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:11:30.047 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:29 smithi165 bash[24863]: cluster 2024-09-17T09:11:28.564618+0000 mgr.a (mgr.14150) 272 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-17T09:11:30.047 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:29 smithi165 bash[24863]: audit 2024-09-17T09:11:29.644011+0000 mon.a (mon.0) 526 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-17T09:11:30.047 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:29 smithi165 bash[24863]: audit 2024-09-17T09:11:29.645950+0000 mon.a (mon.0) 527 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:11:30.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:29 smithi098 bash[22661]: cluster 2024-09-17T09:11:28.564618+0000 mgr.a (mgr.14150) 272 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-17T09:11:30.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:29 smithi098 bash[22661]: audit 2024-09-17T09:11:29.644011+0000 mon.a (mon.0) 526 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-17T09:11:30.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:29 smithi098 bash[22661]: audit 2024-09-17T09:11:29.645950+0000 mon.a (mon.0) 527 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:11:31.005 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:30 smithi165 bash[24863]: cephadm 2024-09-17T09:11:29.647477+0000 mgr.a (mgr.14150) 273 : cephadm [INF] Deploying daemon osd.5 on smithi165 2024-09-17T09:11:31.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:30 smithi134 bash[24188]: cephadm 2024-09-17T09:11:29.647477+0000 mgr.a (mgr.14150) 273 : cephadm [INF] Deploying daemon osd.5 on smithi165 2024-09-17T09:11:31.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:30 smithi098 bash[22661]: cephadm 2024-09-17T09:11:29.647477+0000 mgr.a (mgr.14150) 273 : cephadm [INF] Deploying daemon osd.5 on smithi165 2024-09-17T09:11:32.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:31 smithi134 bash[24188]: cluster 2024-09-17T09:11:30.565154+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-17T09:11:32.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:31 smithi098 bash[22661]: cluster 2024-09-17T09:11:30.565154+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-17T09:11:32.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:31 smithi165 bash[24863]: cluster 2024-09-17T09:11:30.565154+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-17T09:11:33.882 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:33 smithi165 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:11:33.882 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:33 smithi165 bash[24863]: cluster 2024-09-17T09:11:32.565710+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-17T09:11:33.883 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 17 09:11:33 smithi165 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:11:34.047 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:33 smithi134 bash[24188]: cluster 2024-09-17T09:11:32.565710+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-17T09:11:34.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:33 smithi098 bash[22661]: cluster 2024-09-17T09:11:32.565710+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-17T09:11:34.382 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 17 09:11:33 smithi165 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:11:34.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:33 smithi165 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:11:35.025 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:34 smithi165 bash[24863]: audit 2024-09-17T09:11:34.044323+0000 mon.a (mon.0) 528 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:11:35.025 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:34 smithi165 bash[24863]: audit 2024-09-17T09:11:34.051547+0000 mon.a (mon.0) 529 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:35.025 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:34 smithi165 bash[24863]: audit 2024-09-17T09:11:34.059054+0000 mon.a (mon.0) 530 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:35.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:34 smithi134 bash[24188]: audit 2024-09-17T09:11:34.044323+0000 mon.a (mon.0) 528 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:11:35.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:34 smithi134 bash[24188]: audit 2024-09-17T09:11:34.051547+0000 mon.a (mon.0) 529 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:35.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:34 smithi134 bash[24188]: audit 2024-09-17T09:11:34.059054+0000 mon.a (mon.0) 530 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:35.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:34 smithi098 bash[22661]: audit 2024-09-17T09:11:34.044323+0000 mon.a (mon.0) 528 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:11:35.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:34 smithi098 bash[22661]: audit 2024-09-17T09:11:34.051547+0000 mon.a (mon.0) 529 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:35.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:34 smithi098 bash[22661]: audit 2024-09-17T09:11:34.059054+0000 mon.a (mon.0) 530 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:36.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:35 smithi134 bash[24188]: cluster 2024-09-17T09:11:34.566212+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-17T09:11:36.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:35 smithi098 bash[22661]: cluster 2024-09-17T09:11:34.566212+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-17T09:11:36.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:35 smithi165 bash[24863]: cluster 2024-09-17T09:11:34.566212+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-17T09:11:37.882 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:37 smithi165 bash[24863]: cluster 2024-09-17T09:11:36.566703+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-17T09:11:38.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:37 smithi134 bash[24188]: cluster 2024-09-17T09:11:36.566703+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-17T09:11:38.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:37 smithi098 bash[22661]: cluster 2024-09-17T09:11:36.566703+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-17T09:11:39.988 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:39 smithi165 bash[24863]: cluster 2024-09-17T09:11:38.567172+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-17T09:11:39.988 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:39 smithi165 bash[24863]: audit 2024-09-17T09:11:39.190599+0000 mon.a (mon.0) 531 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:39.988 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:39 smithi165 bash[24863]: audit 2024-09-17T09:11:39.200082+0000 mon.a (mon.0) 532 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:39.988 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:39 smithi165 bash[24863]: audit 2024-09-17T09:11:39.664484+0000 mon.a (mon.0) 533 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:11:39.988 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:39 smithi165 bash[24863]: audit 2024-09-17T09:11:39.666371+0000 mon.a (mon.0) 534 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:11:39.988 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:39 smithi165 bash[24863]: audit 2024-09-17T09:11:39.677465+0000 mon.a (mon.0) 535 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:40.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:39 smithi134 bash[24188]: cluster 2024-09-17T09:11:38.567172+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-17T09:11:40.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:39 smithi134 bash[24188]: audit 2024-09-17T09:11:39.190599+0000 mon.a (mon.0) 531 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:40.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:39 smithi134 bash[24188]: audit 2024-09-17T09:11:39.200082+0000 mon.a (mon.0) 532 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:40.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:39 smithi134 bash[24188]: audit 2024-09-17T09:11:39.664484+0000 mon.a (mon.0) 533 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:11:40.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:39 smithi134 bash[24188]: audit 2024-09-17T09:11:39.666371+0000 mon.a (mon.0) 534 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:11:40.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:39 smithi134 bash[24188]: audit 2024-09-17T09:11:39.677465+0000 mon.a (mon.0) 535 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:40.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:39 smithi098 bash[22661]: cluster 2024-09-17T09:11:38.567172+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-17T09:11:40.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:39 smithi098 bash[22661]: audit 2024-09-17T09:11:39.190599+0000 mon.a (mon.0) 531 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:40.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:39 smithi098 bash[22661]: audit 2024-09-17T09:11:39.200082+0000 mon.a (mon.0) 532 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:40.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:39 smithi098 bash[22661]: audit 2024-09-17T09:11:39.664484+0000 mon.a (mon.0) 533 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:11:40.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:39 smithi098 bash[22661]: audit 2024-09-17T09:11:39.666371+0000 mon.a (mon.0) 534 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:11:40.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:39 smithi098 bash[22661]: audit 2024-09-17T09:11:39.677465+0000 mon.a (mon.0) 535 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:41.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:40 smithi134 bash[24188]: audit 2024-09-17T09:11:40.553643+0000 mon.a (mon.0) 536 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-17T09:11:41.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:40 smithi134 bash[24188]: audit 2024-09-17T09:11:40.553697+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.165:6808/3060401311,v1:172.21.15.165:6809/3060401311]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-17T09:11:41.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:40 smithi098 bash[22661]: audit 2024-09-17T09:11:40.553643+0000 mon.a (mon.0) 536 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-17T09:11:41.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:40 smithi098 bash[22661]: audit 2024-09-17T09:11:40.553697+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.165:6808/3060401311,v1:172.21.15.165:6809/3060401311]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-17T09:11:41.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:40 smithi165 bash[24863]: audit 2024-09-17T09:11:40.553643+0000 mon.a (mon.0) 536 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-17T09:11:41.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:40 smithi165 bash[24863]: audit 2024-09-17T09:11:40.553697+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.165:6808/3060401311,v1:172.21.15.165:6809/3060401311]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-17T09:11:42.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:41 smithi134 bash[24188]: cluster 2024-09-17T09:11:40.567714+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-17T09:11:42.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:41 smithi134 bash[24188]: audit 2024-09-17T09:11:40.750729+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"]}]': finished 2024-09-17T09:11:42.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:41 smithi134 bash[24188]: cluster 2024-09-17T09:11:40.750915+0000 mon.a (mon.0) 538 : cluster [DBG] osdmap e39: 6 total, 5 up, 6 in 2024-09-17T09:11:42.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:41 smithi134 bash[24188]: audit 2024-09-17T09:11:40.751173+0000 mon.a (mon.0) 539 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T09:11:42.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:41 smithi134 bash[24188]: audit 2024-09-17T09:11:40.752359+0000 mon.a (mon.0) 540 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]: dispatch 2024-09-17T09:11:42.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:41 smithi134 bash[24188]: audit 2024-09-17T09:11:40.752684+0000 mon.c (mon.1) 13 : audit [INF] from='osd.5 [v2:172.21.15.165:6808/3060401311,v1:172.21.15.165:6809/3060401311]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]: dispatch 2024-09-17T09:11:42.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:41 smithi098 bash[22661]: cluster 2024-09-17T09:11:40.567714+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-17T09:11:42.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:41 smithi098 bash[22661]: audit 2024-09-17T09:11:40.750729+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"]}]': finished 2024-09-17T09:11:42.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:41 smithi098 bash[22661]: cluster 2024-09-17T09:11:40.750915+0000 mon.a (mon.0) 538 : cluster [DBG] osdmap e39: 6 total, 5 up, 6 in 2024-09-17T09:11:42.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:41 smithi098 bash[22661]: audit 2024-09-17T09:11:40.751173+0000 mon.a (mon.0) 539 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T09:11:42.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:41 smithi098 bash[22661]: audit 2024-09-17T09:11:40.752359+0000 mon.a (mon.0) 540 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]: dispatch 2024-09-17T09:11:42.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:41 smithi098 bash[22661]: audit 2024-09-17T09:11:40.752684+0000 mon.c (mon.1) 13 : audit [INF] from='osd.5 [v2:172.21.15.165:6808/3060401311,v1:172.21.15.165:6809/3060401311]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]: dispatch 2024-09-17T09:11:42.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:41 smithi165 bash[24863]: cluster 2024-09-17T09:11:40.567714+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-17T09:11:42.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:41 smithi165 bash[24863]: audit 2024-09-17T09:11:40.750729+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"]}]': finished 2024-09-17T09:11:42.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:41 smithi165 bash[24863]: cluster 2024-09-17T09:11:40.750915+0000 mon.a (mon.0) 538 : cluster [DBG] osdmap e39: 6 total, 5 up, 6 in 2024-09-17T09:11:42.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:41 smithi165 bash[24863]: audit 2024-09-17T09:11:40.751173+0000 mon.a (mon.0) 539 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T09:11:42.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:41 smithi165 bash[24863]: audit 2024-09-17T09:11:40.752359+0000 mon.a (mon.0) 540 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]: dispatch 2024-09-17T09:11:42.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:41 smithi165 bash[24863]: audit 2024-09-17T09:11:40.752684+0000 mon.c (mon.1) 13 : audit [INF] from='osd.5 [v2:172.21.15.165:6808/3060401311,v1:172.21.15.165:6809/3060401311]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]: dispatch 2024-09-17T09:11:42.924 INFO:teuthology.orchestra.run.smithi165.stdout:Created osd(s) 5 on host 'smithi165' 2024-09-17T09:11:43.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:42 smithi134 bash[24188]: audit 2024-09-17T09:11:41.754040+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=smithi165", "root=default"]}]': finished 2024-09-17T09:11:43.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:42 smithi134 bash[24188]: cluster 2024-09-17T09:11:41.754246+0000 mon.a (mon.0) 542 : cluster [DBG] osdmap e40: 6 total, 5 up, 6 in 2024-09-17T09:11:43.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:42 smithi134 bash[24188]: audit 2024-09-17T09:11:41.754981+0000 mon.a (mon.0) 543 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T09:11:43.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:42 smithi134 bash[24188]: audit 2024-09-17T09:11:41.762249+0000 mon.a (mon.0) 544 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T09:11:43.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:42 smithi098 bash[22661]: audit 2024-09-17T09:11:41.754040+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=smithi165", "root=default"]}]': finished 2024-09-17T09:11:43.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:42 smithi098 bash[22661]: cluster 2024-09-17T09:11:41.754246+0000 mon.a (mon.0) 542 : cluster [DBG] osdmap e40: 6 total, 5 up, 6 in 2024-09-17T09:11:43.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:42 smithi098 bash[22661]: audit 2024-09-17T09:11:41.754981+0000 mon.a (mon.0) 543 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T09:11:43.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:42 smithi098 bash[22661]: audit 2024-09-17T09:11:41.762249+0000 mon.a (mon.0) 544 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T09:11:43.121 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:42 smithi165 bash[24863]: audit 2024-09-17T09:11:41.754040+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=smithi165", "root=default"]}]': finished 2024-09-17T09:11:43.122 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:42 smithi165 bash[24863]: cluster 2024-09-17T09:11:41.754246+0000 mon.a (mon.0) 542 : cluster [DBG] osdmap e40: 6 total, 5 up, 6 in 2024-09-17T09:11:43.122 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:42 smithi165 bash[24863]: audit 2024-09-17T09:11:41.754981+0000 mon.a (mon.0) 543 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T09:11:43.122 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:42 smithi165 bash[24863]: audit 2024-09-17T09:11:41.762249+0000 mon.a (mon.0) 544 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T09:11:43.550 DEBUG:teuthology.orchestra.run.smithi165:osd.5> sudo journalctl -f -n 0 -u ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@osd.5.service 2024-09-17T09:11:43.553 INFO:tasks.cephadm:Waiting for 6 OSDs to come up... 2024-09-17T09:11:43.553 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T09:11:43.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:43 smithi098 bash[22661]: cluster 2024-09-17T09:11:41.598963+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-17T09:11:43.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:43 smithi098 bash[22661]: cluster 2024-09-17T09:11:41.599054+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-17T09:11:43.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:43 smithi098 bash[22661]: cluster 2024-09-17T09:11:42.568226+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-17T09:11:43.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:43 smithi098 bash[22661]: audit 2024-09-17T09:11:42.763798+0000 mon.a (mon.0) 545 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T09:11:43.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:43 smithi098 bash[22661]: cluster 2024-09-17T09:11:42.771690+0000 mon.a (mon.0) 546 : cluster [INF] osd.5 [v2:172.21.15.165:6808/3060401311,v1:172.21.15.165:6809/3060401311] boot 2024-09-17T09:11:43.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:43 smithi098 bash[22661]: cluster 2024-09-17T09:11:42.771763+0000 mon.a (mon.0) 547 : cluster [DBG] osdmap e41: 6 total, 6 up, 6 in 2024-09-17T09:11:43.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:43 smithi098 bash[22661]: audit 2024-09-17T09:11:42.772167+0000 mon.a (mon.0) 548 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T09:11:43.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:43 smithi098 bash[22661]: audit 2024-09-17T09:11:42.902663+0000 mon.a (mon.0) 549 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:11:43.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:43 smithi098 bash[22661]: audit 2024-09-17T09:11:42.910104+0000 mon.a (mon.0) 550 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:43.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:43 smithi098 bash[22661]: audit 2024-09-17T09:11:42.918072+0000 mon.a (mon.0) 551 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:43.882 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:43 smithi165 bash[24863]: cluster 2024-09-17T09:11:41.598963+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-17T09:11:43.882 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:43 smithi165 bash[24863]: cluster 2024-09-17T09:11:41.599054+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-17T09:11:43.882 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:43 smithi165 bash[24863]: cluster 2024-09-17T09:11:42.568226+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-17T09:11:43.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:43 smithi165 bash[24863]: audit 2024-09-17T09:11:42.763798+0000 mon.a (mon.0) 545 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T09:11:43.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:43 smithi165 bash[24863]: cluster 2024-09-17T09:11:42.771690+0000 mon.a (mon.0) 546 : cluster [INF] osd.5 [v2:172.21.15.165:6808/3060401311,v1:172.21.15.165:6809/3060401311] boot 2024-09-17T09:11:43.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:43 smithi165 bash[24863]: cluster 2024-09-17T09:11:42.771763+0000 mon.a (mon.0) 547 : cluster [DBG] osdmap e41: 6 total, 6 up, 6 in 2024-09-17T09:11:43.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:43 smithi165 bash[24863]: audit 2024-09-17T09:11:42.772167+0000 mon.a (mon.0) 548 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T09:11:43.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:43 smithi165 bash[24863]: audit 2024-09-17T09:11:42.902663+0000 mon.a (mon.0) 549 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:11:43.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:43 smithi165 bash[24863]: audit 2024-09-17T09:11:42.910104+0000 mon.a (mon.0) 550 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:43.883 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:43 smithi165 bash[24863]: audit 2024-09-17T09:11:42.918072+0000 mon.a (mon.0) 551 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:44.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:43 smithi134 bash[24188]: cluster 2024-09-17T09:11:41.598963+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-17T09:11:44.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:43 smithi134 bash[24188]: cluster 2024-09-17T09:11:41.599054+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-17T09:11:44.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:43 smithi134 bash[24188]: cluster 2024-09-17T09:11:42.568226+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-17T09:11:44.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:43 smithi134 bash[24188]: audit 2024-09-17T09:11:42.763798+0000 mon.a (mon.0) 545 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T09:11:44.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:43 smithi134 bash[24188]: cluster 2024-09-17T09:11:42.771690+0000 mon.a (mon.0) 546 : cluster [INF] osd.5 [v2:172.21.15.165:6808/3060401311,v1:172.21.15.165:6809/3060401311] boot 2024-09-17T09:11:44.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:43 smithi134 bash[24188]: cluster 2024-09-17T09:11:42.771763+0000 mon.a (mon.0) 547 : cluster [DBG] osdmap e41: 6 total, 6 up, 6 in 2024-09-17T09:11:44.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:43 smithi134 bash[24188]: audit 2024-09-17T09:11:42.772167+0000 mon.a (mon.0) 548 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T09:11:44.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:43 smithi134 bash[24188]: audit 2024-09-17T09:11:42.902663+0000 mon.a (mon.0) 549 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:11:44.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:43 smithi134 bash[24188]: audit 2024-09-17T09:11:42.910104+0000 mon.a (mon.0) 550 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:44.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:43 smithi134 bash[24188]: audit 2024-09-17T09:11:42.918072+0000 mon.a (mon.0) 551 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:45.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:44 smithi134 bash[24188]: cluster 2024-09-17T09:11:43.779333+0000 mon.a (mon.0) 552 : cluster [DBG] osdmap e42: 6 total, 6 up, 6 in 2024-09-17T09:11:45.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:44 smithi098 bash[22661]: cluster 2024-09-17T09:11:43.779333+0000 mon.a (mon.0) 552 : cluster [DBG] osdmap e42: 6 total, 6 up, 6 in 2024-09-17T09:11:45.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:44 smithi165 bash[24863]: cluster 2024-09-17T09:11:43.779333+0000 mon.a (mon.0) 552 : cluster [DBG] osdmap e42: 6 total, 6 up, 6 in 2024-09-17T09:11:46.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:45 smithi134 bash[24188]: cluster 2024-09-17T09:11:44.568760+0000 mgr.a (mgr.14150) 281 : cluster [DBG] pgmap v249: 1 pgs: 1 remapped+peering; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:11:46.045 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:45 smithi134 bash[24188]: cluster 2024-09-17T09:11:44.782278+0000 mon.a (mon.0) 553 : cluster [DBG] osdmap e43: 6 total, 6 up, 6 in 2024-09-17T09:11:46.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:45 smithi098 bash[22661]: cluster 2024-09-17T09:11:44.568760+0000 mgr.a (mgr.14150) 281 : cluster [DBG] pgmap v249: 1 pgs: 1 remapped+peering; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:11:46.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:45 smithi098 bash[22661]: cluster 2024-09-17T09:11:44.782278+0000 mon.a (mon.0) 553 : cluster [DBG] osdmap e43: 6 total, 6 up, 6 in 2024-09-17T09:11:46.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:45 smithi165 bash[24863]: cluster 2024-09-17T09:11:44.568760+0000 mgr.a (mgr.14150) 281 : cluster [DBG] pgmap v249: 1 pgs: 1 remapped+peering; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:11:46.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:45 smithi165 bash[24863]: cluster 2024-09-17T09:11:44.782278+0000 mon.a (mon.0) 553 : cluster [DBG] osdmap e43: 6 total, 6 up, 6 in 2024-09-17T09:11:47.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:46 smithi098 bash[22661]: cluster 2024-09-17T09:11:45.797686+0000 mon.a (mon.0) 554 : cluster [DBG] osdmap e44: 6 total, 6 up, 6 in 2024-09-17T09:11:47.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:46 smithi165 bash[24863]: cluster 2024-09-17T09:11:45.797686+0000 mon.a (mon.0) 554 : cluster [DBG] osdmap e44: 6 total, 6 up, 6 in 2024-09-17T09:11:47.294 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:46 smithi134 bash[24188]: cluster 2024-09-17T09:11:45.797686+0000 mon.a (mon.0) 554 : cluster [DBG] osdmap e44: 6 total, 6 up, 6 in 2024-09-17T09:11:48.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:47 smithi098 bash[22661]: cluster 2024-09-17T09:11:46.569352+0000 mgr.a (mgr.14150) 282 : cluster [DBG] pgmap v252: 1 pgs: 1 remapped+peering; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:11:48.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:47 smithi098 bash[22661]: cluster 2024-09-17T09:11:46.806765+0000 mon.a (mon.0) 555 : cluster [DBG] osdmap e45: 6 total, 6 up, 6 in 2024-09-17T09:11:48.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:47 smithi165 bash[24863]: cluster 2024-09-17T09:11:46.569352+0000 mgr.a (mgr.14150) 282 : cluster [DBG] pgmap v252: 1 pgs: 1 remapped+peering; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:11:48.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:47 smithi165 bash[24863]: cluster 2024-09-17T09:11:46.806765+0000 mon.a (mon.0) 555 : cluster [DBG] osdmap e45: 6 total, 6 up, 6 in 2024-09-17T09:11:48.240 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:11:48.294 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:47 smithi134 bash[24188]: cluster 2024-09-17T09:11:46.569352+0000 mgr.a (mgr.14150) 282 : cluster [DBG] pgmap v252: 1 pgs: 1 remapped+peering; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:11:48.294 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:47 smithi134 bash[24188]: cluster 2024-09-17T09:11:46.806765+0000 mon.a (mon.0) 555 : cluster [DBG] osdmap e45: 6 total, 6 up, 6 in 2024-09-17T09:11:50.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:49 smithi098 bash[22661]: cluster 2024-09-17T09:11:48.569911+0000 mgr.a (mgr.14150) 283 : cluster [DBG] pgmap v254: 1 pgs: 1 remapped+peering; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:11:50.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:49 smithi165 bash[24863]: cluster 2024-09-17T09:11:48.569911+0000 mgr.a (mgr.14150) 283 : cluster [DBG] pgmap v254: 1 pgs: 1 remapped+peering; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:11:50.294 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:49 smithi134 bash[24188]: cluster 2024-09-17T09:11:48.569911+0000 mgr.a (mgr.14150) 283 : cluster [DBG] pgmap v254: 1 pgs: 1 remapped+peering; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:11:51.712 INFO:teuthology.orchestra.run.smithi098.stdout: 2024-09-17T09:11:52.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:51 smithi098 bash[22661]: cluster 2024-09-17T09:11:50.570507+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-17T09:11:52.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:51 smithi098 bash[22661]: audit 2024-09-17T09:11:51.713119+0000 mon.a (mon.0) 556 : audit [DBG] from='client.? 172.21.15.98:0/1835257447' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T09:11:52.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:51 smithi165 bash[24863]: cluster 2024-09-17T09:11:50.570507+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-17T09:11:52.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:51 smithi165 bash[24863]: audit 2024-09-17T09:11:51.713119+0000 mon.a (mon.0) 556 : audit [DBG] from='client.? 172.21.15.98:0/1835257447' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T09:11:52.294 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:51 smithi134 bash[24188]: cluster 2024-09-17T09:11:50.570507+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-17T09:11:52.294 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:51 smithi134 bash[24188]: audit 2024-09-17T09:11:51.713119+0000 mon.a (mon.0) 556 : audit [DBG] from='client.? 172.21.15.98:0/1835257447' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T09:11:52.497 INFO:teuthology.orchestra.run.smithi098.stdout:{"epoch":45,"num_osds":6,"num_up_osds":6,"osd_up_since":1726564302,"num_in_osds":6,"osd_in_since":1726564277,"num_remapped_pgs":0} 2024-09-17T09:11:52.498 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-17T09:11:53.360 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:53 smithi098 bash[22661]: cephadm 2024-09-17T09:11:52.044506+0000 mgr.a (mgr.14150) 285 : cephadm [INF] Detected new or changed devices on smithi165 2024-09-17T09:11:53.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:53 smithi098 bash[22661]: audit 2024-09-17T09:11:52.054886+0000 mon.a (mon.0) 557 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:53.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:53 smithi098 bash[22661]: audit 2024-09-17T09:11:52.064860+0000 mon.a (mon.0) 558 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:53.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:53 smithi098 bash[22661]: audit 2024-09-17T09:11:52.066712+0000 mon.a (mon.0) 559 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:11:53.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:53 smithi098 bash[22661]: audit 2024-09-17T09:11:52.068500+0000 mon.a (mon.0) 560 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:11:53.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:53 smithi098 bash[22661]: cephadm 2024-09-17T09:11:52.069806+0000 mgr.a (mgr.14150) 286 : cephadm [INF] Adjusting osd_memory_target on smithi165 to 10680M 2024-09-17T09:11:53.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:53 smithi098 bash[22661]: audit 2024-09-17T09:11:52.080115+0000 mon.a (mon.0) 561 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:53.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:53 smithi098 bash[22661]: audit 2024-09-17T09:11:52.082244+0000 mon.a (mon.0) 562 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:11:53.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:53 smithi098 bash[22661]: audit 2024-09-17T09:11:52.084166+0000 mon.a (mon.0) 563 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:11:53.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:53 smithi098 bash[22661]: audit 2024-09-17T09:11:52.095778+0000 mon.a (mon.0) 564 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:53.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:53 smithi098 bash[22661]: cluster 2024-09-17T09:11:52.570972+0000 mgr.a (mgr.14150) 287 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 74 KiB/s, 0 objects/s recovering 2024-09-17T09:11:53.382 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:53 smithi165 bash[24863]: cephadm 2024-09-17T09:11:52.044506+0000 mgr.a (mgr.14150) 285 : cephadm [INF] Detected new or changed devices on smithi165 2024-09-17T09:11:53.382 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:53 smithi165 bash[24863]: audit 2024-09-17T09:11:52.054886+0000 mon.a (mon.0) 557 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:53.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:53 smithi165 bash[24863]: audit 2024-09-17T09:11:52.064860+0000 mon.a (mon.0) 558 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:53.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:53 smithi165 bash[24863]: audit 2024-09-17T09:11:52.066712+0000 mon.a (mon.0) 559 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:11:53.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:53 smithi165 bash[24863]: audit 2024-09-17T09:11:52.068500+0000 mon.a (mon.0) 560 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:11:53.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:53 smithi165 bash[24863]: cephadm 2024-09-17T09:11:52.069806+0000 mgr.a (mgr.14150) 286 : cephadm [INF] Adjusting osd_memory_target on smithi165 to 10680M 2024-09-17T09:11:53.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:53 smithi165 bash[24863]: audit 2024-09-17T09:11:52.080115+0000 mon.a (mon.0) 561 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:53.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:53 smithi165 bash[24863]: audit 2024-09-17T09:11:52.082244+0000 mon.a (mon.0) 562 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:11:53.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:53 smithi165 bash[24863]: audit 2024-09-17T09:11:52.084166+0000 mon.a (mon.0) 563 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:11:53.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:53 smithi165 bash[24863]: audit 2024-09-17T09:11:52.095778+0000 mon.a (mon.0) 564 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:53.383 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:53 smithi165 bash[24863]: cluster 2024-09-17T09:11:52.570972+0000 mgr.a (mgr.14150) 287 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 74 KiB/s, 0 objects/s recovering 2024-09-17T09:11:53.545 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:53 smithi134 bash[24188]: cephadm 2024-09-17T09:11:52.044506+0000 mgr.a (mgr.14150) 285 : cephadm [INF] Detected new or changed devices on smithi165 2024-09-17T09:11:53.545 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:53 smithi134 bash[24188]: audit 2024-09-17T09:11:52.054886+0000 mon.a (mon.0) 557 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:53.545 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:53 smithi134 bash[24188]: audit 2024-09-17T09:11:52.064860+0000 mon.a (mon.0) 558 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:53.545 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:53 smithi134 bash[24188]: audit 2024-09-17T09:11:52.066712+0000 mon.a (mon.0) 559 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:11:53.545 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:53 smithi134 bash[24188]: audit 2024-09-17T09:11:52.068500+0000 mon.a (mon.0) 560 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-17T09:11:53.545 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:53 smithi134 bash[24188]: cephadm 2024-09-17T09:11:52.069806+0000 mgr.a (mgr.14150) 286 : cephadm [INF] Adjusting osd_memory_target on smithi165 to 10680M 2024-09-17T09:11:53.545 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:53 smithi134 bash[24188]: audit 2024-09-17T09:11:52.080115+0000 mon.a (mon.0) 561 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:53.545 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:53 smithi134 bash[24188]: audit 2024-09-17T09:11:52.082244+0000 mon.a (mon.0) 562 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:11:53.545 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:53 smithi134 bash[24188]: audit 2024-09-17T09:11:52.084166+0000 mon.a (mon.0) 563 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:11:53.545 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:53 smithi134 bash[24188]: audit 2024-09-17T09:11:52.095778+0000 mon.a (mon.0) 564 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:11:53.545 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:53 smithi134 bash[24188]: cluster 2024-09-17T09:11:52.570972+0000 mgr.a (mgr.14150) 287 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 74 KiB/s, 0 objects/s recovering 2024-09-17T09:11:55.882 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:55 smithi165 bash[24863]: cluster 2024-09-17T09:11:54.571610+0000 mgr.a (mgr.14150) 288 : cluster [DBG] pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 66 KiB/s, 0 objects/s recovering 2024-09-17T09:11:56.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:55 smithi134 bash[24188]: cluster 2024-09-17T09:11:54.571610+0000 mgr.a (mgr.14150) 288 : cluster [DBG] pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 66 KiB/s, 0 objects/s recovering 2024-09-17T09:11:56.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:55 smithi098 bash[22661]: cluster 2024-09-17T09:11:54.571610+0000 mgr.a (mgr.14150) 288 : cluster [DBG] pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 66 KiB/s, 0 objects/s recovering 2024-09-17T09:11:57.186 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:11:58.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:57 smithi134 bash[24188]: cluster 2024-09-17T09:11:56.572281+0000 mgr.a (mgr.14150) 289 : cluster [DBG] pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-17T09:11:58.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:57 smithi098 bash[22661]: cluster 2024-09-17T09:11:56.572281+0000 mgr.a (mgr.14150) 289 : cluster [DBG] pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-17T09:11:58.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:57 smithi165 bash[24863]: cluster 2024-09-17T09:11:56.572281+0000 mgr.a (mgr.14150) 289 : cluster [DBG] pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-17T09:11:59.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:11:59 smithi098 bash[22661]: cluster 2024-09-17T09:11:58.572740+0000 mgr.a (mgr.14150) 290 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 49 KiB/s, 0 objects/s recovering 2024-09-17T09:12:00.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:11:59 smithi134 bash[24188]: cluster 2024-09-17T09:11:58.572740+0000 mgr.a (mgr.14150) 290 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 49 KiB/s, 0 objects/s recovering 2024-09-17T09:12:00.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:11:59 smithi165 bash[24863]: cluster 2024-09-17T09:11:58.572740+0000 mgr.a (mgr.14150) 290 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 49 KiB/s, 0 objects/s recovering 2024-09-17T09:12:00.861 INFO:teuthology.orchestra.run.smithi098.stdout: 2024-09-17T09:12:00.861 INFO:teuthology.orchestra.run.smithi098.stdout:{"epoch":45,"fsid":"7d5e8b1e-74d3-11ef-bceb-c7b262605968","created":"2024-09-17T09:03:29.311729+0000","modified":"2024-09-17T09:11:46.793817+0000","last_up_change":"2024-09-17T09:11:42.756747+0000","last_in_change":"2024-09-17T09:11:17.312167+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":"reef","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-17T09:09:11.059403+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"21","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"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":"f00394e9-be33-4836-a0c4-bf9b4da9b292","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.98:6802","nonce":51610821},{"type":"v1","addr":"172.21.15.98:6803","nonce":51610821}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.98:6804","nonce":51610821},{"type":"v1","addr":"172.21.15.98:6805","nonce":51610821}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.98:6808","nonce":51610821},{"type":"v1","addr":"172.21.15.98:6809","nonce":51610821}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.98:6806","nonce":51610821},{"type":"v1","addr":"172.21.15.98:6807","nonce":51610821}]},"public_addr":"172.21.15.98:6803/51610821","cluster_addr":"172.21.15.98:6805/51610821","heartbeat_back_addr":"172.21.15.98:6809/51610821","heartbeat_front_addr":"172.21.15.98:6807/51610821","state":["exists","up"]},{"osd":1,"uuid":"6a67c173-811f-4af5-b8e9-8d357b5ffb3a","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.98:6810","nonce":3374388819},{"type":"v1","addr":"172.21.15.98:6811","nonce":3374388819}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.98:6812","nonce":3374388819},{"type":"v1","addr":"172.21.15.98:6813","nonce":3374388819}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.98:6816","nonce":3374388819},{"type":"v1","addr":"172.21.15.98:6817","nonce":3374388819}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.98:6814","nonce":3374388819},{"type":"v1","addr":"172.21.15.98:6815","nonce":3374388819}]},"public_addr":"172.21.15.98:6811/3374388819","cluster_addr":"172.21.15.98:6813/3374388819","heartbeat_back_addr":"172.21.15.98:6817/3374388819","heartbeat_front_addr":"172.21.15.98:6815/3374388819","state":["exists","up"]},{"osd":2,"uuid":"d7864208-dafd-4f82-adef-5623c3ed0461","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.134:6800","nonce":1810538513},{"type":"v1","addr":"172.21.15.134:6801","nonce":1810538513}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.134:6802","nonce":1810538513},{"type":"v1","addr":"172.21.15.134:6803","nonce":1810538513}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.134:6806","nonce":1810538513},{"type":"v1","addr":"172.21.15.134:6807","nonce":1810538513}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.134:6804","nonce":1810538513},{"type":"v1","addr":"172.21.15.134:6805","nonce":1810538513}]},"public_addr":"172.21.15.134:6801/1810538513","cluster_addr":"172.21.15.134:6803/1810538513","heartbeat_back_addr":"172.21.15.134:6807/1810538513","heartbeat_front_addr":"172.21.15.134:6805/1810538513","state":["exists","up"]},{"osd":3,"uuid":"ef5afe90-675d-4993-8c36-920122a16d34","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.134:6808","nonce":361081964},{"type":"v1","addr":"172.21.15.134:6809","nonce":361081964}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.134:6810","nonce":361081964},{"type":"v1","addr":"172.21.15.134:6811","nonce":361081964}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.134:6814","nonce":361081964},{"type":"v1","addr":"172.21.15.134:6815","nonce":361081964}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.134:6812","nonce":361081964},{"type":"v1","addr":"172.21.15.134:6813","nonce":361081964}]},"public_addr":"172.21.15.134:6809/361081964","cluster_addr":"172.21.15.134:6811/361081964","heartbeat_back_addr":"172.21.15.134:6815/361081964","heartbeat_front_addr":"172.21.15.134:6813/361081964","state":["exists","up"]},{"osd":4,"uuid":"48a02c26-f9cf-4ce3-860f-f6045884bf65","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.165:6800","nonce":946302502},{"type":"v1","addr":"172.21.15.165:6801","nonce":946302502}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6802","nonce":946302502},{"type":"v1","addr":"172.21.15.165:6803","nonce":946302502}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6806","nonce":946302502},{"type":"v1","addr":"172.21.15.165:6807","nonce":946302502}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6804","nonce":946302502},{"type":"v1","addr":"172.21.15.165:6805","nonce":946302502}]},"public_addr":"172.21.15.165:6801/946302502","cluster_addr":"172.21.15.165:6803/946302502","heartbeat_back_addr":"172.21.15.165:6807/946302502","heartbeat_front_addr":"172.21.15.165:6805/946302502","state":["exists","up"]},{"osd":5,"uuid":"44fede18-4a27-40bb-8b7c-3206a402a9bb","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.165:6808","nonce":3060401311},{"type":"v1","addr":"172.21.15.165:6809","nonce":3060401311}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6810","nonce":3060401311},{"type":"v1","addr":"172.21.15.165:6811","nonce":3060401311}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6814","nonce":3060401311},{"type":"v1","addr":"172.21.15.165:6815","nonce":3060401311}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6812","nonce":3060401311},{"type":"v1","addr":"172.21.15.165:6813","nonce":3060401311}]},"public_addr":"172.21.15.165:6809/3060401311","cluster_addr":"172.21.15.165:6811/3060401311","heartbeat_back_addr":"172.21.15.165:6815/3060401311","heartbeat_front_addr":"172.21.15.165:6813/3060401311","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T09:07:23.883917+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T09:08:18.718333+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T09:09:07.934408+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T09:10:02.482177+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T09:10:49.406912+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T09:11:41.599057+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.98:6801/3954413891":"2024-09-18T09:04:30.456362+0000","172.21.15.98:6800/3954413891":"2024-09-18T09:04:30.456362+0000","172.21.15.98:0/773297725":"2024-09-18T09:04:30.456362+0000","172.21.15.98:0/689299732":"2024-09-18T09:04:30.456362+0000","172.21.15.98:0/1817939578":"2024-09-18T09:03:57.640381+0000","172.21.15.98:0/1859907858":"2024-09-18T09:03:57.640381+0000","172.21.15.98:0/3147720344":"2024-09-18T09:04:30.456362+0000","172.21.15.98:6801/2066595344":"2024-09-18T09:03:57.640381+0000","172.21.15.98:6800/2066595344":"2024-09-18T09:03:57.640381+0000","172.21.15.98:0/1579453448":"2024-09-18T09:03:57.640381+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-17T09:12:01.577 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-09-17T09:09:11.059403+0000', 'flags': 1, 'flags_names': 'hashpspool', 'type': 1, 'size': 3, 'min_size': 2, 'crush_rule': 0, 'peering_crush_bucket_count': 0, 'peering_crush_bucket_target': 0, 'peering_crush_bucket_barrier': 0, 'peering_crush_bucket_mandatory_member': 2147483647, 'object_hash': 2, 'pg_autoscale_mode': 'off', 'pg_num': 1, 'pg_placement_num': 1, 'pg_placement_num_target': 1, 'pg_num_target': 1, 'pg_num_pending': 1, 'last_pg_merge_meta': {'source_pgid': '0.0', 'ready_epoch': 0, 'last_epoch_started': 0, 'last_epoch_clean': 0, 'source_version': "0'0", 'target_version': "0'0"}, 'last_change': '21', 'last_force_op_resend': '0', 'last_force_op_resend_prenautilus': '0', 'last_force_op_resend_preluminous': '0', 'auid': 0, 'snap_mode': 'selfmanaged', 'snap_seq': 0, 'snap_epoch': 0, 'pool_snaps': [], 'removed_snaps': '[]', 'quota_max_bytes': 0, 'quota_max_objects': 0, 'tiers': [], 'tier_of': -1, 'read_tier': -1, 'write_tier': -1, 'cache_mode': 'none', 'target_max_bytes': 0, 'target_max_objects': 0, 'cache_target_dirty_ratio_micro': 400000, 'cache_target_dirty_high_ratio_micro': 600000, 'cache_target_full_ratio_micro': 800000, 'cache_min_flush_age': 0, 'cache_min_evict_age': 0, 'erasure_code_profile': '', 'hit_set_params': {'type': 'none'}, 'hit_set_period': 0, 'hit_set_count': 0, 'use_gmt_hitset': True, 'min_read_recency_for_promote': 0, 'min_write_recency_for_promote': 0, 'hit_set_grade_decay_rate': 0, 'hit_set_search_last_n': 0, 'grade_table': [], 'stripe_width': 0, 'expected_num_objects': 0, 'fast_read': False, 'options': {'pg_num_max': 32, 'pg_num_min': 1}, 'application_metadata': {'mgr': {}}, 'read_balance': {'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-17T09:12:01.577 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph osd pool get .mgr pg_num 2024-09-17T09:12:01.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:01 smithi098 bash[22661]: cluster 2024-09-17T09:12:00.573179+0000 mgr.a (mgr.14150) 291 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-17T09:12:01.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:01 smithi098 bash[22661]: audit 2024-09-17T09:12:00.860203+0000 mon.a (mon.0) 565 : audit [DBG] from='client.? 172.21.15.98:0/4028787620' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T09:12:02.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:01 smithi134 bash[24188]: cluster 2024-09-17T09:12:00.573179+0000 mgr.a (mgr.14150) 291 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-17T09:12:02.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:01 smithi134 bash[24188]: audit 2024-09-17T09:12:00.860203+0000 mon.a (mon.0) 565 : audit [DBG] from='client.? 172.21.15.98:0/4028787620' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T09:12:02.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:01 smithi165 bash[24863]: cluster 2024-09-17T09:12:00.573179+0000 mgr.a (mgr.14150) 291 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-17T09:12:02.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:01 smithi165 bash[24863]: audit 2024-09-17T09:12:00.860203+0000 mon.a (mon.0) 565 : audit [DBG] from='client.? 172.21.15.98:0/4028787620' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T09:12:04.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:03 smithi134 bash[24188]: cluster 2024-09-17T09:12:02.573695+0000 mgr.a (mgr.14150) 292 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:04.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:03 smithi098 bash[22661]: cluster 2024-09-17T09:12:02.573695+0000 mgr.a (mgr.14150) 292 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:04.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:03 smithi165 bash[24863]: cluster 2024-09-17T09:12:02.573695+0000 mgr.a (mgr.14150) 292 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:06.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:05 smithi134 bash[24188]: cluster 2024-09-17T09:12:04.574293+0000 mgr.a (mgr.14150) 293 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:06.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:05 smithi098 bash[22661]: cluster 2024-09-17T09:12:04.574293+0000 mgr.a (mgr.14150) 293 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:06.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:05 smithi165 bash[24863]: cluster 2024-09-17T09:12:04.574293+0000 mgr.a (mgr.14150) 293 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:06.267 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:12:07.750 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:07 smithi098 bash[22661]: cluster 2024-09-17T09:12:06.574846+0000 mgr.a (mgr.14150) 294 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:08.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:07 smithi134 bash[24188]: cluster 2024-09-17T09:12:06.574846+0000 mgr.a (mgr.14150) 294 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:08.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:07 smithi165 bash[24863]: cluster 2024-09-17T09:12:06.574846+0000 mgr.a (mgr.14150) 294 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:09.595 INFO:teuthology.orchestra.run.smithi098.stdout:pg_num: 1 2024-09-17T09:12:09.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:09 smithi098 bash[22661]: cluster 2024-09-17T09:12:08.575443+0000 mgr.a (mgr.14150) 295 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:09.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:09 smithi098 bash[22661]: audit 2024-09-17T09:12:09.595789+0000 mon.a (mon.0) 566 : audit [DBG] from='client.? 172.21.15.98:0/1914309574' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-17T09:12:10.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:09 smithi134 bash[24188]: cluster 2024-09-17T09:12:08.575443+0000 mgr.a (mgr.14150) 295 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:10.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:09 smithi134 bash[24188]: audit 2024-09-17T09:12:09.595789+0000 mon.a (mon.0) 566 : audit [DBG] from='client.? 172.21.15.98:0/1914309574' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-17T09:12:10.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:09 smithi165 bash[24863]: cluster 2024-09-17T09:12:08.575443+0000 mgr.a (mgr.14150) 295 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:10.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:09 smithi165 bash[24863]: audit 2024-09-17T09:12:09.595789+0000 mon.a (mon.0) 566 : audit [DBG] from='client.? 172.21.15.98:0/1914309574' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-17T09:12:10.346 INFO:tasks.cephadm:Setting up client nodes... 2024-09-17T09:12:10.346 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-09-17T09:12:10.346 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-09-17T09:12:10.346 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph mgr dump --format=json 2024-09-17T09:12:12.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:11 smithi134 bash[24188]: cluster 2024-09-17T09:12:10.576042+0000 mgr.a (mgr.14150) 296 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:12.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:11 smithi098 bash[22661]: cluster 2024-09-17T09:12:10.576042+0000 mgr.a (mgr.14150) 296 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:12.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:11 smithi165 bash[24863]: cluster 2024-09-17T09:12:10.576042+0000 mgr.a (mgr.14150) 296 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:14.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:13 smithi134 bash[24188]: cluster 2024-09-17T09:12:12.576631+0000 mgr.a (mgr.14150) 297 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:14.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:13 smithi098 bash[22661]: cluster 2024-09-17T09:12:12.576631+0000 mgr.a (mgr.14150) 297 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:14.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:13 smithi165 bash[24863]: cluster 2024-09-17T09:12:12.576631+0000 mgr.a (mgr.14150) 297 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:15.032 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:12:16.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:15 smithi134 bash[24188]: cluster 2024-09-17T09:12:14.577222+0000 mgr.a (mgr.14150) 298 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:16.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:15 smithi098 bash[22661]: cluster 2024-09-17T09:12:14.577222+0000 mgr.a (mgr.14150) 298 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:16.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:15 smithi165 bash[24863]: cluster 2024-09-17T09:12:14.577222+0000 mgr.a (mgr.14150) 298 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:18.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:17 smithi134 bash[24188]: cluster 2024-09-17T09:12:16.577653+0000 mgr.a (mgr.14150) 299 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:18.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:17 smithi098 bash[22661]: cluster 2024-09-17T09:12:16.577653+0000 mgr.a (mgr.14150) 299 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:18.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:17 smithi165 bash[24863]: cluster 2024-09-17T09:12:16.577653+0000 mgr.a (mgr.14150) 299 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:18.720 INFO:teuthology.orchestra.run.smithi098.stdout: 2024-09-17T09:12:19.445 INFO:teuthology.orchestra.run.smithi098.stdout:{"epoch":15,"flags":0,"active_gid":14150,"active_name":"a","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.98:6800","nonce":28509227},{"type":"v1","addr":"172.21.15.98:6801","nonce":28509227}]},"active_addr":"172.21.15.98:6801/28509227","active_change":"2024-09-17T09:04:30.456601+0000","active_mgr_features":4540138322906710015,"available":true,"standbys":[{"gid":24107,"name":"b","mgr_features":4540138322906710015,"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","upmap"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.25.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_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/ceph-grafana:9.4.7","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_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.0.0","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_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"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":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"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":[]}}},{"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":[]},"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","upmap"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.25.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_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/ceph-grafana:9.4.7","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_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.0.0","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_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"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":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"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":[]}}},{"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":[]},"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.98: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"]},"last_failure_osd_epoch":3,"active_clients":[{"name":"devicehealth","addrvec":[{"type":"v2","addr":"172.21.15.98:0","nonce":3166332569}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.98:0","nonce":1367141605}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.98:0","nonce":1125358410}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.98:0","nonce":3151042230}]}]} 2024-09-17T09:12:19.449 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-09-17T09:12:19.449 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-09-17T09:12:19.449 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-17T09:12:19.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:19 smithi098 bash[22661]: cluster 2024-09-17T09:12:18.578148+0000 mgr.a (mgr.14150) 300 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:19.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:19 smithi098 bash[22661]: audit 2024-09-17T09:12:18.711371+0000 mon.a (mon.0) 567 : audit [DBG] from='client.? 172.21.15.98:0/3819704537' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-17T09:12:20.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:19 smithi134 bash[24188]: cluster 2024-09-17T09:12:18.578148+0000 mgr.a (mgr.14150) 300 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:20.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:19 smithi134 bash[24188]: audit 2024-09-17T09:12:18.711371+0000 mon.a (mon.0) 567 : audit [DBG] from='client.? 172.21.15.98:0/3819704537' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-17T09:12:20.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:19 smithi165 bash[24863]: cluster 2024-09-17T09:12:18.578148+0000 mgr.a (mgr.14150) 300 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:20.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:19 smithi165 bash[24863]: audit 2024-09-17T09:12:18.711371+0000 mon.a (mon.0) 567 : audit [DBG] from='client.? 172.21.15.98:0/3819704537' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-17T09:12:22.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:21 smithi134 bash[24188]: cluster 2024-09-17T09:12:20.578771+0000 mgr.a (mgr.14150) 301 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:22.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:21 smithi098 bash[22661]: cluster 2024-09-17T09:12:20.578771+0000 mgr.a (mgr.14150) 301 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:22.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:21 smithi165 bash[24863]: cluster 2024-09-17T09:12:20.578771+0000 mgr.a (mgr.14150) 301 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:24.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:23 smithi134 bash[24188]: cluster 2024-09-17T09:12:22.579340+0000 mgr.a (mgr.14150) 302 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:24.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:23 smithi098 bash[22661]: cluster 2024-09-17T09:12:22.579340+0000 mgr.a (mgr.14150) 302 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:24.127 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:12:24.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:23 smithi165 bash[24863]: cluster 2024-09-17T09:12:22.579340+0000 mgr.a (mgr.14150) 302 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:26.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:25 smithi134 bash[24188]: cluster 2024-09-17T09:12:24.579981+0000 mgr.a (mgr.14150) 303 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:26.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:25 smithi098 bash[22661]: cluster 2024-09-17T09:12:24.579981+0000 mgr.a (mgr.14150) 303 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:26.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:25 smithi165 bash[24863]: cluster 2024-09-17T09:12:24.579981+0000 mgr.a (mgr.14150) 303 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:27.521 INFO:teuthology.orchestra.run.smithi098.stdout: 2024-09-17T09:12:27.521 INFO:teuthology.orchestra.run.smithi098.stdout:{"epoch":45,"fsid":"7d5e8b1e-74d3-11ef-bceb-c7b262605968","created":"2024-09-17T09:03:29.311729+0000","modified":"2024-09-17T09:11:46.793817+0000","last_up_change":"2024-09-17T09:11:42.756747+0000","last_in_change":"2024-09-17T09:11:17.312167+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":"reef","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-17T09:09:11.059403+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"21","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"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":"f00394e9-be33-4836-a0c4-bf9b4da9b292","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.98:6802","nonce":51610821},{"type":"v1","addr":"172.21.15.98:6803","nonce":51610821}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.98:6804","nonce":51610821},{"type":"v1","addr":"172.21.15.98:6805","nonce":51610821}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.98:6808","nonce":51610821},{"type":"v1","addr":"172.21.15.98:6809","nonce":51610821}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.98:6806","nonce":51610821},{"type":"v1","addr":"172.21.15.98:6807","nonce":51610821}]},"public_addr":"172.21.15.98:6803/51610821","cluster_addr":"172.21.15.98:6805/51610821","heartbeat_back_addr":"172.21.15.98:6809/51610821","heartbeat_front_addr":"172.21.15.98:6807/51610821","state":["exists","up"]},{"osd":1,"uuid":"6a67c173-811f-4af5-b8e9-8d357b5ffb3a","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.98:6810","nonce":3374388819},{"type":"v1","addr":"172.21.15.98:6811","nonce":3374388819}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.98:6812","nonce":3374388819},{"type":"v1","addr":"172.21.15.98:6813","nonce":3374388819}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.98:6816","nonce":3374388819},{"type":"v1","addr":"172.21.15.98:6817","nonce":3374388819}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.98:6814","nonce":3374388819},{"type":"v1","addr":"172.21.15.98:6815","nonce":3374388819}]},"public_addr":"172.21.15.98:6811/3374388819","cluster_addr":"172.21.15.98:6813/3374388819","heartbeat_back_addr":"172.21.15.98:6817/3374388819","heartbeat_front_addr":"172.21.15.98:6815/3374388819","state":["exists","up"]},{"osd":2,"uuid":"d7864208-dafd-4f82-adef-5623c3ed0461","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.134:6800","nonce":1810538513},{"type":"v1","addr":"172.21.15.134:6801","nonce":1810538513}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.134:6802","nonce":1810538513},{"type":"v1","addr":"172.21.15.134:6803","nonce":1810538513}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.134:6806","nonce":1810538513},{"type":"v1","addr":"172.21.15.134:6807","nonce":1810538513}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.134:6804","nonce":1810538513},{"type":"v1","addr":"172.21.15.134:6805","nonce":1810538513}]},"public_addr":"172.21.15.134:6801/1810538513","cluster_addr":"172.21.15.134:6803/1810538513","heartbeat_back_addr":"172.21.15.134:6807/1810538513","heartbeat_front_addr":"172.21.15.134:6805/1810538513","state":["exists","up"]},{"osd":3,"uuid":"ef5afe90-675d-4993-8c36-920122a16d34","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.134:6808","nonce":361081964},{"type":"v1","addr":"172.21.15.134:6809","nonce":361081964}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.134:6810","nonce":361081964},{"type":"v1","addr":"172.21.15.134:6811","nonce":361081964}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.134:6814","nonce":361081964},{"type":"v1","addr":"172.21.15.134:6815","nonce":361081964}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.134:6812","nonce":361081964},{"type":"v1","addr":"172.21.15.134:6813","nonce":361081964}]},"public_addr":"172.21.15.134:6809/361081964","cluster_addr":"172.21.15.134:6811/361081964","heartbeat_back_addr":"172.21.15.134:6815/361081964","heartbeat_front_addr":"172.21.15.134:6813/361081964","state":["exists","up"]},{"osd":4,"uuid":"48a02c26-f9cf-4ce3-860f-f6045884bf65","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.165:6800","nonce":946302502},{"type":"v1","addr":"172.21.15.165:6801","nonce":946302502}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6802","nonce":946302502},{"type":"v1","addr":"172.21.15.165:6803","nonce":946302502}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6806","nonce":946302502},{"type":"v1","addr":"172.21.15.165:6807","nonce":946302502}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6804","nonce":946302502},{"type":"v1","addr":"172.21.15.165:6805","nonce":946302502}]},"public_addr":"172.21.15.165:6801/946302502","cluster_addr":"172.21.15.165:6803/946302502","heartbeat_back_addr":"172.21.15.165:6807/946302502","heartbeat_front_addr":"172.21.15.165:6805/946302502","state":["exists","up"]},{"osd":5,"uuid":"44fede18-4a27-40bb-8b7c-3206a402a9bb","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.165:6808","nonce":3060401311},{"type":"v1","addr":"172.21.15.165:6809","nonce":3060401311}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6810","nonce":3060401311},{"type":"v1","addr":"172.21.15.165:6811","nonce":3060401311}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6814","nonce":3060401311},{"type":"v1","addr":"172.21.15.165:6815","nonce":3060401311}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6812","nonce":3060401311},{"type":"v1","addr":"172.21.15.165:6813","nonce":3060401311}]},"public_addr":"172.21.15.165:6809/3060401311","cluster_addr":"172.21.15.165:6811/3060401311","heartbeat_back_addr":"172.21.15.165:6815/3060401311","heartbeat_front_addr":"172.21.15.165:6813/3060401311","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T09:07:23.883917+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T09:08:18.718333+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T09:09:07.934408+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T09:10:02.482177+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T09:10:49.406912+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T09:11:41.599057+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.98:6801/3954413891":"2024-09-18T09:04:30.456362+0000","172.21.15.98:6800/3954413891":"2024-09-18T09:04:30.456362+0000","172.21.15.98:0/773297725":"2024-09-18T09:04:30.456362+0000","172.21.15.98:0/689299732":"2024-09-18T09:04:30.456362+0000","172.21.15.98:0/1817939578":"2024-09-18T09:03:57.640381+0000","172.21.15.98:0/1859907858":"2024-09-18T09:03:57.640381+0000","172.21.15.98:0/3147720344":"2024-09-18T09:04:30.456362+0000","172.21.15.98:6801/2066595344":"2024-09-18T09:03:57.640381+0000","172.21.15.98:6800/2066595344":"2024-09-18T09:03:57.640381+0000","172.21.15.98:0/1579453448":"2024-09-18T09:03:57.640381+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-17T09:12:27.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:27 smithi098 bash[22661]: cluster 2024-09-17T09:12:26.580542+0000 mgr.a (mgr.14150) 304 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:27.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:27 smithi098 bash[22661]: audit 2024-09-17T09:12:27.520284+0000 mon.a (mon.0) 568 : audit [DBG] from='client.? 172.21.15.98:0/693630303' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T09:12:28.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:27 smithi134 bash[24188]: cluster 2024-09-17T09:12:26.580542+0000 mgr.a (mgr.14150) 304 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:28.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:27 smithi134 bash[24188]: audit 2024-09-17T09:12:27.520284+0000 mon.a (mon.0) 568 : audit [DBG] from='client.? 172.21.15.98:0/693630303' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T09:12:28.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:27 smithi165 bash[24863]: cluster 2024-09-17T09:12:26.580542+0000 mgr.a (mgr.14150) 304 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:28.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:27 smithi165 bash[24863]: audit 2024-09-17T09:12:27.520284+0000 mon.a (mon.0) 568 : audit [DBG] from='client.? 172.21.15.98:0/693630303' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T09:12:28.216 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-09-17T09:12:28.216 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-17T09:12:30.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:29 smithi134 bash[24188]: cluster 2024-09-17T09:12:28.581090+0000 mgr.a (mgr.14150) 305 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:30.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:29 smithi098 bash[22661]: cluster 2024-09-17T09:12:28.581090+0000 mgr.a (mgr.14150) 305 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:30.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:29 smithi165 bash[24863]: cluster 2024-09-17T09:12:28.581090+0000 mgr.a (mgr.14150) 305 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:32.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:31 smithi134 bash[24188]: cluster 2024-09-17T09:12:30.581633+0000 mgr.a (mgr.14150) 306 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:32.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:31 smithi098 bash[22661]: cluster 2024-09-17T09:12:30.581633+0000 mgr.a (mgr.14150) 306 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:32.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:31 smithi165 bash[24863]: cluster 2024-09-17T09:12:30.581633+0000 mgr.a (mgr.14150) 306 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:32.901 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:12:34.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:33 smithi134 bash[24188]: cluster 2024-09-17T09:12:32.582184+0000 mgr.a (mgr.14150) 307 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:34.058 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:33 smithi098 bash[22661]: cluster 2024-09-17T09:12:32.582184+0000 mgr.a (mgr.14150) 307 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:34.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:33 smithi165 bash[24863]: cluster 2024-09-17T09:12:32.582184+0000 mgr.a (mgr.14150) 307 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:36.027 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:35 smithi098 bash[22661]: cluster 2024-09-17T09:12:34.582782+0000 mgr.a (mgr.14150) 308 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:36.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:35 smithi134 bash[24188]: cluster 2024-09-17T09:12:34.582782+0000 mgr.a (mgr.14150) 308 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:36.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:35 smithi165 bash[24863]: cluster 2024-09-17T09:12:34.582782+0000 mgr.a (mgr.14150) 308 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:36.358 INFO:teuthology.orchestra.run.smithi098.stdout: 2024-09-17T09:12:36.358 INFO:teuthology.orchestra.run.smithi098.stdout:{"epoch":45,"fsid":"7d5e8b1e-74d3-11ef-bceb-c7b262605968","created":"2024-09-17T09:03:29.311729+0000","modified":"2024-09-17T09:11:46.793817+0000","last_up_change":"2024-09-17T09:11:42.756747+0000","last_in_change":"2024-09-17T09:11:17.312167+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":"reef","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-17T09:09:11.059403+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"21","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"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":"f00394e9-be33-4836-a0c4-bf9b4da9b292","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.98:6802","nonce":51610821},{"type":"v1","addr":"172.21.15.98:6803","nonce":51610821}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.98:6804","nonce":51610821},{"type":"v1","addr":"172.21.15.98:6805","nonce":51610821}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.98:6808","nonce":51610821},{"type":"v1","addr":"172.21.15.98:6809","nonce":51610821}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.98:6806","nonce":51610821},{"type":"v1","addr":"172.21.15.98:6807","nonce":51610821}]},"public_addr":"172.21.15.98:6803/51610821","cluster_addr":"172.21.15.98:6805/51610821","heartbeat_back_addr":"172.21.15.98:6809/51610821","heartbeat_front_addr":"172.21.15.98:6807/51610821","state":["exists","up"]},{"osd":1,"uuid":"6a67c173-811f-4af5-b8e9-8d357b5ffb3a","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.98:6810","nonce":3374388819},{"type":"v1","addr":"172.21.15.98:6811","nonce":3374388819}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.98:6812","nonce":3374388819},{"type":"v1","addr":"172.21.15.98:6813","nonce":3374388819}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.98:6816","nonce":3374388819},{"type":"v1","addr":"172.21.15.98:6817","nonce":3374388819}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.98:6814","nonce":3374388819},{"type":"v1","addr":"172.21.15.98:6815","nonce":3374388819}]},"public_addr":"172.21.15.98:6811/3374388819","cluster_addr":"172.21.15.98:6813/3374388819","heartbeat_back_addr":"172.21.15.98:6817/3374388819","heartbeat_front_addr":"172.21.15.98:6815/3374388819","state":["exists","up"]},{"osd":2,"uuid":"d7864208-dafd-4f82-adef-5623c3ed0461","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.134:6800","nonce":1810538513},{"type":"v1","addr":"172.21.15.134:6801","nonce":1810538513}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.134:6802","nonce":1810538513},{"type":"v1","addr":"172.21.15.134:6803","nonce":1810538513}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.134:6806","nonce":1810538513},{"type":"v1","addr":"172.21.15.134:6807","nonce":1810538513}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.134:6804","nonce":1810538513},{"type":"v1","addr":"172.21.15.134:6805","nonce":1810538513}]},"public_addr":"172.21.15.134:6801/1810538513","cluster_addr":"172.21.15.134:6803/1810538513","heartbeat_back_addr":"172.21.15.134:6807/1810538513","heartbeat_front_addr":"172.21.15.134:6805/1810538513","state":["exists","up"]},{"osd":3,"uuid":"ef5afe90-675d-4993-8c36-920122a16d34","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.134:6808","nonce":361081964},{"type":"v1","addr":"172.21.15.134:6809","nonce":361081964}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.134:6810","nonce":361081964},{"type":"v1","addr":"172.21.15.134:6811","nonce":361081964}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.134:6814","nonce":361081964},{"type":"v1","addr":"172.21.15.134:6815","nonce":361081964}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.134:6812","nonce":361081964},{"type":"v1","addr":"172.21.15.134:6813","nonce":361081964}]},"public_addr":"172.21.15.134:6809/361081964","cluster_addr":"172.21.15.134:6811/361081964","heartbeat_back_addr":"172.21.15.134:6815/361081964","heartbeat_front_addr":"172.21.15.134:6813/361081964","state":["exists","up"]},{"osd":4,"uuid":"48a02c26-f9cf-4ce3-860f-f6045884bf65","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.165:6800","nonce":946302502},{"type":"v1","addr":"172.21.15.165:6801","nonce":946302502}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6802","nonce":946302502},{"type":"v1","addr":"172.21.15.165:6803","nonce":946302502}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6806","nonce":946302502},{"type":"v1","addr":"172.21.15.165:6807","nonce":946302502}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6804","nonce":946302502},{"type":"v1","addr":"172.21.15.165:6805","nonce":946302502}]},"public_addr":"172.21.15.165:6801/946302502","cluster_addr":"172.21.15.165:6803/946302502","heartbeat_back_addr":"172.21.15.165:6807/946302502","heartbeat_front_addr":"172.21.15.165:6805/946302502","state":["exists","up"]},{"osd":5,"uuid":"44fede18-4a27-40bb-8b7c-3206a402a9bb","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.165:6808","nonce":3060401311},{"type":"v1","addr":"172.21.15.165:6809","nonce":3060401311}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6810","nonce":3060401311},{"type":"v1","addr":"172.21.15.165:6811","nonce":3060401311}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6814","nonce":3060401311},{"type":"v1","addr":"172.21.15.165:6815","nonce":3060401311}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6812","nonce":3060401311},{"type":"v1","addr":"172.21.15.165:6813","nonce":3060401311}]},"public_addr":"172.21.15.165:6809/3060401311","cluster_addr":"172.21.15.165:6811/3060401311","heartbeat_back_addr":"172.21.15.165:6815/3060401311","heartbeat_front_addr":"172.21.15.165:6813/3060401311","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T09:07:23.883917+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T09:08:18.718333+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T09:09:07.934408+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T09:10:02.482177+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T09:10:49.406912+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T09:11:41.599057+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.98:6801/3954413891":"2024-09-18T09:04:30.456362+0000","172.21.15.98:6800/3954413891":"2024-09-18T09:04:30.456362+0000","172.21.15.98:0/773297725":"2024-09-18T09:04:30.456362+0000","172.21.15.98:0/689299732":"2024-09-18T09:04:30.456362+0000","172.21.15.98:0/1817939578":"2024-09-18T09:03:57.640381+0000","172.21.15.98:0/1859907858":"2024-09-18T09:03:57.640381+0000","172.21.15.98:0/3147720344":"2024-09-18T09:04:30.456362+0000","172.21.15.98:6801/2066595344":"2024-09-18T09:03:57.640381+0000","172.21.15.98:6800/2066595344":"2024-09-18T09:03:57.640381+0000","172.21.15.98:0/1579453448":"2024-09-18T09:03:57.640381+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-17T09:12:37.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:36 smithi134 bash[24188]: audit 2024-09-17T09:12:36.357879+0000 mon.a (mon.0) 569 : audit [DBG] from='client.? 172.21.15.98:0/4207084415' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T09:12:37.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:36 smithi098 bash[22661]: audit 2024-09-17T09:12:36.357879+0000 mon.a (mon.0) 569 : audit [DBG] from='client.? 172.21.15.98:0/4207084415' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T09:12:37.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:36 smithi165 bash[24863]: audit 2024-09-17T09:12:36.357879+0000 mon.a (mon.0) 569 : audit [DBG] from='client.? 172.21.15.98:0/4207084415' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T09:12:37.141 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph tell osd.0 flush_pg_stats 2024-09-17T09:12:37.142 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph tell osd.1 flush_pg_stats 2024-09-17T09:12:37.142 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph tell osd.2 flush_pg_stats 2024-09-17T09:12:37.142 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph tell osd.3 flush_pg_stats 2024-09-17T09:12:37.143 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph tell osd.4 flush_pg_stats 2024-09-17T09:12:37.143 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph tell osd.5 flush_pg_stats 2024-09-17T09:12:38.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:37 smithi134 bash[24188]: cluster 2024-09-17T09:12:36.583313+0000 mgr.a (mgr.14150) 309 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:38.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:37 smithi098 bash[22661]: cluster 2024-09-17T09:12:36.583313+0000 mgr.a (mgr.14150) 309 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:38.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:37 smithi165 bash[24863]: cluster 2024-09-17T09:12:36.583313+0000 mgr.a (mgr.14150) 309 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:40.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:39 smithi134 bash[24188]: cluster 2024-09-17T09:12:38.583874+0000 mgr.a (mgr.14150) 310 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:40.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:39 smithi098 bash[22661]: cluster 2024-09-17T09:12:38.583874+0000 mgr.a (mgr.14150) 310 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:40.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:39 smithi165 bash[24863]: cluster 2024-09-17T09:12:38.583874+0000 mgr.a (mgr.14150) 310 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:41.838 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:12:41.839 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:12:41.839 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:12:41.842 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:12:41.842 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:12:41.842 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:12:42.026 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:41 smithi098 bash[22661]: cluster 2024-09-17T09:12:40.584452+0000 mgr.a (mgr.14150) 311 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:42.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:41 smithi134 bash[24188]: cluster 2024-09-17T09:12:40.584452+0000 mgr.a (mgr.14150) 311 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:42.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:41 smithi165 bash[24863]: cluster 2024-09-17T09:12:40.584452+0000 mgr.a (mgr.14150) 311 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:44.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:43 smithi134 bash[24188]: cluster 2024-09-17T09:12:42.585056+0000 mgr.a (mgr.14150) 312 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:44.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:43 smithi098 bash[22661]: cluster 2024-09-17T09:12:42.585056+0000 mgr.a (mgr.14150) 312 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:44.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:43 smithi165 bash[24863]: cluster 2024-09-17T09:12:42.585056+0000 mgr.a (mgr.14150) 312 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:46.005 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:45 smithi098 bash[22661]: cluster 2024-09-17T09:12:44.585686+0000 mgr.a (mgr.14150) 313 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:46.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:45 smithi134 bash[24188]: cluster 2024-09-17T09:12:44.585686+0000 mgr.a (mgr.14150) 313 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:46.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:45 smithi165 bash[24863]: cluster 2024-09-17T09:12:44.585686+0000 mgr.a (mgr.14150) 313 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:47.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:47 smithi098 bash[22661]: cluster 2024-09-17T09:12:46.586280+0000 mgr.a (mgr.14150) 314 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:48.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:47 smithi134 bash[24188]: cluster 2024-09-17T09:12:46.586280+0000 mgr.a (mgr.14150) 314 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:48.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:47 smithi165 bash[24863]: cluster 2024-09-17T09:12:46.586280+0000 mgr.a (mgr.14150) 314 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:50.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:49 smithi134 bash[24188]: cluster 2024-09-17T09:12:48.586836+0000 mgr.a (mgr.14150) 315 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:50.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:49 smithi098 bash[22661]: cluster 2024-09-17T09:12:48.586836+0000 mgr.a (mgr.14150) 315 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:50.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:49 smithi165 bash[24863]: cluster 2024-09-17T09:12:48.586836+0000 mgr.a (mgr.14150) 315 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:52.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:51 smithi134 bash[24188]: cluster 2024-09-17T09:12:50.587380+0000 mgr.a (mgr.14150) 316 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:52.113 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:51 smithi098 bash[22661]: cluster 2024-09-17T09:12:50.587380+0000 mgr.a (mgr.14150) 316 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:52.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:51 smithi165 bash[24863]: cluster 2024-09-17T09:12:50.587380+0000 mgr.a (mgr.14150) 316 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:52.813 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:52 smithi098 bash[22661]: audit 2024-09-17T09:12:52.165462+0000 mon.a (mon.0) 570 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:12:52.813 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:52 smithi098 bash[22661]: audit 2024-09-17T09:12:52.699549+0000 mon.a (mon.0) 571 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:12:52.813 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:52 smithi098 bash[22661]: audit 2024-09-17T09:12:52.700728+0000 mon.a (mon.0) 572 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:12:52.813 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:52 smithi098 bash[22661]: audit 2024-09-17T09:12:52.707232+0000 mon.a (mon.0) 573 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:12:53.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:52 smithi134 bash[24188]: audit 2024-09-17T09:12:52.165462+0000 mon.a (mon.0) 570 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:12:53.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:52 smithi134 bash[24188]: audit 2024-09-17T09:12:52.699549+0000 mon.a (mon.0) 571 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:12:53.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:52 smithi134 bash[24188]: audit 2024-09-17T09:12:52.700728+0000 mon.a (mon.0) 572 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:12:53.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:52 smithi134 bash[24188]: audit 2024-09-17T09:12:52.707232+0000 mon.a (mon.0) 573 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:12:53.046 INFO:teuthology.orchestra.run.smithi098.stdout:55834574905 2024-09-17T09:12:53.047 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.1 2024-09-17T09:12:53.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:52 smithi165 bash[24863]: audit 2024-09-17T09:12:52.165462+0000 mon.a (mon.0) 570 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:12:53.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:52 smithi165 bash[24863]: audit 2024-09-17T09:12:52.699549+0000 mon.a (mon.0) 571 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:12:53.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:52 smithi165 bash[24863]: audit 2024-09-17T09:12:52.700728+0000 mon.a (mon.0) 572 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:12:53.133 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:52 smithi165 bash[24863]: audit 2024-09-17T09:12:52.707232+0000 mon.a (mon.0) 573 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:12:54.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:53 smithi134 bash[24188]: cluster 2024-09-17T09:12:52.587749+0000 mgr.a (mgr.14150) 317 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:54.094 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:53 smithi098 bash[22661]: cluster 2024-09-17T09:12:52.587749+0000 mgr.a (mgr.14150) 317 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:54.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:53 smithi165 bash[24863]: cluster 2024-09-17T09:12:52.587749+0000 mgr.a (mgr.14150) 317 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:54.410 INFO:teuthology.orchestra.run.smithi098.stdout:34359738437 2024-09-17T09:12:54.410 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.0 2024-09-17T09:12:54.900 INFO:teuthology.orchestra.run.smithi098.stdout:77309411376 2024-09-17T09:12:54.900 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.2 2024-09-17T09:12:56.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:55 smithi134 bash[24188]: cluster 2024-09-17T09:12:54.588219+0000 mgr.a (mgr.14150) 318 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:56.058 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:55 smithi098 bash[22661]: cluster 2024-09-17T09:12:54.588219+0000 mgr.a (mgr.14150) 318 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:56.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:55 smithi165 bash[24863]: cluster 2024-09-17T09:12:54.588219+0000 mgr.a (mgr.14150) 318 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:56.755 INFO:teuthology.orchestra.run.smithi098.stdout:176093659154 2024-09-17T09:12:56.755 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.5 2024-09-17T09:12:56.782 INFO:teuthology.orchestra.run.smithi098.stdout:107374182437 2024-09-17T09:12:56.782 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.3 2024-09-17T09:12:56.861 INFO:teuthology.orchestra.run.smithi098.stdout:141733920796 2024-09-17T09:12:56.862 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.4 2024-09-17T09:12:58.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:57 smithi134 bash[24188]: cluster 2024-09-17T09:12:56.588813+0000 mgr.a (mgr.14150) 319 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:58.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:57 smithi098 bash[22661]: cluster 2024-09-17T09:12:56.588813+0000 mgr.a (mgr.14150) 319 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:58.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:57 smithi165 bash[24863]: cluster 2024-09-17T09:12:56.588813+0000 mgr.a (mgr.14150) 319 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:12:59.355 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:13:00.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:12:59 smithi134 bash[24188]: cluster 2024-09-17T09:12:58.589360+0000 mgr.a (mgr.14150) 320 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:00.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:12:59 smithi098 bash[22661]: cluster 2024-09-17T09:12:58.589360+0000 mgr.a (mgr.14150) 320 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:00.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:12:59 smithi165 bash[24863]: cluster 2024-09-17T09:12:58.589360+0000 mgr.a (mgr.14150) 320 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:00.363 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:13:00.363 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:13:01.373 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:13:01.374 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:13:01.374 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:13:02.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:01 smithi134 bash[24188]: cluster 2024-09-17T09:13:00.589914+0000 mgr.a (mgr.14150) 321 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:02.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:01 smithi098 bash[22661]: cluster 2024-09-17T09:13:00.589914+0000 mgr.a (mgr.14150) 321 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:02.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:01 smithi165 bash[24863]: cluster 2024-09-17T09:13:00.589914+0000 mgr.a (mgr.14150) 321 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:04.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:03 smithi134 bash[24188]: cluster 2024-09-17T09:13:02.590507+0000 mgr.a (mgr.14150) 322 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:04.055 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:03 smithi098 bash[22661]: cluster 2024-09-17T09:13:02.590507+0000 mgr.a (mgr.14150) 322 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:04.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:03 smithi165 bash[24863]: cluster 2024-09-17T09:13:02.590507+0000 mgr.a (mgr.14150) 322 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:06.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:05 smithi134 bash[24188]: cluster 2024-09-17T09:13:04.591057+0000 mgr.a (mgr.14150) 323 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:06.109 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:05 smithi098 bash[22661]: cluster 2024-09-17T09:13:04.591057+0000 mgr.a (mgr.14150) 323 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:06.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:05 smithi165 bash[24863]: cluster 2024-09-17T09:13:04.591057+0000 mgr.a (mgr.14150) 323 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:08.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:07 smithi134 bash[24188]: cluster 2024-09-17T09:13:06.591555+0000 mgr.a (mgr.14150) 324 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:08.044 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:07 smithi098 bash[22661]: cluster 2024-09-17T09:13:06.591555+0000 mgr.a (mgr.14150) 324 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:08.106 INFO:teuthology.orchestra.run.smithi098.stdout:55834574909 2024-09-17T09:13:08.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:07 smithi165 bash[24863]: cluster 2024-09-17T09:13:06.591555+0000 mgr.a (mgr.14150) 324 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:09.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:08 smithi098 bash[22661]: audit 2024-09-17T09:13:08.106955+0000 mon.a (mon.0) 574 : audit [DBG] from='client.? 172.21.15.98:0/4254176760' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-17T09:13:09.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:08 smithi165 bash[24863]: audit 2024-09-17T09:13:08.106955+0000 mon.a (mon.0) 574 : audit [DBG] from='client.? 172.21.15.98:0/4254176760' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-17T09:13:09.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:08 smithi134 bash[24188]: audit 2024-09-17T09:13:08.106955+0000 mon.a (mon.0) 574 : audit [DBG] from='client.? 172.21.15.98:0/4254176760' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-17T09:13:10.069 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:09 smithi098 bash[22661]: cluster 2024-09-17T09:13:08.592096+0000 mgr.a (mgr.14150) 325 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:10.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:09 smithi165 bash[24863]: cluster 2024-09-17T09:13:08.592096+0000 mgr.a (mgr.14150) 325 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:10.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:09 smithi134 bash[24188]: cluster 2024-09-17T09:13:08.592096+0000 mgr.a (mgr.14150) 325 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:11.262 INFO:teuthology.orchestra.run.smithi098.stdout:77309411379 2024-09-17T09:13:12.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:11 smithi098 bash[22661]: cluster 2024-09-17T09:13:10.592681+0000 mgr.a (mgr.14150) 326 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:12.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:11 smithi098 bash[22661]: audit 2024-09-17T09:13:11.262745+0000 mon.a (mon.0) 575 : audit [DBG] from='client.? 172.21.15.98:0/35229961' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-17T09:13:12.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:11 smithi165 bash[24863]: cluster 2024-09-17T09:13:10.592681+0000 mgr.a (mgr.14150) 326 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:12.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:11 smithi165 bash[24863]: audit 2024-09-17T09:13:11.262745+0000 mon.a (mon.0) 575 : audit [DBG] from='client.? 172.21.15.98:0/35229961' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-17T09:13:12.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:11 smithi134 bash[24188]: cluster 2024-09-17T09:13:10.592681+0000 mgr.a (mgr.14150) 326 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:12.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:11 smithi134 bash[24188]: audit 2024-09-17T09:13:11.262745+0000 mon.a (mon.0) 575 : audit [DBG] from='client.? 172.21.15.98:0/35229961' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-17T09:13:12.668 INFO:tasks.cephadm.ceph_manager.ceph:need seq 55834574905 got 55834574909 for osd.1 2024-09-17T09:13:12.669 DEBUG:teuthology.parallel:result is None 2024-09-17T09:13:14.058 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:13 smithi098 bash[22661]: cluster 2024-09-17T09:13:12.593239+0000 mgr.a (mgr.14150) 327 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:14.059 INFO:tasks.cephadm.ceph_manager.ceph:need seq 77309411376 got 77309411379 for osd.2 2024-09-17T09:13:14.059 DEBUG:teuthology.parallel:result is None 2024-09-17T09:13:14.113 INFO:teuthology.orchestra.run.smithi098.stdout:34359738441 2024-09-17T09:13:14.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:13 smithi165 bash[24863]: cluster 2024-09-17T09:13:12.593239+0000 mgr.a (mgr.14150) 327 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:14.234 INFO:teuthology.orchestra.run.smithi098.stdout:141733920800 2024-09-17T09:13:14.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:13 smithi134 bash[24188]: cluster 2024-09-17T09:13:12.593239+0000 mgr.a (mgr.14150) 327 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:14.690 INFO:teuthology.orchestra.run.smithi098.stdout:176093659157 2024-09-17T09:13:14.929 INFO:teuthology.orchestra.run.smithi098.stdout:107374182441 2024-09-17T09:13:14.941 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:14 smithi098 bash[22661]: audit 2024-09-17T09:13:14.115354+0000 mon.c (mon.1) 14 : audit [DBG] from='client.? 172.21.15.98:0/1912979699' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-17T09:13:14.941 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:14 smithi098 bash[22661]: audit 2024-09-17T09:13:14.235609+0000 mon.a (mon.0) 576 : audit [DBG] from='client.? 172.21.15.98:0/1827035114' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-17T09:13:14.941 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:14 smithi098 bash[22661]: audit 2024-09-17T09:13:14.691132+0000 mon.a (mon.0) 577 : audit [DBG] from='client.? 172.21.15.98:0/802919794' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-17T09:13:15.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:14 smithi165 bash[24863]: audit 2024-09-17T09:13:14.115354+0000 mon.c (mon.1) 14 : audit [DBG] from='client.? 172.21.15.98:0/1912979699' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-17T09:13:15.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:14 smithi165 bash[24863]: audit 2024-09-17T09:13:14.235609+0000 mon.a (mon.0) 576 : audit [DBG] from='client.? 172.21.15.98:0/1827035114' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-17T09:13:15.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:14 smithi165 bash[24863]: audit 2024-09-17T09:13:14.691132+0000 mon.a (mon.0) 577 : audit [DBG] from='client.? 172.21.15.98:0/802919794' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-17T09:13:15.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:14 smithi134 bash[24188]: audit 2024-09-17T09:13:14.115354+0000 mon.c (mon.1) 14 : audit [DBG] from='client.? 172.21.15.98:0/1912979699' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-17T09:13:15.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:14 smithi134 bash[24188]: audit 2024-09-17T09:13:14.235609+0000 mon.a (mon.0) 576 : audit [DBG] from='client.? 172.21.15.98:0/1827035114' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-17T09:13:15.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:14 smithi134 bash[24188]: audit 2024-09-17T09:13:14.691132+0000 mon.a (mon.0) 577 : audit [DBG] from='client.? 172.21.15.98:0/802919794' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-17T09:13:16.064 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:15 smithi098 bash[22661]: cluster 2024-09-17T09:13:14.593734+0000 mgr.a (mgr.14150) 328 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:16.064 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:15 smithi098 bash[22661]: audit 2024-09-17T09:13:14.930505+0000 mon.a (mon.0) 578 : audit [DBG] from='client.? 172.21.15.98:0/3659651178' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-17T09:13:16.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:15 smithi165 bash[24863]: cluster 2024-09-17T09:13:14.593734+0000 mgr.a (mgr.14150) 328 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:16.132 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:15 smithi165 bash[24863]: audit 2024-09-17T09:13:14.930505+0000 mon.a (mon.0) 578 : audit [DBG] from='client.? 172.21.15.98:0/3659651178' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-17T09:13:16.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:15 smithi134 bash[24188]: cluster 2024-09-17T09:13:14.593734+0000 mgr.a (mgr.14150) 328 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:16.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:15 smithi134 bash[24188]: audit 2024-09-17T09:13:14.930505+0000 mon.a (mon.0) 578 : audit [DBG] from='client.? 172.21.15.98:0/3659651178' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-17T09:13:16.478 INFO:tasks.cephadm.ceph_manager.ceph:need seq 34359738437 got 34359738441 for osd.0 2024-09-17T09:13:16.479 DEBUG:teuthology.parallel:result is None 2024-09-17T09:13:16.502 INFO:tasks.cephadm.ceph_manager.ceph:need seq 141733920796 got 141733920800 for osd.4 2024-09-17T09:13:16.502 DEBUG:teuthology.parallel:result is None 2024-09-17T09:13:16.623 INFO:tasks.cephadm.ceph_manager.ceph:need seq 176093659154 got 176093659157 for osd.5 2024-09-17T09:13:16.623 DEBUG:teuthology.parallel:result is None 2024-09-17T09:13:16.735 INFO:tasks.cephadm.ceph_manager.ceph:need seq 107374182437 got 107374182441 for osd.3 2024-09-17T09:13:16.735 DEBUG:teuthology.parallel:result is None 2024-09-17T09:13:16.735 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-09-17T09:13:16.735 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph pg dump --format=json 2024-09-17T09:13:18.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:17 smithi098 bash[22661]: cluster 2024-09-17T09:13:16.594224+0000 mgr.a (mgr.14150) 329 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:18.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:17 smithi165 bash[24863]: cluster 2024-09-17T09:13:16.594224+0000 mgr.a (mgr.14150) 329 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:18.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:17 smithi134 bash[24188]: cluster 2024-09-17T09:13:16.594224+0000 mgr.a (mgr.14150) 329 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:20.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:19 smithi098 bash[22661]: cluster 2024-09-17T09:13:18.594751+0000 mgr.a (mgr.14150) 330 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:20.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:19 smithi165 bash[24863]: cluster 2024-09-17T09:13:18.594751+0000 mgr.a (mgr.14150) 330 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:20.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:19 smithi134 bash[24188]: cluster 2024-09-17T09:13:18.594751+0000 mgr.a (mgr.14150) 330 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:21.418 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:13:22.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:21 smithi098 bash[22661]: cluster 2024-09-17T09:13:20.595304+0000 mgr.a (mgr.14150) 331 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:22.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:21 smithi165 bash[24863]: cluster 2024-09-17T09:13:20.595304+0000 mgr.a (mgr.14150) 331 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:22.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:21 smithi134 bash[24188]: cluster 2024-09-17T09:13:20.595304+0000 mgr.a (mgr.14150) 331 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:24.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:23 smithi098 bash[22661]: cluster 2024-09-17T09:13:22.595819+0000 mgr.a (mgr.14150) 332 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:24.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:23 smithi165 bash[24863]: cluster 2024-09-17T09:13:22.595819+0000 mgr.a (mgr.14150) 332 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:24.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:23 smithi134 bash[24188]: cluster 2024-09-17T09:13:22.595819+0000 mgr.a (mgr.14150) 332 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:24.963 INFO:teuthology.orchestra.run.smithi098.stderr:dumped all 2024-09-17T09:13:24.963 INFO:teuthology.orchestra.run.smithi098.stdout: 2024-09-17T09:13:25.692 INFO:teuthology.orchestra.run.smithi098.stdout:{"pg_ready":true,"pg_map":{"version":302,"stamp":"2024-09-17T09:13:24.596077+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":178556,"kb_used_data":4128,"kb_used_omap":9,"kb_used_meta":174326,"kb_avail":562292356,"statfs":{"total":575970213888,"available":575787372544,"internally_reserved":0,"allocated":4227072,"data_stored":2730491,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9561,"internal_metadata":178510503},"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.003104"},"pg_stats":[{"pgid":"1.0","version":"21'137","reported_seq":265,"reported_epoch":45,"state":"active+clean","last_fresh":"2024-09-17T09:11:46.814600+0000","last_change":"2024-09-17T09:11:46.813949+0000","last_active":"2024-09-17T09:11:46.814600+0000","last_peered":"2024-09-17T09:11:46.814600+0000","last_clean":"2024-09-17T09:11:46.814600+0000","last_became_active":"2024-09-17T09:11:46.813006+0000","last_became_peered":"2024-09-17T09:11:46.813006+0000","last_unstale":"2024-09-17T09:11:46.814600+0000","last_undegraded":"2024-09-17T09:11:46.814600+0000","last_fullsized":"2024-09-17T09:11:46.814600+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-17T09:09:11.241069+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-17T09:09:11.241069+0000","last_clean_scrub_stamp":"2024-09-17T09:09:11.241069+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-18T15:35:15.974616+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":176093659160,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":27996,"kb_used_data":976,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717156,"statfs":{"total":95995035648,"available":95966367744,"internally_reserved":0,"allocated":999424,"data_stored":750147,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[0,1,2,3,4],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 09:12:43 2024","interfaces":[{"interface":"back","average":{"1min":0.75700000000000001,"5min":0.75700000000000001,"15min":0.75700000000000001},"min":{"1min":0.58799999999999997,"5min":0.58799999999999997,"15min":0.58799999999999997},"max":{"1min":0.93400000000000005,"5min":0.93400000000000005,"15min":0.93400000000000005},"last":0.84099999999999997},{"interface":"front","average":{"1min":0.78100000000000003,"5min":0.78100000000000003,"15min":0.78100000000000003},"min":{"1min":0.65200000000000002,"5min":0.65200000000000002,"15min":0.65200000000000002},"max":{"1min":0.98899999999999999,"5min":0.98899999999999999,"15min":0.98899999999999999},"last":0.72199999999999998}]},{"osd":1,"last update":"Tue Sep 17 09:12:43 2024","interfaces":[{"interface":"back","average":{"1min":0.72499999999999998,"5min":0.72499999999999998,"15min":0.72499999999999998},"min":{"1min":0.56299999999999994,"5min":0.56299999999999994,"15min":0.56299999999999994},"max":{"1min":1.0569999999999999,"5min":1.0569999999999999,"15min":1.0569999999999999},"last":0.77100000000000002},{"interface":"front","average":{"1min":0.75800000000000001,"5min":0.75800000000000001,"15min":0.75800000000000001},"min":{"1min":0.57099999999999995,"5min":0.57099999999999995,"15min":0.57099999999999995},"max":{"1min":1.1000000000000001,"5min":1.1000000000000001,"15min":1.1000000000000001},"last":0.74399999999999999}]},{"osd":2,"last update":"Tue Sep 17 09:12:43 2024","interfaces":[{"interface":"back","average":{"1min":0.82599999999999996,"5min":0.82599999999999996,"15min":0.82599999999999996},"min":{"1min":0.623,"5min":0.623,"15min":0.623},"max":{"1min":1.4199999999999999,"5min":1.4199999999999999,"15min":1.4199999999999999},"last":0.95099999999999996},{"interface":"front","average":{"1min":0.89200000000000002,"5min":0.89200000000000002,"15min":0.89200000000000002},"min":{"1min":0.71799999999999997,"5min":0.71799999999999997,"15min":0.71799999999999997},"max":{"1min":1.1910000000000001,"5min":1.1910000000000001,"15min":1.1910000000000001},"last":0.90900000000000003}]},{"osd":3,"last update":"Tue Sep 17 09:12:43 2024","interfaces":[{"interface":"back","average":{"1min":0.85799999999999998,"5min":0.85799999999999998,"15min":0.85799999999999998},"min":{"1min":0.73899999999999999,"5min":0.73899999999999999,"15min":0.73899999999999999},"max":{"1min":1.2250000000000001,"5min":1.2250000000000001,"15min":1.2250000000000001},"last":0.81999999999999995},{"interface":"front","average":{"1min":0.871,"5min":0.871,"15min":0.871},"min":{"1min":0.70899999999999996,"5min":0.70899999999999996,"15min":0.70899999999999996},"max":{"1min":1.4830000000000001,"5min":1.4830000000000001,"15min":1.4830000000000001},"last":0.876}]},{"osd":4,"last update":"Tue Sep 17 09:12:43 2024","interfaces":[{"interface":"back","average":{"1min":0.753,"5min":0.753,"15min":0.753},"min":{"1min":0.38100000000000001,"5min":0.38100000000000001,"15min":0.38100000000000001},"max":{"1min":1.3500000000000001,"5min":1.3500000000000001,"15min":1.3500000000000001},"last":0.55200000000000005},{"interface":"front","average":{"1min":0.73399999999999999,"5min":0.73399999999999999,"15min":0.73399999999999999},"min":{"1min":0.47999999999999998,"5min":0.47999999999999998,"15min":0.47999999999999998},"max":{"1min":1.3049999999999999,"5min":1.3049999999999999,"15min":1.3049999999999999},"last":0.59099999999999997}]}]},{"osd":4,"up_from":33,"seq":141733920802,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27424,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717728,"statfs":{"total":95995035648,"available":95966953472,"internally_reserved":0,"allocated":409600,"data_stored":160110,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,1,2,3,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 09:12:54 2024","interfaces":[{"interface":"back","average":{"1min":0.753,"5min":0.78100000000000003,"15min":0.78500000000000003},"min":{"1min":0.56399999999999995,"5min":0.56399999999999995,"15min":0.56399999999999995},"max":{"1min":0.94199999999999995,"5min":0.94199999999999995,"15min":0.94199999999999995},"last":0.629},{"interface":"front","average":{"1min":0.81000000000000005,"5min":0.70299999999999996,"15min":0.68500000000000005},"min":{"1min":0.54000000000000004,"5min":0.52400000000000002,"15min":0.52400000000000002},"max":{"1min":0.995,"5min":0.995,"15min":0.995},"last":0.84299999999999997}]},{"osd":1,"last update":"Tue Sep 17 09:12:54 2024","interfaces":[{"interface":"back","average":{"1min":0.79100000000000004,"5min":0.72299999999999998,"15min":0.71199999999999997},"min":{"1min":0.61399999999999999,"5min":0.498,"15min":0.498},"max":{"1min":1.073,"5min":1.073,"15min":1.073},"last":0.71799999999999997},{"interface":"front","average":{"1min":0.78400000000000003,"5min":0.73999999999999999,"15min":0.73199999999999998},"min":{"1min":0.58699999999999997,"5min":0.57799999999999996,"15min":0.57799999999999996},"max":{"1min":1.3580000000000001,"5min":1.3580000000000001,"15min":1.3580000000000001},"last":0.77200000000000002}]},{"osd":2,"last update":"Tue Sep 17 09:12:54 2024","interfaces":[{"interface":"back","average":{"1min":0.86199999999999999,"5min":0.79000000000000004,"15min":0.77800000000000002},"min":{"1min":0.66000000000000003,"5min":0.60699999999999998,"15min":0.60699999999999998},"max":{"1min":1.0109999999999999,"5min":1.0109999999999999,"15min":1.0109999999999999},"last":0.752},{"interface":"front","average":{"1min":0.81000000000000005,"5min":0.79500000000000004,"15min":0.79300000000000004},"min":{"1min":0.63700000000000001,"5min":0.56100000000000005,"15min":0.56100000000000005},"max":{"1min":1.002,"5min":1.177,"15min":1.177},"last":0.91000000000000003}]},{"osd":3,"last update":"Tue Sep 17 09:12:54 2024","interfaces":[{"interface":"back","average":{"1min":0.83599999999999997,"5min":0.81299999999999994,"15min":0.80900000000000005},"min":{"1min":0.73499999999999999,"5min":0.54900000000000004,"15min":0.54900000000000004},"max":{"1min":0.96899999999999997,"5min":1.0860000000000001,"15min":1.0860000000000001},"last":0.873},{"interface":"front","average":{"1min":0.80600000000000005,"5min":0.81999999999999995,"15min":0.82199999999999995},"min":{"1min":0.63600000000000001,"5min":0.57899999999999996,"15min":0.57899999999999996},"max":{"1min":0.97499999999999998,"5min":0.99399999999999999,"15min":0.99399999999999999},"last":0.94099999999999995}]},{"osd":5,"last update":"Tue Sep 17 09:12:46 2024","interfaces":[{"interface":"back","average":{"1min":0.80800000000000005,"5min":0.80800000000000005,"15min":0.80800000000000005},"min":{"1min":0.58499999999999996,"5min":0.58499999999999996,"15min":0.58499999999999996},"max":{"1min":1.038,"5min":1.038,"15min":1.038},"last":0.68000000000000005},{"interface":"front","average":{"1min":0.75800000000000001,"5min":0.75800000000000001,"15min":0.75800000000000001},"min":{"1min":0.54800000000000004,"5min":0.54800000000000004,"15min":0.54800000000000004},"max":{"1min":0.94599999999999995,"5min":0.94599999999999995,"15min":0.94599999999999995},"last":0.80700000000000005}]}]},{"osd":3,"up_from":25,"seq":107374182443,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":32100,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":31102,"kb_avail":93713052,"statfs":{"total":95995035648,"available":95962165248,"internally_reserved":0,"allocated":1003520,"data_stored":750478,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1592,"internal_metadata":31848904},"hb_peers":[0,1,2,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 09:13:08 2024","interfaces":[{"interface":"back","average":{"1min":0.84399999999999997,"5min":0.755,"15min":0.71799999999999997},"min":{"1min":0.60699999999999998,"5min":0.38300000000000001,"15min":0.38300000000000001},"max":{"1min":1.3120000000000001,"5min":1.3120000000000001,"15min":1.3120000000000001},"last":0.72299999999999998},{"interface":"front","average":{"1min":0.71399999999999997,"5min":0.76400000000000001,"15min":0.76200000000000001},"min":{"1min":0.53700000000000003,"5min":0.45300000000000001,"15min":0.45300000000000001},"max":{"1min":1.1559999999999999,"5min":1.1559999999999999,"15min":1.1559999999999999},"last":0.68300000000000005}]},{"osd":1,"last update":"Tue Sep 17 09:13:08 2024","interfaces":[{"interface":"back","average":{"1min":0.73099999999999998,"5min":0.755,"15min":0.74299999999999999},"min":{"1min":0.56799999999999995,"5min":0.42299999999999999,"15min":0.42299999999999999},"max":{"1min":0.91700000000000004,"5min":1.3500000000000001,"15min":1.3500000000000001},"last":0.63900000000000001},{"interface":"front","average":{"1min":0.746,"5min":0.77200000000000002,"15min":0.77100000000000002},"min":{"1min":0.60099999999999998,"5min":0.55100000000000005,"15min":0.55100000000000005},"max":{"1min":1.0309999999999999,"5min":1.0920000000000001,"15min":1.0920000000000001},"last":0.59999999999999998}]},{"osd":2,"last update":"Tue Sep 17 09:13:08 2024","interfaces":[{"interface":"back","average":{"1min":0.60799999999999998,"5min":0.64500000000000002,"15min":0.64100000000000001},"min":{"1min":0.50700000000000001,"5min":0.318,"15min":0.318},"max":{"1min":0.878,"5min":0.93000000000000005,"15min":0.93000000000000005},"last":0.55700000000000005},{"interface":"front","average":{"1min":0.69099999999999995,"5min":0.65900000000000003,"15min":0.628},"min":{"1min":0.54300000000000004,"5min":0.29399999999999998,"15min":0.29399999999999998},"max":{"1min":0.83799999999999997,"5min":1.254,"15min":1.254},"last":0.75800000000000001}]},{"osd":4,"last update":"Tue Sep 17 09:12:56 2024","interfaces":[{"interface":"back","average":{"1min":0.85499999999999998,"5min":0.90700000000000003,"15min":0.91500000000000004},"min":{"1min":0.69699999999999995,"5min":0.69699999999999995,"15min":0.69699999999999995},"max":{"1min":1.0249999999999999,"5min":1.0780000000000001,"15min":1.0780000000000001},"last":0.89700000000000002},{"interface":"front","average":{"1min":0.88,"5min":0.90000000000000002,"15min":0.90400000000000003},"min":{"1min":0.68300000000000005,"5min":0.68300000000000005,"15min":0.68300000000000005},"max":{"1min":1.0389999999999999,"5min":1.0640000000000001,"15min":1.0640000000000001},"last":0.86899999999999999}]},{"osd":5,"last update":"Tue Sep 17 09:12:44 2024","interfaces":[{"interface":"back","average":{"1min":0.95699999999999996,"5min":0.95699999999999996,"15min":0.95699999999999996},"min":{"1min":0.84199999999999997,"5min":0.84199999999999997,"15min":0.84199999999999997},"max":{"1min":1.095,"5min":1.095,"15min":1.095},"last":0.82799999999999996},{"interface":"front","average":{"1min":0.875,"5min":0.875,"15min":0.875},"min":{"1min":0.68999999999999995,"5min":0.68999999999999995,"15min":0.68999999999999995},"max":{"1min":1.0109999999999999,"5min":1.0109999999999999,"15min":1.0109999999999999},"last":0.79500000000000004}]}]},{"osd":2,"up_from":18,"seq":77309411382,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":32096,"kb_used_data":976,"kb_used_omap":1,"kb_used_meta":31102,"kb_avail":93713056,"statfs":{"total":95995035648,"available":95962169344,"internally_reserved":0,"allocated":999424,"data_stored":750205,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":31848902},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 09:12:15 2024","interfaces":[{"interface":"back","average":{"1min":0.77500000000000002,"5min":0.72699999999999998,"15min":0.71899999999999997},"min":{"1min":0.64300000000000002,"5min":0.56699999999999995,"15min":0.56699999999999995},"max":{"1min":0.93899999999999995,"5min":0.99399999999999999,"15min":0.99399999999999999},"last":0.89000000000000001},{"interface":"front","average":{"1min":0.72699999999999998,"5min":0.745,"15min":0.753},"min":{"1min":0.58699999999999997,"5min":0.58699999999999997,"15min":0.58699999999999997},"max":{"1min":0.93899999999999995,"5min":0.93899999999999995,"15min":0.93899999999999995},"last":0.66900000000000004}]},{"osd":1,"last update":"Tue Sep 17 09:12:15 2024","interfaces":[{"interface":"back","average":{"1min":0.76500000000000001,"5min":0.73899999999999999,"15min":0.73699999999999999},"min":{"1min":0.63800000000000001,"5min":0.56699999999999995,"15min":0.56699999999999995},"max":{"1min":1.04,"5min":1.04,"15min":1.04},"last":0.52700000000000002},{"interface":"front","average":{"1min":0.78100000000000003,"5min":0.75600000000000001,"15min":0.749},"min":{"1min":0.59799999999999998,"5min":0.59799999999999998,"15min":0.59799999999999998},"max":{"1min":0.92700000000000005,"5min":0.92700000000000005,"15min":0.92700000000000005},"last":0.56599999999999995}]},{"osd":3,"last update":"Tue Sep 17 09:13:09 2024","interfaces":[{"interface":"back","average":{"1min":0.61699999999999999,"5min":0.59299999999999997,"15min":0.59099999999999997},"min":{"1min":0.52600000000000002,"5min":0.38100000000000001,"15min":0.38100000000000001},"max":{"1min":0.79900000000000004,"5min":0.81200000000000006,"15min":0.81200000000000006},"last":0.70799999999999996},{"interface":"front","average":{"1min":0.68700000000000006,"5min":0.624,"15min":0.59799999999999998},"min":{"1min":0.57299999999999995,"5min":0.433,"15min":0.433},"max":{"1min":0.86299999999999999,"5min":0.98299999999999998,"15min":0.98299999999999998},"last":0.77600000000000002}]},{"osd":4,"last update":"Tue Sep 17 09:12:57 2024","interfaces":[{"interface":"back","average":{"1min":0.81699999999999995,"5min":0.79800000000000004,"15min":0.79500000000000004},"min":{"1min":0.63500000000000001,"5min":0.63500000000000001,"15min":0.63500000000000001},"max":{"1min":0.99099999999999999,"5min":0.99099999999999999,"15min":0.99099999999999999},"last":0.81499999999999995},{"interface":"front","average":{"1min":0.89000000000000001,"5min":0.82399999999999995,"15min":0.81299999999999994},"min":{"1min":0.77000000000000002,"5min":0.66700000000000004,"15min":0.66700000000000004},"max":{"1min":1.0309999999999999,"5min":1.032,"15min":1.032},"last":0.97199999999999998}]},{"osd":5,"last update":"Tue Sep 17 09:12:43 2024","interfaces":[{"interface":"back","average":{"1min":0.81799999999999995,"5min":0.81799999999999995,"15min":0.81799999999999995},"min":{"1min":0.63700000000000001,"5min":0.63700000000000001,"15min":0.63700000000000001},"max":{"1min":0.93799999999999994,"5min":0.93799999999999994,"15min":0.93799999999999994},"last":0.75800000000000001},{"interface":"front","average":{"1min":0.88500000000000001,"5min":0.88500000000000001,"15min":0.88500000000000001},"min":{"1min":0.747,"5min":0.747,"15min":0.747},"max":{"1min":1.0980000000000001,"5min":1.0980000000000001,"15min":1.0980000000000001},"last":0.85799999999999998}]}]},{"osd":1,"up_from":13,"seq":55834574912,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27424,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717728,"statfs":{"total":95995035648,"available":95966953472,"internally_reserved":0,"allocated":409600,"data_stored":160110,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 09:12:33 2024","interfaces":[{"interface":"back","average":{"1min":0.52800000000000002,"5min":0.52300000000000002,"15min":0.51700000000000002},"min":{"1min":0.377,"5min":0.377,"15min":0.377},"max":{"1min":0.66900000000000004,"5min":0.66900000000000004,"15min":0.66900000000000004},"last":0.56999999999999995},{"interface":"front","average":{"1min":0.59199999999999997,"5min":0.55900000000000005,"15min":0.56999999999999995},"min":{"1min":0.34599999999999997,"5min":0.34599999999999997,"15min":0.34599999999999997},"max":{"1min":0.95999999999999996,"5min":0.95999999999999996,"15min":0.95999999999999996},"last":0.64700000000000002}]},{"osd":2,"last update":"Tue Sep 17 09:13:17 2024","interfaces":[{"interface":"back","average":{"1min":0.79500000000000004,"5min":0.77600000000000002,"15min":0.76800000000000002},"min":{"1min":0.53400000000000003,"5min":0.52100000000000002,"15min":0.52100000000000002},"max":{"1min":0.997,"5min":1.1779999999999999,"15min":1.1779999999999999},"last":0.72299999999999998},{"interface":"front","average":{"1min":0.78300000000000003,"5min":0.77800000000000002,"15min":0.79800000000000004},"min":{"1min":0.59499999999999997,"5min":0.54200000000000004,"15min":0.54200000000000004},"max":{"1min":0.98399999999999999,"5min":1.3280000000000001,"15min":1.3280000000000001},"last":0.91400000000000003}]},{"osd":3,"last update":"Tue Sep 17 09:13:11 2024","interfaces":[{"interface":"back","average":{"1min":0.70599999999999996,"5min":0.747,"15min":0.76100000000000001},"min":{"1min":0.56399999999999995,"5min":0.56399999999999995,"15min":0.56399999999999995},"max":{"1min":0.91300000000000003,"5min":0.91400000000000003,"15min":0.91400000000000003},"last":0.752},{"interface":"front","average":{"1min":0.74199999999999999,"5min":0.72099999999999997,"15min":0.70899999999999996},"min":{"1min":0.628,"5min":0.57099999999999995,"15min":0.57099999999999995},"max":{"1min":0.91900000000000004,"5min":0.91900000000000004,"15min":0.91900000000000004},"last":0.85499999999999998}]},{"osd":4,"last update":"Tue Sep 17 09:12:58 2024","interfaces":[{"interface":"back","average":{"1min":0.78700000000000003,"5min":0.82399999999999995,"15min":0.82999999999999996},"min":{"1min":0.66100000000000003,"5min":0.66100000000000003,"15min":0.66100000000000003},"max":{"1min":0.93000000000000005,"5min":1.0740000000000001,"15min":1.0740000000000001},"last":0.82699999999999996},{"interface":"front","average":{"1min":0.81999999999999995,"5min":0.81499999999999995,"15min":0.81399999999999995},"min":{"1min":0.64500000000000002,"5min":0.64500000000000002,"15min":0.64500000000000002},"max":{"1min":1.0169999999999999,"5min":1.0169999999999999,"15min":1.0169999999999999},"last":0.878}]},{"osd":5,"last update":"Tue Sep 17 09:12:45 2024","interfaces":[{"interface":"back","average":{"1min":0.85099999999999998,"5min":0.85099999999999998,"15min":0.85099999999999998},"min":{"1min":0.70199999999999996,"5min":0.70199999999999996,"15min":0.70199999999999996},"max":{"1min":1.1080000000000001,"5min":1.1080000000000001,"15min":1.1080000000000001},"last":0.79800000000000004},{"interface":"front","average":{"1min":0.84699999999999998,"5min":0.84699999999999998,"15min":0.84699999999999998},"min":{"1min":0.65600000000000003,"5min":0.65600000000000003,"15min":0.65600000000000003},"max":{"1min":0.997,"5min":0.997,"15min":0.997},"last":0.97599999999999998}]}]},{"osd":0,"up_from":8,"seq":34359738443,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31516,"kb_used_data":396,"kb_used_omap":1,"kb_used_meta":31102,"kb_avail":93713636,"statfs":{"total":95995035648,"available":95962763264,"internally_reserved":0,"allocated":405504,"data_stored":159441,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":31848902},"hb_peers":[1,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":1,"last update":"Tue Sep 17 09:12:30 2024","interfaces":[{"interface":"back","average":{"1min":0.53600000000000003,"5min":0.56200000000000006,"15min":0.57499999999999996},"min":{"1min":0.379,"5min":0.379,"15min":0.379},"max":{"1min":0.77600000000000002,"5min":1.0700000000000001,"15min":1.0700000000000001},"last":0.50700000000000001},{"interface":"front","average":{"1min":0.625,"5min":0.57499999999999996,"15min":0.55700000000000005},"min":{"1min":0.441,"5min":0.434,"15min":0.434},"max":{"1min":0.97499999999999998,"5min":0.97499999999999998,"15min":0.97499999999999998},"last":0.57499999999999996}]},{"osd":2,"last update":"Tue Sep 17 09:13:15 2024","interfaces":[{"interface":"back","average":{"1min":0.73099999999999998,"5min":0.76200000000000001,"15min":0.76900000000000002},"min":{"1min":0.50900000000000001,"5min":0.50900000000000001,"15min":0.50900000000000001},"max":{"1min":1.0589999999999999,"5min":1.1459999999999999,"15min":1.1459999999999999},"last":0.88300000000000001},{"interface":"front","average":{"1min":0.78300000000000003,"5min":0.76800000000000002,"15min":0.76400000000000001},"min":{"1min":0.56000000000000005,"5min":0.56000000000000005,"15min":0.56000000000000005},"max":{"1min":1.056,"5min":1.212,"15min":1.212},"last":0.79900000000000004}]},{"osd":3,"last update":"Tue Sep 17 09:13:10 2024","interfaces":[{"interface":"back","average":{"1min":0.76600000000000001,"5min":0.76400000000000001,"15min":0.75800000000000001},"min":{"1min":0.58099999999999996,"5min":0.58099999999999996,"15min":0.58099999999999996},"max":{"1min":0.94699999999999995,"5min":1.038,"15min":1.038},"last":0.71099999999999997},{"interface":"front","average":{"1min":0.72899999999999998,"5min":0.76500000000000001,"15min":0.76300000000000001},"min":{"1min":0.47299999999999998,"5min":0.47299999999999998,"15min":0.47299999999999998},"max":{"1min":1.0840000000000001,"5min":1.085,"15min":1.085},"last":0.82799999999999996}]},{"osd":4,"last update":"Tue Sep 17 09:12:54 2024","interfaces":[{"interface":"back","average":{"1min":0.82699999999999996,"5min":0.81699999999999995,"15min":0.81499999999999995},"min":{"1min":0.62,"5min":0.58899999999999997,"15min":0.58899999999999997},"max":{"1min":1.1080000000000001,"5min":1.1080000000000001,"15min":1.1080000000000001},"last":0.86399999999999999},{"interface":"front","average":{"1min":0.84399999999999997,"5min":0.84399999999999997,"15min":0.84399999999999997},"min":{"1min":0.65100000000000002,"5min":0.61699999999999999,"15min":0.61699999999999999},"max":{"1min":1.083,"5min":1.083,"15min":1.083},"last":0.95099999999999996}]},{"osd":5,"last update":"Tue Sep 17 09:12:47 2024","interfaces":[{"interface":"back","average":{"1min":0.88700000000000001,"5min":0.88700000000000001,"15min":0.88700000000000001},"min":{"1min":0.71599999999999997,"5min":0.71599999999999997,"15min":0.71599999999999997},"max":{"1min":1.1419999999999999,"5min":1.1419999999999999,"15min":1.1419999999999999},"last":0.91300000000000003},{"interface":"front","average":{"1min":0.94899999999999995,"5min":0.94899999999999995,"15min":0.94899999999999995},"min":{"1min":0.66800000000000004,"5min":0.66800000000000004,"15min":0.66800000000000004},"max":{"1min":1.1120000000000001,"5min":1.1120000000000001,"15min":1.1120000000000001},"last":0.995}]}]}],"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-17T09:13:25.693 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph pg dump --format=json 2024-09-17T09:13:26.112 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:25 smithi098 bash[22661]: cluster 2024-09-17T09:13:24.596353+0000 mgr.a (mgr.14150) 333 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:26.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:25 smithi165 bash[24863]: cluster 2024-09-17T09:13:24.596353+0000 mgr.a (mgr.14150) 333 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:26.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:25 smithi134 bash[24188]: cluster 2024-09-17T09:13:24.596353+0000 mgr.a (mgr.14150) 333 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:27.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:26 smithi098 bash[22661]: audit 2024-09-17T09:13:24.959466+0000 mgr.a (mgr.14150) 334 : audit [DBG] from='client.14442 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T09:13:27.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:26 smithi165 bash[24863]: audit 2024-09-17T09:13:24.959466+0000 mgr.a (mgr.14150) 334 : audit [DBG] from='client.14442 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T09:13:27.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:26 smithi134 bash[24188]: audit 2024-09-17T09:13:24.959466+0000 mgr.a (mgr.14150) 334 : audit [DBG] from='client.14442 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T09:13:28.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:27 smithi098 bash[22661]: cluster 2024-09-17T09:13:26.596894+0000 mgr.a (mgr.14150) 335 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:28.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:27 smithi165 bash[24863]: cluster 2024-09-17T09:13:26.596894+0000 mgr.a (mgr.14150) 335 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:28.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:27 smithi134 bash[24188]: cluster 2024-09-17T09:13:26.596894+0000 mgr.a (mgr.14150) 335 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:30.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:29 smithi098 bash[22661]: cluster 2024-09-17T09:13:28.597447+0000 mgr.a (mgr.14150) 336 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:30.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:29 smithi165 bash[24863]: cluster 2024-09-17T09:13:28.597447+0000 mgr.a (mgr.14150) 336 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:30.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:29 smithi134 bash[24188]: cluster 2024-09-17T09:13:28.597447+0000 mgr.a (mgr.14150) 336 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:30.375 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:13:31.947 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:31 smithi098 bash[22661]: cluster 2024-09-17T09:13:30.597983+0000 mgr.a (mgr.14150) 337 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:32.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:31 smithi165 bash[24863]: cluster 2024-09-17T09:13:30.597983+0000 mgr.a (mgr.14150) 337 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:32.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:31 smithi134 bash[24188]: cluster 2024-09-17T09:13:30.597983+0000 mgr.a (mgr.14150) 337 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:33.847 INFO:teuthology.orchestra.run.smithi098.stderr:dumped all 2024-09-17T09:13:33.847 INFO:teuthology.orchestra.run.smithi098.stdout: 2024-09-17T09:13:34.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:33 smithi098 bash[22661]: cluster 2024-09-17T09:13:32.598534+0000 mgr.a (mgr.14150) 338 : cluster [DBG] pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:34.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:33 smithi165 bash[24863]: cluster 2024-09-17T09:13:32.598534+0000 mgr.a (mgr.14150) 338 : cluster [DBG] pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:34.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:33 smithi134 bash[24188]: cluster 2024-09-17T09:13:32.598534+0000 mgr.a (mgr.14150) 338 : cluster [DBG] pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:34.573 INFO:teuthology.orchestra.run.smithi098.stdout:{"pg_ready":true,"pg_map":{"version":306,"stamp":"2024-09-17T09:13:32.598233+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":178556,"kb_used_data":4128,"kb_used_omap":9,"kb_used_meta":174326,"kb_avail":562292356,"statfs":{"total":575970213888,"available":575787372544,"internally_reserved":0,"allocated":4227072,"data_stored":2730491,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9561,"internal_metadata":178510503},"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.003196"},"pg_stats":[{"pgid":"1.0","version":"21'137","reported_seq":265,"reported_epoch":45,"state":"active+clean","last_fresh":"2024-09-17T09:11:46.814600+0000","last_change":"2024-09-17T09:11:46.813949+0000","last_active":"2024-09-17T09:11:46.814600+0000","last_peered":"2024-09-17T09:11:46.814600+0000","last_clean":"2024-09-17T09:11:46.814600+0000","last_became_active":"2024-09-17T09:11:46.813006+0000","last_became_peered":"2024-09-17T09:11:46.813006+0000","last_unstale":"2024-09-17T09:11:46.814600+0000","last_undegraded":"2024-09-17T09:11:46.814600+0000","last_fullsized":"2024-09-17T09:11:46.814600+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-17T09:09:11.241069+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-17T09:09:11.241069+0000","last_clean_scrub_stamp":"2024-09-17T09:09:11.241069+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-18T15:35:15.974616+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":176093659161,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":27996,"kb_used_data":976,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717156,"statfs":{"total":95995035648,"available":95966367744,"internally_reserved":0,"allocated":999424,"data_stored":750147,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[0,1,2,3,4],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 09:12:43 2024","interfaces":[{"interface":"back","average":{"1min":0.75700000000000001,"5min":0.75700000000000001,"15min":0.75700000000000001},"min":{"1min":0.58799999999999997,"5min":0.58799999999999997,"15min":0.58799999999999997},"max":{"1min":0.93400000000000005,"5min":0.93400000000000005,"15min":0.93400000000000005},"last":0.61599999999999999},{"interface":"front","average":{"1min":0.78100000000000003,"5min":0.78100000000000003,"15min":0.78100000000000003},"min":{"1min":0.65200000000000002,"5min":0.65200000000000002,"15min":0.65200000000000002},"max":{"1min":0.98899999999999999,"5min":0.98899999999999999,"15min":0.98899999999999999},"last":0.83099999999999996}]},{"osd":1,"last update":"Tue Sep 17 09:12:43 2024","interfaces":[{"interface":"back","average":{"1min":0.72499999999999998,"5min":0.72499999999999998,"15min":0.72499999999999998},"min":{"1min":0.56299999999999994,"5min":0.56299999999999994,"15min":0.56299999999999994},"max":{"1min":1.0569999999999999,"5min":1.0569999999999999,"15min":1.0569999999999999},"last":0.89600000000000002},{"interface":"front","average":{"1min":0.75800000000000001,"5min":0.75800000000000001,"15min":0.75800000000000001},"min":{"1min":0.57099999999999995,"5min":0.57099999999999995,"15min":0.57099999999999995},"max":{"1min":1.1000000000000001,"5min":1.1000000000000001,"15min":1.1000000000000001},"last":0.87}]},{"osd":2,"last update":"Tue Sep 17 09:12:43 2024","interfaces":[{"interface":"back","average":{"1min":0.82599999999999996,"5min":0.82599999999999996,"15min":0.82599999999999996},"min":{"1min":0.623,"5min":0.623,"15min":0.623},"max":{"1min":1.4199999999999999,"5min":1.4199999999999999,"15min":1.4199999999999999},"last":0.75600000000000001},{"interface":"front","average":{"1min":0.89200000000000002,"5min":0.89200000000000002,"15min":0.89200000000000002},"min":{"1min":0.71799999999999997,"5min":0.71799999999999997,"15min":0.71799999999999997},"max":{"1min":1.1910000000000001,"5min":1.1910000000000001,"15min":1.1910000000000001},"last":0.93100000000000005}]},{"osd":3,"last update":"Tue Sep 17 09:12:43 2024","interfaces":[{"interface":"back","average":{"1min":0.85799999999999998,"5min":0.85799999999999998,"15min":0.85799999999999998},"min":{"1min":0.73899999999999999,"5min":0.73899999999999999,"15min":0.73899999999999999},"max":{"1min":1.2250000000000001,"5min":1.2250000000000001,"15min":1.2250000000000001},"last":0.71499999999999997},{"interface":"front","average":{"1min":0.871,"5min":0.871,"15min":0.871},"min":{"1min":0.70899999999999996,"5min":0.70899999999999996,"15min":0.70899999999999996},"max":{"1min":1.4830000000000001,"5min":1.4830000000000001,"15min":1.4830000000000001},"last":0.99299999999999999}]},{"osd":4,"last update":"Tue Sep 17 09:12:43 2024","interfaces":[{"interface":"back","average":{"1min":0.753,"5min":0.753,"15min":0.753},"min":{"1min":0.38100000000000001,"5min":0.38100000000000001,"15min":0.38100000000000001},"max":{"1min":1.3500000000000001,"5min":1.3500000000000001,"15min":1.3500000000000001},"last":0.80600000000000005},{"interface":"front","average":{"1min":0.73399999999999999,"5min":0.73399999999999999,"15min":0.73399999999999999},"min":{"1min":0.47999999999999998,"5min":0.47999999999999998,"15min":0.47999999999999998},"max":{"1min":1.3049999999999999,"5min":1.3049999999999999,"15min":1.3049999999999999},"last":0.96299999999999997}]}]},{"osd":4,"up_from":33,"seq":141733920804,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27424,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717728,"statfs":{"total":95995035648,"available":95966953472,"internally_reserved":0,"allocated":409600,"data_stored":160110,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,1,2,3,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 09:12:54 2024","interfaces":[{"interface":"back","average":{"1min":0.753,"5min":0.78100000000000003,"15min":0.78500000000000003},"min":{"1min":0.56399999999999995,"5min":0.56399999999999995,"15min":0.56399999999999995},"max":{"1min":0.94199999999999995,"5min":0.94199999999999995,"15min":0.94199999999999995},"last":0.77600000000000002},{"interface":"front","average":{"1min":0.81000000000000005,"5min":0.70299999999999996,"15min":0.68500000000000005},"min":{"1min":0.54000000000000004,"5min":0.52400000000000002,"15min":0.52400000000000002},"max":{"1min":0.995,"5min":0.995,"15min":0.995},"last":0.82499999999999996}]},{"osd":1,"last update":"Tue Sep 17 09:12:54 2024","interfaces":[{"interface":"back","average":{"1min":0.79100000000000004,"5min":0.72299999999999998,"15min":0.71199999999999997},"min":{"1min":0.61399999999999999,"5min":0.498,"15min":0.498},"max":{"1min":1.073,"5min":1.073,"15min":1.073},"last":0.70299999999999996},{"interface":"front","average":{"1min":0.78400000000000003,"5min":0.73999999999999999,"15min":0.73199999999999998},"min":{"1min":0.58699999999999997,"5min":0.57799999999999996,"15min":0.57799999999999996},"max":{"1min":1.3580000000000001,"5min":1.3580000000000001,"15min":1.3580000000000001},"last":0.63400000000000001}]},{"osd":2,"last update":"Tue Sep 17 09:12:54 2024","interfaces":[{"interface":"back","average":{"1min":0.86199999999999999,"5min":0.79000000000000004,"15min":0.77800000000000002},"min":{"1min":0.66000000000000003,"5min":0.60699999999999998,"15min":0.60699999999999998},"max":{"1min":1.0109999999999999,"5min":1.0109999999999999,"15min":1.0109999999999999},"last":0.66700000000000004},{"interface":"front","average":{"1min":0.81000000000000005,"5min":0.79500000000000004,"15min":0.79300000000000004},"min":{"1min":0.63700000000000001,"5min":0.56100000000000005,"15min":0.56100000000000005},"max":{"1min":1.002,"5min":1.177,"15min":1.177},"last":0.89200000000000002}]},{"osd":3,"last update":"Tue Sep 17 09:12:54 2024","interfaces":[{"interface":"back","average":{"1min":0.83599999999999997,"5min":0.81299999999999994,"15min":0.80900000000000005},"min":{"1min":0.73499999999999999,"5min":0.54900000000000004,"15min":0.54900000000000004},"max":{"1min":0.96899999999999997,"5min":1.0860000000000001,"15min":1.0860000000000001},"last":0.86099999999999999},{"interface":"front","average":{"1min":0.80600000000000005,"5min":0.81999999999999995,"15min":0.82199999999999995},"min":{"1min":0.63600000000000001,"5min":0.57899999999999996,"15min":0.57899999999999996},"max":{"1min":0.97499999999999998,"5min":0.99399999999999999,"15min":0.99399999999999999},"last":0.745}]},{"osd":5,"last update":"Tue Sep 17 09:12:46 2024","interfaces":[{"interface":"back","average":{"1min":0.80800000000000005,"5min":0.80800000000000005,"15min":0.80800000000000005},"min":{"1min":0.58499999999999996,"5min":0.58499999999999996,"15min":0.58499999999999996},"max":{"1min":1.038,"5min":1.038,"15min":1.038},"last":0.92800000000000005},{"interface":"front","average":{"1min":0.75800000000000001,"5min":0.75800000000000001,"15min":0.75800000000000001},"min":{"1min":0.54800000000000004,"5min":0.54800000000000004,"15min":0.54800000000000004},"max":{"1min":0.94599999999999995,"5min":0.94599999999999995,"15min":0.94599999999999995},"last":0.79600000000000004}]}]},{"osd":3,"up_from":25,"seq":107374182444,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":32100,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":31102,"kb_avail":93713052,"statfs":{"total":95995035648,"available":95962165248,"internally_reserved":0,"allocated":1003520,"data_stored":750478,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1592,"internal_metadata":31848904},"hb_peers":[0,1,2,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 09:13:08 2024","interfaces":[{"interface":"back","average":{"1min":0.84399999999999997,"5min":0.755,"15min":0.71799999999999997},"min":{"1min":0.60699999999999998,"5min":0.38300000000000001,"15min":0.38300000000000001},"max":{"1min":1.3120000000000001,"5min":1.3120000000000001,"15min":1.3120000000000001},"last":0.79300000000000004},{"interface":"front","average":{"1min":0.71399999999999997,"5min":0.76400000000000001,"15min":0.76200000000000001},"min":{"1min":0.53700000000000003,"5min":0.45300000000000001,"15min":0.45300000000000001},"max":{"1min":1.1559999999999999,"5min":1.1559999999999999,"15min":1.1559999999999999},"last":0.73699999999999999}]},{"osd":1,"last update":"Tue Sep 17 09:13:08 2024","interfaces":[{"interface":"back","average":{"1min":0.73099999999999998,"5min":0.755,"15min":0.74299999999999999},"min":{"1min":0.56799999999999995,"5min":0.42299999999999999,"15min":0.42299999999999999},"max":{"1min":0.91700000000000004,"5min":1.3500000000000001,"15min":1.3500000000000001},"last":0.94699999999999995},{"interface":"front","average":{"1min":0.746,"5min":0.77200000000000002,"15min":0.77100000000000002},"min":{"1min":0.60099999999999998,"5min":0.55100000000000005,"15min":0.55100000000000005},"max":{"1min":1.0309999999999999,"5min":1.0920000000000001,"15min":1.0920000000000001},"last":0.70199999999999996}]},{"osd":2,"last update":"Tue Sep 17 09:13:08 2024","interfaces":[{"interface":"back","average":{"1min":0.60799999999999998,"5min":0.64500000000000002,"15min":0.64100000000000001},"min":{"1min":0.50700000000000001,"5min":0.318,"15min":0.318},"max":{"1min":0.878,"5min":0.93000000000000005,"15min":0.93000000000000005},"last":0.65100000000000002},{"interface":"front","average":{"1min":0.69099999999999995,"5min":0.65900000000000003,"15min":0.628},"min":{"1min":0.54300000000000004,"5min":0.29399999999999998,"15min":0.29399999999999998},"max":{"1min":0.83799999999999997,"5min":1.254,"15min":1.254},"last":0.84699999999999998}]},{"osd":4,"last update":"Tue Sep 17 09:12:56 2024","interfaces":[{"interface":"back","average":{"1min":0.85499999999999998,"5min":0.90700000000000003,"15min":0.91500000000000004},"min":{"1min":0.69699999999999995,"5min":0.69699999999999995,"15min":0.69699999999999995},"max":{"1min":1.0249999999999999,"5min":1.0780000000000001,"15min":1.0780000000000001},"last":0.98299999999999998},{"interface":"front","average":{"1min":0.88,"5min":0.90000000000000002,"15min":0.90400000000000003},"min":{"1min":0.68300000000000005,"5min":0.68300000000000005,"15min":0.68300000000000005},"max":{"1min":1.0389999999999999,"5min":1.0640000000000001,"15min":1.0640000000000001},"last":0.91000000000000003}]},{"osd":5,"last update":"Tue Sep 17 09:12:44 2024","interfaces":[{"interface":"back","average":{"1min":0.95699999999999996,"5min":0.95699999999999996,"15min":0.95699999999999996},"min":{"1min":0.84199999999999997,"5min":0.84199999999999997,"15min":0.84199999999999997},"max":{"1min":1.095,"5min":1.095,"15min":1.095},"last":0.88200000000000001},{"interface":"front","average":{"1min":0.875,"5min":0.875,"15min":0.875},"min":{"1min":0.68999999999999995,"5min":0.68999999999999995,"15min":0.68999999999999995},"max":{"1min":1.0109999999999999,"5min":1.0109999999999999,"15min":1.0109999999999999},"last":0.82599999999999996}]}]},{"osd":2,"up_from":18,"seq":77309411384,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":32096,"kb_used_data":976,"kb_used_omap":1,"kb_used_meta":31102,"kb_avail":93713056,"statfs":{"total":95995035648,"available":95962169344,"internally_reserved":0,"allocated":999424,"data_stored":750205,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":31848902},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 09:13:20 2024","interfaces":[{"interface":"back","average":{"1min":0.76200000000000001,"5min":0.73599999999999999,"15min":0.72199999999999998},"min":{"1min":0.56399999999999995,"5min":0.56399999999999995,"15min":0.56399999999999995},"max":{"1min":0.95399999999999996,"5min":0.99399999999999999,"15min":0.99399999999999999},"last":0.61499999999999999},{"interface":"front","average":{"1min":0.71599999999999997,"5min":0.73599999999999999,"15min":0.75},"min":{"1min":0.55700000000000005,"5min":0.55700000000000005,"15min":0.55700000000000005},"max":{"1min":0.873,"5min":0.93899999999999995,"15min":0.93899999999999995},"last":0.68100000000000005}]},{"osd":1,"last update":"Tue Sep 17 09:13:20 2024","interfaces":[{"interface":"back","average":{"1min":0.68100000000000005,"5min":0.72799999999999998,"15min":0.73299999999999998},"min":{"1min":0.48499999999999999,"5min":0.48499999999999999,"15min":0.48499999999999999},"max":{"1min":0.86599999999999999,"5min":1.04,"15min":1.04},"last":0.66000000000000003},{"interface":"front","average":{"1min":0.747,"5min":0.75600000000000001,"15min":0.749},"min":{"1min":0.55500000000000005,"5min":0.55500000000000005,"15min":0.55500000000000005},"max":{"1min":0.93799999999999994,"5min":0.93799999999999994,"15min":0.93799999999999994},"last":0.83399999999999996}]},{"osd":3,"last update":"Tue Sep 17 09:13:09 2024","interfaces":[{"interface":"back","average":{"1min":0.61699999999999999,"5min":0.59299999999999997,"15min":0.59099999999999997},"min":{"1min":0.52600000000000002,"5min":0.38100000000000001,"15min":0.38100000000000001},"max":{"1min":0.79900000000000004,"5min":0.81200000000000006,"15min":0.81200000000000006},"last":0.56599999999999995},{"interface":"front","average":{"1min":0.68700000000000006,"5min":0.624,"15min":0.59799999999999998},"min":{"1min":0.57299999999999995,"5min":0.433,"15min":0.433},"max":{"1min":0.86299999999999999,"5min":0.98299999999999998,"15min":0.98299999999999998},"last":0.74199999999999999}]},{"osd":4,"last update":"Tue Sep 17 09:12:57 2024","interfaces":[{"interface":"back","average":{"1min":0.81699999999999995,"5min":0.79800000000000004,"15min":0.79500000000000004},"min":{"1min":0.63500000000000001,"5min":0.63500000000000001,"15min":0.63500000000000001},"max":{"1min":0.99099999999999999,"5min":0.99099999999999999,"15min":0.99099999999999999},"last":0.81999999999999995},{"interface":"front","average":{"1min":0.89000000000000001,"5min":0.82399999999999995,"15min":0.81299999999999994},"min":{"1min":0.77000000000000002,"5min":0.66700000000000004,"15min":0.66700000000000004},"max":{"1min":1.0309999999999999,"5min":1.032,"15min":1.032},"last":0.90700000000000003}]},{"osd":5,"last update":"Tue Sep 17 09:12:43 2024","interfaces":[{"interface":"back","average":{"1min":0.81799999999999995,"5min":0.81799999999999995,"15min":0.81799999999999995},"min":{"1min":0.63700000000000001,"5min":0.63700000000000001,"15min":0.63700000000000001},"max":{"1min":0.93799999999999994,"5min":0.93799999999999994,"15min":0.93799999999999994},"last":0.78900000000000003},{"interface":"front","average":{"1min":0.88500000000000001,"5min":0.88500000000000001,"15min":0.88500000000000001},"min":{"1min":0.747,"5min":0.747,"15min":0.747},"max":{"1min":1.0980000000000001,"5min":1.0980000000000001,"15min":1.0980000000000001},"last":0.71899999999999997}]}]},{"osd":1,"up_from":13,"seq":55834574914,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27424,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717728,"statfs":{"total":95995035648,"available":95966953472,"internally_reserved":0,"allocated":409600,"data_stored":160110,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 09:12:33 2024","interfaces":[{"interface":"back","average":{"1min":0.52800000000000002,"5min":0.52300000000000002,"15min":0.51700000000000002},"min":{"1min":0.377,"5min":0.377,"15min":0.377},"max":{"1min":0.66900000000000004,"5min":0.66900000000000004,"15min":0.66900000000000004},"last":0.504},{"interface":"front","average":{"1min":0.59199999999999997,"5min":0.55900000000000005,"15min":0.56999999999999995},"min":{"1min":0.34599999999999997,"5min":0.34599999999999997,"15min":0.34599999999999997},"max":{"1min":0.95999999999999996,"5min":0.95999999999999996,"15min":0.95999999999999996},"last":0.40100000000000002}]},{"osd":2,"last update":"Tue Sep 17 09:13:17 2024","interfaces":[{"interface":"back","average":{"1min":0.79500000000000004,"5min":0.77600000000000002,"15min":0.76800000000000002},"min":{"1min":0.53400000000000003,"5min":0.52100000000000002,"15min":0.52100000000000002},"max":{"1min":0.997,"5min":1.1779999999999999,"15min":1.1779999999999999},"last":0.86499999999999999},{"interface":"front","average":{"1min":0.78300000000000003,"5min":0.77800000000000002,"15min":0.79800000000000004},"min":{"1min":0.59499999999999997,"5min":0.54200000000000004,"15min":0.54200000000000004},"max":{"1min":0.98399999999999999,"5min":1.3280000000000001,"15min":1.3280000000000001},"last":0.63200000000000001}]},{"osd":3,"last update":"Tue Sep 17 09:13:11 2024","interfaces":[{"interface":"back","average":{"1min":0.70599999999999996,"5min":0.747,"15min":0.76100000000000001},"min":{"1min":0.56399999999999995,"5min":0.56399999999999995,"15min":0.56399999999999995},"max":{"1min":0.91300000000000003,"5min":0.91400000000000003,"15min":0.91400000000000003},"last":0.67300000000000004},{"interface":"front","average":{"1min":0.74199999999999999,"5min":0.72099999999999997,"15min":0.70899999999999996},"min":{"1min":0.628,"5min":0.57099999999999995,"15min":0.57099999999999995},"max":{"1min":0.91900000000000004,"5min":0.91900000000000004,"15min":0.91900000000000004},"last":0.69899999999999995}]},{"osd":4,"last update":"Tue Sep 17 09:12:58 2024","interfaces":[{"interface":"back","average":{"1min":0.78700000000000003,"5min":0.82399999999999995,"15min":0.82999999999999996},"min":{"1min":0.66100000000000003,"5min":0.66100000000000003,"15min":0.66100000000000003},"max":{"1min":0.93000000000000005,"5min":1.0740000000000001,"15min":1.0740000000000001},"last":0.82899999999999996},{"interface":"front","average":{"1min":0.81999999999999995,"5min":0.81499999999999995,"15min":0.81399999999999995},"min":{"1min":0.64500000000000002,"5min":0.64500000000000002,"15min":0.64500000000000002},"max":{"1min":1.0169999999999999,"5min":1.0169999999999999,"15min":1.0169999999999999},"last":0.72899999999999998}]},{"osd":5,"last update":"Tue Sep 17 09:12:45 2024","interfaces":[{"interface":"back","average":{"1min":0.85099999999999998,"5min":0.85099999999999998,"15min":0.85099999999999998},"min":{"1min":0.70199999999999996,"5min":0.70199999999999996,"15min":0.70199999999999996},"max":{"1min":1.1080000000000001,"5min":1.1080000000000001,"15min":1.1080000000000001},"last":0.78700000000000003},{"interface":"front","average":{"1min":0.84699999999999998,"5min":0.84699999999999998,"15min":0.84699999999999998},"min":{"1min":0.65600000000000003,"5min":0.65600000000000003,"15min":0.65600000000000003},"max":{"1min":0.997,"5min":0.997,"15min":0.997},"last":0.753}]}]},{"osd":0,"up_from":8,"seq":34359738445,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31516,"kb_used_data":396,"kb_used_omap":1,"kb_used_meta":31102,"kb_avail":93713636,"statfs":{"total":95995035648,"available":95962763264,"internally_reserved":0,"allocated":405504,"data_stored":159441,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":31848902},"hb_peers":[1,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":1,"last update":"Tue Sep 17 09:12:30 2024","interfaces":[{"interface":"back","average":{"1min":0.53600000000000003,"5min":0.56200000000000006,"15min":0.57499999999999996},"min":{"1min":0.379,"5min":0.379,"15min":0.379},"max":{"1min":0.77600000000000002,"5min":1.0700000000000001,"15min":1.0700000000000001},"last":0.76100000000000001},{"interface":"front","average":{"1min":0.625,"5min":0.57499999999999996,"15min":0.55700000000000005},"min":{"1min":0.441,"5min":0.434,"15min":0.434},"max":{"1min":0.97499999999999998,"5min":0.97499999999999998,"15min":0.97499999999999998},"last":0.57999999999999996}]},{"osd":2,"last update":"Tue Sep 17 09:13:15 2024","interfaces":[{"interface":"back","average":{"1min":0.73099999999999998,"5min":0.76200000000000001,"15min":0.76900000000000002},"min":{"1min":0.50900000000000001,"5min":0.50900000000000001,"15min":0.50900000000000001},"max":{"1min":1.0589999999999999,"5min":1.1459999999999999,"15min":1.1459999999999999},"last":0.73399999999999999},{"interface":"front","average":{"1min":0.78300000000000003,"5min":0.76800000000000002,"15min":0.76400000000000001},"min":{"1min":0.56000000000000005,"5min":0.56000000000000005,"15min":0.56000000000000005},"max":{"1min":1.056,"5min":1.212,"15min":1.212},"last":0.82399999999999995}]},{"osd":3,"last update":"Tue Sep 17 09:13:10 2024","interfaces":[{"interface":"back","average":{"1min":0.76600000000000001,"5min":0.76400000000000001,"15min":0.75800000000000001},"min":{"1min":0.58099999999999996,"5min":0.58099999999999996,"15min":0.58099999999999996},"max":{"1min":0.94699999999999995,"5min":1.038,"15min":1.038},"last":0.63900000000000001},{"interface":"front","average":{"1min":0.72899999999999998,"5min":0.76500000000000001,"15min":0.76300000000000001},"min":{"1min":0.47299999999999998,"5min":0.47299999999999998,"15min":0.47299999999999998},"max":{"1min":1.0840000000000001,"5min":1.085,"15min":1.085},"last":0.90300000000000002}]},{"osd":4,"last update":"Tue Sep 17 09:12:54 2024","interfaces":[{"interface":"back","average":{"1min":0.82699999999999996,"5min":0.81699999999999995,"15min":0.81499999999999995},"min":{"1min":0.62,"5min":0.58899999999999997,"15min":0.58899999999999997},"max":{"1min":1.1080000000000001,"5min":1.1080000000000001,"15min":1.1080000000000001},"last":0.70599999999999996},{"interface":"front","average":{"1min":0.84399999999999997,"5min":0.84399999999999997,"15min":0.84399999999999997},"min":{"1min":0.65100000000000002,"5min":0.61699999999999999,"15min":0.61699999999999999},"max":{"1min":1.083,"5min":1.083,"15min":1.083},"last":0.80000000000000004}]},{"osd":5,"last update":"Tue Sep 17 09:12:47 2024","interfaces":[{"interface":"back","average":{"1min":0.88700000000000001,"5min":0.88700000000000001,"15min":0.88700000000000001},"min":{"1min":0.71599999999999997,"5min":0.71599999999999997,"15min":0.71599999999999997},"max":{"1min":1.1419999999999999,"5min":1.1419999999999999,"15min":1.1419999999999999},"last":0.85899999999999999},{"interface":"front","average":{"1min":0.94899999999999995,"5min":0.94899999999999995,"15min":0.94899999999999995},"min":{"1min":0.66800000000000004,"5min":0.66800000000000004,"15min":0.66800000000000004},"max":{"1min":1.1120000000000001,"5min":1.1120000000000001,"15min":1.1120000000000001},"last":0.876}]}]}],"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-17T09:13:34.574 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-09-17T09:13:34.574 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-09-17T09:13:34.574 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-09-17T09:13:34.574 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- ceph health --format=json 2024-09-17T09:13:35.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:34 smithi165 bash[24863]: audit 2024-09-17T09:13:33.843964+0000 mgr.a (mgr.14150) 339 : audit [DBG] from='client.14448 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T09:13:35.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:34 smithi134 bash[24188]: audit 2024-09-17T09:13:33.843964+0000 mgr.a (mgr.14150) 339 : audit [DBG] from='client.14448 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T09:13:35.360 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:34 smithi098 bash[22661]: audit 2024-09-17T09:13:33.843964+0000 mgr.a (mgr.14150) 339 : audit [DBG] from='client.14448 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T09:13:36.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:35 smithi165 bash[24863]: cluster 2024-09-17T09:13:34.599087+0000 mgr.a (mgr.14150) 340 : cluster [DBG] pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:36.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:35 smithi134 bash[24188]: cluster 2024-09-17T09:13:34.599087+0000 mgr.a (mgr.14150) 340 : cluster [DBG] pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:36.360 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:35 smithi098 bash[22661]: cluster 2024-09-17T09:13:34.599087+0000 mgr.a (mgr.14150) 340 : cluster [DBG] pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:37.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:36 smithi134 bash[24188]: cluster 2024-09-17T09:13:36.599651+0000 mgr.a (mgr.14150) 341 : cluster [DBG] pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:37.360 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:36 smithi098 bash[22661]: cluster 2024-09-17T09:13:36.599651+0000 mgr.a (mgr.14150) 341 : cluster [DBG] pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:37.381 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:36 smithi165 bash[24863]: cluster 2024-09-17T09:13:36.599651+0000 mgr.a (mgr.14150) 341 : cluster [DBG] pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:39.258 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:13:40.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:39 smithi134 bash[24188]: cluster 2024-09-17T09:13:38.600180+0000 mgr.a (mgr.14150) 342 : cluster [DBG] pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:40.109 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:39 smithi098 bash[22661]: cluster 2024-09-17T09:13:38.600180+0000 mgr.a (mgr.14150) 342 : cluster [DBG] pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:40.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:39 smithi165 bash[24863]: cluster 2024-09-17T09:13:38.600180+0000 mgr.a (mgr.14150) 342 : cluster [DBG] pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:41.859 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:41 smithi098 bash[22661]: cluster 2024-09-17T09:13:40.600732+0000 mgr.a (mgr.14150) 343 : cluster [DBG] pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:42.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:41 smithi134 bash[24188]: cluster 2024-09-17T09:13:40.600732+0000 mgr.a (mgr.14150) 343 : cluster [DBG] pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:42.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:41 smithi165 bash[24863]: cluster 2024-09-17T09:13:40.600732+0000 mgr.a (mgr.14150) 343 : cluster [DBG] pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:42.835 INFO:teuthology.orchestra.run.smithi098.stdout: 2024-09-17T09:13:42.835 INFO:teuthology.orchestra.run.smithi098.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-09-17T09:13:43.568 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-09-17T09:13:43.568 INFO:tasks.cephadm:Setup complete, yielding 2024-09-17T09:13:43.568 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T09:13:43.578 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi098.front.sepia.ceph.com 2024-09-17T09:13:43.579 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 -- bash -c 'set -ex 2024-09-17T09:13:43.579 DEBUG:teuthology.orchestra.run.smithi098:> HOSTNAMES=$(ceph orch host ls --format json | jq -r '"'"'.[] | .hostname'"'"') 2024-09-17T09:13:43.579 DEBUG:teuthology.orchestra.run.smithi098:> for host in $HOSTNAMES; do 2024-09-17T09:13:43.579 DEBUG:teuthology.orchestra.run.smithi098:> # find the hostname for "host.c" which will have no mgr 2024-09-17T09:13:43.579 DEBUG:teuthology.orchestra.run.smithi098:> HAS_MGRS=$(ceph orch ps --hostname ${host} --format json | jq '"'"'any(.daemon_type == "mgr")'"'"') 2024-09-17T09:13:43.579 DEBUG:teuthology.orchestra.run.smithi098:> if [ "$HAS_MGRS" == "false" ]; then 2024-09-17T09:13:43.579 DEBUG:teuthology.orchestra.run.smithi098:> HOST_C="${host}" 2024-09-17T09:13:43.579 DEBUG:teuthology.orchestra.run.smithi098:> fi 2024-09-17T09:13:43.579 DEBUG:teuthology.orchestra.run.smithi098:> done 2024-09-17T09:13:43.579 DEBUG:teuthology.orchestra.run.smithi098:> # One last thing to worry about before draining the host 2024-09-17T09:13:43.579 DEBUG:teuthology.orchestra.run.smithi098:> # is that the teuthology test tends to put the explicit 2024-09-17T09:13:43.579 DEBUG:teuthology.orchestra.run.smithi098:> # hostnames in the placement for the mon service. 2024-09-17T09:13:43.579 DEBUG:teuthology.orchestra.run.smithi098:> # We want to make sure we can drain without providing 2024-09-17T09:13:43.580 DEBUG:teuthology.orchestra.run.smithi098:> # --force and there is a check for the host being removed 2024-09-17T09:13:43.580 DEBUG:teuthology.orchestra.run.smithi098:> # being listed explicitly in the placements. Therefore, 2024-09-17T09:13:43.580 DEBUG:teuthology.orchestra.run.smithi098:> # we should remove it from the mon placement. 2024-09-17T09:13:43.580 DEBUG:teuthology.orchestra.run.smithi098:> ceph orch ls mon --export > mon.yaml 2024-09-17T09:13:43.580 DEBUG:teuthology.orchestra.run.smithi098:> sed /"$HOST_C"/d mon.yaml > mon_adjusted.yaml 2024-09-17T09:13:43.580 DEBUG:teuthology.orchestra.run.smithi098:> ceph orch apply -i mon_adjusted.yaml 2024-09-17T09:13:43.580 DEBUG:teuthology.orchestra.run.smithi098:> # now drain that host 2024-09-17T09:13:43.580 DEBUG:teuthology.orchestra.run.smithi098:> ceph orch host drain $HOST_C --zap-osd-devices 2024-09-17T09:13:43.580 DEBUG:teuthology.orchestra.run.smithi098:> # wait for drain to complete 2024-09-17T09:13:43.580 DEBUG:teuthology.orchestra.run.smithi098:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-09-17T09:13:43.580 DEBUG:teuthology.orchestra.run.smithi098:> while [ "$HOST_C_DAEMONS" != "No daemons reported" ]; do 2024-09-17T09:13:43.580 DEBUG:teuthology.orchestra.run.smithi098:> sleep 15 2024-09-17T09:13:43.580 DEBUG:teuthology.orchestra.run.smithi098:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-09-17T09:13:43.580 DEBUG:teuthology.orchestra.run.smithi098:> done 2024-09-17T09:13:43.580 DEBUG:teuthology.orchestra.run.smithi098:> # we want to check the ability to remove the host from 2024-09-17T09:13:43.580 DEBUG:teuthology.orchestra.run.smithi098:> # the CRUSH map, so we should first verify the host is in 2024-09-17T09:13:43.581 DEBUG:teuthology.orchestra.run.smithi098:> # the CRUSH map. 2024-09-17T09:13:43.581 DEBUG:teuthology.orchestra.run.smithi098:> ceph osd getcrushmap -o compiled-crushmap 2024-09-17T09:13:43.581 DEBUG:teuthology.orchestra.run.smithi098:> crushtool -d compiled-crushmap -o crushmap.txt 2024-09-17T09:13:43.581 DEBUG:teuthology.orchestra.run.smithi098:> CRUSH_MAP=$(cat crushmap.txt) 2024-09-17T09:13:43.581 DEBUG:teuthology.orchestra.run.smithi098:> if ! grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-09-17T09:13:43.581 DEBUG:teuthology.orchestra.run.smithi098:> printf "Expected to see $HOST_C in CRUSH map. Saw:\n\n$CRUSH_MAP" 2024-09-17T09:13:43.581 DEBUG:teuthology.orchestra.run.smithi098:> exit 1 2024-09-17T09:13:43.581 DEBUG:teuthology.orchestra.run.smithi098:> fi 2024-09-17T09:13:43.581 DEBUG:teuthology.orchestra.run.smithi098:> # If the drain was successful, we should be able to remove the 2024-09-17T09:13:43.581 DEBUG:teuthology.orchestra.run.smithi098:> # host without force with no issues. If there are still daemons 2024-09-17T09:13:43.581 DEBUG:teuthology.orchestra.run.smithi098:> # we will get a response telling us to drain the host and a 2024-09-17T09:13:43.581 DEBUG:teuthology.orchestra.run.smithi098:> # non-zero return code 2024-09-17T09:13:43.581 DEBUG:teuthology.orchestra.run.smithi098:> ceph orch host rm $HOST_C --rm-crush-entry 2024-09-17T09:13:43.581 DEBUG:teuthology.orchestra.run.smithi098:> # verify we'"'"'ve successfully removed the host from the CRUSH map 2024-09-17T09:13:43.581 DEBUG:teuthology.orchestra.run.smithi098:> sleep 30 2024-09-17T09:13:43.581 DEBUG:teuthology.orchestra.run.smithi098:> ceph osd getcrushmap -o compiled-crushmap 2024-09-17T09:13:43.582 DEBUG:teuthology.orchestra.run.smithi098:> crushtool -d compiled-crushmap -o crushmap.txt 2024-09-17T09:13:43.582 DEBUG:teuthology.orchestra.run.smithi098:> CRUSH_MAP=$(cat crushmap.txt) 2024-09-17T09:13:43.582 DEBUG:teuthology.orchestra.run.smithi098:> if grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-09-17T09:13:43.582 DEBUG:teuthology.orchestra.run.smithi098:> printf "Saw $HOST_C in CRUSH map after it should have been removed.\n\n$CRUSH_MAP" 2024-09-17T09:13:43.582 DEBUG:teuthology.orchestra.run.smithi098:> exit 1 2024-09-17T09:13:43.582 DEBUG:teuthology.orchestra.run.smithi098:> fi 2024-09-17T09:13:43.582 DEBUG:teuthology.orchestra.run.smithi098:> ' 2024-09-17T09:13:43.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:43 smithi098 bash[22661]: cluster 2024-09-17T09:13:42.601048+0000 mgr.a (mgr.14150) 344 : cluster [DBG] pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:43.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:43 smithi098 bash[22661]: audit 2024-09-17T09:13:42.836420+0000 mon.a (mon.0) 579 : audit [DBG] from='client.? 172.21.15.98:0/1770013358' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-17T09:13:44.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:43 smithi134 bash[24188]: cluster 2024-09-17T09:13:42.601048+0000 mgr.a (mgr.14150) 344 : cluster [DBG] pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:44.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:43 smithi134 bash[24188]: audit 2024-09-17T09:13:42.836420+0000 mon.a (mon.0) 579 : audit [DBG] from='client.? 172.21.15.98:0/1770013358' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-17T09:13:44.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:43 smithi165 bash[24863]: cluster 2024-09-17T09:13:42.601048+0000 mgr.a (mgr.14150) 344 : cluster [DBG] pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:44.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:43 smithi165 bash[24863]: audit 2024-09-17T09:13:42.836420+0000 mon.a (mon.0) 579 : audit [DBG] from='client.? 172.21.15.98:0/1770013358' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-17T09:13:46.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:45 smithi134 bash[24188]: cluster 2024-09-17T09:13:44.601569+0000 mgr.a (mgr.14150) 345 : cluster [DBG] pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:46.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:45 smithi098 bash[22661]: cluster 2024-09-17T09:13:44.601569+0000 mgr.a (mgr.14150) 345 : cluster [DBG] pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:46.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:45 smithi165 bash[24863]: cluster 2024-09-17T09:13:44.601569+0000 mgr.a (mgr.14150) 345 : cluster [DBG] pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:48.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:47 smithi134 bash[24188]: cluster 2024-09-17T09:13:46.602104+0000 mgr.a (mgr.14150) 346 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:48.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:47 smithi098 bash[22661]: cluster 2024-09-17T09:13:46.602104+0000 mgr.a (mgr.14150) 346 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:48.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:47 smithi165 bash[24863]: cluster 2024-09-17T09:13:46.602104+0000 mgr.a (mgr.14150) 346 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:48.259 INFO:teuthology.orchestra.run.smithi098.stderr:Inferring config /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T09:13:49.855 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:49 smithi098 bash[22661]: cluster 2024-09-17T09:13:48.602678+0000 mgr.a (mgr.14150) 347 : cluster [DBG] pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:50.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:49 smithi134 bash[24188]: cluster 2024-09-17T09:13:48.602678+0000 mgr.a (mgr.14150) 347 : cluster [DBG] pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:50.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:49 smithi165 bash[24863]: cluster 2024-09-17T09:13:48.602678+0000 mgr.a (mgr.14150) 347 : cluster [DBG] pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:51.437 INFO:teuthology.orchestra.run.smithi098.stderr:++ ceph orch host ls --format json 2024-09-17T09:13:51.437 INFO:teuthology.orchestra.run.smithi098.stderr:++ jq -r '.[] | .hostname' 2024-09-17T09:13:51.730 INFO:teuthology.orchestra.run.smithi098.stderr:+ HOSTNAMES='smithi098 2024-09-17T09:13:51.730 INFO:teuthology.orchestra.run.smithi098.stderr:smithi134 2024-09-17T09:13:51.730 INFO:teuthology.orchestra.run.smithi098.stderr:smithi165' 2024-09-17T09:13:51.730 INFO:teuthology.orchestra.run.smithi098.stderr:+ for host in $HOSTNAMES 2024-09-17T09:13:51.730 INFO:teuthology.orchestra.run.smithi098.stderr:++ ceph orch ps --hostname smithi098 --format json 2024-09-17T09:13:51.730 INFO:teuthology.orchestra.run.smithi098.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-17T09:13:52.035 INFO:teuthology.orchestra.run.smithi098.stderr:+ HAS_MGRS=true 2024-09-17T09:13:52.035 INFO:teuthology.orchestra.run.smithi098.stderr:+ '[' true == false ']' 2024-09-17T09:13:52.035 INFO:teuthology.orchestra.run.smithi098.stderr:+ for host in $HOSTNAMES 2024-09-17T09:13:52.035 INFO:teuthology.orchestra.run.smithi098.stderr:++ ceph orch ps --hostname smithi134 --format json 2024-09-17T09:13:52.036 INFO:teuthology.orchestra.run.smithi098.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-17T09:13:52.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:51 smithi134 bash[24188]: cluster 2024-09-17T09:13:50.603264+0000 mgr.a (mgr.14150) 348 : cluster [DBG] pgmap v315: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:52.109 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:51 smithi098 bash[22661]: cluster 2024-09-17T09:13:50.603264+0000 mgr.a (mgr.14150) 348 : cluster [DBG] pgmap v315: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:52.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:51 smithi165 bash[24863]: cluster 2024-09-17T09:13:50.603264+0000 mgr.a (mgr.14150) 348 : cluster [DBG] pgmap v315: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:52.323 INFO:teuthology.orchestra.run.smithi098.stderr:+ HAS_MGRS=true 2024-09-17T09:13:52.323 INFO:teuthology.orchestra.run.smithi098.stderr:+ '[' true == false ']' 2024-09-17T09:13:52.323 INFO:teuthology.orchestra.run.smithi098.stderr:+ for host in $HOSTNAMES 2024-09-17T09:13:52.323 INFO:teuthology.orchestra.run.smithi098.stderr:++ ceph orch ps --hostname smithi165 --format json 2024-09-17T09:13:52.323 INFO:teuthology.orchestra.run.smithi098.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-17T09:13:52.616 INFO:teuthology.orchestra.run.smithi098.stderr:+ HAS_MGRS=false 2024-09-17T09:13:52.616 INFO:teuthology.orchestra.run.smithi098.stderr:+ '[' false == false ']' 2024-09-17T09:13:52.616 INFO:teuthology.orchestra.run.smithi098.stderr:+ HOST_C=smithi165 2024-09-17T09:13:52.616 INFO:teuthology.orchestra.run.smithi098.stderr:+ ceph orch ls mon --export 2024-09-17T09:13:52.917 INFO:teuthology.orchestra.run.smithi098.stderr:+ sed /smithi165/d mon.yaml 2024-09-17T09:13:52.917 INFO:teuthology.orchestra.run.smithi098.stderr:+ ceph orch apply -i mon_adjusted.yaml 2024-09-17T09:13:53.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:52 smithi134 bash[24188]: audit 2024-09-17T09:13:51.717482+0000 mgr.a (mgr.14150) 349 : audit [DBG] from='client.14460 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T09:13:53.109 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:52 smithi098 bash[22661]: audit 2024-09-17T09:13:51.717482+0000 mgr.a (mgr.14150) 349 : audit [DBG] from='client.14460 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T09:13:53.131 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:52 smithi165 bash[24863]: audit 2024-09-17T09:13:51.717482+0000 mgr.a (mgr.14150) 349 : audit [DBG] from='client.14460 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T09:13:53.203 INFO:teuthology.orchestra.run.smithi098.stdout:Scheduled mon update... 2024-09-17T09:13:53.214 INFO:teuthology.orchestra.run.smithi098.stderr:+ ceph orch host drain smithi165 --zap-osd-devices 2024-09-17T09:13:54.631 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:54 smithi165 systemd[1]: ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@mon.c.service: Deactivated successfully. 2024-09-17T09:13:55.438 INFO:teuthology.orchestra.run.smithi098.stdout:Scheduled to remove the following daemons from host 'smithi165' 2024-09-17T09:13:55.439 INFO:teuthology.orchestra.run.smithi098.stdout:type id 2024-09-17T09:13:55.439 INFO:teuthology.orchestra.run.smithi098.stdout:-------------------- --------------- 2024-09-17T09:13:55.439 INFO:teuthology.orchestra.run.smithi098.stdout:mon c 2024-09-17T09:13:55.439 INFO:teuthology.orchestra.run.smithi098.stdout:osd 4 2024-09-17T09:13:55.439 INFO:teuthology.orchestra.run.smithi098.stdout:osd 5 2024-09-17T09:13:55.453 INFO:teuthology.orchestra.run.smithi098.stderr:++ ceph orch ps --hostname smithi165 2024-09-17T09:13:55.741 INFO:teuthology.orchestra.run.smithi098.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-17T09:13:55.741 INFO:teuthology.orchestra.run.smithi098.stderr:mon.c smithi165 running (7m) 2m ago 7m 36.7M 2048M 18.2.4-855-g19e2a2be 980a0bfcd684 9f4be8b49f38 2024-09-17T09:13:55.741 INFO:teuthology.orchestra.run.smithi098.stderr:osd.4 smithi165 running (3m) 2m ago 3m 33.5M 10.4G 18.2.4-855-g19e2a2be 980a0bfcd684 e31b263ffe85 2024-09-17T09:13:55.741 INFO:teuthology.orchestra.run.smithi098.stderr:osd.5 smithi165 running (2m) 2m ago 2m - 10.4G 18.2.4-855-g19e2a2be 980a0bfcd684 c58767a2da96 ' 2024-09-17T09:13:55.741 INFO:teuthology.orchestra.run.smithi098.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-17T09:13:55.741 INFO:teuthology.orchestra.run.smithi098.stderr:mon.c smithi165 running (7m) 2m ago 7m 36.7M 2048M 18.2.4-855-g19e2a2be 980a0bfcd684 9f4be8b49f38 2024-09-17T09:13:55.741 INFO:teuthology.orchestra.run.smithi098.stderr:osd.4 smithi165 running (3m) 2m ago 3m 33.5M 10.4G 18.2.4-855-g19e2a2be 980a0bfcd684 e31b263ffe85 2024-09-17T09:13:55.742 INFO:teuthology.orchestra.run.smithi098.stderr:osd.5 smithi165 running (2m) 2m ago 2m - 10.4G 18.2.4-855-g19e2a2be 980a0bfcd684 c58767a2da96 ' '!=' 'No daemons reported' ']' 2024-09-17T09:13:55.742 INFO:teuthology.orchestra.run.smithi098.stderr:+ sleep 15 2024-09-17T09:13:55.793 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:55 smithi134 bash[24188]: audit 2024-09-17T09:13:52.894035+0000 mgr.a (mgr.14150) 354 : audit [DBG] from='client.14484 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:13:55.793 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:55 smithi134 bash[24188]: audit 2024-09-17T09:13:53.190370+0000 mgr.a (mgr.14150) 355 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:13:55.793 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:55 smithi134 bash[24188]: cephadm 2024-09-17T09:13:53.195167+0000 mgr.a (mgr.14150) 356 : cephadm [INF] Saving service mon spec with placement smithi098:172.21.15.98=a;smithi134:172.21.15.134=b;count:3 2024-09-17T09:13:55.793 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:55 smithi134 bash[24188]: cephadm 2024-09-17T09:13:53.380759+0000 mgr.a (mgr.14150) 357 : cephadm [INF] Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-17T09:13:55.793 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:55 smithi134 bash[24188]: cephadm 2024-09-17T09:13:53.380896+0000 mgr.a (mgr.14150) 358 : cephadm [INF] Removing monitor c from monmap... 2024-09-17T09:13:55.794 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:55 smithi134 bash[24188]: cephadm 2024-09-17T09:13:53.382449+0000 mgr.a (mgr.14150) 359 : cephadm [INF] Removing daemon mon.c from smithi165 -- ports [] 2024-09-17T09:13:55.794 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:55 smithi134 bash[24188]: audit 2024-09-17T09:13:53.388374+0000 mon.a (mon.0) 588 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T09:13:55.794 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:55 smithi134 bash[24188]: audit 2024-09-17T09:13:53.388589+0000 mon.a (mon.0) 589 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:13:55.794 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:55 smithi134 bash[24188]: cluster 2024-09-17T09:13:53.400316+0000 mon.b (mon.1) 17 : cluster [INF] mon.b calling monitor election 2024-09-17T09:13:55.794 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:55 smithi134 bash[24188]: audit 2024-09-17T09:13:53.476208+0000 mgr.a (mgr.14150) 360 : audit [DBG] from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi165", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:13:55.794 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:55 smithi134 bash[24188]: cluster 2024-09-17T09:13:54.604093+0000 mgr.a (mgr.14150) 361 : cluster [DBG] pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:55.794 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:55 smithi134 bash[24188]: cluster 2024-09-17T09:13:55.389180+0000 mon.a (mon.0) 590 : cluster [INF] mon.a calling monitor election 2024-09-17T09:13:55.794 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:55 smithi134 bash[24188]: cluster 2024-09-17T09:13:55.409509+0000 mon.a (mon.0) 591 : cluster [INF] mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-17T09:13:55.794 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:55 smithi134 bash[24188]: cluster 2024-09-17T09:13:55.416364+0000 mon.a (mon.0) 592 : cluster [DBG] monmap e4: 2 mons at {a=[v2:172.21.15.98:3300/0,v1:172.21.15.98:6789/0],b=[v2:172.21.15.134:3300/0,v1:172.21.15.134:6789/0]} removed_ranks: {1} disallowed_leaders: {} 2024-09-17T09:13:55.794 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:55 smithi134 bash[24188]: cluster 2024-09-17T09:13:55.417370+0000 mon.a (mon.0) 593 : cluster [DBG] fsmap 2024-09-17T09:13:55.794 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:55 smithi134 bash[24188]: cluster 2024-09-17T09:13:55.417424+0000 mon.a (mon.0) 594 : cluster [DBG] osdmap e45: 6 total, 6 up, 6 in 2024-09-17T09:13:55.795 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:55 smithi134 bash[24188]: cluster 2024-09-17T09:13:55.418127+0000 mon.a (mon.0) 595 : cluster [DBG] mgrmap e15: a(active, since 9m), standbys: b 2024-09-17T09:13:55.795 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:55 smithi134 bash[24188]: cluster 2024-09-17T09:13:55.418365+0000 mon.a (mon.0) 596 : cluster [INF] overall HEALTH_OK 2024-09-17T09:13:55.795 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:55 smithi134 bash[24188]: audit 2024-09-17T09:13:55.424897+0000 mon.a (mon.0) 597 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:13:55.795 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:55 smithi134 bash[24188]: audit 2024-09-17T09:13:55.431697+0000 mon.a (mon.0) 598 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:13:55.795 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:55 smithi134 bash[24188]: audit 2024-09-17T09:13:55.434333+0000 mon.a (mon.0) 599 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-17T09:13:55.795 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:55 smithi134 bash[24188]: audit 2024-09-17T09:13:55.437626+0000 mon.a (mon.0) 600 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-17T09:13:55.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:55 smithi098 bash[22661]: audit 2024-09-17T09:13:52.894035+0000 mgr.a (mgr.14150) 354 : audit [DBG] from='client.14484 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:13:55.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:55 smithi098 bash[22661]: audit 2024-09-17T09:13:53.190370+0000 mgr.a (mgr.14150) 355 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:13:55.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:55 smithi098 bash[22661]: cephadm 2024-09-17T09:13:53.195167+0000 mgr.a (mgr.14150) 356 : cephadm [INF] Saving service mon spec with placement smithi098:172.21.15.98=a;smithi134:172.21.15.134=b;count:3 2024-09-17T09:13:55.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:55 smithi098 bash[22661]: cephadm 2024-09-17T09:13:53.380759+0000 mgr.a (mgr.14150) 357 : cephadm [INF] Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-17T09:13:55.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:55 smithi098 bash[22661]: cephadm 2024-09-17T09:13:53.380896+0000 mgr.a (mgr.14150) 358 : cephadm [INF] Removing monitor c from monmap... 2024-09-17T09:13:55.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:55 smithi098 bash[22661]: cephadm 2024-09-17T09:13:53.382449+0000 mgr.a (mgr.14150) 359 : cephadm [INF] Removing daemon mon.c from smithi165 -- ports [] 2024-09-17T09:13:55.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:55 smithi098 bash[22661]: audit 2024-09-17T09:13:53.388374+0000 mon.a (mon.0) 588 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T09:13:55.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:55 smithi098 bash[22661]: audit 2024-09-17T09:13:53.388589+0000 mon.a (mon.0) 589 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T09:13:55.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:55 smithi098 bash[22661]: cluster 2024-09-17T09:13:53.400316+0000 mon.b (mon.1) 17 : cluster [INF] mon.b calling monitor election 2024-09-17T09:13:55.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:55 smithi098 bash[22661]: audit 2024-09-17T09:13:53.476208+0000 mgr.a (mgr.14150) 360 : audit [DBG] from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi165", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:13:55.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:55 smithi098 bash[22661]: cluster 2024-09-17T09:13:54.604093+0000 mgr.a (mgr.14150) 361 : cluster [DBG] pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:55.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:55 smithi098 bash[22661]: cluster 2024-09-17T09:13:55.389180+0000 mon.a (mon.0) 590 : cluster [INF] mon.a calling monitor election 2024-09-17T09:13:55.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:55 smithi098 bash[22661]: cluster 2024-09-17T09:13:55.409509+0000 mon.a (mon.0) 591 : cluster [INF] mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-17T09:13:55.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:55 smithi098 bash[22661]: cluster 2024-09-17T09:13:55.416364+0000 mon.a (mon.0) 592 : cluster [DBG] monmap e4: 2 mons at {a=[v2:172.21.15.98:3300/0,v1:172.21.15.98:6789/0],b=[v2:172.21.15.134:3300/0,v1:172.21.15.134:6789/0]} removed_ranks: {1} disallowed_leaders: {} 2024-09-17T09:13:55.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:55 smithi098 bash[22661]: cluster 2024-09-17T09:13:55.417370+0000 mon.a (mon.0) 593 : cluster [DBG] fsmap 2024-09-17T09:13:55.861 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:55 smithi098 bash[22661]: cluster 2024-09-17T09:13:55.417424+0000 mon.a (mon.0) 594 : cluster [DBG] osdmap e45: 6 total, 6 up, 6 in 2024-09-17T09:13:55.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:55 smithi098 bash[22661]: cluster 2024-09-17T09:13:55.418127+0000 mon.a (mon.0) 595 : cluster [DBG] mgrmap e15: a(active, since 9m), standbys: b 2024-09-17T09:13:55.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:55 smithi098 bash[22661]: cluster 2024-09-17T09:13:55.418365+0000 mon.a (mon.0) 596 : cluster [INF] overall HEALTH_OK 2024-09-17T09:13:55.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:55 smithi098 bash[22661]: audit 2024-09-17T09:13:55.424897+0000 mon.a (mon.0) 597 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:13:55.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:55 smithi098 bash[22661]: audit 2024-09-17T09:13:55.431697+0000 mon.a (mon.0) 598 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:13:55.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:55 smithi098 bash[22661]: audit 2024-09-17T09:13:55.434333+0000 mon.a (mon.0) 599 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-17T09:13:55.862 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:55 smithi098 bash[22661]: audit 2024-09-17T09:13:55.437626+0000 mon.a (mon.0) 600 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-17T09:13:56.793 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:56 smithi134 bash[24188]: cephadm 2024-09-17T09:13:55.425578+0000 mgr.a (mgr.14150) 362 : cephadm [INF] Added label _no_schedule to host smithi165 2024-09-17T09:13:56.793 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:56 smithi134 bash[24188]: cephadm 2024-09-17T09:13:55.432391+0000 mgr.a (mgr.14150) 363 : cephadm [INF] Added label SpecialHostLabels.DRAIN_CONF_KEYRING to host smithi165 2024-09-17T09:13:56.793 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:56 smithi134 bash[24188]: cephadm 2024-09-17T09:13:55.435992+0000 mgr.a (mgr.14150) 364 : cephadm [INF] osd.4 crush weight is 0.0872955322265625 2024-09-17T09:13:56.793 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:56 smithi134 bash[24188]: cephadm 2024-09-17T09:13:55.439198+0000 mgr.a (mgr.14150) 365 : cephadm [INF] osd.5 crush weight is 0.0872955322265625 2024-09-17T09:13:56.793 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:56 smithi134 bash[24188]: audit 2024-09-17T09:13:55.720746+0000 mgr.a (mgr.14150) 366 : audit [DBG] from='client.14500 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi165", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:13:56.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:56 smithi098 bash[22661]: cephadm 2024-09-17T09:13:55.425578+0000 mgr.a (mgr.14150) 362 : cephadm [INF] Added label _no_schedule to host smithi165 2024-09-17T09:13:56.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:56 smithi098 bash[22661]: cephadm 2024-09-17T09:13:55.432391+0000 mgr.a (mgr.14150) 363 : cephadm [INF] Added label SpecialHostLabels.DRAIN_CONF_KEYRING to host smithi165 2024-09-17T09:13:56.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:56 smithi098 bash[22661]: cephadm 2024-09-17T09:13:55.435992+0000 mgr.a (mgr.14150) 364 : cephadm [INF] osd.4 crush weight is 0.0872955322265625 2024-09-17T09:13:56.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:56 smithi098 bash[22661]: cephadm 2024-09-17T09:13:55.439198+0000 mgr.a (mgr.14150) 365 : cephadm [INF] osd.5 crush weight is 0.0872955322265625 2024-09-17T09:13:56.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:56 smithi098 bash[22661]: audit 2024-09-17T09:13:55.720746+0000 mgr.a (mgr.14150) 366 : audit [DBG] from='client.14500 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi165", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:13:57.792 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:57 smithi134 bash[24188]: cluster 2024-09-17T09:13:56.604617+0000 mgr.a (mgr.14150) 367 : cluster [DBG] pgmap v318: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:57.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:57 smithi098 bash[22661]: cluster 2024-09-17T09:13:56.604617+0000 mgr.a (mgr.14150) 367 : cluster [DBG] pgmap v318: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:58.631 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 17 09:13:58 smithi165 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:13:58.632 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 17 09:13:58 smithi165 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:13:58.632 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 17 09:13:58 smithi165 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:13:59.793 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:59 smithi134 bash[24188]: audit 2024-09-17T09:13:58.468346+0000 mon.a (mon.0) 601 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:13:59.793 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:59 smithi134 bash[24188]: audit 2024-09-17T09:13:58.477154+0000 mon.a (mon.0) 602 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:13:59.793 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:59 smithi134 bash[24188]: audit 2024-09-17T09:13:58.562421+0000 mon.a (mon.0) 603 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:13:59.793 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:59 smithi134 bash[24188]: cluster 2024-09-17T09:13:58.605147+0000 mgr.a (mgr.14150) 368 : cluster [DBG] pgmap v319: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:59.793 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:13:59 smithi134 bash[24188]: audit 2024-09-17T09:13:58.871074+0000 mon.a (mon.0) 604 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:13:59.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:59 smithi098 bash[22661]: audit 2024-09-17T09:13:58.468346+0000 mon.a (mon.0) 601 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:13:59.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:59 smithi098 bash[22661]: audit 2024-09-17T09:13:58.477154+0000 mon.a (mon.0) 602 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:13:59.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:59 smithi098 bash[22661]: audit 2024-09-17T09:13:58.562421+0000 mon.a (mon.0) 603 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:13:59.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:59 smithi098 bash[22661]: cluster 2024-09-17T09:13:58.605147+0000 mgr.a (mgr.14150) 368 : cluster [DBG] pgmap v319: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:13:59.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:13:59 smithi098 bash[22661]: audit 2024-09-17T09:13:58.871074+0000 mon.a (mon.0) 604 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:02.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:01 smithi134 bash[24188]: cluster 2024-09-17T09:14:00.605700+0000 mgr.a (mgr.14150) 369 : cluster [DBG] pgmap v320: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:14:02.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:01 smithi098 bash[22661]: cluster 2024-09-17T09:14:00.605700+0000 mgr.a (mgr.14150) 369 : cluster [DBG] pgmap v320: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:14:04.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:03 smithi134 bash[24188]: cluster 2024-09-17T09:14:02.606259+0000 mgr.a (mgr.14150) 370 : cluster [DBG] pgmap v321: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:14:04.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:03 smithi134 bash[24188]: audit 2024-09-17T09:14:03.610697+0000 mon.a (mon.0) 605 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:04.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:03 smithi134 bash[24188]: audit 2024-09-17T09:14:03.618431+0000 mon.a (mon.0) 606 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:04.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:03 smithi134 bash[24188]: audit 2024-09-17T09:14:03.620365+0000 mon.a (mon.0) 607 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:14:04.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:03 smithi134 bash[24188]: audit 2024-09-17T09:14:03.622206+0000 mon.a (mon.0) 608 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:14:04.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:03 smithi098 bash[22661]: cluster 2024-09-17T09:14:02.606259+0000 mgr.a (mgr.14150) 370 : cluster [DBG] pgmap v321: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:14:04.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:03 smithi098 bash[22661]: audit 2024-09-17T09:14:03.610697+0000 mon.a (mon.0) 605 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:04.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:03 smithi098 bash[22661]: audit 2024-09-17T09:14:03.618431+0000 mon.a (mon.0) 606 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:04.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:03 smithi098 bash[22661]: audit 2024-09-17T09:14:03.620365+0000 mon.a (mon.0) 607 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:14:04.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:03 smithi098 bash[22661]: audit 2024-09-17T09:14:03.622206+0000 mon.a (mon.0) 608 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:14:05.027 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:04 smithi098 bash[22661]: cephadm 2024-09-17T09:14:03.624683+0000 mgr.a (mgr.14150) 371 : cephadm [INF] Updating smithi098:/etc/ceph/ceph.conf 2024-09-17T09:14:05.027 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:04 smithi098 bash[22661]: cephadm 2024-09-17T09:14:03.625310+0000 mgr.a (mgr.14150) 372 : cephadm [INF] Updating smithi134:/etc/ceph/ceph.conf 2024-09-17T09:14:05.027 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:04 smithi098 bash[22661]: cephadm 2024-09-17T09:14:03.627222+0000 mgr.a (mgr.14150) 373 : cephadm [INF] Removing smithi165:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T09:14:05.027 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:04 smithi098 bash[22661]: cephadm 2024-09-17T09:14:03.690757+0000 mgr.a (mgr.14150) 374 : cephadm [INF] Removing smithi165:/etc/ceph/ceph.client.admin.keyring 2024-09-17T09:14:05.027 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:04 smithi098 bash[22661]: cephadm 2024-09-17T09:14:03.737860+0000 mgr.a (mgr.14150) 375 : cephadm [INF] Removing smithi165:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T09:14:05.027 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:04 smithi098 bash[22661]: audit 2024-09-17T09:14:03.776978+0000 mon.a (mon.0) 609 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:05.027 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:04 smithi098 bash[22661]: audit 2024-09-17T09:14:03.782592+0000 mon.a (mon.0) 610 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:05.028 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:04 smithi098 bash[22661]: cephadm 2024-09-17T09:14:03.859082+0000 mgr.a (mgr.14150) 376 : cephadm [INF] Updating smithi098:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T09:14:05.028 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:04 smithi098 bash[22661]: cephadm 2024-09-17T09:14:03.862844+0000 mgr.a (mgr.14150) 377 : cephadm [INF] Updating smithi134:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T09:14:05.028 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:04 smithi098 bash[22661]: audit 2024-09-17T09:14:03.986119+0000 mon.a (mon.0) 611 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:05.028 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:04 smithi098 bash[22661]: audit 2024-09-17T09:14:03.991893+0000 mon.a (mon.0) 612 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:05.028 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:04 smithi098 bash[22661]: audit 2024-09-17T09:14:04.002680+0000 mon.a (mon.0) 613 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:05.028 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:04 smithi098 bash[22661]: audit 2024-09-17T09:14:04.007651+0000 mon.a (mon.0) 614 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:05.028 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:04 smithi098 bash[22661]: audit 2024-09-17T09:14:04.010002+0000 mon.a (mon.0) 615 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T09:14:05.028 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:04 smithi098 bash[22661]: audit 2024-09-17T09:14:04.011746+0000 mon.a (mon.0) 616 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T09:14:05.028 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:04 smithi098 bash[22661]: audit 2024-09-17T09:14:04.013090+0000 mon.a (mon.0) 617 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-17T09:14:05.028 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:04 smithi098 bash[22661]: audit 2024-09-17T09:14:04.014320+0000 mon.a (mon.0) 618 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-09-17T09:14:05.028 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:05 smithi098 bash[22661]: debug 2024-09-17T09:14:05.025+0000 7f2693774640 -1 mon.a@0(leader).osd e46 definitely_dead 0 2024-09-17T09:14:05.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:04 smithi134 bash[24188]: cephadm 2024-09-17T09:14:03.624683+0000 mgr.a (mgr.14150) 371 : cephadm [INF] Updating smithi098:/etc/ceph/ceph.conf 2024-09-17T09:14:05.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:04 smithi134 bash[24188]: cephadm 2024-09-17T09:14:03.625310+0000 mgr.a (mgr.14150) 372 : cephadm [INF] Updating smithi134:/etc/ceph/ceph.conf 2024-09-17T09:14:05.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:04 smithi134 bash[24188]: cephadm 2024-09-17T09:14:03.627222+0000 mgr.a (mgr.14150) 373 : cephadm [INF] Removing smithi165:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T09:14:05.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:04 smithi134 bash[24188]: cephadm 2024-09-17T09:14:03.690757+0000 mgr.a (mgr.14150) 374 : cephadm [INF] Removing smithi165:/etc/ceph/ceph.client.admin.keyring 2024-09-17T09:14:05.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:04 smithi134 bash[24188]: cephadm 2024-09-17T09:14:03.737860+0000 mgr.a (mgr.14150) 375 : cephadm [INF] Removing smithi165:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T09:14:05.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:04 smithi134 bash[24188]: audit 2024-09-17T09:14:03.776978+0000 mon.a (mon.0) 609 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:05.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:04 smithi134 bash[24188]: audit 2024-09-17T09:14:03.782592+0000 mon.a (mon.0) 610 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:05.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:04 smithi134 bash[24188]: cephadm 2024-09-17T09:14:03.859082+0000 mgr.a (mgr.14150) 376 : cephadm [INF] Updating smithi098:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T09:14:05.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:04 smithi134 bash[24188]: cephadm 2024-09-17T09:14:03.862844+0000 mgr.a (mgr.14150) 377 : cephadm [INF] Updating smithi134:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T09:14:05.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:04 smithi134 bash[24188]: audit 2024-09-17T09:14:03.986119+0000 mon.a (mon.0) 611 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:05.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:04 smithi134 bash[24188]: audit 2024-09-17T09:14:03.991893+0000 mon.a (mon.0) 612 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:05.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:04 smithi134 bash[24188]: audit 2024-09-17T09:14:04.002680+0000 mon.a (mon.0) 613 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:05.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:04 smithi134 bash[24188]: audit 2024-09-17T09:14:04.007651+0000 mon.a (mon.0) 614 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:05.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:04 smithi134 bash[24188]: audit 2024-09-17T09:14:04.010002+0000 mon.a (mon.0) 615 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T09:14:05.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:04 smithi134 bash[24188]: audit 2024-09-17T09:14:04.011746+0000 mon.a (mon.0) 616 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T09:14:05.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:04 smithi134 bash[24188]: audit 2024-09-17T09:14:04.013090+0000 mon.a (mon.0) 617 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-17T09:14:05.044 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:04 smithi134 bash[24188]: audit 2024-09-17T09:14:04.014320+0000 mon.a (mon.0) 618 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-09-17T09:14:06.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:05 smithi134 bash[24188]: audit 2024-09-17T09:14:04.010237+0000 mgr.a (mgr.14150) 378 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T09:14:06.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:05 smithi134 bash[24188]: audit 2024-09-17T09:14:04.011931+0000 mgr.a (mgr.14150) 379 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T09:14:06.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:05 smithi134 bash[24188]: audit 2024-09-17T09:14:04.013265+0000 mgr.a (mgr.14150) 380 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-17T09:14:06.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:05 smithi134 bash[24188]: cluster 2024-09-17T09:14:04.606803+0000 mgr.a (mgr.14150) 381 : cluster [DBG] pgmap v322: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:14:06.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:05 smithi134 bash[24188]: audit 2024-09-17T09:14:05.016035+0000 mon.a (mon.0) 619 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-17T09:14:06.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:05 smithi134 bash[24188]: cluster 2024-09-17T09:14:05.016137+0000 mon.a (mon.0) 620 : cluster [DBG] osdmap e46: 6 total, 6 up, 6 in 2024-09-17T09:14:06.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:05 smithi134 bash[24188]: audit 2024-09-17T09:14:05.018516+0000 mon.a (mon.0) 621 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T09:14:06.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:05 smithi134 bash[24188]: audit 2024-09-17T09:14:05.025071+0000 mon.a (mon.0) 622 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-17T09:14:06.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:05 smithi134 bash[24188]: audit 2024-09-17T09:14:05.027362+0000 mon.a (mon.0) 623 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-09-17T09:14:06.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:05 smithi098 bash[22661]: audit 2024-09-17T09:14:04.010237+0000 mgr.a (mgr.14150) 378 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T09:14:06.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:05 smithi098 bash[22661]: audit 2024-09-17T09:14:04.011931+0000 mgr.a (mgr.14150) 379 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T09:14:06.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:05 smithi098 bash[22661]: audit 2024-09-17T09:14:04.013265+0000 mgr.a (mgr.14150) 380 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-17T09:14:06.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:05 smithi098 bash[22661]: cluster 2024-09-17T09:14:04.606803+0000 mgr.a (mgr.14150) 381 : cluster [DBG] pgmap v322: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:14:06.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:05 smithi098 bash[22661]: audit 2024-09-17T09:14:05.016035+0000 mon.a (mon.0) 619 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-17T09:14:06.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:05 smithi098 bash[22661]: cluster 2024-09-17T09:14:05.016137+0000 mon.a (mon.0) 620 : cluster [DBG] osdmap e46: 6 total, 6 up, 6 in 2024-09-17T09:14:06.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:05 smithi098 bash[22661]: audit 2024-09-17T09:14:05.018516+0000 mon.a (mon.0) 621 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T09:14:06.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:05 smithi098 bash[22661]: audit 2024-09-17T09:14:05.025071+0000 mon.a (mon.0) 622 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-17T09:14:06.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:05 smithi098 bash[22661]: audit 2024-09-17T09:14:05.027362+0000 mon.a (mon.0) 623 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-09-17T09:14:07.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:06 smithi134 bash[24188]: cephadm 2024-09-17T09:14:05.017767+0000 mgr.a (mgr.14150) 382 : cephadm [INF] osd.5 weight is now 0.0 2024-09-17T09:14:07.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:06 smithi134 bash[24188]: audit 2024-09-17T09:14:05.018905+0000 mgr.a (mgr.14150) 383 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T09:14:07.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:06 smithi134 bash[24188]: audit 2024-09-17T09:14:05.025391+0000 mgr.a (mgr.14150) 384 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-17T09:14:07.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:06 smithi134 bash[24188]: cluster 2024-09-17T09:14:06.019603+0000 mon.a (mon.0) 624 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-17T09:14:07.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:06 smithi134 bash[24188]: audit 2024-09-17T09:14:06.027143+0000 mon.a (mon.0) 625 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-17T09:14:07.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:06 smithi134 bash[24188]: cluster 2024-09-17T09:14:06.027380+0000 mon.a (mon.0) 626 : cluster [DBG] osdmap e47: 6 total, 5 up, 6 in 2024-09-17T09:14:07.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:06 smithi134 bash[24188]: cluster 2024-09-17T09:14:06.328031+0000 mon.a (mon.0) 627 : cluster [DBG] osdmap e48: 6 total, 5 up, 6 in 2024-09-17T09:14:07.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:06 smithi098 bash[22661]: cephadm 2024-09-17T09:14:05.017767+0000 mgr.a (mgr.14150) 382 : cephadm [INF] osd.5 weight is now 0.0 2024-09-17T09:14:07.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:06 smithi098 bash[22661]: audit 2024-09-17T09:14:05.018905+0000 mgr.a (mgr.14150) 383 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T09:14:07.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:06 smithi098 bash[22661]: audit 2024-09-17T09:14:05.025391+0000 mgr.a (mgr.14150) 384 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-17T09:14:07.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:06 smithi098 bash[22661]: cluster 2024-09-17T09:14:06.019603+0000 mon.a (mon.0) 624 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-17T09:14:07.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:06 smithi098 bash[22661]: audit 2024-09-17T09:14:06.027143+0000 mon.a (mon.0) 625 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-17T09:14:07.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:06 smithi098 bash[22661]: cluster 2024-09-17T09:14:06.027380+0000 mon.a (mon.0) 626 : cluster [DBG] osdmap e47: 6 total, 5 up, 6 in 2024-09-17T09:14:07.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:06 smithi098 bash[22661]: cluster 2024-09-17T09:14:06.328031+0000 mon.a (mon.0) 627 : cluster [DBG] osdmap e48: 6 total, 5 up, 6 in 2024-09-17T09:14:08.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:07 smithi134 bash[24188]: cephadm 2024-09-17T09:14:06.028527+0000 mgr.a (mgr.14150) 385 : cephadm [INF] osd.4 now down 2024-09-17T09:14:08.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:07 smithi134 bash[24188]: cephadm 2024-09-17T09:14:06.028957+0000 mgr.a (mgr.14150) 386 : cephadm [INF] Removing daemon osd.4 from smithi165 -- ports [] 2024-09-17T09:14:08.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:07 smithi134 bash[24188]: cluster 2024-09-17T09:14:06.607352+0000 mgr.a (mgr.14150) 387 : cluster [DBG] pgmap v326: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:14:08.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:07 smithi134 bash[24188]: cluster 2024-09-17T09:14:07.334999+0000 mon.a (mon.0) 628 : cluster [DBG] osdmap e49: 6 total, 5 up, 6 in 2024-09-17T09:14:08.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:07 smithi098 bash[22661]: cephadm 2024-09-17T09:14:06.028527+0000 mgr.a (mgr.14150) 385 : cephadm [INF] osd.4 now down 2024-09-17T09:14:08.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:07 smithi098 bash[22661]: cephadm 2024-09-17T09:14:06.028957+0000 mgr.a (mgr.14150) 386 : cephadm [INF] Removing daemon osd.4 from smithi165 -- ports [] 2024-09-17T09:14:08.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:07 smithi098 bash[22661]: cluster 2024-09-17T09:14:06.607352+0000 mgr.a (mgr.14150) 387 : cluster [DBG] pgmap v326: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:14:08.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:07 smithi098 bash[22661]: cluster 2024-09-17T09:14:07.334999+0000 mon.a (mon.0) 628 : cluster [DBG] osdmap e49: 6 total, 5 up, 6 in 2024-09-17T09:14:10.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:09 smithi134 bash[24188]: cluster 2024-09-17T09:14:08.607903+0000 mgr.a (mgr.14150) 388 : cluster [DBG] pgmap v328: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:14:10.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:09 smithi134 bash[24188]: cluster 2024-09-17T09:14:09.366727+0000 mon.a (mon.0) 629 : cluster [INF] osd.4 marked itself dead as of e49 2024-09-17T09:14:10.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:09 smithi134 bash[24188]: cluster 2024-09-17T09:14:09.367693+0000 osd.4 (osd.4) 3 : cluster [WRN] Monitor daemon marked osd.4 down, but it is still running 2024-09-17T09:14:10.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:09 smithi134 bash[24188]: cluster 2024-09-17T09:14:09.367701+0000 osd.4 (osd.4) 4 : cluster [DBG] map e49 wrongly marked me down at e47 2024-09-17T09:14:10.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:09 smithi098 bash[22661]: cluster 2024-09-17T09:14:08.607903+0000 mgr.a (mgr.14150) 388 : cluster [DBG] pgmap v328: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-17T09:14:10.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:09 smithi098 bash[22661]: cluster 2024-09-17T09:14:09.366727+0000 mon.a (mon.0) 629 : cluster [INF] osd.4 marked itself dead as of e49 2024-09-17T09:14:10.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:09 smithi098 bash[22661]: cluster 2024-09-17T09:14:09.367693+0000 osd.4 (osd.4) 3 : cluster [WRN] Monitor daemon marked osd.4 down, but it is still running 2024-09-17T09:14:10.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:09 smithi098 bash[22661]: cluster 2024-09-17T09:14:09.367701+0000 osd.4 (osd.4) 4 : cluster [DBG] map e49 wrongly marked me down at e47 2024-09-17T09:14:10.131 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 17 09:14:09 smithi165 bash[27907]: debug 2024-09-17T09:14:09.745+0000 7eff03e3c640 -1 osd.4 49 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-17T09:14:10.743 INFO:teuthology.orchestra.run.smithi098.stderr:++ ceph orch ps --hostname smithi165 2024-09-17T09:14:11.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:10 smithi134 bash[24188]: cluster 2024-09-17T09:14:09.786039+0000 mon.a (mon.0) 630 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-17T09:14:11.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:10 smithi134 bash[24188]: cluster 2024-09-17T09:14:09.786082+0000 mon.a (mon.0) 631 : cluster [INF] Cluster is now healthy 2024-09-17T09:14:11.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:10 smithi134 bash[24188]: cluster 2024-09-17T09:14:09.798912+0000 mon.a (mon.0) 632 : cluster [INF] osd.4 [v2:172.21.15.165:6800/946302502,v1:172.21.15.165:6801/946302502] boot 2024-09-17T09:14:11.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:10 smithi134 bash[24188]: cluster 2024-09-17T09:14:09.798965+0000 mon.a (mon.0) 633 : cluster [DBG] osdmap e50: 6 total, 6 up, 6 in 2024-09-17T09:14:11.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:10 smithi134 bash[24188]: audit 2024-09-17T09:14:09.799241+0000 mon.a (mon.0) 634 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T09:14:11.050 INFO:teuthology.orchestra.run.smithi098.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-17T09:14:11.050 INFO:teuthology.orchestra.run.smithi098.stderr:osd.4 smithi165 running (3m) 7s ago 3m 37.8M 10.4G 18.2.4-855-g19e2a2be 980a0bfcd684 e31b263ffe85 2024-09-17T09:14:11.050 INFO:teuthology.orchestra.run.smithi098.stderr:osd.5 smithi165 running (2m) 7s ago 2m 36.3M 10.4G 18.2.4-855-g19e2a2be 980a0bfcd684 c58767a2da96 ' 2024-09-17T09:14:11.050 INFO:teuthology.orchestra.run.smithi098.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-17T09:14:11.050 INFO:teuthology.orchestra.run.smithi098.stderr:osd.4 smithi165 running (3m) 7s ago 3m 37.8M 10.4G 18.2.4-855-g19e2a2be 980a0bfcd684 e31b263ffe85 2024-09-17T09:14:11.050 INFO:teuthology.orchestra.run.smithi098.stderr:osd.5 smithi165 running (2m) 7s ago 2m 36.3M 10.4G 18.2.4-855-g19e2a2be 980a0bfcd684 c58767a2da96 ' '!=' 'No daemons reported' ']' 2024-09-17T09:14:11.050 INFO:teuthology.orchestra.run.smithi098.stderr:+ sleep 15 2024-09-17T09:14:11.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:10 smithi098 bash[22661]: cluster 2024-09-17T09:14:09.786039+0000 mon.a (mon.0) 630 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-17T09:14:11.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:10 smithi098 bash[22661]: cluster 2024-09-17T09:14:09.786082+0000 mon.a (mon.0) 631 : cluster [INF] Cluster is now healthy 2024-09-17T09:14:11.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:10 smithi098 bash[22661]: cluster 2024-09-17T09:14:09.798912+0000 mon.a (mon.0) 632 : cluster [INF] osd.4 [v2:172.21.15.165:6800/946302502,v1:172.21.15.165:6801/946302502] boot 2024-09-17T09:14:11.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:10 smithi098 bash[22661]: cluster 2024-09-17T09:14:09.798965+0000 mon.a (mon.0) 633 : cluster [DBG] osdmap e50: 6 total, 6 up, 6 in 2024-09-17T09:14:11.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:10 smithi098 bash[22661]: audit 2024-09-17T09:14:09.799241+0000 mon.a (mon.0) 634 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T09:14:11.131 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 17 09:14:10 smithi165 systemd[1]: Stopping Ceph osd.4 for 7d5e8b1e-74d3-11ef-bceb-c7b262605968... 2024-09-17T09:14:11.131 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 17 09:14:10 smithi165 bash[27907]: debug 2024-09-17T09:14:10.981+0000 7eff0902b640 -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-17T09:14:11.132 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 17 09:14:10 smithi165 bash[27907]: debug 2024-09-17T09:14:10.981+0000 7eff0902b640 -1 osd.4 51 *** Got signal Terminated *** 2024-09-17T09:14:11.132 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 17 09:14:10 smithi165 bash[27907]: debug 2024-09-17T09:14:10.981+0000 7eff0902b640 -1 osd.4 51 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-17T09:14:12.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:11 smithi098 bash[22661]: cluster 2024-09-17T09:14:10.608427+0000 mgr.a (mgr.14150) 389 : cluster [DBG] pgmap v330: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-17T09:14:12.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:11 smithi098 bash[22661]: cluster 2024-09-17T09:14:10.806909+0000 mon.a (mon.0) 635 : cluster [DBG] osdmap e51: 6 total, 6 up, 6 in 2024-09-17T09:14:12.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:11 smithi098 bash[22661]: cluster 2024-09-17T09:14:10.983097+0000 mon.a (mon.0) 636 : cluster [INF] osd.4 marked itself down and dead 2024-09-17T09:14:12.292 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:11 smithi134 bash[24188]: cluster 2024-09-17T09:14:10.608427+0000 mgr.a (mgr.14150) 389 : cluster [DBG] pgmap v330: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-17T09:14:12.292 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:11 smithi134 bash[24188]: cluster 2024-09-17T09:14:10.806909+0000 mon.a (mon.0) 635 : cluster [DBG] osdmap e51: 6 total, 6 up, 6 in 2024-09-17T09:14:12.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:11 smithi134 bash[24188]: cluster 2024-09-17T09:14:10.983097+0000 mon.a (mon.0) 636 : cluster [INF] osd.4 marked itself down and dead 2024-09-17T09:14:13.073 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 17 09:14:12 smithi165 bash[36841]: ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968-osd-4 2024-09-17T09:14:13.073 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 17 09:14:12 smithi165 bash[36905]: Error response from daemon: No such container: ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968-osd-4 2024-09-17T09:14:13.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:12 smithi098 bash[22661]: audit 2024-09-17T09:14:11.030912+0000 mgr.a (mgr.14150) 390 : audit [DBG] from='client.14504 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi165", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:14:13.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:12 smithi098 bash[22661]: cluster 2024-09-17T09:14:11.802700+0000 mon.a (mon.0) 637 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-17T09:14:13.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:12 smithi098 bash[22661]: cluster 2024-09-17T09:14:11.809693+0000 mon.a (mon.0) 638 : cluster [DBG] osdmap e52: 6 total, 5 up, 6 in 2024-09-17T09:14:13.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:12 smithi098 bash[22661]: cluster 2024-09-17T09:14:12.812174+0000 mon.a (mon.0) 639 : cluster [DBG] osdmap e53: 6 total, 5 up, 6 in 2024-09-17T09:14:13.292 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:12 smithi134 bash[24188]: audit 2024-09-17T09:14:11.030912+0000 mgr.a (mgr.14150) 390 : audit [DBG] from='client.14504 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi165", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:14:13.292 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:12 smithi134 bash[24188]: cluster 2024-09-17T09:14:11.802700+0000 mon.a (mon.0) 637 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-17T09:14:13.292 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:12 smithi134 bash[24188]: cluster 2024-09-17T09:14:11.809693+0000 mon.a (mon.0) 638 : cluster [DBG] osdmap e52: 6 total, 5 up, 6 in 2024-09-17T09:14:13.292 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:12 smithi134 bash[24188]: cluster 2024-09-17T09:14:12.812174+0000 mon.a (mon.0) 639 : cluster [DBG] osdmap e53: 6 total, 5 up, 6 in 2024-09-17T09:14:14.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:13 smithi098 bash[22661]: cluster 2024-09-17T09:14:12.608923+0000 mgr.a (mgr.14150) 391 : cluster [DBG] pgmap v333: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-17T09:14:14.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:13 smithi098 bash[22661]: cluster 2024-09-17T09:14:13.814464+0000 mon.a (mon.0) 640 : cluster [DBG] osdmap e54: 6 total, 5 up, 6 in 2024-09-17T09:14:14.292 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:13 smithi134 bash[24188]: cluster 2024-09-17T09:14:12.608923+0000 mgr.a (mgr.14150) 391 : cluster [DBG] pgmap v333: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-17T09:14:14.292 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:13 smithi134 bash[24188]: cluster 2024-09-17T09:14:13.814464+0000 mon.a (mon.0) 640 : cluster [DBG] osdmap e54: 6 total, 5 up, 6 in 2024-09-17T09:14:15.131 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 17 09:14:14 smithi165 systemd[1]: ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@osd.4.service: Deactivated successfully. 2024-09-17T09:14:15.132 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 17 09:14:14 smithi165 systemd[1]: Stopped Ceph osd.4 for 7d5e8b1e-74d3-11ef-bceb-c7b262605968. 2024-09-17T09:14:15.132 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 17 09:14:14 smithi165 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:14:15.132 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 17 09:14:14 smithi165 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:14:16.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:15 smithi098 bash[22661]: cluster 2024-09-17T09:14:14.609444+0000 mgr.a (mgr.14150) 392 : cluster [DBG] pgmap v336: 1 pgs: 1 active+clean+remapped; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-17T09:14:16.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:15 smithi098 bash[22661]: audit 2024-09-17T09:14:15.026015+0000 mon.a (mon.0) 641 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-09-17T09:14:16.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:15 smithi098 bash[22661]: audit 2024-09-17T09:14:15.032564+0000 mon.a (mon.0) 642 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-17T09:14:16.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:15 smithi098 bash[22661]: audit 2024-09-17T09:14:15.034638+0000 mon.a (mon.0) 643 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-09-17T09:14:16.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:15 smithi098 bash[22661]: cluster 2024-09-17T09:14:15.035816+0000 mon.a (mon.0) 644 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-17T09:14:16.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:15 smithi098 bash[22661]: cluster 2024-09-17T09:14:15.035857+0000 mon.a (mon.0) 645 : cluster [INF] Cluster is now healthy 2024-09-17T09:14:16.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:15 smithi098 bash[22661]: audit 2024-09-17T09:14:15.042160+0000 mon.a (mon.0) 646 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-17T09:14:16.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:15 smithi098 bash[22661]: cluster 2024-09-17T09:14:15.042275+0000 mon.a (mon.0) 647 : cluster [DBG] osdmap e55: 5 total, 5 up, 5 in 2024-09-17T09:14:16.292 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:15 smithi134 bash[24188]: cluster 2024-09-17T09:14:14.609444+0000 mgr.a (mgr.14150) 392 : cluster [DBG] pgmap v336: 1 pgs: 1 active+clean+remapped; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-17T09:14:16.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:15 smithi134 bash[24188]: audit 2024-09-17T09:14:15.026015+0000 mon.a (mon.0) 641 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-09-17T09:14:16.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:15 smithi134 bash[24188]: audit 2024-09-17T09:14:15.032564+0000 mon.a (mon.0) 642 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-17T09:14:16.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:15 smithi134 bash[24188]: audit 2024-09-17T09:14:15.034638+0000 mon.a (mon.0) 643 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-09-17T09:14:16.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:15 smithi134 bash[24188]: cluster 2024-09-17T09:14:15.035816+0000 mon.a (mon.0) 644 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-17T09:14:16.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:15 smithi134 bash[24188]: cluster 2024-09-17T09:14:15.035857+0000 mon.a (mon.0) 645 : cluster [INF] Cluster is now healthy 2024-09-17T09:14:16.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:15 smithi134 bash[24188]: audit 2024-09-17T09:14:15.042160+0000 mon.a (mon.0) 646 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-17T09:14:16.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:15 smithi134 bash[24188]: cluster 2024-09-17T09:14:15.042275+0000 mon.a (mon.0) 647 : cluster [DBG] osdmap e55: 5 total, 5 up, 5 in 2024-09-17T09:14:17.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:16 smithi098 bash[22661]: cephadm 2024-09-17T09:14:15.025403+0000 mgr.a (mgr.14150) 393 : cephadm [INF] Removing key for osd.4 2024-09-17T09:14:17.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:16 smithi098 bash[22661]: cephadm 2024-09-17T09:14:15.033982+0000 mgr.a (mgr.14150) 394 : cephadm [INF] Successfully removed osd.4 on smithi165 2024-09-17T09:14:17.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:16 smithi098 bash[22661]: cephadm 2024-09-17T09:14:15.043579+0000 mgr.a (mgr.14150) 395 : cephadm [INF] Successfully purged osd.4 on smithi165 2024-09-17T09:14:17.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:16 smithi098 bash[22661]: cephadm 2024-09-17T09:14:15.043762+0000 mgr.a (mgr.14150) 396 : cephadm [INF] Zapping devices for osd.4 on smithi165 2024-09-17T09:14:17.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:16 smithi098 bash[22661]: cluster 2024-09-17T09:14:16.046376+0000 mon.a (mon.0) 648 : cluster [DBG] osdmap e56: 5 total, 5 up, 5 in 2024-09-17T09:14:17.292 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:16 smithi134 bash[24188]: cephadm 2024-09-17T09:14:15.025403+0000 mgr.a (mgr.14150) 393 : cephadm [INF] Removing key for osd.4 2024-09-17T09:14:17.292 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:16 smithi134 bash[24188]: cephadm 2024-09-17T09:14:15.033982+0000 mgr.a (mgr.14150) 394 : cephadm [INF] Successfully removed osd.4 on smithi165 2024-09-17T09:14:17.292 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:16 smithi134 bash[24188]: cephadm 2024-09-17T09:14:15.043579+0000 mgr.a (mgr.14150) 395 : cephadm [INF] Successfully purged osd.4 on smithi165 2024-09-17T09:14:17.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:16 smithi134 bash[24188]: cephadm 2024-09-17T09:14:15.043762+0000 mgr.a (mgr.14150) 396 : cephadm [INF] Zapping devices for osd.4 on smithi165 2024-09-17T09:14:17.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:16 smithi134 bash[24188]: cluster 2024-09-17T09:14:16.046376+0000 mon.a (mon.0) 648 : cluster [DBG] osdmap e56: 5 total, 5 up, 5 in 2024-09-17T09:14:18.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:17 smithi098 bash[22661]: cluster 2024-09-17T09:14:16.609934+0000 mgr.a (mgr.14150) 397 : cluster [DBG] pgmap v339: 1 pgs: 1 active+clean+remapped; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-17T09:14:18.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:17 smithi098 bash[22661]: cluster 2024-09-17T09:14:17.053955+0000 mon.a (mon.0) 649 : cluster [DBG] osdmap e57: 5 total, 5 up, 5 in 2024-09-17T09:14:18.292 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:17 smithi134 bash[24188]: cluster 2024-09-17T09:14:16.609934+0000 mgr.a (mgr.14150) 397 : cluster [DBG] pgmap v339: 1 pgs: 1 active+clean+remapped; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-17T09:14:18.292 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:17 smithi134 bash[24188]: cluster 2024-09-17T09:14:17.053955+0000 mon.a (mon.0) 649 : cluster [DBG] osdmap e57: 5 total, 5 up, 5 in 2024-09-17T09:14:19.360 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:19 smithi098 bash[22661]: cluster 2024-09-17T09:14:18.056848+0000 mon.a (mon.0) 650 : cluster [DBG] osdmap e58: 5 total, 5 up, 5 in 2024-09-17T09:14:19.477 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:19 smithi098 bash[22661]: cluster 2024-09-17T09:14:18.610408+0000 mgr.a (mgr.14150) 398 : cluster [DBG] pgmap v342: 1 pgs: 1 active+clean+remapped; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-17T09:14:19.542 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:19 smithi134 bash[24188]: cluster 2024-09-17T09:14:18.056848+0000 mon.a (mon.0) 650 : cluster [DBG] osdmap e58: 5 total, 5 up, 5 in 2024-09-17T09:14:19.542 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:19 smithi134 bash[24188]: cluster 2024-09-17T09:14:18.610408+0000 mgr.a (mgr.14150) 398 : cluster [DBG] pgmap v342: 1 pgs: 1 active+clean+remapped; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-17T09:14:20.359 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:20 smithi098 bash[22661]: cluster 2024-09-17T09:14:19.065409+0000 mon.a (mon.0) 651 : cluster [DBG] osdmap e59: 5 total, 5 up, 5 in 2024-09-17T09:14:20.542 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:20 smithi134 bash[24188]: cluster 2024-09-17T09:14:19.065409+0000 mon.a (mon.0) 651 : cluster [DBG] osdmap e59: 5 total, 5 up, 5 in 2024-09-17T09:14:21.359 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:21 smithi098 bash[22661]: cluster 2024-09-17T09:14:20.610900+0000 mgr.a (mgr.14150) 399 : cluster [DBG] pgmap v344: 1 pgs: 1 active+clean; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail; 126 KiB/s, 0 objects/s recovering 2024-09-17T09:14:21.542 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:21 smithi134 bash[24188]: cluster 2024-09-17T09:14:20.610900+0000 mgr.a (mgr.14150) 399 : cluster [DBG] pgmap v344: 1 pgs: 1 active+clean; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail; 126 KiB/s, 0 objects/s recovering 2024-09-17T09:14:23.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:23 smithi098 bash[22661]: debug 2024-09-17T09:14:23.425+0000 7f2693774640 -1 mon.a@0(leader).osd e59 definitely_dead 0 2024-09-17T09:14:23.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:23 smithi098 bash[22661]: cluster 2024-09-17T09:14:22.611369+0000 mgr.a (mgr.14150) 400 : cluster [DBG] pgmap v345: 1 pgs: 1 active+clean; 577 KiB data, 149 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-17T09:14:23.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:23 smithi098 bash[22661]: audit 2024-09-17T09:14:23.422804+0000 mon.a (mon.0) 652 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T09:14:23.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:23 smithi098 bash[22661]: audit 2024-09-17T09:14:23.425911+0000 mon.a (mon.0) 653 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-17T09:14:23.860 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:23 smithi098 bash[22661]: audit 2024-09-17T09:14:23.428574+0000 mon.a (mon.0) 654 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-09-17T09:14:24.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:23 smithi134 bash[24188]: cluster 2024-09-17T09:14:22.611369+0000 mgr.a (mgr.14150) 400 : cluster [DBG] pgmap v345: 1 pgs: 1 active+clean; 577 KiB data, 149 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-17T09:14:24.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:23 smithi134 bash[24188]: audit 2024-09-17T09:14:23.422804+0000 mon.a (mon.0) 652 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T09:14:24.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:23 smithi134 bash[24188]: audit 2024-09-17T09:14:23.425911+0000 mon.a (mon.0) 653 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-17T09:14:24.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:23 smithi134 bash[24188]: audit 2024-09-17T09:14:23.428574+0000 mon.a (mon.0) 654 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-09-17T09:14:25.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:24 smithi134 bash[24188]: cephadm 2024-09-17T09:14:23.422034+0000 mgr.a (mgr.14150) 401 : cephadm [INF] Successfully zapped devices for osd.4 on smithi165 2024-09-17T09:14:25.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:24 smithi134 bash[24188]: audit 2024-09-17T09:14:23.423202+0000 mgr.a (mgr.14150) 402 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T09:14:25.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:24 smithi134 bash[24188]: audit 2024-09-17T09:14:23.426310+0000 mgr.a (mgr.14150) 403 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-17T09:14:25.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:24 smithi134 bash[24188]: cluster 2024-09-17T09:14:23.664847+0000 mon.a (mon.0) 655 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-17T09:14:25.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:24 smithi134 bash[24188]: cluster 2024-09-17T09:14:23.664893+0000 mon.a (mon.0) 656 : cluster [WRN] Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-17T09:14:25.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:24 smithi134 bash[24188]: audit 2024-09-17T09:14:23.672439+0000 mon.a (mon.0) 657 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-17T09:14:25.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:24 smithi134 bash[24188]: cluster 2024-09-17T09:14:23.672527+0000 mon.a (mon.0) 658 : cluster [DBG] osdmap e60: 5 total, 4 up, 5 in 2024-09-17T09:14:25.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:24 smithi134 bash[24188]: cephadm 2024-09-17T09:14:23.673804+0000 mgr.a (mgr.14150) 404 : cephadm [INF] osd.5 now down 2024-09-17T09:14:25.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:24 smithi134 bash[24188]: cephadm 2024-09-17T09:14:23.674238+0000 mgr.a (mgr.14150) 405 : cephadm [INF] Removing daemon osd.5 from smithi165 -- ports [] 2024-09-17T09:14:25.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:24 smithi098 bash[22661]: cephadm 2024-09-17T09:14:23.422034+0000 mgr.a (mgr.14150) 401 : cephadm [INF] Successfully zapped devices for osd.4 on smithi165 2024-09-17T09:14:25.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:24 smithi098 bash[22661]: audit 2024-09-17T09:14:23.423202+0000 mgr.a (mgr.14150) 402 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T09:14:25.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:24 smithi098 bash[22661]: audit 2024-09-17T09:14:23.426310+0000 mgr.a (mgr.14150) 403 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-17T09:14:25.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:24 smithi098 bash[22661]: cluster 2024-09-17T09:14:23.664847+0000 mon.a (mon.0) 655 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-17T09:14:25.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:24 smithi098 bash[22661]: cluster 2024-09-17T09:14:23.664893+0000 mon.a (mon.0) 656 : cluster [WRN] Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-17T09:14:25.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:24 smithi098 bash[22661]: audit 2024-09-17T09:14:23.672439+0000 mon.a (mon.0) 657 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-17T09:14:25.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:24 smithi098 bash[22661]: cluster 2024-09-17T09:14:23.672527+0000 mon.a (mon.0) 658 : cluster [DBG] osdmap e60: 5 total, 4 up, 5 in 2024-09-17T09:14:25.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:24 smithi098 bash[22661]: cephadm 2024-09-17T09:14:23.673804+0000 mgr.a (mgr.14150) 404 : cephadm [INF] osd.5 now down 2024-09-17T09:14:25.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:24 smithi098 bash[22661]: cephadm 2024-09-17T09:14:23.674238+0000 mgr.a (mgr.14150) 405 : cephadm [INF] Removing daemon osd.5 from smithi165 -- ports [] 2024-09-17T09:14:25.881 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 17 09:14:25 smithi165 bash[33508]: debug 2024-09-17T09:14:25.581+0000 7ff941c32640 -1 osd.5 60 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-17T09:14:26.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:25 smithi134 bash[24188]: cluster 2024-09-17T09:14:24.611843+0000 mgr.a (mgr.14150) 406 : cluster [DBG] pgmap v347: 1 pgs: 1 active+clean; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail; 88 KiB/s, 0 objects/s recovering 2024-09-17T09:14:26.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:25 smithi134 bash[24188]: cluster 2024-09-17T09:14:25.176682+0000 mon.a (mon.0) 659 : cluster [INF] osd.5 marked itself dead as of e60 2024-09-17T09:14:26.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:25 smithi134 bash[24188]: cluster 2024-09-17T09:14:25.177841+0000 osd.5 (osd.5) 3 : cluster [WRN] Monitor daemon marked osd.5 down, but it is still running 2024-09-17T09:14:26.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:25 smithi134 bash[24188]: cluster 2024-09-17T09:14:25.177853+0000 osd.5 (osd.5) 4 : cluster [DBG] map e60 wrongly marked me down at e60 2024-09-17T09:14:26.052 INFO:teuthology.orchestra.run.smithi098.stderr:++ ceph orch ps --hostname smithi165 2024-09-17T09:14:26.109 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:25 smithi098 bash[22661]: cluster 2024-09-17T09:14:24.611843+0000 mgr.a (mgr.14150) 406 : cluster [DBG] pgmap v347: 1 pgs: 1 active+clean; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail; 88 KiB/s, 0 objects/s recovering 2024-09-17T09:14:26.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:25 smithi098 bash[22661]: cluster 2024-09-17T09:14:25.176682+0000 mon.a (mon.0) 659 : cluster [INF] osd.5 marked itself dead as of e60 2024-09-17T09:14:26.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:25 smithi098 bash[22661]: cluster 2024-09-17T09:14:25.177841+0000 osd.5 (osd.5) 3 : cluster [WRN] Monitor daemon marked osd.5 down, but it is still running 2024-09-17T09:14:26.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:25 smithi098 bash[22661]: cluster 2024-09-17T09:14:25.177853+0000 osd.5 (osd.5) 4 : cluster [DBG] map e60 wrongly marked me down at e60 2024-09-17T09:14:26.358 INFO:teuthology.orchestra.run.smithi098.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-17T09:14:26.358 INFO:teuthology.orchestra.run.smithi098.stderr:osd.5 smithi165 running (2m) 22s ago 2m 36.3M 10.4G 18.2.4-855-g19e2a2be 980a0bfcd684 c58767a2da96 ' 2024-09-17T09:14:26.358 INFO:teuthology.orchestra.run.smithi098.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-17T09:14:26.358 INFO:teuthology.orchestra.run.smithi098.stderr:osd.5 smithi165 running (2m) 22s ago 2m 36.3M 10.4G 18.2.4-855-g19e2a2be 980a0bfcd684 c58767a2da96 ' '!=' 'No daemons reported' ']' 2024-09-17T09:14:26.358 INFO:teuthology.orchestra.run.smithi098.stderr:+ sleep 15 2024-09-17T09:14:27.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:26 smithi134 bash[24188]: cluster 2024-09-17T09:14:25.684358+0000 mon.a (mon.0) 660 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-17T09:14:27.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:26 smithi134 bash[24188]: cluster 2024-09-17T09:14:25.684403+0000 mon.a (mon.0) 661 : cluster [INF] Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-17T09:14:27.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:26 smithi134 bash[24188]: cluster 2024-09-17T09:14:25.684427+0000 mon.a (mon.0) 662 : cluster [INF] Cluster is now healthy 2024-09-17T09:14:27.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:26 smithi134 bash[24188]: cluster 2024-09-17T09:14:25.691529+0000 mon.a (mon.0) 663 : cluster [INF] osd.5 [v2:172.21.15.165:6808/3060401311,v1:172.21.15.165:6809/3060401311] boot 2024-09-17T09:14:27.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:26 smithi134 bash[24188]: cluster 2024-09-17T09:14:25.691578+0000 mon.a (mon.0) 664 : cluster [DBG] osdmap e61: 5 total, 5 up, 5 in 2024-09-17T09:14:27.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:26 smithi134 bash[24188]: audit 2024-09-17T09:14:25.692169+0000 mon.a (mon.0) 665 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T09:14:27.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:26 smithi098 bash[22661]: cluster 2024-09-17T09:14:25.684358+0000 mon.a (mon.0) 660 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-17T09:14:27.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:26 smithi098 bash[22661]: cluster 2024-09-17T09:14:25.684403+0000 mon.a (mon.0) 661 : cluster [INF] Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-17T09:14:27.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:26 smithi098 bash[22661]: cluster 2024-09-17T09:14:25.684427+0000 mon.a (mon.0) 662 : cluster [INF] Cluster is now healthy 2024-09-17T09:14:27.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:26 smithi098 bash[22661]: cluster 2024-09-17T09:14:25.691529+0000 mon.a (mon.0) 663 : cluster [INF] osd.5 [v2:172.21.15.165:6808/3060401311,v1:172.21.15.165:6809/3060401311] boot 2024-09-17T09:14:27.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:26 smithi098 bash[22661]: cluster 2024-09-17T09:14:25.691578+0000 mon.a (mon.0) 664 : cluster [DBG] osdmap e61: 5 total, 5 up, 5 in 2024-09-17T09:14:27.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:26 smithi098 bash[22661]: audit 2024-09-17T09:14:25.692169+0000 mon.a (mon.0) 665 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T09:14:27.881 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 17 09:14:27 smithi165 systemd[1]: Stopping Ceph osd.5 for 7d5e8b1e-74d3-11ef-bceb-c7b262605968... 2024-09-17T09:14:27.881 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 17 09:14:27 smithi165 bash[33508]: debug 2024-09-17T09:14:27.617+0000 7ff946e21640 -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-17T09:14:27.882 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 17 09:14:27 smithi165 bash[33508]: debug 2024-09-17T09:14:27.617+0000 7ff946e21640 -1 osd.5 61 *** Got signal Terminated *** 2024-09-17T09:14:27.882 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 17 09:14:27 smithi165 bash[33508]: debug 2024-09-17T09:14:27.617+0000 7ff946e21640 -1 osd.5 61 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-17T09:14:28.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:27 smithi134 bash[24188]: audit 2024-09-17T09:14:26.341961+0000 mgr.a (mgr.14150) 407 : audit [DBG] from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi165", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:14:28.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:27 smithi134 bash[24188]: cluster 2024-09-17T09:14:26.612381+0000 mgr.a (mgr.14150) 408 : cluster [DBG] pgmap v349: 1 pgs: 1 active+clean; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail; 76 KiB/s, 0 objects/s recovering 2024-09-17T09:14:28.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:27 smithi134 bash[24188]: cluster 2024-09-17T09:14:27.619932+0000 mon.a (mon.0) 666 : cluster [INF] osd.5 marked itself down and dead 2024-09-17T09:14:28.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:27 smithi098 bash[22661]: audit 2024-09-17T09:14:26.341961+0000 mgr.a (mgr.14150) 407 : audit [DBG] from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi165", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:14:28.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:27 smithi098 bash[22661]: cluster 2024-09-17T09:14:26.612381+0000 mgr.a (mgr.14150) 408 : cluster [DBG] pgmap v349: 1 pgs: 1 active+clean; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail; 76 KiB/s, 0 objects/s recovering 2024-09-17T09:14:28.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:27 smithi098 bash[22661]: cluster 2024-09-17T09:14:27.619932+0000 mon.a (mon.0) 666 : cluster [INF] osd.5 marked itself down and dead 2024-09-17T09:14:29.025 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 17 09:14:28 smithi165 bash[37386]: ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968-osd-5 2024-09-17T09:14:29.025 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 17 09:14:28 smithi165 bash[37453]: Error response from daemon: No such container: ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968-osd-5 2024-09-17T09:14:29.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:28 smithi134 bash[24188]: cluster 2024-09-17T09:14:27.701462+0000 mon.a (mon.0) 667 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-17T09:14:29.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:28 smithi134 bash[24188]: cluster 2024-09-17T09:14:27.701505+0000 mon.a (mon.0) 668 : cluster [WRN] Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-17T09:14:29.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:28 smithi134 bash[24188]: cluster 2024-09-17T09:14:27.708340+0000 mon.a (mon.0) 669 : cluster [DBG] osdmap e62: 5 total, 4 up, 5 in 2024-09-17T09:14:29.109 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:28 smithi098 bash[22661]: cluster 2024-09-17T09:14:27.701462+0000 mon.a (mon.0) 667 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-17T09:14:29.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:28 smithi098 bash[22661]: cluster 2024-09-17T09:14:27.701505+0000 mon.a (mon.0) 668 : cluster [WRN] Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-17T09:14:29.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:28 smithi098 bash[22661]: cluster 2024-09-17T09:14:27.708340+0000 mon.a (mon.0) 669 : cluster [DBG] osdmap e62: 5 total, 4 up, 5 in 2024-09-17T09:14:30.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:29 smithi134 bash[24188]: cluster 2024-09-17T09:14:28.612884+0000 mgr.a (mgr.14150) 409 : cluster [DBG] pgmap v351: 1 pgs: 1 active+clean; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail 2024-09-17T09:14:30.109 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:29 smithi098 bash[22661]: cluster 2024-09-17T09:14:28.612884+0000 mgr.a (mgr.14150) 409 : cluster [DBG] pgmap v351: 1 pgs: 1 active+clean; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail 2024-09-17T09:14:30.881 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 17 09:14:30 smithi165 systemd[1]: ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@osd.5.service: Deactivated successfully. 2024-09-17T09:14:30.881 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 17 09:14:30 smithi165 systemd[1]: Stopped Ceph osd.5 for 7d5e8b1e-74d3-11ef-bceb-c7b262605968. 2024-09-17T09:14:30.881 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 17 09:14:30 smithi165 systemd[1]: /etc/systemd/system/ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@.service:24: 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-17T09:14:32.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:31 smithi134 bash[24188]: cluster 2024-09-17T09:14:30.613351+0000 mgr.a (mgr.14150) 410 : cluster [DBG] pgmap v352: 1 pgs: 1 active+clean; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail 2024-09-17T09:14:32.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:31 smithi134 bash[24188]: audit 2024-09-17T09:14:30.904736+0000 mon.a (mon.0) 670 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-09-17T09:14:32.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:31 smithi134 bash[24188]: audit 2024-09-17T09:14:30.912836+0000 mon.a (mon.0) 671 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-17T09:14:32.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:31 smithi134 bash[24188]: audit 2024-09-17T09:14:30.914866+0000 mon.a (mon.0) 672 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-09-17T09:14:32.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:31 smithi134 bash[24188]: cluster 2024-09-17T09:14:30.915927+0000 mon.a (mon.0) 673 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-17T09:14:32.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:31 smithi134 bash[24188]: cluster 2024-09-17T09:14:30.915970+0000 mon.a (mon.0) 674 : cluster [INF] Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-17T09:14:32.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:31 smithi134 bash[24188]: cluster 2024-09-17T09:14:30.915992+0000 mon.a (mon.0) 675 : cluster [INF] Cluster is now healthy 2024-09-17T09:14:32.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:31 smithi134 bash[24188]: audit 2024-09-17T09:14:30.929626+0000 mon.a (mon.0) 676 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-17T09:14:32.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:31 smithi134 bash[24188]: cluster 2024-09-17T09:14:30.929771+0000 mon.a (mon.0) 677 : cluster [DBG] osdmap e63: 4 total, 4 up, 4 in 2024-09-17T09:14:32.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:31 smithi098 bash[22661]: cluster 2024-09-17T09:14:30.613351+0000 mgr.a (mgr.14150) 410 : cluster [DBG] pgmap v352: 1 pgs: 1 active+clean; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail 2024-09-17T09:14:32.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:31 smithi098 bash[22661]: audit 2024-09-17T09:14:30.904736+0000 mon.a (mon.0) 670 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-09-17T09:14:32.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:31 smithi098 bash[22661]: audit 2024-09-17T09:14:30.912836+0000 mon.a (mon.0) 671 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-17T09:14:32.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:31 smithi098 bash[22661]: audit 2024-09-17T09:14:30.914866+0000 mon.a (mon.0) 672 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-09-17T09:14:32.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:31 smithi098 bash[22661]: cluster 2024-09-17T09:14:30.915927+0000 mon.a (mon.0) 673 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-17T09:14:32.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:31 smithi098 bash[22661]: cluster 2024-09-17T09:14:30.915970+0000 mon.a (mon.0) 674 : cluster [INF] Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-17T09:14:32.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:31 smithi098 bash[22661]: cluster 2024-09-17T09:14:30.915992+0000 mon.a (mon.0) 675 : cluster [INF] Cluster is now healthy 2024-09-17T09:14:32.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:31 smithi098 bash[22661]: audit 2024-09-17T09:14:30.929626+0000 mon.a (mon.0) 676 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-17T09:14:32.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:31 smithi098 bash[22661]: cluster 2024-09-17T09:14:30.929771+0000 mon.a (mon.0) 677 : cluster [DBG] osdmap e63: 4 total, 4 up, 4 in 2024-09-17T09:14:33.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:32 smithi134 bash[24188]: cephadm 2024-09-17T09:14:30.904156+0000 mgr.a (mgr.14150) 411 : cephadm [INF] Removing key for osd.5 2024-09-17T09:14:33.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:32 smithi134 bash[24188]: cephadm 2024-09-17T09:14:30.914287+0000 mgr.a (mgr.14150) 412 : cephadm [INF] Successfully removed osd.5 on smithi165 2024-09-17T09:14:33.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:32 smithi134 bash[24188]: cephadm 2024-09-17T09:14:30.931123+0000 mgr.a (mgr.14150) 413 : cephadm [INF] Successfully purged osd.5 on smithi165 2024-09-17T09:14:33.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:32 smithi134 bash[24188]: cephadm 2024-09-17T09:14:30.931370+0000 mgr.a (mgr.14150) 414 : cephadm [INF] Zapping devices for osd.5 on smithi165 2024-09-17T09:14:33.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:32 smithi098 bash[22661]: cephadm 2024-09-17T09:14:30.904156+0000 mgr.a (mgr.14150) 411 : cephadm [INF] Removing key for osd.5 2024-09-17T09:14:33.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:32 smithi098 bash[22661]: cephadm 2024-09-17T09:14:30.914287+0000 mgr.a (mgr.14150) 412 : cephadm [INF] Successfully removed osd.5 on smithi165 2024-09-17T09:14:33.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:32 smithi098 bash[22661]: cephadm 2024-09-17T09:14:30.931123+0000 mgr.a (mgr.14150) 413 : cephadm [INF] Successfully purged osd.5 on smithi165 2024-09-17T09:14:33.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:32 smithi098 bash[22661]: cephadm 2024-09-17T09:14:30.931370+0000 mgr.a (mgr.14150) 414 : cephadm [INF] Zapping devices for osd.5 on smithi165 2024-09-17T09:14:34.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:33 smithi134 bash[24188]: cluster 2024-09-17T09:14:32.613870+0000 mgr.a (mgr.14150) 415 : cluster [DBG] pgmap v354: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:14:34.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:33 smithi098 bash[22661]: cluster 2024-09-17T09:14:32.613870+0000 mgr.a (mgr.14150) 415 : cluster [DBG] pgmap v354: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:14:36.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:35 smithi134 bash[24188]: cluster 2024-09-17T09:14:34.614419+0000 mgr.a (mgr.14150) 416 : cluster [DBG] pgmap v355: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:14:36.109 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:35 smithi098 bash[22661]: cluster 2024-09-17T09:14:34.614419+0000 mgr.a (mgr.14150) 416 : cluster [DBG] pgmap v355: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:14:38.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:37 smithi134 bash[24188]: cephadm 2024-09-17T09:14:36.601705+0000 mgr.a (mgr.14150) 417 : cephadm [INF] Successfully zapped devices for osd.5 on smithi165 2024-09-17T09:14:38.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:37 smithi134 bash[24188]: audit 2024-09-17T09:14:36.609113+0000 mon.a (mon.0) 678 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:38.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:37 smithi134 bash[24188]: cluster 2024-09-17T09:14:36.614968+0000 mgr.a (mgr.14150) 418 : cluster [DBG] pgmap v356: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:14:38.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:37 smithi134 bash[24188]: cephadm 2024-09-17T09:14:36.695601+0000 mgr.a (mgr.14150) 419 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-09-17T09:14:38.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:37 smithi134 bash[24188]: audit 2024-09-17T09:14:36.696315+0000 mon.a (mon.0) 679 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T09:14:38.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:37 smithi134 bash[24188]: audit 2024-09-17T09:14:36.698101+0000 mon.a (mon.0) 680 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T09:14:38.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:37 smithi134 bash[24188]: audit 2024-09-17T09:14:36.699743+0000 mon.a (mon.0) 681 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:14:38.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:37 smithi134 bash[24188]: cephadm 2024-09-17T09:14:36.701525+0000 mgr.a (mgr.14150) 420 : cephadm [INF] Reconfiguring daemon mon.a on smithi098 2024-09-17T09:14:38.059 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:37 smithi098 bash[22661]: cephadm 2024-09-17T09:14:36.601705+0000 mgr.a (mgr.14150) 417 : cephadm [INF] Successfully zapped devices for osd.5 on smithi165 2024-09-17T09:14:38.059 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:37 smithi098 bash[22661]: audit 2024-09-17T09:14:36.609113+0000 mon.a (mon.0) 678 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:38.059 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:37 smithi098 bash[22661]: cluster 2024-09-17T09:14:36.614968+0000 mgr.a (mgr.14150) 418 : cluster [DBG] pgmap v356: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:14:38.059 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:37 smithi098 bash[22661]: cephadm 2024-09-17T09:14:36.695601+0000 mgr.a (mgr.14150) 419 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-09-17T09:14:38.059 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:37 smithi098 bash[22661]: audit 2024-09-17T09:14:36.696315+0000 mon.a (mon.0) 679 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T09:14:38.059 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:37 smithi098 bash[22661]: audit 2024-09-17T09:14:36.698101+0000 mon.a (mon.0) 680 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T09:14:38.059 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:37 smithi098 bash[22661]: audit 2024-09-17T09:14:36.699743+0000 mon.a (mon.0) 681 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:14:38.059 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:37 smithi098 bash[22661]: cephadm 2024-09-17T09:14:36.701525+0000 mgr.a (mgr.14150) 420 : cephadm [INF] Reconfiguring daemon mon.a on smithi098 2024-09-17T09:14:40.209 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:39 smithi098 bash[22661]: cluster 2024-09-17T09:14:38.615507+0000 mgr.a (mgr.14150) 421 : cluster [DBG] pgmap v357: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:14:40.209 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:39 smithi098 bash[22661]: audit 2024-09-17T09:14:38.887925+0000 mon.a (mon.0) 682 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:40.209 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:39 smithi098 bash[22661]: audit 2024-09-17T09:14:38.893229+0000 mon.a (mon.0) 683 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:40.209 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:39 smithi098 bash[22661]: audit 2024-09-17T09:14:38.894767+0000 mon.a (mon.0) 684 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T09:14:40.209 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:39 smithi098 bash[22661]: audit 2024-09-17T09:14:38.896022+0000 mon.a (mon.0) 685 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T09:14:40.209 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:39 smithi098 bash[22661]: audit 2024-09-17T09:14:38.896927+0000 mon.a (mon.0) 686 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:14:40.292 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:39 smithi134 bash[24188]: cluster 2024-09-17T09:14:38.615507+0000 mgr.a (mgr.14150) 421 : cluster [DBG] pgmap v357: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:14:40.292 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:39 smithi134 bash[24188]: audit 2024-09-17T09:14:38.887925+0000 mon.a (mon.0) 682 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:40.292 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:39 smithi134 bash[24188]: audit 2024-09-17T09:14:38.893229+0000 mon.a (mon.0) 683 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:40.292 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:39 smithi134 bash[24188]: audit 2024-09-17T09:14:38.894767+0000 mon.a (mon.0) 684 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T09:14:40.292 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:39 smithi134 bash[24188]: audit 2024-09-17T09:14:38.896022+0000 mon.a (mon.0) 685 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T09:14:40.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:39 smithi134 bash[24188]: audit 2024-09-17T09:14:38.896927+0000 mon.a (mon.0) 686 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:14:41.292 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:40 smithi134 bash[24188]: cephadm 2024-09-17T09:14:38.894243+0000 mgr.a (mgr.14150) 422 : cephadm [INF] Reconfiguring mgr.a (monmap changed)... 2024-09-17T09:14:41.292 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:40 smithi134 bash[24188]: cephadm 2024-09-17T09:14:38.897911+0000 mgr.a (mgr.14150) 423 : cephadm [INF] Reconfiguring daemon mgr.a on smithi098 2024-09-17T09:14:41.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:40 smithi134 bash[24188]: cluster 2024-09-17T09:14:40.616050+0000 mgr.a (mgr.14150) 424 : cluster [DBG] pgmap v358: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:14:41.350 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:40 smithi098 bash[22661]: cephadm 2024-09-17T09:14:38.894243+0000 mgr.a (mgr.14150) 422 : cephadm [INF] Reconfiguring mgr.a (monmap changed)... 2024-09-17T09:14:41.350 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:40 smithi098 bash[22661]: cephadm 2024-09-17T09:14:38.897911+0000 mgr.a (mgr.14150) 423 : cephadm [INF] Reconfiguring daemon mgr.a on smithi098 2024-09-17T09:14:41.350 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:40 smithi098 bash[22661]: cluster 2024-09-17T09:14:40.616050+0000 mgr.a (mgr.14150) 424 : cluster [DBG] pgmap v358: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:14:41.360 INFO:teuthology.orchestra.run.smithi098.stderr:++ ceph orch ps --hostname smithi165 2024-09-17T09:14:41.662 INFO:teuthology.orchestra.run.smithi098.stderr:+ HOST_C_DAEMONS='No daemons reported' 2024-09-17T09:14:41.662 INFO:teuthology.orchestra.run.smithi098.stderr:+ '[' 'No daemons reported' '!=' 'No daemons reported' ']' 2024-09-17T09:14:41.662 INFO:teuthology.orchestra.run.smithi098.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-09-17T09:14:41.939 INFO:teuthology.orchestra.run.smithi098.stderr:17 2024-09-17T09:14:41.951 INFO:teuthology.orchestra.run.smithi098.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-09-17T09:14:41.967 INFO:teuthology.orchestra.run.smithi098.stderr:++ cat crushmap.txt 2024-09-17T09:14:41.968 INFO:teuthology.orchestra.run.smithi098.stderr:+ CRUSH_MAP='# begin crush map 2024-09-17T09:14:41.968 INFO:teuthology.orchestra.run.smithi098.stderr:tunable choose_local_tries 0 2024-09-17T09:14:41.968 INFO:teuthology.orchestra.run.smithi098.stderr:tunable choose_local_fallback_tries 0 2024-09-17T09:14:41.968 INFO:teuthology.orchestra.run.smithi098.stderr:tunable choose_total_tries 50 2024-09-17T09:14:41.969 INFO:teuthology.orchestra.run.smithi098.stderr:tunable chooseleaf_descend_once 1 2024-09-17T09:14:41.969 INFO:teuthology.orchestra.run.smithi098.stderr:tunable chooseleaf_vary_r 1 2024-09-17T09:14:41.969 INFO:teuthology.orchestra.run.smithi098.stderr:tunable chooseleaf_stable 1 2024-09-17T09:14:41.969 INFO:teuthology.orchestra.run.smithi098.stderr:tunable straw_calc_version 1 2024-09-17T09:14:41.969 INFO:teuthology.orchestra.run.smithi098.stderr:tunable allowed_bucket_algs 54 2024-09-17T09:14:41.969 INFO:teuthology.orchestra.run.smithi098.stderr: 2024-09-17T09:14:41.969 INFO:teuthology.orchestra.run.smithi098.stderr:# devices 2024-09-17T09:14:41.969 INFO:teuthology.orchestra.run.smithi098.stderr:device 0 osd.0 class ssd 2024-09-17T09:14:41.969 INFO:teuthology.orchestra.run.smithi098.stderr:device 1 osd.1 class ssd 2024-09-17T09:14:41.969 INFO:teuthology.orchestra.run.smithi098.stderr:device 2 osd.2 class ssd 2024-09-17T09:14:41.969 INFO:teuthology.orchestra.run.smithi098.stderr:device 3 osd.3 class ssd 2024-09-17T09:14:41.969 INFO:teuthology.orchestra.run.smithi098.stderr: 2024-09-17T09:14:41.969 INFO:teuthology.orchestra.run.smithi098.stderr:# types 2024-09-17T09:14:41.970 INFO:teuthology.orchestra.run.smithi098.stderr:type 0 osd 2024-09-17T09:14:41.970 INFO:teuthology.orchestra.run.smithi098.stderr:type 1 host 2024-09-17T09:14:41.970 INFO:teuthology.orchestra.run.smithi098.stderr:type 2 chassis 2024-09-17T09:14:41.970 INFO:teuthology.orchestra.run.smithi098.stderr:type 3 rack 2024-09-17T09:14:41.970 INFO:teuthology.orchestra.run.smithi098.stderr:type 4 row 2024-09-17T09:14:41.970 INFO:teuthology.orchestra.run.smithi098.stderr:type 5 pdu 2024-09-17T09:14:41.970 INFO:teuthology.orchestra.run.smithi098.stderr:type 6 pod 2024-09-17T09:14:41.970 INFO:teuthology.orchestra.run.smithi098.stderr:type 7 room 2024-09-17T09:14:41.970 INFO:teuthology.orchestra.run.smithi098.stderr:type 8 datacenter 2024-09-17T09:14:41.970 INFO:teuthology.orchestra.run.smithi098.stderr:type 9 zone 2024-09-17T09:14:41.970 INFO:teuthology.orchestra.run.smithi098.stderr:type 10 region 2024-09-17T09:14:41.970 INFO:teuthology.orchestra.run.smithi098.stderr:type 11 root 2024-09-17T09:14:41.970 INFO:teuthology.orchestra.run.smithi098.stderr: 2024-09-17T09:14:41.970 INFO:teuthology.orchestra.run.smithi098.stderr:# buckets 2024-09-17T09:14:41.971 INFO:teuthology.orchestra.run.smithi098.stderr:host smithi098 { 2024-09-17T09:14:41.971 INFO:teuthology.orchestra.run.smithi098.stderr: id -3 # do not change unnecessarily 2024-09-17T09:14:41.971 INFO:teuthology.orchestra.run.smithi098.stderr: id -4 class ssd # do not change unnecessarily 2024-09-17T09:14:41.971 INFO:teuthology.orchestra.run.smithi098.stderr: # weight 0.17459 2024-09-17T09:14:41.971 INFO:teuthology.orchestra.run.smithi098.stderr: alg straw2 2024-09-17T09:14:41.971 INFO:teuthology.orchestra.run.smithi098.stderr: hash 0 # rjenkins1 2024-09-17T09:14:41.971 INFO:teuthology.orchestra.run.smithi098.stderr: item osd.0 weight 0.08730 2024-09-17T09:14:41.971 INFO:teuthology.orchestra.run.smithi098.stderr: item osd.1 weight 0.08730 2024-09-17T09:14:41.971 INFO:teuthology.orchestra.run.smithi098.stderr:} 2024-09-17T09:14:41.971 INFO:teuthology.orchestra.run.smithi098.stderr:host smithi134 { 2024-09-17T09:14:41.971 INFO:teuthology.orchestra.run.smithi098.stderr: id -5 # do not change unnecessarily 2024-09-17T09:14:41.971 INFO:teuthology.orchestra.run.smithi098.stderr: id -6 class ssd # do not change unnecessarily 2024-09-17T09:14:41.972 INFO:teuthology.orchestra.run.smithi098.stderr: # weight 0.17459 2024-09-17T09:14:41.972 INFO:teuthology.orchestra.run.smithi098.stderr: alg straw2 2024-09-17T09:14:41.972 INFO:teuthology.orchestra.run.smithi098.stderr: hash 0 # rjenkins1 2024-09-17T09:14:41.972 INFO:teuthology.orchestra.run.smithi098.stderr: item osd.2 weight 0.08730 2024-09-17T09:14:41.972 INFO:teuthology.orchestra.run.smithi098.stderr: item osd.3 weight 0.08730 2024-09-17T09:14:41.972 INFO:teuthology.orchestra.run.smithi098.stderr:} 2024-09-17T09:14:41.972 INFO:teuthology.orchestra.run.smithi098.stderr:host smithi165 { 2024-09-17T09:14:41.972 INFO:teuthology.orchestra.run.smithi098.stderr: id -7 # do not change unnecessarily 2024-09-17T09:14:41.972 INFO:teuthology.orchestra.run.smithi098.stderr: id -8 class ssd # do not change unnecessarily 2024-09-17T09:14:41.972 INFO:teuthology.orchestra.run.smithi098.stderr: # weight 0.00000 2024-09-17T09:14:41.972 INFO:teuthology.orchestra.run.smithi098.stderr: alg straw2 2024-09-17T09:14:41.972 INFO:teuthology.orchestra.run.smithi098.stderr: hash 0 # rjenkins1 2024-09-17T09:14:41.973 INFO:teuthology.orchestra.run.smithi098.stderr:} 2024-09-17T09:14:41.973 INFO:teuthology.orchestra.run.smithi098.stderr:root default { 2024-09-17T09:14:41.973 INFO:teuthology.orchestra.run.smithi098.stderr: id -1 # do not change unnecessarily 2024-09-17T09:14:41.973 INFO:teuthology.orchestra.run.smithi098.stderr: id -2 class ssd # do not change unnecessarily 2024-09-17T09:14:41.973 INFO:teuthology.orchestra.run.smithi098.stderr: # weight 0.34918 2024-09-17T09:14:41.973 INFO:teuthology.orchestra.run.smithi098.stderr: alg straw2 2024-09-17T09:14:41.973 INFO:teuthology.orchestra.run.smithi098.stderr: hash 0 # rjenkins1 2024-09-17T09:14:41.973 INFO:teuthology.orchestra.run.smithi098.stderr: item smithi098 weight 0.17459 2024-09-17T09:14:41.973 INFO:teuthology.orchestra.run.smithi098.stderr: item smithi134 weight 0.17459 2024-09-17T09:14:41.973 INFO:teuthology.orchestra.run.smithi098.stderr: item smithi165 weight 0.00000 2024-09-17T09:14:41.973 INFO:teuthology.orchestra.run.smithi098.stderr:} 2024-09-17T09:14:41.973 INFO:teuthology.orchestra.run.smithi098.stderr: 2024-09-17T09:14:41.973 INFO:teuthology.orchestra.run.smithi098.stderr:# rules 2024-09-17T09:14:41.973 INFO:teuthology.orchestra.run.smithi098.stderr:rule replicated_rule { 2024-09-17T09:14:41.974 INFO:teuthology.orchestra.run.smithi098.stderr: id 0 2024-09-17T09:14:41.974 INFO:teuthology.orchestra.run.smithi098.stderr: type replicated 2024-09-17T09:14:41.974 INFO:teuthology.orchestra.run.smithi098.stderr: step take default 2024-09-17T09:14:41.974 INFO:teuthology.orchestra.run.smithi098.stderr: step choose firstn 0 type osd 2024-09-17T09:14:41.974 INFO:teuthology.orchestra.run.smithi098.stderr: step emit 2024-09-17T09:14:41.974 INFO:teuthology.orchestra.run.smithi098.stderr:} 2024-09-17T09:14:41.974 INFO:teuthology.orchestra.run.smithi098.stderr: 2024-09-17T09:14:41.974 INFO:teuthology.orchestra.run.smithi098.stderr:# end crush map' 2024-09-17T09:14:41.974 INFO:teuthology.orchestra.run.smithi098.stderr:+ grep -q smithi165 2024-09-17T09:14:41.975 INFO:teuthology.orchestra.run.smithi098.stderr:+ ceph orch host rm smithi165 --rm-crush-entry 2024-09-17T09:14:42.292 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:41 smithi134 bash[24188]: audit 2024-09-17T09:14:40.954353+0000 mon.a (mon.0) 687 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:42.292 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:41 smithi134 bash[24188]: audit 2024-09-17T09:14:40.961274+0000 mon.a (mon.0) 688 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:42.292 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:41 smithi134 bash[24188]: cephadm 2024-09-17T09:14:40.962404+0000 mgr.a (mgr.14150) 425 : cephadm [INF] Reconfiguring osd.0 (monmap changed)... 2024-09-17T09:14:42.292 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:41 smithi134 bash[24188]: audit 2024-09-17T09:14:40.962695+0000 mon.a (mon.0) 689 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-17T09:14:42.292 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:41 smithi134 bash[24188]: audit 2024-09-17T09:14:40.963612+0000 mon.a (mon.0) 690 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:14:42.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:41 smithi134 bash[24188]: cephadm 2024-09-17T09:14:40.965566+0000 mgr.a (mgr.14150) 426 : cephadm [INF] Reconfiguring daemon osd.0 on smithi098 2024-09-17T09:14:42.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:41 smithi134 bash[24188]: audit 2024-09-17T09:14:41.646565+0000 mgr.a (mgr.14150) 427 : audit [DBG] from='client.14512 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi165", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:14:42.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:41 smithi134 bash[24188]: audit 2024-09-17T09:14:41.939952+0000 mon.a (mon.0) 691 : audit [DBG] from='client.? 172.21.15.98:0/2008502892' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-17T09:14:42.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:41 smithi098 bash[22661]: audit 2024-09-17T09:14:40.954353+0000 mon.a (mon.0) 687 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:42.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:41 smithi098 bash[22661]: audit 2024-09-17T09:14:40.961274+0000 mon.a (mon.0) 688 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:42.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:41 smithi098 bash[22661]: cephadm 2024-09-17T09:14:40.962404+0000 mgr.a (mgr.14150) 425 : cephadm [INF] Reconfiguring osd.0 (monmap changed)... 2024-09-17T09:14:42.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:41 smithi098 bash[22661]: audit 2024-09-17T09:14:40.962695+0000 mon.a (mon.0) 689 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-17T09:14:42.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:41 smithi098 bash[22661]: audit 2024-09-17T09:14:40.963612+0000 mon.a (mon.0) 690 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:14:42.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:41 smithi098 bash[22661]: cephadm 2024-09-17T09:14:40.965566+0000 mgr.a (mgr.14150) 426 : cephadm [INF] Reconfiguring daemon osd.0 on smithi098 2024-09-17T09:14:42.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:41 smithi098 bash[22661]: audit 2024-09-17T09:14:41.646565+0000 mgr.a (mgr.14150) 427 : audit [DBG] from='client.14512 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi165", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:14:42.362 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:41 smithi098 bash[22661]: audit 2024-09-17T09:14:41.939952+0000 mon.a (mon.0) 691 : audit [DBG] from='client.? 172.21.15.98:0/2008502892' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-17T09:14:42.987 INFO:teuthology.orchestra.run.smithi098.stdout:Removed host 'smithi165' 2024-09-17T09:14:43.003 INFO:teuthology.orchestra.run.smithi098.stderr:+ sleep 30 2024-09-17T09:14:43.109 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:42 smithi098 bash[22661]: audit 2024-09-17T09:14:42.243067+0000 mgr.a (mgr.14150) 428 : audit [DBG] from='client.14520 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi165", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:14:43.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:42 smithi098 bash[22661]: audit 2024-09-17T09:14:42.244056+0000 mon.a (mon.0) 692 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi165"}]: dispatch 2024-09-17T09:14:43.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:42 smithi098 bash[22661]: cluster 2024-09-17T09:14:42.616528+0000 mgr.a (mgr.14150) 429 : cluster [DBG] pgmap v359: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:14:43.292 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:42 smithi134 bash[24188]: audit 2024-09-17T09:14:42.243067+0000 mgr.a (mgr.14150) 428 : audit [DBG] from='client.14520 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi165", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T09:14:43.292 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:42 smithi134 bash[24188]: audit 2024-09-17T09:14:42.244056+0000 mon.a (mon.0) 692 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi165"}]: dispatch 2024-09-17T09:14:43.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:42 smithi134 bash[24188]: cluster 2024-09-17T09:14:42.616528+0000 mgr.a (mgr.14150) 429 : cluster [DBG] pgmap v359: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:14:44.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:43 smithi098 bash[22661]: audit 2024-09-17T09:14:42.969437+0000 mon.a (mon.0) 693 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi165"}]': finished 2024-09-17T09:14:44.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:43 smithi098 bash[22661]: cluster 2024-09-17T09:14:42.969538+0000 mon.a (mon.0) 694 : cluster [DBG] osdmap e64: 4 total, 4 up, 4 in 2024-09-17T09:14:44.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:43 smithi098 bash[22661]: audit 2024-09-17T09:14:42.977919+0000 mon.a (mon.0) 695 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:44.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:43 smithi098 bash[22661]: audit 2024-09-17T09:14:42.978940+0000 mon.a (mon.0) 696 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi165"}]: dispatch 2024-09-17T09:14:44.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:43 smithi098 bash[22661]: audit 2024-09-17T09:14:42.984414+0000 mon.a (mon.0) 697 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi165"}]': finished 2024-09-17T09:14:44.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:43 smithi098 bash[22661]: cephadm 2024-09-17T09:14:42.988026+0000 mgr.a (mgr.14150) 430 : cephadm [INF] Removed host smithi165 2024-09-17T09:14:44.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:43 smithi098 bash[22661]: audit 2024-09-17T09:14:43.327292+0000 mon.a (mon.0) 698 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:44.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:43 smithi098 bash[22661]: audit 2024-09-17T09:14:43.333030+0000 mon.a (mon.0) 699 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:44.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:43 smithi098 bash[22661]: cephadm 2024-09-17T09:14:43.334054+0000 mgr.a (mgr.14150) 431 : cephadm [INF] Reconfiguring osd.1 (monmap changed)... 2024-09-17T09:14:44.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:43 smithi098 bash[22661]: audit 2024-09-17T09:14:43.334516+0000 mon.a (mon.0) 700 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-17T09:14:44.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:43 smithi098 bash[22661]: audit 2024-09-17T09:14:43.335933+0000 mon.a (mon.0) 701 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:14:44.111 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:43 smithi098 bash[22661]: cephadm 2024-09-17T09:14:43.338198+0000 mgr.a (mgr.14150) 432 : cephadm [INF] Reconfiguring daemon osd.1 on smithi098 2024-09-17T09:14:44.292 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:43 smithi134 bash[24188]: audit 2024-09-17T09:14:42.969437+0000 mon.a (mon.0) 693 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi165"}]': finished 2024-09-17T09:14:44.292 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:43 smithi134 bash[24188]: cluster 2024-09-17T09:14:42.969538+0000 mon.a (mon.0) 694 : cluster [DBG] osdmap e64: 4 total, 4 up, 4 in 2024-09-17T09:14:44.292 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:43 smithi134 bash[24188]: audit 2024-09-17T09:14:42.977919+0000 mon.a (mon.0) 695 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:44.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:43 smithi134 bash[24188]: audit 2024-09-17T09:14:42.978940+0000 mon.a (mon.0) 696 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi165"}]: dispatch 2024-09-17T09:14:44.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:43 smithi134 bash[24188]: audit 2024-09-17T09:14:42.984414+0000 mon.a (mon.0) 697 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi165"}]': finished 2024-09-17T09:14:44.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:43 smithi134 bash[24188]: cephadm 2024-09-17T09:14:42.988026+0000 mgr.a (mgr.14150) 430 : cephadm [INF] Removed host smithi165 2024-09-17T09:14:44.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:43 smithi134 bash[24188]: audit 2024-09-17T09:14:43.327292+0000 mon.a (mon.0) 698 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:44.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:43 smithi134 bash[24188]: audit 2024-09-17T09:14:43.333030+0000 mon.a (mon.0) 699 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:44.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:43 smithi134 bash[24188]: cephadm 2024-09-17T09:14:43.334054+0000 mgr.a (mgr.14150) 431 : cephadm [INF] Reconfiguring osd.1 (monmap changed)... 2024-09-17T09:14:44.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:43 smithi134 bash[24188]: audit 2024-09-17T09:14:43.334516+0000 mon.a (mon.0) 700 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-17T09:14:44.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:43 smithi134 bash[24188]: audit 2024-09-17T09:14:43.335933+0000 mon.a (mon.0) 701 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:14:44.293 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:43 smithi134 bash[24188]: cephadm 2024-09-17T09:14:43.338198+0000 mgr.a (mgr.14150) 432 : cephadm [INF] Reconfiguring daemon osd.1 on smithi098 2024-09-17T09:14:45.246 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:44 smithi098 bash[22661]: cluster 2024-09-17T09:14:44.617129+0000 mgr.a (mgr.14150) 433 : cluster [DBG] pgmap v361: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:14:45.292 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:44 smithi134 bash[24188]: cluster 2024-09-17T09:14:44.617129+0000 mgr.a (mgr.14150) 433 : cluster [DBG] pgmap v361: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:14:47.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:46 smithi134 bash[24188]: audit 2024-09-17T09:14:45.791869+0000 mon.a (mon.0) 702 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:47.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:46 smithi134 bash[24188]: audit 2024-09-17T09:14:45.799363+0000 mon.a (mon.0) 703 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:47.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:46 smithi134 bash[24188]: cephadm 2024-09-17T09:14:45.800864+0000 mgr.a (mgr.14150) 434 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-17T09:14:47.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:46 smithi134 bash[24188]: audit 2024-09-17T09:14:45.801341+0000 mon.a (mon.0) 704 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T09:14:47.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:46 smithi134 bash[24188]: audit 2024-09-17T09:14:45.802757+0000 mon.a (mon.0) 705 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T09:14:47.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:46 smithi134 bash[24188]: audit 2024-09-17T09:14:45.804103+0000 mon.a (mon.0) 706 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:14:47.043 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:46 smithi134 bash[24188]: cephadm 2024-09-17T09:14:45.805811+0000 mgr.a (mgr.14150) 435 : cephadm [INF] Reconfiguring daemon mon.b on smithi134 2024-09-17T09:14:47.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:46 smithi098 bash[22661]: audit 2024-09-17T09:14:45.791869+0000 mon.a (mon.0) 702 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:47.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:46 smithi098 bash[22661]: audit 2024-09-17T09:14:45.799363+0000 mon.a (mon.0) 703 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:47.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:46 smithi098 bash[22661]: cephadm 2024-09-17T09:14:45.800864+0000 mgr.a (mgr.14150) 434 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-17T09:14:47.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:46 smithi098 bash[22661]: audit 2024-09-17T09:14:45.801341+0000 mon.a (mon.0) 704 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T09:14:47.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:46 smithi098 bash[22661]: audit 2024-09-17T09:14:45.802757+0000 mon.a (mon.0) 705 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T09:14:47.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:46 smithi098 bash[22661]: audit 2024-09-17T09:14:45.804103+0000 mon.a (mon.0) 706 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:14:47.110 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:46 smithi098 bash[22661]: cephadm 2024-09-17T09:14:45.805811+0000 mgr.a (mgr.14150) 435 : cephadm [INF] Reconfiguring daemon mon.b on smithi134 2024-09-17T09:14:48.042 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:47 smithi134 bash[24188]: cluster 2024-09-17T09:14:46.617787+0000 mgr.a (mgr.14150) 436 : cluster [DBG] pgmap v362: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:14:48.109 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:47 smithi098 bash[22661]: cluster 2024-09-17T09:14:46.617787+0000 mgr.a (mgr.14150) 436 : cluster [DBG] pgmap v362: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:14:49.360 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:49 smithi098 bash[22661]: audit 2024-09-17T09:14:48.061932+0000 mon.a (mon.0) 707 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:49.360 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:49 smithi098 bash[22661]: audit 2024-09-17T09:14:48.070056+0000 mon.a (mon.0) 708 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:49.360 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:49 smithi098 bash[22661]: cephadm 2024-09-17T09:14:48.087977+0000 mgr.a (mgr.14150) 437 : cephadm [INF] Reconfiguring mgr.b (monmap changed)... 2024-09-17T09:14:49.360 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:49 smithi098 bash[22661]: audit 2024-09-17T09:14:48.088599+0000 mon.a (mon.0) 709 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T09:14:49.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:49 smithi098 bash[22661]: audit 2024-09-17T09:14:48.090520+0000 mon.a (mon.0) 710 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T09:14:49.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:49 smithi098 bash[22661]: audit 2024-09-17T09:14:48.092243+0000 mon.a (mon.0) 711 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:14:49.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:49 smithi098 bash[22661]: cephadm 2024-09-17T09:14:48.094089+0000 mgr.a (mgr.14150) 438 : cephadm [INF] Reconfiguring daemon mgr.b on smithi134 2024-09-17T09:14:49.361 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:49 smithi098 bash[22661]: cluster 2024-09-17T09:14:48.618371+0000 mgr.a (mgr.14150) 439 : cluster [DBG] pgmap v363: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:14:49.387 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:49 smithi134 bash[24188]: audit 2024-09-17T09:14:48.061932+0000 mon.a (mon.0) 707 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:49.387 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:49 smithi134 bash[24188]: audit 2024-09-17T09:14:48.070056+0000 mon.a (mon.0) 708 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:49.387 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:49 smithi134 bash[24188]: cephadm 2024-09-17T09:14:48.087977+0000 mgr.a (mgr.14150) 437 : cephadm [INF] Reconfiguring mgr.b (monmap changed)... 2024-09-17T09:14:49.387 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:49 smithi134 bash[24188]: audit 2024-09-17T09:14:48.088599+0000 mon.a (mon.0) 709 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T09:14:49.387 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:49 smithi134 bash[24188]: audit 2024-09-17T09:14:48.090520+0000 mon.a (mon.0) 710 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T09:14:49.387 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:49 smithi134 bash[24188]: audit 2024-09-17T09:14:48.092243+0000 mon.a (mon.0) 711 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:14:49.387 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:49 smithi134 bash[24188]: cephadm 2024-09-17T09:14:48.094089+0000 mgr.a (mgr.14150) 438 : cephadm [INF] Reconfiguring daemon mgr.b on smithi134 2024-09-17T09:14:49.387 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:49 smithi134 bash[24188]: cluster 2024-09-17T09:14:48.618371+0000 mgr.a (mgr.14150) 439 : cluster [DBG] pgmap v363: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:14:51.403 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:51 smithi134 bash[24188]: audit 2024-09-17T09:14:50.119618+0000 mon.a (mon.0) 712 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:51.403 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:51 smithi134 bash[24188]: audit 2024-09-17T09:14:50.127478+0000 mon.a (mon.0) 713 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:51.403 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:51 smithi134 bash[24188]: cephadm 2024-09-17T09:14:50.129147+0000 mgr.a (mgr.14150) 440 : cephadm [INF] Reconfiguring osd.2 (monmap changed)... 2024-09-17T09:14:51.403 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:51 smithi134 bash[24188]: audit 2024-09-17T09:14:50.129742+0000 mon.a (mon.0) 714 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-17T09:14:51.403 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:51 smithi134 bash[24188]: audit 2024-09-17T09:14:50.134787+0000 mon.a (mon.0) 715 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:14:51.403 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:51 smithi134 bash[24188]: cephadm 2024-09-17T09:14:50.137739+0000 mgr.a (mgr.14150) 441 : cephadm [INF] Reconfiguring daemon osd.2 on smithi134 2024-09-17T09:14:51.403 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:51 smithi134 bash[24188]: cluster 2024-09-17T09:14:50.619034+0000 mgr.a (mgr.14150) 442 : cluster [DBG] pgmap v364: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:14:51.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:51 smithi098 bash[22661]: audit 2024-09-17T09:14:50.119618+0000 mon.a (mon.0) 712 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:51.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:51 smithi098 bash[22661]: audit 2024-09-17T09:14:50.127478+0000 mon.a (mon.0) 713 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:51.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:51 smithi098 bash[22661]: cephadm 2024-09-17T09:14:50.129147+0000 mgr.a (mgr.14150) 440 : cephadm [INF] Reconfiguring osd.2 (monmap changed)... 2024-09-17T09:14:51.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:51 smithi098 bash[22661]: audit 2024-09-17T09:14:50.129742+0000 mon.a (mon.0) 714 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-17T09:14:51.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:51 smithi098 bash[22661]: audit 2024-09-17T09:14:50.134787+0000 mon.a (mon.0) 715 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:14:51.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:51 smithi098 bash[22661]: cephadm 2024-09-17T09:14:50.137739+0000 mgr.a (mgr.14150) 441 : cephadm [INF] Reconfiguring daemon osd.2 on smithi134 2024-09-17T09:14:51.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:51 smithi098 bash[22661]: cluster 2024-09-17T09:14:50.619034+0000 mgr.a (mgr.14150) 442 : cluster [DBG] pgmap v364: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:14:53.542 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:53 smithi134 bash[24188]: audit 2024-09-17T09:14:52.269183+0000 mon.a (mon.0) 716 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:53.542 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:53 smithi134 bash[24188]: audit 2024-09-17T09:14:52.278230+0000 mon.a (mon.0) 717 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:53.542 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:53 smithi134 bash[24188]: cephadm 2024-09-17T09:14:52.279682+0000 mgr.a (mgr.14150) 443 : cephadm [INF] Reconfiguring osd.3 (monmap changed)... 2024-09-17T09:14:53.542 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:53 smithi134 bash[24188]: audit 2024-09-17T09:14:52.280270+0000 mon.a (mon.0) 718 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-17T09:14:53.542 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:53 smithi134 bash[24188]: audit 2024-09-17T09:14:52.282140+0000 mon.a (mon.0) 719 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:14:53.542 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:53 smithi134 bash[24188]: cephadm 2024-09-17T09:14:52.284706+0000 mgr.a (mgr.14150) 444 : cephadm [INF] Reconfiguring daemon osd.3 on smithi134 2024-09-17T09:14:53.542 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:53 smithi134 bash[24188]: cluster 2024-09-17T09:14:52.619705+0000 mgr.a (mgr.14150) 445 : cluster [DBG] pgmap v365: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:14:53.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:53 smithi098 bash[22661]: audit 2024-09-17T09:14:52.269183+0000 mon.a (mon.0) 716 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:53.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:53 smithi098 bash[22661]: audit 2024-09-17T09:14:52.278230+0000 mon.a (mon.0) 717 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:53.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:53 smithi098 bash[22661]: cephadm 2024-09-17T09:14:52.279682+0000 mgr.a (mgr.14150) 443 : cephadm [INF] Reconfiguring osd.3 (monmap changed)... 2024-09-17T09:14:53.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:53 smithi098 bash[22661]: audit 2024-09-17T09:14:52.280270+0000 mon.a (mon.0) 718 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-17T09:14:53.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:53 smithi098 bash[22661]: audit 2024-09-17T09:14:52.282140+0000 mon.a (mon.0) 719 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:14:53.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:53 smithi098 bash[22661]: cephadm 2024-09-17T09:14:52.284706+0000 mgr.a (mgr.14150) 444 : cephadm [INF] Reconfiguring daemon osd.3 on smithi134 2024-09-17T09:14:53.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:53 smithi098 bash[22661]: cluster 2024-09-17T09:14:52.619705+0000 mgr.a (mgr.14150) 445 : cluster [DBG] pgmap v365: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:14:55.542 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:55 smithi134 bash[24188]: audit 2024-09-17T09:14:54.267888+0000 mon.a (mon.0) 720 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:55.542 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:55 smithi134 bash[24188]: audit 2024-09-17T09:14:54.276487+0000 mon.a (mon.0) 721 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:55.543 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:55 smithi134 bash[24188]: audit 2024-09-17T09:14:54.279049+0000 mon.a (mon.0) 722 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:14:55.543 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:55 smithi134 bash[24188]: cluster 2024-09-17T09:14:54.620151+0000 mgr.a (mgr.14150) 446 : cluster [DBG] pgmap v366: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:14:55.543 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:55 smithi134 bash[24188]: audit 2024-09-17T09:14:54.641163+0000 mon.a (mon.0) 723 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:55.543 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:55 smithi134 bash[24188]: audit 2024-09-17T09:14:54.644736+0000 mon.a (mon.0) 724 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:55.543 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:55 smithi134 bash[24188]: audit 2024-09-17T09:14:55.069909+0000 mon.a (mon.0) 725 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:14:55.543 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:55 smithi134 bash[24188]: audit 2024-09-17T09:14:55.071292+0000 mon.a (mon.0) 726 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:14:55.543 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:55 smithi134 bash[24188]: audit 2024-09-17T09:14:55.078945+0000 mon.a (mon.0) 727 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:55.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:55 smithi098 bash[22661]: audit 2024-09-17T09:14:54.267888+0000 mon.a (mon.0) 720 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:55.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:55 smithi098 bash[22661]: audit 2024-09-17T09:14:54.276487+0000 mon.a (mon.0) 721 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:55.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:55 smithi098 bash[22661]: audit 2024-09-17T09:14:54.279049+0000 mon.a (mon.0) 722 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T09:14:55.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:55 smithi098 bash[22661]: cluster 2024-09-17T09:14:54.620151+0000 mgr.a (mgr.14150) 446 : cluster [DBG] pgmap v366: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:14:55.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:55 smithi098 bash[22661]: audit 2024-09-17T09:14:54.641163+0000 mon.a (mon.0) 723 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:55.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:55 smithi098 bash[22661]: audit 2024-09-17T09:14:54.644736+0000 mon.a (mon.0) 724 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:55.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:55 smithi098 bash[22661]: audit 2024-09-17T09:14:55.069909+0000 mon.a (mon.0) 725 : audit [DBG] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T09:14:55.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:55 smithi098 bash[22661]: audit 2024-09-17T09:14:55.071292+0000 mon.a (mon.0) 726 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T09:14:55.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:55 smithi098 bash[22661]: audit 2024-09-17T09:14:55.078945+0000 mon.a (mon.0) 727 : audit [INF] from='mgr.14150 172.21.15.98:0/2793029401' entity='mgr.a' 2024-09-17T09:14:56.542 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:56 smithi134 bash[24188]: cluster 2024-09-17T09:14:55.074406+0000 mgr.a (mgr.14150) 447 : cluster [DBG] pgmap v367: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:14:56.542 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:56 smithi134 bash[24188]: cluster 2024-09-17T09:14:55.272731+0000 mon.a (mon.0) 728 : cluster [WRN] Health check failed: 1 stray host(s) with 1 daemon(s) not managed by cephadm (CEPHADM_STRAY_HOST) 2024-09-17T09:14:56.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:56 smithi098 bash[22661]: cluster 2024-09-17T09:14:55.074406+0000 mgr.a (mgr.14150) 447 : cluster [DBG] pgmap v367: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:14:56.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:56 smithi098 bash[22661]: cluster 2024-09-17T09:14:55.272731+0000 mon.a (mon.0) 728 : cluster [WRN] Health check failed: 1 stray host(s) with 1 daemon(s) not managed by cephadm (CEPHADM_STRAY_HOST) 2024-09-17T09:14:58.542 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:14:58 smithi134 bash[24188]: cluster 2024-09-17T09:14:57.075010+0000 mgr.a (mgr.14150) 448 : cluster [DBG] pgmap v368: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:14:58.610 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:14:58 smithi098 bash[22661]: cluster 2024-09-17T09:14:57.075010+0000 mgr.a (mgr.14150) 448 : cluster [DBG] pgmap v368: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:15:00.542 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:15:00 smithi134 bash[24188]: cluster 2024-09-17T09:14:59.075679+0000 mgr.a (mgr.14150) 449 : cluster [DBG] pgmap v369: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:15:00.609 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:15:00 smithi098 bash[22661]: cluster 2024-09-17T09:14:59.075679+0000 mgr.a (mgr.14150) 449 : cluster [DBG] pgmap v369: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:15:02.542 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:15:02 smithi134 bash[24188]: cluster 2024-09-17T09:15:01.076300+0000 mgr.a (mgr.14150) 450 : cluster [DBG] pgmap v370: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:15:02.609 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:15:02 smithi098 bash[22661]: cluster 2024-09-17T09:15:01.076300+0000 mgr.a (mgr.14150) 450 : cluster [DBG] pgmap v370: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:15:04.542 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:15:04 smithi134 bash[24188]: cluster 2024-09-17T09:15:03.076851+0000 mgr.a (mgr.14150) 451 : cluster [DBG] pgmap v371: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:15:04.609 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:15:04 smithi098 bash[22661]: cluster 2024-09-17T09:15:03.076851+0000 mgr.a (mgr.14150) 451 : cluster [DBG] pgmap v371: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:15:06.542 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:15:06 smithi134 bash[24188]: cluster 2024-09-17T09:15:05.077522+0000 mgr.a (mgr.14150) 452 : cluster [DBG] pgmap v372: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:15:06.609 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:15:06 smithi098 bash[22661]: cluster 2024-09-17T09:15:05.077522+0000 mgr.a (mgr.14150) 452 : cluster [DBG] pgmap v372: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:15:08.542 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:15:08 smithi134 bash[24188]: cluster 2024-09-17T09:15:07.078102+0000 mgr.a (mgr.14150) 453 : cluster [DBG] pgmap v373: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:15:08.609 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:15:08 smithi098 bash[22661]: cluster 2024-09-17T09:15:07.078102+0000 mgr.a (mgr.14150) 453 : cluster [DBG] pgmap v373: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:15:10.609 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:15:10 smithi098 bash[22661]: cluster 2024-09-17T09:15:09.078770+0000 mgr.a (mgr.14150) 454 : cluster [DBG] pgmap v374: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:15:10.792 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:15:10 smithi134 bash[24188]: cluster 2024-09-17T09:15:09.078770+0000 mgr.a (mgr.14150) 454 : cluster [DBG] pgmap v374: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:15:12.609 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:15:12 smithi098 bash[22661]: cluster 2024-09-17T09:15:11.079363+0000 mgr.a (mgr.14150) 455 : cluster [DBG] pgmap v375: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:15:12.792 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:15:12 smithi134 bash[24188]: cluster 2024-09-17T09:15:11.079363+0000 mgr.a (mgr.14150) 455 : cluster [DBG] pgmap v375: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-09-17T09:15:13.004 INFO:teuthology.orchestra.run.smithi098.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-09-17T09:15:13.279 INFO:teuthology.orchestra.run.smithi098.stderr:18 2024-09-17T09:15:13.290 INFO:teuthology.orchestra.run.smithi098.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-09-17T09:15:13.306 INFO:teuthology.orchestra.run.smithi098.stderr:++ cat crushmap.txt 2024-09-17T09:15:13.307 INFO:teuthology.orchestra.run.smithi098.stderr:+ CRUSH_MAP='# begin crush map 2024-09-17T09:15:13.307 INFO:teuthology.orchestra.run.smithi098.stderr:tunable choose_local_tries 0 2024-09-17T09:15:13.307 INFO:teuthology.orchestra.run.smithi098.stderr:tunable choose_local_fallback_tries 0 2024-09-17T09:15:13.307 INFO:teuthology.orchestra.run.smithi098.stderr:tunable choose_total_tries 50 2024-09-17T09:15:13.307 INFO:teuthology.orchestra.run.smithi098.stderr:tunable chooseleaf_descend_once 1 2024-09-17T09:15:13.307 INFO:teuthology.orchestra.run.smithi098.stderr:tunable chooseleaf_vary_r 1 2024-09-17T09:15:13.307 INFO:teuthology.orchestra.run.smithi098.stderr:tunable chooseleaf_stable 1 2024-09-17T09:15:13.307 INFO:teuthology.orchestra.run.smithi098.stderr:tunable straw_calc_version 1 2024-09-17T09:15:13.308 INFO:teuthology.orchestra.run.smithi098.stderr:tunable allowed_bucket_algs 54 2024-09-17T09:15:13.308 INFO:teuthology.orchestra.run.smithi098.stderr: 2024-09-17T09:15:13.308 INFO:teuthology.orchestra.run.smithi098.stderr:# devices 2024-09-17T09:15:13.308 INFO:teuthology.orchestra.run.smithi098.stderr:device 0 osd.0 class ssd 2024-09-17T09:15:13.308 INFO:teuthology.orchestra.run.smithi098.stderr:device 1 osd.1 class ssd 2024-09-17T09:15:13.308 INFO:teuthology.orchestra.run.smithi098.stderr:device 2 osd.2 class ssd 2024-09-17T09:15:13.308 INFO:teuthology.orchestra.run.smithi098.stderr:device 3 osd.3 class ssd 2024-09-17T09:15:13.308 INFO:teuthology.orchestra.run.smithi098.stderr: 2024-09-17T09:15:13.308 INFO:teuthology.orchestra.run.smithi098.stderr:# types 2024-09-17T09:15:13.308 INFO:teuthology.orchestra.run.smithi098.stderr:type 0 osd 2024-09-17T09:15:13.309 INFO:teuthology.orchestra.run.smithi098.stderr:type 1 host 2024-09-17T09:15:13.309 INFO:teuthology.orchestra.run.smithi098.stderr:type 2 chassis 2024-09-17T09:15:13.309 INFO:teuthology.orchestra.run.smithi098.stderr:type 3 rack 2024-09-17T09:15:13.309 INFO:teuthology.orchestra.run.smithi098.stderr:type 4 row 2024-09-17T09:15:13.309 INFO:teuthology.orchestra.run.smithi098.stderr:type 5 pdu 2024-09-17T09:15:13.309 INFO:teuthology.orchestra.run.smithi098.stderr:type 6 pod 2024-09-17T09:15:13.309 INFO:teuthology.orchestra.run.smithi098.stderr:type 7 room 2024-09-17T09:15:13.309 INFO:teuthology.orchestra.run.smithi098.stderr:type 8 datacenter 2024-09-17T09:15:13.309 INFO:teuthology.orchestra.run.smithi098.stderr:type 9 zone 2024-09-17T09:15:13.309 INFO:teuthology.orchestra.run.smithi098.stderr:type 10 region 2024-09-17T09:15:13.309 INFO:teuthology.orchestra.run.smithi098.stderr:type 11 root 2024-09-17T09:15:13.309 INFO:teuthology.orchestra.run.smithi098.stderr: 2024-09-17T09:15:13.309 INFO:teuthology.orchestra.run.smithi098.stderr:# buckets 2024-09-17T09:15:13.310 INFO:teuthology.orchestra.run.smithi098.stderr:host smithi098 { 2024-09-17T09:15:13.310 INFO:teuthology.orchestra.run.smithi098.stderr: id -3 # do not change unnecessarily 2024-09-17T09:15:13.310 INFO:teuthology.orchestra.run.smithi098.stderr: id -4 class ssd # do not change unnecessarily 2024-09-17T09:15:13.310 INFO:teuthology.orchestra.run.smithi098.stderr: # weight 0.17459 2024-09-17T09:15:13.310 INFO:teuthology.orchestra.run.smithi098.stderr: alg straw2 2024-09-17T09:15:13.310 INFO:teuthology.orchestra.run.smithi098.stderr: hash 0 # rjenkins1 2024-09-17T09:15:13.310 INFO:teuthology.orchestra.run.smithi098.stderr: item osd.0 weight 0.08730 2024-09-17T09:15:13.310 INFO:teuthology.orchestra.run.smithi098.stderr: item osd.1 weight 0.08730 2024-09-17T09:15:13.310 INFO:teuthology.orchestra.run.smithi098.stderr:} 2024-09-17T09:15:13.310 INFO:teuthology.orchestra.run.smithi098.stderr:host smithi134 { 2024-09-17T09:15:13.310 INFO:teuthology.orchestra.run.smithi098.stderr: id -5 # do not change unnecessarily 2024-09-17T09:15:13.311 INFO:teuthology.orchestra.run.smithi098.stderr: id -6 class ssd # do not change unnecessarily 2024-09-17T09:15:13.311 INFO:teuthology.orchestra.run.smithi098.stderr: # weight 0.17459 2024-09-17T09:15:13.311 INFO:teuthology.orchestra.run.smithi098.stderr: alg straw2 2024-09-17T09:15:13.311 INFO:teuthology.orchestra.run.smithi098.stderr: hash 0 # rjenkins1 2024-09-17T09:15:13.311 INFO:teuthology.orchestra.run.smithi098.stderr: item osd.2 weight 0.08730 2024-09-17T09:15:13.311 INFO:teuthology.orchestra.run.smithi098.stderr: item osd.3 weight 0.08730 2024-09-17T09:15:13.311 INFO:teuthology.orchestra.run.smithi098.stderr:} 2024-09-17T09:15:13.311 INFO:teuthology.orchestra.run.smithi098.stderr:root default { 2024-09-17T09:15:13.311 INFO:teuthology.orchestra.run.smithi098.stderr: id -1 # do not change unnecessarily 2024-09-17T09:15:13.311 INFO:teuthology.orchestra.run.smithi098.stderr: id -2 class ssd # do not change unnecessarily 2024-09-17T09:15:13.312 INFO:teuthology.orchestra.run.smithi098.stderr: # weight 0.34918 2024-09-17T09:15:13.312 INFO:teuthology.orchestra.run.smithi098.stderr: alg straw2 2024-09-17T09:15:13.312 INFO:teuthology.orchestra.run.smithi098.stderr: hash 0 # rjenkins1 2024-09-17T09:15:13.312 INFO:teuthology.orchestra.run.smithi098.stderr: item smithi098 weight 0.17459 2024-09-17T09:15:13.312 INFO:teuthology.orchestra.run.smithi098.stderr: item smithi134 weight 0.17459 2024-09-17T09:15:13.312 INFO:teuthology.orchestra.run.smithi098.stderr:} 2024-09-17T09:15:13.312 INFO:teuthology.orchestra.run.smithi098.stderr: 2024-09-17T09:15:13.312 INFO:teuthology.orchestra.run.smithi098.stderr:# rules 2024-09-17T09:15:13.312 INFO:teuthology.orchestra.run.smithi098.stderr:rule replicated_rule { 2024-09-17T09:15:13.312 INFO:teuthology.orchestra.run.smithi098.stderr: id 0 2024-09-17T09:15:13.312 INFO:teuthology.orchestra.run.smithi098.stderr: type replicated 2024-09-17T09:15:13.312 INFO:teuthology.orchestra.run.smithi098.stderr: step take default 2024-09-17T09:15:13.312 INFO:teuthology.orchestra.run.smithi098.stderr: step choose firstn 0 type osd 2024-09-17T09:15:13.313 INFO:teuthology.orchestra.run.smithi098.stderr: step emit 2024-09-17T09:15:13.313 INFO:teuthology.orchestra.run.smithi098.stderr:} 2024-09-17T09:15:13.313 INFO:teuthology.orchestra.run.smithi098.stderr: 2024-09-17T09:15:13.313 INFO:teuthology.orchestra.run.smithi098.stderr:# end crush map' 2024-09-17T09:15:13.313 INFO:teuthology.orchestra.run.smithi098.stderr:+ grep -q smithi165 2024-09-17T09:15:13.609 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:15:13 smithi098 bash[22661]: audit 2024-09-17T09:15:13.280448+0000 mon.a (mon.0) 729 : audit [DBG] from='client.? 172.21.15.98:0/1534729162' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-17T09:15:13.792 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:15:13 smithi134 bash[24188]: audit 2024-09-17T09:15:13.280448+0000 mon.a (mon.0) 729 : audit [DBG] from='client.? 172.21.15.98:0/1534729162' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-17T09:15:13.955 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-09-17T09:15:13.965 INFO:tasks.cephadm:Teardown begin 2024-09-17T09:15:13.966 DEBUG:teuthology.orchestra.run.smithi098:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T09:15:13.980 DEBUG:teuthology.orchestra.run.smithi134:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T09:15:13.996 DEBUG:teuthology.orchestra.run.smithi165:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T09:15:14.011 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-09-17T09:15:14.011 DEBUG:teuthology.orchestra.run.smithi098:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-17T09:15:14.025 DEBUG:teuthology.orchestra.run.smithi134:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-17T09:15:14.042 DEBUG:teuthology.orchestra.run.smithi165:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-17T09:15:14.059 INFO:tasks.cephadm:Stopping all daemons... 2024-09-17T09:15:14.059 INFO:tasks.cephadm.mon.a:Stopping mon.a... 2024-09-17T09:15:14.059 DEBUG:teuthology.orchestra.run.smithi098:> sudo systemctl stop ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@mon.a 2024-09-17T09:15:14.219 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:15:14 smithi098 systemd[1]: Stopping Ceph mon.a for 7d5e8b1e-74d3-11ef-bceb-c7b262605968... 2024-09-17T09:15:14.359 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:15:14 smithi098 bash[22661]: debug 2024-09-17T09:15:14.217+0000 7f2698f7f640 -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-17T09:15:14.359 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:15:14 smithi098 bash[22661]: debug 2024-09-17T09:15:14.217+0000 7f2698f7f640 -1 mon.a@0(leader) e4 *** Got Signal Terminated *** 2024-09-17T09:15:15.098 INFO:journalctl@ceph.mon.a.smithi098.stdout:Sep 17 09:15:14 smithi098 bash[48825]: ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968-mon-a 2024-09-17T09:15:15.102 DEBUG:teuthology.orchestra.run.smithi098:> sudo pkill -f 'journalctl -f -n 0 -u ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@mon.a.service' 2024-09-17T09:15:15.133 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T09:15:15.134 INFO:tasks.cephadm.mon.a:Stopped mon.a 2024-09-17T09:15:15.134 INFO:tasks.cephadm.mon.c:Stopping mon.b... 2024-09-17T09:15:15.134 DEBUG:teuthology.orchestra.run.smithi134:> sudo systemctl stop ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@mon.b 2024-09-17T09:15:15.397 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:15:15 smithi134 systemd[1]: Stopping Ceph mon.b for 7d5e8b1e-74d3-11ef-bceb-c7b262605968... 2024-09-17T09:15:15.397 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:15:15 smithi134 bash[24188]: debug 2024-09-17T09:15:15.284+0000 7f018c499640 -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-17T09:15:15.397 INFO:journalctl@ceph.mon.b.smithi134.stdout:Sep 17 09:15:15 smithi134 bash[24188]: debug 2024-09-17T09:15:15.284+0000 7f018c499640 -1 mon.b@1(peon) e4 *** Got Signal Terminated *** 2024-09-17T09:15:16.135 DEBUG:teuthology.orchestra.run.smithi134:> sudo pkill -f 'journalctl -f -n 0 -u ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@mon.b.service' 2024-09-17T09:15:16.171 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T09:15:16.171 INFO:tasks.cephadm.mon.c:Stopped mon.b 2024-09-17T09:15:16.171 INFO:tasks.cephadm.mon.c:Stopping mon.c... 2024-09-17T09:15:16.171 DEBUG:teuthology.orchestra.run.smithi165:> sudo systemctl stop ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@mon.c 2024-09-17T09:15:16.204 DEBUG:teuthology.orchestra.run.smithi165:> sudo pkill -f 'journalctl -f -n 0 -u ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@mon.c.service' 2024-09-17T09:15:16.359 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T09:15:16.360 INFO:tasks.cephadm.mon.c:Stopped mon.c 2024-09-17T09:15:16.360 INFO:tasks.cephadm.mgr.a:Stopping mgr.a... 2024-09-17T09:15:16.360 DEBUG:teuthology.orchestra.run.smithi098:> sudo systemctl stop ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@mgr.a 2024-09-17T09:15:16.776 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:15:16 smithi098 systemd[1]: Stopping Ceph mgr.a for 7d5e8b1e-74d3-11ef-bceb-c7b262605968... 2024-09-17T09:15:16.776 INFO:journalctl@ceph.mgr.a.smithi098.stdout:Sep 17 09:15:16 smithi098 bash[22914]: debug 2024-09-17T09:15:16.505+0000 7fd4f2a4b640 -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-17T09:15:17.370 DEBUG:teuthology.orchestra.run.smithi098:> sudo pkill -f 'journalctl -f -n 0 -u ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@mgr.a.service' 2024-09-17T09:15:17.392 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T09:15:17.392 INFO:tasks.cephadm.mgr.a:Stopped mgr.a 2024-09-17T09:15:17.392 INFO:tasks.cephadm.mgr.b:Stopping mgr.b... 2024-09-17T09:15:17.392 DEBUG:teuthology.orchestra.run.smithi134:> sudo systemctl stop ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@mgr.b 2024-09-17T09:15:17.772 INFO:journalctl@ceph.mgr.b.smithi134.stdout:Sep 17 09:15:17 smithi134 systemd[1]: Stopping Ceph mgr.b for 7d5e8b1e-74d3-11ef-bceb-c7b262605968... 2024-09-17T09:15:18.353 DEBUG:teuthology.orchestra.run.smithi134:> sudo pkill -f 'journalctl -f -n 0 -u ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@mgr.b.service' 2024-09-17T09:15:18.374 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T09:15:18.374 INFO:tasks.cephadm.mgr.b:Stopped mgr.b 2024-09-17T09:15:18.375 INFO:tasks.cephadm.osd.0:Stopping osd.0... 2024-09-17T09:15:18.375 DEBUG:teuthology.orchestra.run.smithi098:> sudo systemctl stop ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@osd.0 2024-09-17T09:15:18.861 INFO:journalctl@ceph.osd.0.smithi098.stdout:Sep 17 09:15:18 smithi098 systemd[1]: Stopping Ceph osd.0 for 7d5e8b1e-74d3-11ef-bceb-c7b262605968... 2024-09-17T09:15:18.861 INFO:journalctl@ceph.osd.0.smithi098.stdout:Sep 17 09:15:18 smithi098 bash[35119]: debug 2024-09-17T09:15:18.525+0000 7f3c75c49640 -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-17T09:15:18.861 INFO:journalctl@ceph.osd.0.smithi098.stdout:Sep 17 09:15:18 smithi098 bash[35119]: debug 2024-09-17T09:15:18.525+0000 7f3c75c49640 -1 osd.0 64 *** Got signal Terminated *** 2024-09-17T09:15:18.861 INFO:journalctl@ceph.osd.0.smithi098.stdout:Sep 17 09:15:18 smithi098 bash[35119]: debug 2024-09-17T09:15:18.525+0000 7f3c75c49640 -1 osd.0 64 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-17T09:15:24.832 INFO:journalctl@ceph.osd.0.smithi098.stdout:Sep 17 09:15:24 smithi098 bash[49020]: ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968-osd-0 2024-09-17T09:15:24.832 INFO:journalctl@ceph.osd.0.smithi098.stdout:Sep 17 09:15:24 smithi098 bash[49083]: Error response from daemon: No such container: ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968-osd-0 2024-09-17T09:15:26.614 DEBUG:teuthology.orchestra.run.smithi098:> sudo pkill -f 'journalctl -f -n 0 -u ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@osd.0.service' 2024-09-17T09:15:26.654 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T09:15:26.654 INFO:tasks.cephadm.osd.0:Stopped osd.0 2024-09-17T09:15:26.655 INFO:tasks.cephadm.osd.1:Stopping osd.1... 2024-09-17T09:15:26.655 DEBUG:teuthology.orchestra.run.smithi098:> sudo systemctl stop ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@osd.1 2024-09-17T09:15:27.110 INFO:journalctl@ceph.osd.1.smithi098.stdout:Sep 17 09:15:26 smithi098 systemd[1]: Stopping Ceph osd.1 for 7d5e8b1e-74d3-11ef-bceb-c7b262605968... 2024-09-17T09:15:27.110 INFO:journalctl@ceph.osd.1.smithi098.stdout:Sep 17 09:15:26 smithi098 bash[40405]: debug 2024-09-17T09:15:26.832+0000 7ff4397b2640 -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-17T09:15:27.110 INFO:journalctl@ceph.osd.1.smithi098.stdout:Sep 17 09:15:26 smithi098 bash[40405]: debug 2024-09-17T09:15:26.832+0000 7ff4397b2640 -1 osd.1 64 *** Got signal Terminated *** 2024-09-17T09:15:27.110 INFO:journalctl@ceph.osd.1.smithi098.stdout:Sep 17 09:15:26 smithi098 bash[40405]: debug 2024-09-17T09:15:26.832+0000 7ff4397b2640 -1 osd.1 64 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-17T09:15:33.109 INFO:journalctl@ceph.osd.1.smithi098.stdout:Sep 17 09:15:32 smithi098 bash[49212]: ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968-osd-1 2024-09-17T09:15:33.109 INFO:journalctl@ceph.osd.1.smithi098.stdout:Sep 17 09:15:33 smithi098 bash[49276]: Error response from daemon: No such container: ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968-osd-1 2024-09-17T09:15:34.848 DEBUG:teuthology.orchestra.run.smithi098:> sudo pkill -f 'journalctl -f -n 0 -u ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@osd.1.service' 2024-09-17T09:15:34.881 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T09:15:34.882 INFO:tasks.cephadm.osd.1:Stopped osd.1 2024-09-17T09:15:34.882 INFO:tasks.cephadm.osd.2:Stopping osd.2... 2024-09-17T09:15:34.882 DEBUG:teuthology.orchestra.run.smithi134:> sudo systemctl stop ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@osd.2 2024-09-17T09:15:35.292 INFO:journalctl@ceph.osd.2.smithi134.stdout:Sep 17 09:15:34 smithi134 systemd[1]: Stopping Ceph osd.2 for 7d5e8b1e-74d3-11ef-bceb-c7b262605968... 2024-09-17T09:15:35.292 INFO:journalctl@ceph.osd.2.smithi134.stdout:Sep 17 09:15:35 smithi134 bash[27182]: debug 2024-09-17T09:15:35.035+0000 7efc50bd4640 -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-17T09:15:35.292 INFO:journalctl@ceph.osd.2.smithi134.stdout:Sep 17 09:15:35 smithi134 bash[27182]: debug 2024-09-17T09:15:35.035+0000 7efc50bd4640 -1 osd.2 64 *** Got signal Terminated *** 2024-09-17T09:15:35.292 INFO:journalctl@ceph.osd.2.smithi134.stdout:Sep 17 09:15:35 smithi134 bash[27182]: debug 2024-09-17T09:15:35.035+0000 7efc50bd4640 -1 osd.2 64 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-17T09:15:41.291 INFO:journalctl@ceph.osd.2.smithi134.stdout:Sep 17 09:15:40 smithi134 bash[36168]: ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968-osd-2 2024-09-17T09:15:41.292 INFO:journalctl@ceph.osd.2.smithi134.stdout:Sep 17 09:15:41 smithi134 bash[36232]: Error response from daemon: No such container: ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968-osd-2 2024-09-17T09:15:42.999 DEBUG:teuthology.orchestra.run.smithi134:> sudo pkill -f 'journalctl -f -n 0 -u ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@osd.2.service' 2024-09-17T09:15:43.025 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T09:15:43.025 INFO:tasks.cephadm.osd.2:Stopped osd.2 2024-09-17T09:15:43.025 INFO:tasks.cephadm.osd.3:Stopping osd.3... 2024-09-17T09:15:43.026 DEBUG:teuthology.orchestra.run.smithi134:> sudo systemctl stop ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@osd.3 2024-09-17T09:15:43.292 INFO:journalctl@ceph.osd.3.smithi134.stdout:Sep 17 09:15:43 smithi134 systemd[1]: Stopping Ceph osd.3 for 7d5e8b1e-74d3-11ef-bceb-c7b262605968... 2024-09-17T09:15:43.292 INFO:journalctl@ceph.osd.3.smithi134.stdout:Sep 17 09:15:43 smithi134 bash[32454]: debug 2024-09-17T09:15:43.211+0000 7f67ac1e2640 -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-17T09:15:43.292 INFO:journalctl@ceph.osd.3.smithi134.stdout:Sep 17 09:15:43 smithi134 bash[32454]: debug 2024-09-17T09:15:43.211+0000 7f67ac1e2640 -1 osd.3 64 *** Got signal Terminated *** 2024-09-17T09:15:43.292 INFO:journalctl@ceph.osd.3.smithi134.stdout:Sep 17 09:15:43 smithi134 bash[32454]: debug 2024-09-17T09:15:43.211+0000 7f67ac1e2640 -1 osd.3 64 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-17T09:15:45.792 INFO:journalctl@ceph.osd.3.smithi134.stdout:Sep 17 09:15:45 smithi134 bash[32454]: debug 2024-09-17T09:15:45.407+0000 7f67a47ee640 -1 osd.3 64 heartbeat_check: no reply from 172.21.15.98:6806 osd.0 since back 2024-09-17T09:15:23.159366+0000 front 2024-09-17T09:15:23.159524+0000 (oldest deadline 2024-09-17T09:15:44.859150+0000) 2024-09-17T09:15:46.791 INFO:journalctl@ceph.osd.3.smithi134.stdout:Sep 17 09:15:46 smithi134 bash[32454]: debug 2024-09-17T09:15:46.431+0000 7f67a47ee640 -1 osd.3 64 heartbeat_check: no reply from 172.21.15.98:6806 osd.0 since back 2024-09-17T09:15:23.159366+0000 front 2024-09-17T09:15:23.159524+0000 (oldest deadline 2024-09-17T09:15:44.859150+0000) 2024-09-17T09:15:47.792 INFO:journalctl@ceph.osd.3.smithi134.stdout:Sep 17 09:15:47 smithi134 bash[32454]: debug 2024-09-17T09:15:47.475+0000 7f67a47ee640 -1 osd.3 64 heartbeat_check: no reply from 172.21.15.98:6806 osd.0 since back 2024-09-17T09:15:23.159366+0000 front 2024-09-17T09:15:23.159524+0000 (oldest deadline 2024-09-17T09:15:44.859150+0000) 2024-09-17T09:15:49.435 INFO:journalctl@ceph.osd.3.smithi134.stdout:Sep 17 09:15:49 smithi134 bash[36364]: ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968-osd-3 2024-09-17T09:15:49.435 INFO:journalctl@ceph.osd.3.smithi134.stdout:Sep 17 09:15:49 smithi134 bash[36428]: Error response from daemon: No such container: ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968-osd-3 2024-09-17T09:15:50.985 DEBUG:teuthology.orchestra.run.smithi134:> sudo pkill -f 'journalctl -f -n 0 -u ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@osd.3.service' 2024-09-17T09:15:51.034 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T09:15:51.035 INFO:tasks.cephadm.osd.3:Stopped osd.3 2024-09-17T09:15:51.035 INFO:tasks.cephadm.osd.4:Stopping osd.4... 2024-09-17T09:15:51.035 DEBUG:teuthology.orchestra.run.smithi165:> sudo systemctl stop ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@osd.4 2024-09-17T09:15:51.060 DEBUG:teuthology.orchestra.run.smithi165:> sudo pkill -f 'journalctl -f -n 0 -u ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@osd.4.service' 2024-09-17T09:15:51.126 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T09:15:51.126 INFO:tasks.cephadm.osd.4:Stopped osd.4 2024-09-17T09:15:51.127 INFO:tasks.cephadm.osd.5:Stopping osd.5... 2024-09-17T09:15:51.127 DEBUG:teuthology.orchestra.run.smithi165:> sudo systemctl stop ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@osd.5 2024-09-17T09:15:51.200 DEBUG:teuthology.orchestra.run.smithi165:> sudo pkill -f 'journalctl -f -n 0 -u ceph-7d5e8b1e-74d3-11ef-bceb-c7b262605968@osd.5.service' 2024-09-17T09:15:51.272 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T09:15:51.273 INFO:tasks.cephadm.osd.5:Stopped osd.5 2024-09-17T09:15:51.273 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-17T09:15:51.397 INFO:teuthology.orchestra.run.smithi098.stdout:Deleting cluster with fsid: 7d5e8b1e-74d3-11ef-bceb-c7b262605968 2024-09-17T09:15:53.787 DEBUG:teuthology.orchestra.run.smithi134:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-17T09:15:53.911 INFO:teuthology.orchestra.run.smithi134.stdout:Deleting cluster with fsid: 7d5e8b1e-74d3-11ef-bceb-c7b262605968 2024-09-17T09:15:56.327 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-17T09:15:56.447 INFO:teuthology.orchestra.run.smithi165.stdout:Deleting cluster with fsid: 7d5e8b1e-74d3-11ef-bceb-c7b262605968 2024-09-17T09:15:57.986 DEBUG:teuthology.orchestra.run.smithi098:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T09:15:58.000 DEBUG:teuthology.orchestra.run.smithi134:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T09:15:58.014 DEBUG:teuthology.orchestra.run.smithi165:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T09:15:58.026 INFO:tasks.cephadm:Archiving crash dumps... 2024-09-17T09:15:58.028 DEBUG:teuthology.misc:Transferring archived files from smithi098:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908258/remote/smithi098/crash 2024-09-17T09:15:58.033 DEBUG:teuthology.orchestra.run.smithi098:> sudo tar c -f - -C /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/crash -- . 2024-09-17T09:15:58.055 INFO:teuthology.orchestra.run.smithi098.stderr:tar: /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-17T09:15:58.055 INFO:teuthology.orchestra.run.smithi098.stderr:tar: Error is not recoverable: exiting now 2024-09-17T09:15:58.057 DEBUG:teuthology.misc:Transferring archived files from smithi134:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908258/remote/smithi134/crash 2024-09-17T09:15:58.058 DEBUG:teuthology.orchestra.run.smithi134:> sudo tar c -f - -C /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/crash -- . 2024-09-17T09:15:58.069 INFO:teuthology.orchestra.run.smithi134.stderr:tar: /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-17T09:15:58.070 INFO:teuthology.orchestra.run.smithi134.stderr:tar: Error is not recoverable: exiting now 2024-09-17T09:15:58.072 DEBUG:teuthology.misc:Transferring archived files from smithi165:/var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908258/remote/smithi165/crash 2024-09-17T09:15:58.072 DEBUG:teuthology.orchestra.run.smithi165:> sudo tar c -f - -C /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/crash -- . 2024-09-17T09:15:58.083 INFO:teuthology.orchestra.run.smithi165.stderr:tar: /var/lib/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-17T09:15:58.083 INFO:teuthology.orchestra.run.smithi165.stderr:tar: Error is not recoverable: exiting now 2024-09-17T09:15:58.084 INFO:tasks.cephadm:Checking cluster log for badness... 2024-09-17T09:15:58.084 DEBUG:teuthology.orchestra.run.smithi098:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | egrep -v 'mons down' | egrep -v 'mon down' | egrep -v 'out of quorum' | egrep -v CEPHADM_STRAY_HOST | egrep -v CEPHADM_STRAY_DAEMON | egrep -v CEPHADM_FAILED_DAEMON | head -n 1 2024-09-17T09:15:58.112 INFO:teuthology.orchestra.run.smithi098.stderr:grep: /var/log/ceph/7d5e8b1e-74d3-11ef-bceb-c7b262605968/ceph.log: No such file or directory 2024-09-17T09:15:58.114 INFO:tasks.cephadm:Compressing logs... 2024-09-17T09:15:58.114 DEBUG:teuthology.orchestra.run.smithi098:> sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-17T09:15:58.158 DEBUG:teuthology.orchestra.run.smithi134:> sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-17T09:15:58.160 DEBUG:teuthology.orchestra.run.smithi165:> sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-17T09:15:58.166 INFO:teuthology.orchestra.run.smithi098.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-17T09:15:58.171 INFO:teuthology.orchestra.run.smithi134.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-17T09:15:58.173 INFO:teuthology.orchestra.run.smithi165.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-17T09:15:58.769 INFO:tasks.cephadm:Archiving logs... 2024-09-17T09:15:58.769 DEBUG:teuthology.misc:Transferring archived files from smithi098:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908258/remote/smithi098/log 2024-09-17T09:15:58.770 DEBUG:teuthology.orchestra.run.smithi098:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-17T09:15:58.918 DEBUG:teuthology.misc:Transferring archived files from smithi134:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908258/remote/smithi134/log 2024-09-17T09:15:58.919 DEBUG:teuthology.orchestra.run.smithi134:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-17T09:15:58.972 DEBUG:teuthology.misc:Transferring archived files from smithi165:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908258/remote/smithi165/log 2024-09-17T09:15:58.973 DEBUG:teuthology.orchestra.run.smithi165:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-17T09:15:59.011 INFO:tasks.cephadm:Removing cluster... 2024-09-17T09:15:59.011 DEBUG:teuthology.orchestra.run.smithi098:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 --force 2024-09-17T09:15:59.130 INFO:teuthology.orchestra.run.smithi098.stdout:Deleting cluster with fsid: 7d5e8b1e-74d3-11ef-bceb-c7b262605968 2024-09-17T09:16:00.447 DEBUG:teuthology.orchestra.run.smithi134:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 --force 2024-09-17T09:16:00.571 INFO:teuthology.orchestra.run.smithi134.stdout:Deleting cluster with fsid: 7d5e8b1e-74d3-11ef-bceb-c7b262605968 2024-09-17T09:16:01.920 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 7d5e8b1e-74d3-11ef-bceb-c7b262605968 --force 2024-09-17T09:16:02.044 INFO:teuthology.orchestra.run.smithi165.stdout:Deleting cluster with fsid: 7d5e8b1e-74d3-11ef-bceb-c7b262605968 2024-09-17T09:16:03.382 INFO:tasks.cephadm:Removing cephadm ... 2024-09-17T09:16:03.382 DEBUG:teuthology.orchestra.run.smithi098:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-17T09:16:03.389 DEBUG:teuthology.orchestra.run.smithi134:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-17T09:16:03.395 DEBUG:teuthology.orchestra.run.smithi165:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-17T09:16:03.400 INFO:tasks.cephadm:Teardown complete 2024-09-17T09:16:03.400 DEBUG:teuthology.run_tasks:Unwinding manager install 2024-09-17T09:16:03.410 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-17T09:16:03.410 DEBUG:teuthology.orchestra.run.smithi098:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-17T09:16:03.434 DEBUG:teuthology.orchestra.run.smithi134:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-17T09:16:03.439 DEBUG:teuthology.orchestra.run.smithi165:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-17T09:16:03.520 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-09-17T09:16:03.529 INFO:teuthology.task.clock:Checking final clock skew... 2024-09-17T09:16:03.529 DEBUG:teuthology.orchestra.run.smithi098:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-17T09:16:03.532 DEBUG:teuthology.orchestra.run.smithi134:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-17T09:16:03.534 DEBUG:teuthology.orchestra.run.smithi165:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-17T09:16:03.543 INFO:teuthology.orchestra.run.smithi098.stdout: remote refid st t when poll reach delay offset jitter 2024-09-17T09:16:03.543 INFO:teuthology.orchestra.run.smithi098.stdout:============================================================================== 2024-09-17T09:16:03.543 INFO:teuthology.orchestra.run.smithi098.stdout:*hv01.front.sepi 67.205.162.81 3 u 33 64 377 0.067 -0.827 0.498 2024-09-17T09:16:03.543 INFO:teuthology.orchestra.run.smithi098.stdout:+hv02.front.sepi 96.245.170.99 3 u 30 64 377 0.071 +0.908 0.845 2024-09-17T09:16:03.543 INFO:teuthology.orchestra.run.smithi098.stdout:+hv03.front.sepi 74.6.168.72 3 u 28 64 377 0.089 -2.724 0.662 2024-09-17T09:16:03.544 INFO:teuthology.orchestra.run.smithi098.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-09-17T09:16:03.545 INFO:teuthology.orchestra.run.smithi134.stdout: remote refid st t when poll reach delay offset jitter 2024-09-17T09:16:03.545 INFO:teuthology.orchestra.run.smithi134.stdout:============================================================================== 2024-09-17T09:16:03.545 INFO:teuthology.orchestra.run.smithi134.stdout:*hv01.front.sepi 67.205.162.81 3 u 31 64 377 0.101 -6.494 3.726 2024-09-17T09:16:03.545 INFO:teuthology.orchestra.run.smithi134.stdout:+hv02.front.sepi 96.245.170.99 3 u 30 64 377 0.090 +0.101 3.540 2024-09-17T09:16:03.545 INFO:teuthology.orchestra.run.smithi134.stdout:+hv03.front.sepi 74.6.168.72 3 u 24 64 377 0.094 -8.413 3.328 2024-09-17T09:16:03.545 INFO:teuthology.orchestra.run.smithi134.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-09-17T09:16:03.549 INFO:teuthology.orchestra.run.smithi165.stdout: remote refid st t when poll reach delay offset jitter 2024-09-17T09:16:03.549 INFO:teuthology.orchestra.run.smithi165.stdout:============================================================================== 2024-09-17T09:16:03.549 INFO:teuthology.orchestra.run.smithi165.stdout:+hv01.front.sepi 67.205.162.81 3 u 28 64 377 0.090 -0.224 2.031 2024-09-17T09:16:03.549 INFO:teuthology.orchestra.run.smithi165.stdout:*hv02.front.sepi 96.245.170.99 3 u 30 64 377 0.087 -0.895 1.198 2024-09-17T09:16:03.549 INFO:teuthology.orchestra.run.smithi165.stdout:+hv03.front.sepi 74.6.168.72 3 u 29 64 377 0.103 -4.370 1.092 2024-09-17T09:16:03.549 INFO:teuthology.orchestra.run.smithi165.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-09-17T09:16:03.550 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-09-17T09:16:03.558 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-09-17T09:16:03.559 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-09-17T09:16:03.566 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-09-17T09:16:03.581 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-09-17T09:16:03.593 INFO:teuthology.task.internal:Duration was 1410.381918 seconds 2024-09-17T09:16:03.593 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-09-17T09:16:03.606 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-09-17T09:16:03.606 DEBUG:teuthology.orchestra.run.smithi098:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-17T09:16:03.609 DEBUG:teuthology.orchestra.run.smithi134:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-17T09:16:03.611 DEBUG:teuthology.orchestra.run.smithi165:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-17T09:16:03.646 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-09-17T09:16:03.646 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi098.front.sepia.ceph.com 2024-09-17T09:16:03.647 DEBUG:teuthology.orchestra.run.smithi098:> 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-17T09:16:03.693 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi134.front.sepia.ceph.com 2024-09-17T09:16:03.693 DEBUG:teuthology.orchestra.run.smithi134:> 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-17T09:16:03.703 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi165.front.sepia.ceph.com 2024-09-17T09:16:03.703 DEBUG:teuthology.orchestra.run.smithi165:> 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-17T09:16:03.713 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-09-17T09:16:03.714 DEBUG:teuthology.orchestra.run.smithi098:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-17T09:16:03.738 DEBUG:teuthology.orchestra.run.smithi134:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-17T09:16:03.746 DEBUG:teuthology.orchestra.run.smithi165:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-17T09:16:03.785 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-09-17T09:16:03.786 DEBUG:teuthology.orchestra.run.smithi098:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-17T09:16:03.818 DEBUG:teuthology.orchestra.run.smithi134:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-17T09:16:03.826 DEBUG:teuthology.orchestra.run.smithi165:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-17T09:16:03.902 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-09-17T09:16:03.912 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-09-17T09:16:03.912 DEBUG:teuthology.orchestra.run.smithi098:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-17T09:16:03.925 DEBUG:teuthology.orchestra.run.smithi134:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-17T09:16:03.937 DEBUG:teuthology.orchestra.run.smithi165:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-17T09:16:03.948 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-09-17T09:16:03.959 DEBUG:teuthology.orchestra.run.smithi098:> 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-17T09:16:03.970 DEBUG:teuthology.orchestra.run.smithi134:> 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-17T09:16:03.978 INFO:teuthology.orchestra.run.smithi098.stdout:kernel.core_pattern = core 2024-09-17T09:16:03.983 DEBUG:teuthology.orchestra.run.smithi165:> 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-17T09:16:03.991 INFO:teuthology.orchestra.run.smithi134.stdout:kernel.core_pattern = core 2024-09-17T09:16:04.001 INFO:teuthology.orchestra.run.smithi165.stdout:kernel.core_pattern = core 2024-09-17T09:16:04.027 DEBUG:teuthology.orchestra.run.smithi098:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-17T09:16:04.048 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T09:16:04.049 DEBUG:teuthology.orchestra.run.smithi134:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-17T09:16:04.060 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T09:16:04.061 DEBUG:teuthology.orchestra.run.smithi165:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-17T09:16:04.073 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T09:16:04.074 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-09-17T09:16:04.085 INFO:teuthology.task.internal:Transferring archived files... 2024-09-17T09:16:04.086 DEBUG:teuthology.misc:Transferring archived files from smithi098:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908258/remote/smithi098 2024-09-17T09:16:04.086 DEBUG:teuthology.orchestra.run.smithi098:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-17T09:16:04.120 DEBUG:teuthology.misc:Transferring archived files from smithi134:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908258/remote/smithi134 2024-09-17T09:16:04.121 DEBUG:teuthology.orchestra.run.smithi134:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-17T09:16:04.143 DEBUG:teuthology.misc:Transferring archived files from smithi165:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908258/remote/smithi165 2024-09-17T09:16:04.143 DEBUG:teuthology.orchestra.run.smithi165:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-17T09:16:04.168 INFO:teuthology.task.internal:Removing archive directory... 2024-09-17T09:16:04.168 DEBUG:teuthology.orchestra.run.smithi098:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-17T09:16:04.171 DEBUG:teuthology.orchestra.run.smithi134:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-17T09:16:04.183 DEBUG:teuthology.orchestra.run.smithi165:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-17T09:16:04.211 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-09-17T09:16:04.241 INFO:teuthology.task.internal:Not uploading archives. 2024-09-17T09:16:04.241 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-09-17T09:16:04.289 INFO:teuthology.task.internal:Tidying up after the test... 2024-09-17T09:16:04.290 DEBUG:teuthology.orchestra.run.smithi098:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-17T09:16:04.292 DEBUG:teuthology.orchestra.run.smithi134:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-17T09:16:04.295 DEBUG:teuthology.orchestra.run.smithi165:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-17T09:16:04.296 INFO:teuthology.orchestra.run.smithi098.stdout: 658622 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 17 09:16 /home/ubuntu/cephtest 2024-09-17T09:16:04.298 INFO:teuthology.orchestra.run.smithi134.stdout: 658639 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 17 09:16 /home/ubuntu/cephtest 2024-09-17T09:16:04.301 INFO:teuthology.orchestra.run.smithi165.stdout: 658639 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 17 09:16 /home/ubuntu/cephtest 2024-09-17T09:16:04.303 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-09-17T09:16:04.345 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-09-17T09:16:04.369 INFO:teuthology.run:Summary data: description: orch/cephadm/workunits/{0-distro/ubuntu_22.04 agent/off mon_election/classic task/test_host_drain} duration: 1410.3819179534912 flavor: default owner: scheduled_teuthology@teuthology success: true 2024-09-17T09:16:04.369 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-17T09:16:04.464 INFO:teuthology.run:pass