2024-03-30T13:36:54.532 INFO:root:teuthology version: 0.0.1.dev262+ge691533 2024-03-30T13:36:54.532 DEBUG:teuthology.run:Teuthology command: teuthology --archive /home/teuthworker/archive/teuthology-2024-03-29_21:08:02-orch-squid-distro-default-smithi/7630119 --description orch/cephadm/workunits/{0-distro/ubuntu_22.04 agent/on mon_election/connectivity task/test_host_drain} --owner scheduled_teuthology@teuthology --verbose --name teuthology-2024-03-29_21:08:02-orch-squid-distro-default-smithi -- /home/teuthworker/archive/teuthology-2024-03-29_21:08:02-orch-squid-distro-default-smithi/7630119/orig.config.yaml 2024-03-30T13:36:54.562 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-03-30T13:36:54.647 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-03-29_21:08:02-orch-squid-distro-default-smithi/7630119 branch: squid description: orch/cephadm/workunits/{0-distro/ubuntu_22.04 agent/on mon_election/connectivity task/test_host_drain} email: ceph-qa@ceph.com first_in_suite: false job_id: '7630119' kernel: kdb: true sha1: distro ktype: distro last_in_suite: false machine_type: smithi name: teuthology-2024-03-29_21:08:02-orch-squid-distro-default-smithi no_nested_subset: false nuke-on-error: true os_type: ubuntu os_version: '22.04' overrides: admin_socket: branch: squid ceph: conf: global: mon election default strategy: 3 mgr: debug mgr: 20 debug ms: 1 mgr/cephadm/use_agent: true 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 sha1: 4e50bbcdd1630c7760b708f3a5b4d38a121e66cb ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 4e50bbcdd1630c7760b708f3a5b4d38a121e66cb workunit: branch: squid sha1: 5af0400050a123dc31f105425174f106e057276a owner: scheduled_teuthology@teuthology priority: 100 repo: https://git.ceph.com/ceph.git roles: - - host.a - mon.a - mgr.a - osd.0 - osd.1 - - host.b - mon.b - mgr.b - osd.2 - osd.3 - - host.c - mon.c - osd.4 - osd.5 seed: 8777 sha1: 4e50bbcdd1630c7760b708f3a5b4d38a121e66cb sleep_before_teardown: 0 subset: 43/64 suite: orch suite_branch: squid suite_path: /home/teuthworker/src/git.ceph.com_ceph_5af0400050a123dc31f105425174f106e057276a/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: 5af0400050a123dc31f105425174f106e057276a targets: smithi026.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBM4L8ux2bqU61lBPIw8up/RGurEw9IiqiLQGrxaE5PkzraHPE6pGnFqa48AmEuu1pCX5iozeQFbK+TBuBXLWhC8= smithi050.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBmhxIkK9Su9k5FdR2AQnDBzEApYzl1X85ssygbxNTw+wc+LG6KGcGKO+xhvUAOWF1X7i3O2y5jKwqJ7rwDBSp0= smithi136.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBOoRu5sqQBiweQ1DbUZU1pq9GpPfcGJSjTkIt1NcAR5LQTBcvOWsHRE2SquSQ5ZGf6rPT78rdBYZaSg5kYIfVRY= 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: e691533f9cbb33d85b2187bba20d7102f098636d timestamp: 2024-03-29_21:08:02 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-03-30T13:36:54.647 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_5af0400050a123dc31f105425174f106e057276a/qa; will attempt to use it 2024-03-30T13:36:54.647 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_5af0400050a123dc31f105425174f106e057276a/qa/tasks 2024-03-30T13:36:54.648 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-03-30T13:36:54.649 INFO:teuthology.task.internal:Checking packages... 2024-03-30T13:36:54.672 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash '4e50bbcdd1630c7760b708f3a5b4d38a121e66cb' 2024-03-30T13:36:54.672 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-03-30T13:36:54.672 INFO:teuthology.packaging:ref: None 2024-03-30T13:36:54.672 INFO:teuthology.packaging:tag: None 2024-03-30T13:36:54.672 INFO:teuthology.packaging:branch: squid 2024-03-30T13:36:54.672 INFO:teuthology.packaging:sha1: 4e50bbcdd1630c7760b708f3a5b4d38a121e66cb 2024-03-30T13:36:54.672 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&ref=squid 2024-03-30T13:36:54.842 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-1973-g5af04000-1jammy 2024-03-30T13:36:54.843 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-03-30T13:36:54.851 INFO:teuthology.task.internal:no buildpackages task found 2024-03-30T13:36:54.851 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-03-30T13:36:54.887 INFO:teuthology.task.internal:Saving configuration 2024-03-30T13:36:54.901 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-03-30T13:36:54.912 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-03-30T13:36:54.939 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi026.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-03-29_21:08:02-orch-squid-distro-default-smithi/7630119', '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-03-30 13:31:23.908957', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINw3m1srPfU4umHZ4ONte4S4owKldn8rKFFTyAnAluUY'} 2024-03-30T13:36:54.963 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi050.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-03-29_21:08:02-orch-squid-distro-default-smithi/7630119', '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-03-30 13:31:23.906963', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJe0PuQEmkVM8t3fbTW35alBJskDCJcPSTbztYY8SWDl'} 2024-03-30T13:36:54.985 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi136.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-03-29_21:08:02-orch-squid-distro-default-smithi/7630119', '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-03-30 13:31:23.910695', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILTl+GiHCcKyVqdR6984l3GoGy3eIinafztUcy0THcU1'} 2024-03-30T13:36:54.985 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-03-30T13:36:54.992 INFO:teuthology.task.internal:roles: ubuntu@smithi026.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-03-30T13:36:54.992 INFO:teuthology.task.internal:roles: ubuntu@smithi050.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-03-30T13:36:54.992 INFO:teuthology.task.internal:roles: ubuntu@smithi136.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-03-30T13:36:54.992 INFO:teuthology.run_tasks:Running task console_log... 2024-03-30T13:36:55.120 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f6f79af9280>, signals=[15]) 2024-03-30T13:36:55.121 INFO:teuthology.run_tasks:Running task internal.connect... 2024-03-30T13:36:55.128 INFO:teuthology.task.internal:Opening connections... 2024-03-30T13:36:55.128 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi026.front.sepia.ceph.com 2024-03-30T13:36:55.130 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi026.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-30T13:36:55.214 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi050.front.sepia.ceph.com 2024-03-30T13:36:55.214 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi050.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-30T13:36:55.292 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi136.front.sepia.ceph.com 2024-03-30T13:36:55.293 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi136.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-30T13:36:55.369 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-03-30T13:36:55.376 DEBUG:teuthology.orchestra.run.smithi026:> uname -m 2024-03-30T13:36:55.382 INFO:teuthology.orchestra.run.smithi026.stdout:x86_64 2024-03-30T13:36:55.382 DEBUG:teuthology.orchestra.run.smithi026:> cat /etc/os-release 2024-03-30T13:36:55.430 INFO:teuthology.orchestra.run.smithi026.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-03-30T13:36:55.431 INFO:teuthology.orchestra.run.smithi026.stdout:NAME="Ubuntu" 2024-03-30T13:36:55.431 INFO:teuthology.orchestra.run.smithi026.stdout:VERSION_ID="22.04" 2024-03-30T13:36:55.431 INFO:teuthology.orchestra.run.smithi026.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-03-30T13:36:55.431 INFO:teuthology.orchestra.run.smithi026.stdout:VERSION_CODENAME=jammy 2024-03-30T13:36:55.431 INFO:teuthology.orchestra.run.smithi026.stdout:ID=ubuntu 2024-03-30T13:36:55.431 INFO:teuthology.orchestra.run.smithi026.stdout:ID_LIKE=debian 2024-03-30T13:36:55.431 INFO:teuthology.orchestra.run.smithi026.stdout:HOME_URL="https://www.ubuntu.com/" 2024-03-30T13:36:55.431 INFO:teuthology.orchestra.run.smithi026.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-03-30T13:36:55.431 INFO:teuthology.orchestra.run.smithi026.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-03-30T13:36:55.431 INFO:teuthology.orchestra.run.smithi026.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-03-30T13:36:55.431 INFO:teuthology.orchestra.run.smithi026.stdout:UBUNTU_CODENAME=jammy 2024-03-30T13:36:55.432 INFO:teuthology.lock.ops:Updating smithi026.front.sepia.ceph.com on lock server 2024-03-30T13:36:55.458 DEBUG:teuthology.orchestra.run.smithi050:> uname -m 2024-03-30T13:36:55.464 INFO:teuthology.orchestra.run.smithi050.stdout:x86_64 2024-03-30T13:36:55.465 DEBUG:teuthology.orchestra.run.smithi050:> cat /etc/os-release 2024-03-30T13:36:55.513 INFO:teuthology.orchestra.run.smithi050.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-03-30T13:36:55.514 INFO:teuthology.orchestra.run.smithi050.stdout:NAME="Ubuntu" 2024-03-30T13:36:55.514 INFO:teuthology.orchestra.run.smithi050.stdout:VERSION_ID="22.04" 2024-03-30T13:36:55.514 INFO:teuthology.orchestra.run.smithi050.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-03-30T13:36:55.514 INFO:teuthology.orchestra.run.smithi050.stdout:VERSION_CODENAME=jammy 2024-03-30T13:36:55.514 INFO:teuthology.orchestra.run.smithi050.stdout:ID=ubuntu 2024-03-30T13:36:55.514 INFO:teuthology.orchestra.run.smithi050.stdout:ID_LIKE=debian 2024-03-30T13:36:55.514 INFO:teuthology.orchestra.run.smithi050.stdout:HOME_URL="https://www.ubuntu.com/" 2024-03-30T13:36:55.514 INFO:teuthology.orchestra.run.smithi050.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-03-30T13:36:55.514 INFO:teuthology.orchestra.run.smithi050.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-03-30T13:36:55.514 INFO:teuthology.orchestra.run.smithi050.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-03-30T13:36:55.514 INFO:teuthology.orchestra.run.smithi050.stdout:UBUNTU_CODENAME=jammy 2024-03-30T13:36:55.515 INFO:teuthology.lock.ops:Updating smithi050.front.sepia.ceph.com on lock server 2024-03-30T13:36:55.532 DEBUG:teuthology.orchestra.run.smithi136:> uname -m 2024-03-30T13:36:55.537 INFO:teuthology.orchestra.run.smithi136.stdout:x86_64 2024-03-30T13:36:55.538 DEBUG:teuthology.orchestra.run.smithi136:> cat /etc/os-release 2024-03-30T13:36:55.586 INFO:teuthology.orchestra.run.smithi136.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-03-30T13:36:55.586 INFO:teuthology.orchestra.run.smithi136.stdout:NAME="Ubuntu" 2024-03-30T13:36:55.586 INFO:teuthology.orchestra.run.smithi136.stdout:VERSION_ID="22.04" 2024-03-30T13:36:55.586 INFO:teuthology.orchestra.run.smithi136.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-03-30T13:36:55.586 INFO:teuthology.orchestra.run.smithi136.stdout:VERSION_CODENAME=jammy 2024-03-30T13:36:55.587 INFO:teuthology.orchestra.run.smithi136.stdout:ID=ubuntu 2024-03-30T13:36:55.587 INFO:teuthology.orchestra.run.smithi136.stdout:ID_LIKE=debian 2024-03-30T13:36:55.587 INFO:teuthology.orchestra.run.smithi136.stdout:HOME_URL="https://www.ubuntu.com/" 2024-03-30T13:36:55.587 INFO:teuthology.orchestra.run.smithi136.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-03-30T13:36:55.587 INFO:teuthology.orchestra.run.smithi136.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-03-30T13:36:55.587 INFO:teuthology.orchestra.run.smithi136.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-03-30T13:36:55.587 INFO:teuthology.orchestra.run.smithi136.stdout:UBUNTU_CODENAME=jammy 2024-03-30T13:36:55.587 INFO:teuthology.lock.ops:Updating smithi136.front.sepia.ceph.com on lock server 2024-03-30T13:36:55.607 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-03-30T13:36:55.617 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-03-30T13:36:55.637 INFO:teuthology.task.internal:Checking for old test directory... 2024-03-30T13:36:55.638 DEBUG:teuthology.orchestra.run.smithi026:> test '!' -e /home/ubuntu/cephtest 2024-03-30T13:36:55.640 DEBUG:teuthology.orchestra.run.smithi050:> test '!' -e /home/ubuntu/cephtest 2024-03-30T13:36:55.642 DEBUG:teuthology.orchestra.run.smithi136:> test '!' -e /home/ubuntu/cephtest 2024-03-30T13:36:55.648 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-03-30T13:36:55.663 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-03-30T13:36:55.663 DEBUG:teuthology.orchestra.run.smithi026:> test -z $(ls -A /var/lib/ceph) 2024-03-30T13:36:55.688 DEBUG:teuthology.orchestra.run.smithi050:> test -z $(ls -A /var/lib/ceph) 2024-03-30T13:36:55.690 DEBUG:teuthology.orchestra.run.smithi136:> test -z $(ls -A /var/lib/ceph) 2024-03-30T13:36:55.698 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-03-30T13:36:55.766 INFO:teuthology.run_tasks:Running task kernel... 2024-03-30T13:36:55.781 INFO:teuthology.task.kernel:normalize config orig: {'kdb': True, 'sha1': 'distro'} 2024-03-30T13:36:55.782 INFO:teuthology.task.kernel:config {'host.a': {'kdb': True, 'sha1': 'distro'}, 'host.b': {'kdb': True, 'sha1': 'distro'}, 'host.c': {'kdb': True, 'sha1': 'distro'}}, timeout 300 2024-03-30T13:36:55.782 DEBUG:teuthology.orchestra.run.smithi026:> test -f /run/.containerenv -o -f /.dockerenv 2024-03-30T13:36:55.783 DEBUG:teuthology.orchestra.run.smithi050:> test -f /run/.containerenv -o -f /.dockerenv 2024-03-30T13:36:55.783 DEBUG:teuthology.orchestra.run.smithi136:> test -f /run/.containerenv -o -f /.dockerenv 2024-03-30T13:36:55.788 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-30T13:36:55.788 DEBUG:teuthology.orchestra.run.smithi026:> uname -r 2024-03-30T13:36:55.789 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-30T13:36:55.789 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-30T13:36:55.790 DEBUG:teuthology.orchestra.run.smithi136:> uname -r 2024-03-30T13:36:55.790 DEBUG:teuthology.orchestra.run.smithi050:> uname -r 2024-03-30T13:36:55.835 INFO:teuthology.orchestra.run.smithi026.stdout:5.15.0-56-generic 2024-03-30T13:36:55.835 INFO:teuthology.task.kernel:Running kernel on smithi026: 5.15.0-56-generic 2024-03-30T13:36:55.835 DEBUG:teuthology.orchestra.run.smithi026:> sudo apt-get clean 2024-03-30T13:36:55.837 INFO:teuthology.orchestra.run.smithi050.stdout:5.15.0-56-generic 2024-03-30T13:36:55.837 INFO:teuthology.task.kernel:Running kernel on smithi050: 5.15.0-56-generic 2024-03-30T13:36:55.837 DEBUG:teuthology.orchestra.run.smithi050:> sudo apt-get clean 2024-03-30T13:36:55.839 INFO:teuthology.orchestra.run.smithi136.stdout:5.15.0-56-generic 2024-03-30T13:36:55.839 INFO:teuthology.task.kernel:Running kernel on smithi136: 5.15.0-56-generic 2024-03-30T13:36:55.839 DEBUG:teuthology.orchestra.run.smithi136:> sudo apt-get clean 2024-03-30T13:36:55.965 DEBUG:teuthology.orchestra.run.smithi026:> sudo apt-get update 2024-03-30T13:36:55.969 DEBUG:teuthology.orchestra.run.smithi050:> sudo apt-get update 2024-03-30T13:36:56.011 DEBUG:teuthology.orchestra.run.smithi136:> sudo apt-get update 2024-03-30T13:36:56.108 INFO:teuthology.orchestra.run.smithi050.stdout:Get:1 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-03-30T13:36:56.117 INFO:teuthology.orchestra.run.smithi026.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-03-30T13:36:56.124 INFO:teuthology.orchestra.run.smithi026.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-03-30T13:36:56.124 INFO:teuthology.orchestra.run.smithi026.stdout:Get:3 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-03-30T13:36:56.159 INFO:teuthology.orchestra.run.smithi136.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-03-30T13:36:56.189 INFO:teuthology.orchestra.run.smithi136.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-03-30T13:36:56.204 INFO:teuthology.orchestra.run.smithi026.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-03-30T13:36:56.214 INFO:teuthology.orchestra.run.smithi050.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-03-30T13:36:56.263 INFO:teuthology.orchestra.run.smithi136.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-03-30T13:36:56.264 INFO:teuthology.orchestra.run.smithi136.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-03-30T13:36:56.296 INFO:teuthology.orchestra.run.smithi050.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-03-30T13:36:56.334 INFO:teuthology.orchestra.run.smithi050.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [436 kB] 2024-03-30T13:36:56.367 INFO:teuthology.orchestra.run.smithi026.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,303 kB] 2024-03-30T13:36:56.414 INFO:teuthology.orchestra.run.smithi050.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,303 kB] 2024-03-30T13:36:56.416 INFO:teuthology.orchestra.run.smithi136.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [602 kB] 2024-03-30T13:36:56.452 INFO:teuthology.orchestra.run.smithi026.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [602 kB] 2024-03-30T13:36:56.475 INFO:teuthology.orchestra.run.smithi050.stdout:Get:6 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [233 kB] 2024-03-30T13:36:56.481 INFO:teuthology.orchestra.run.smithi050.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-03-30T13:36:56.481 INFO:teuthology.orchestra.run.smithi050.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,616 kB] 2024-03-30T13:36:56.516 INFO:teuthology.orchestra.run.smithi026.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [436 kB] 2024-03-30T13:36:56.519 INFO:teuthology.orchestra.run.smithi050.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [33.7 kB] 2024-03-30T13:36:56.520 INFO:teuthology.orchestra.run.smithi050.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [271 kB] 2024-03-30T13:36:56.525 INFO:teuthology.orchestra.run.smithi050.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-03-30T13:36:56.525 INFO:teuthology.orchestra.run.smithi050.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [852 kB] 2024-03-30T13:36:56.529 INFO:teuthology.orchestra.run.smithi026.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [233 kB] 2024-03-30T13:36:56.537 INFO:teuthology.orchestra.run.smithi026.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-03-30T13:36:56.538 INFO:teuthology.orchestra.run.smithi026.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [33.7 kB] 2024-03-30T13:36:56.538 INFO:teuthology.orchestra.run.smithi026.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,616 kB] 2024-03-30T13:36:56.545 INFO:teuthology.orchestra.run.smithi050.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [599 kB] 2024-03-30T13:36:56.551 INFO:teuthology.orchestra.run.smithi136.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,519 kB] 2024-03-30T13:36:56.559 INFO:teuthology.orchestra.run.smithi050.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [163 kB] 2024-03-30T13:36:56.563 INFO:teuthology.orchestra.run.smithi050.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-03-30T13:36:56.563 INFO:teuthology.orchestra.run.smithi050.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.1 kB] 2024-03-30T13:36:56.564 INFO:teuthology.orchestra.run.smithi050.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-03-30T13:36:56.590 INFO:teuthology.orchestra.run.smithi026.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,519 kB] 2024-03-30T13:36:56.593 INFO:teuthology.orchestra.run.smithi026.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [271 kB] 2024-03-30T13:36:56.599 INFO:teuthology.orchestra.run.smithi026.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-03-30T13:36:56.600 INFO:teuthology.orchestra.run.smithi026.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [599 kB] 2024-03-30T13:36:56.604 INFO:teuthology.orchestra.run.smithi050.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,476 B] 2024-03-30T13:36:56.604 INFO:teuthology.orchestra.run.smithi050.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-03-30T13:36:56.619 INFO:teuthology.orchestra.run.smithi026.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [852 kB] 2024-03-30T13:36:56.633 INFO:teuthology.orchestra.run.smithi026.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [163 kB] 2024-03-30T13:36:56.636 INFO:teuthology.orchestra.run.smithi026.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-03-30T13:36:56.637 INFO:teuthology.orchestra.run.smithi026.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-03-30T13:36:56.648 INFO:teuthology.orchestra.run.smithi136.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [293 kB] 2024-03-30T13:36:56.648 INFO:teuthology.orchestra.run.smithi050.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-03-30T13:36:56.655 INFO:teuthology.orchestra.run.smithi136.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-03-30T13:36:56.655 INFO:teuthology.orchestra.run.smithi136.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,644 kB] 2024-03-30T13:36:56.691 INFO:teuthology.orchestra.run.smithi136.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,303 kB] 2024-03-30T13:36:56.707 INFO:teuthology.orchestra.run.smithi026.stdout:Get:20 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.1 kB] 2024-03-30T13:36:56.707 INFO:teuthology.orchestra.run.smithi026.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [293 kB] 2024-03-30T13:36:56.708 INFO:teuthology.orchestra.run.smithi026.stdout:Get:22 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,476 B] 2024-03-30T13:36:56.708 INFO:teuthology.orchestra.run.smithi026.stdout:Get:23 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-03-30T13:36:56.708 INFO:teuthology.orchestra.run.smithi136.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [35.3 kB] 2024-03-30T13:36:56.710 INFO:teuthology.orchestra.run.smithi136.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [274 kB] 2024-03-30T13:36:56.713 INFO:teuthology.orchestra.run.smithi026.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-03-30T13:36:56.713 INFO:teuthology.orchestra.run.smithi026.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,644 kB] 2024-03-30T13:36:56.717 INFO:teuthology.orchestra.run.smithi136.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-03-30T13:36:56.718 INFO:teuthology.orchestra.run.smithi136.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [698 kB] 2024-03-30T13:36:56.734 INFO:teuthology.orchestra.run.smithi136.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,060 kB] 2024-03-30T13:36:56.752 INFO:teuthology.orchestra.run.smithi136.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [241 kB] 2024-03-30T13:36:56.757 INFO:teuthology.orchestra.run.smithi136.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-03-30T13:36:56.768 INFO:teuthology.orchestra.run.smithi026.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [35.3 kB] 2024-03-30T13:36:56.770 INFO:teuthology.orchestra.run.smithi136.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [49.6 kB] 2024-03-30T13:36:56.770 INFO:teuthology.orchestra.run.smithi026.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [274 kB] 2024-03-30T13:36:56.770 INFO:teuthology.orchestra.run.smithi136.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [6,028 B] 2024-03-30T13:36:56.771 INFO:teuthology.orchestra.run.smithi136.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [12.0 kB] 2024-03-30T13:36:56.772 INFO:teuthology.orchestra.run.smithi136.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-03-30T13:36:56.772 INFO:teuthology.orchestra.run.smithi136.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.2 kB] 2024-03-30T13:36:56.773 INFO:teuthology.orchestra.run.smithi136.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.1 kB] 2024-03-30T13:36:56.775 INFO:teuthology.orchestra.run.smithi026.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-03-30T13:36:56.776 INFO:teuthology.orchestra.run.smithi026.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,060 kB] 2024-03-30T13:36:56.787 INFO:teuthology.orchestra.run.smithi050.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,518 kB] 2024-03-30T13:36:56.799 INFO:teuthology.orchestra.run.smithi026.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [698 kB] 2024-03-30T13:36:56.806 INFO:teuthology.orchestra.run.smithi136.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.0 kB] 2024-03-30T13:36:56.806 INFO:teuthology.orchestra.run.smithi136.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-03-30T13:36:56.807 INFO:teuthology.orchestra.run.smithi136.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.2 kB] 2024-03-30T13:36:56.811 INFO:teuthology.orchestra.run.smithi026.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [241 kB] 2024-03-30T13:36:56.815 INFO:teuthology.orchestra.run.smithi026.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-03-30T13:36:56.816 INFO:teuthology.orchestra.run.smithi026.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [6,028 B] 2024-03-30T13:36:56.816 INFO:teuthology.orchestra.run.smithi026.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [49.6 kB] 2024-03-30T13:36:56.818 INFO:teuthology.orchestra.run.smithi026.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [12.0 kB] 2024-03-30T13:36:56.818 INFO:teuthology.orchestra.run.smithi026.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-03-30T13:36:56.819 INFO:teuthology.orchestra.run.smithi026.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.2 kB] 2024-03-30T13:36:56.820 INFO:teuthology.orchestra.run.smithi026.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.1 kB] 2024-03-30T13:36:56.831 INFO:teuthology.orchestra.run.smithi136.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.4 kB] 2024-03-30T13:36:56.832 INFO:teuthology.orchestra.run.smithi136.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.2 kB] 2024-03-30T13:36:56.832 INFO:teuthology.orchestra.run.smithi136.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-03-30T13:36:56.837 INFO:teuthology.orchestra.run.smithi026.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.0 kB] 2024-03-30T13:36:56.838 INFO:teuthology.orchestra.run.smithi026.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-03-30T13:36:56.838 INFO:teuthology.orchestra.run.smithi026.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.4 kB] 2024-03-30T13:36:56.839 INFO:teuthology.orchestra.run.smithi026.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.2 kB] 2024-03-30T13:36:56.839 INFO:teuthology.orchestra.run.smithi026.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.2 kB] 2024-03-30T13:36:56.839 INFO:teuthology.orchestra.run.smithi026.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-03-30T13:36:57.092 INFO:teuthology.orchestra.run.smithi050.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [602 kB] 2024-03-30T13:36:57.094 INFO:teuthology.orchestra.run.smithi136.stdout:Get:30 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [436 kB] 2024-03-30T13:36:57.112 INFO:teuthology.orchestra.run.smithi136.stdout:Get:31 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [233 kB] 2024-03-30T13:36:57.122 INFO:teuthology.orchestra.run.smithi136.stdout:Get:32 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-03-30T13:36:57.122 INFO:teuthology.orchestra.run.smithi136.stdout:Get:33 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,616 kB] 2024-03-30T13:36:57.131 INFO:teuthology.orchestra.run.smithi050.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [293 kB] 2024-03-30T13:36:57.146 INFO:teuthology.orchestra.run.smithi050.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-03-30T13:36:57.146 INFO:teuthology.orchestra.run.smithi050.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,644 kB] 2024-03-30T13:36:57.206 INFO:teuthology.orchestra.run.smithi050.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [35.3 kB] 2024-03-30T13:36:57.207 INFO:teuthology.orchestra.run.smithi050.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [274 kB] 2024-03-30T13:36:57.214 INFO:teuthology.orchestra.run.smithi050.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-03-30T13:36:57.214 INFO:teuthology.orchestra.run.smithi136.stdout:Get:34 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [33.7 kB] 2024-03-30T13:36:57.215 INFO:teuthology.orchestra.run.smithi136.stdout:Get:35 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [271 kB] 2024-03-30T13:36:57.227 INFO:teuthology.orchestra.run.smithi136.stdout:Get:36 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-03-30T13:36:57.227 INFO:teuthology.orchestra.run.smithi136.stdout:Get:37 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [599 kB] 2024-03-30T13:36:57.248 INFO:teuthology.orchestra.run.smithi136.stdout:Get:38 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [852 kB] 2024-03-30T13:36:57.378 INFO:teuthology.orchestra.run.smithi050.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [698 kB] 2024-03-30T13:36:57.435 INFO:teuthology.orchestra.run.smithi136.stdout:Get:39 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [163 kB] 2024-03-30T13:36:57.842 INFO:teuthology.orchestra.run.smithi136.stdout:Get:40 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-03-30T13:36:57.847 INFO:teuthology.orchestra.run.smithi136.stdout:Get:41 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-03-30T13:36:57.848 INFO:teuthology.orchestra.run.smithi136.stdout:Get:42 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.1 kB] 2024-03-30T13:36:57.861 INFO:teuthology.orchestra.run.smithi136.stdout:Get:43 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,476 B] 2024-03-30T13:36:57.864 INFO:teuthology.orchestra.run.smithi136.stdout:Get:44 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-03-30T13:36:57.962 INFO:teuthology.orchestra.run.smithi050.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,061 kB] 2024-03-30T13:36:58.073 INFO:teuthology.orchestra.run.smithi050.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [241 kB] 2024-03-30T13:36:58.092 INFO:teuthology.orchestra.run.smithi050.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-03-30T13:36:58.094 INFO:teuthology.orchestra.run.smithi050.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [6,028 B] 2024-03-30T13:36:58.095 INFO:teuthology.orchestra.run.smithi050.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [49.6 kB] 2024-03-30T13:36:58.098 INFO:teuthology.orchestra.run.smithi050.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [12.0 kB] 2024-03-30T13:36:58.099 INFO:teuthology.orchestra.run.smithi050.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-03-30T13:36:58.099 INFO:teuthology.orchestra.run.smithi050.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.2 kB] 2024-03-30T13:36:58.103 INFO:teuthology.orchestra.run.smithi050.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.1 kB] 2024-03-30T13:36:58.108 INFO:teuthology.orchestra.run.smithi050.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.0 kB] 2024-03-30T13:36:58.272 INFO:teuthology.orchestra.run.smithi050.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-03-30T13:36:58.354 INFO:teuthology.orchestra.run.smithi050.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.2 kB] 2024-03-30T13:36:58.439 INFO:teuthology.orchestra.run.smithi050.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.4 kB] 2024-03-30T13:36:58.520 INFO:teuthology.orchestra.run.smithi050.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.2 kB] 2024-03-30T13:36:58.554 INFO:teuthology.orchestra.run.smithi050.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-03-30T13:37:02.234 INFO:teuthology.orchestra.run.smithi136.stdout:Fetched 12.6 MB in 2s (6,673 kB/s) 2024-03-30T13:37:02.394 INFO:teuthology.orchestra.run.smithi026.stdout:Fetched 12.6 MB in 2s (6,598 kB/s) 2024-03-30T13:37:03.129 INFO:teuthology.orchestra.run.smithi050.stdout:Fetched 12.6 MB in 3s (4,989 kB/s) 2024-03-30T13:37:03.668 INFO:teuthology.orchestra.run.smithi136.stdout:Reading package lists... 2024-03-30T13:37:03.685 DEBUG:teuthology.orchestra.run.smithi136:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-03-30T13:37:03.747 INFO:teuthology.orchestra.run.smithi136.stdout:Reading package lists... 2024-03-30T13:37:03.897 INFO:teuthology.orchestra.run.smithi026.stdout:Reading package lists... 2024-03-30T13:37:03.916 DEBUG:teuthology.orchestra.run.smithi026:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-03-30T13:37:03.925 INFO:teuthology.orchestra.run.smithi136.stdout:Building dependency tree... 2024-03-30T13:37:03.926 INFO:teuthology.orchestra.run.smithi136.stdout:Reading state information... 2024-03-30T13:37:03.970 INFO:teuthology.orchestra.run.smithi026.stdout:Reading package lists... 2024-03-30T13:37:04.077 INFO:teuthology.orchestra.run.smithi136.stdout:The following packages were automatically installed and are no longer required: 2024-03-30T13:37:04.078 INFO:teuthology.orchestra.run.smithi136.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-03-30T13:37:04.078 INFO:teuthology.orchestra.run.smithi136.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-03-30T13:37:04.078 INFO:teuthology.orchestra.run.smithi136.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-03-30T13:37:04.078 INFO:teuthology.orchestra.run.smithi136.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-03-30T13:37:04.078 INFO:teuthology.orchestra.run.smithi136.stdout: python2.7-minimal 2024-03-30T13:37:04.079 INFO:teuthology.orchestra.run.smithi136.stdout:Use 'sudo apt autoremove' to remove them. 2024-03-30T13:37:04.079 INFO:teuthology.orchestra.run.smithi136.stdout:The following additional packages will be installed: 2024-03-30T13:37:04.079 INFO:teuthology.orchestra.run.smithi136.stdout: linux-generic linux-headers-5.15.0-101 linux-headers-5.15.0-101-generic 2024-03-30T13:37:04.079 INFO:teuthology.orchestra.run.smithi136.stdout: linux-headers-generic linux-image-5.15.0-101-generic 2024-03-30T13:37:04.080 INFO:teuthology.orchestra.run.smithi136.stdout: linux-modules-5.15.0-101-generic linux-modules-extra-5.15.0-101-generic 2024-03-30T13:37:04.081 INFO:teuthology.orchestra.run.smithi136.stdout:Suggested packages: 2024-03-30T13:37:04.081 INFO:teuthology.orchestra.run.smithi136.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-03-30T13:37:04.081 INFO:teuthology.orchestra.run.smithi136.stdout:Recommended packages: 2024-03-30T13:37:04.081 INFO:teuthology.orchestra.run.smithi136.stdout: thermald 2024-03-30T13:37:04.133 INFO:teuthology.orchestra.run.smithi136.stdout:The following NEW packages will be installed: 2024-03-30T13:37:04.133 INFO:teuthology.orchestra.run.smithi136.stdout: linux-headers-5.15.0-101 linux-headers-5.15.0-101-generic 2024-03-30T13:37:04.133 INFO:teuthology.orchestra.run.smithi136.stdout: linux-image-5.15.0-101-generic linux-modules-5.15.0-101-generic 2024-03-30T13:37:04.133 INFO:teuthology.orchestra.run.smithi136.stdout: linux-modules-extra-5.15.0-101-generic 2024-03-30T13:37:04.134 INFO:teuthology.orchestra.run.smithi136.stdout:The following packages will be upgraded: 2024-03-30T13:37:04.135 INFO:teuthology.orchestra.run.smithi136.stdout: linux-generic linux-headers-generic linux-image-generic 2024-03-30T13:37:04.152 INFO:teuthology.orchestra.run.smithi026.stdout:Building dependency tree... 2024-03-30T13:37:04.152 INFO:teuthology.orchestra.run.smithi026.stdout:Reading state information... 2024-03-30T13:37:04.216 INFO:teuthology.orchestra.run.smithi136.stdout:3 upgraded, 5 newly installed, 0 to remove and 311 not upgraded. 2024-03-30T13:37:04.216 INFO:teuthology.orchestra.run.smithi136.stdout:Need to get 113 MB of archives. 2024-03-30T13:37:04.216 INFO:teuthology.orchestra.run.smithi136.stdout:After this operation, 582 MB of additional disk space will be used. 2024-03-30T13:37:04.216 INFO:teuthology.orchestra.run.smithi136.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-101-generic amd64 5.15.0-101.111 [22.6 MB] 2024-03-30T13:37:04.312 INFO:teuthology.orchestra.run.smithi026.stdout:The following packages were automatically installed and are no longer required: 2024-03-30T13:37:04.312 INFO:teuthology.orchestra.run.smithi026.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-03-30T13:37:04.312 INFO:teuthology.orchestra.run.smithi026.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-03-30T13:37:04.313 INFO:teuthology.orchestra.run.smithi026.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-03-30T13:37:04.313 INFO:teuthology.orchestra.run.smithi026.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-03-30T13:37:04.313 INFO:teuthology.orchestra.run.smithi026.stdout: python2.7-minimal 2024-03-30T13:37:04.313 INFO:teuthology.orchestra.run.smithi026.stdout:Use 'sudo apt autoremove' to remove them. 2024-03-30T13:37:04.314 INFO:teuthology.orchestra.run.smithi026.stdout:The following additional packages will be installed: 2024-03-30T13:37:04.314 INFO:teuthology.orchestra.run.smithi026.stdout: linux-generic linux-headers-5.15.0-101 linux-headers-5.15.0-101-generic 2024-03-30T13:37:04.314 INFO:teuthology.orchestra.run.smithi026.stdout: linux-headers-generic linux-image-5.15.0-101-generic 2024-03-30T13:37:04.314 INFO:teuthology.orchestra.run.smithi026.stdout: linux-modules-5.15.0-101-generic linux-modules-extra-5.15.0-101-generic 2024-03-30T13:37:04.315 INFO:teuthology.orchestra.run.smithi026.stdout:Suggested packages: 2024-03-30T13:37:04.316 INFO:teuthology.orchestra.run.smithi026.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-03-30T13:37:04.316 INFO:teuthology.orchestra.run.smithi026.stdout:Recommended packages: 2024-03-30T13:37:04.316 INFO:teuthology.orchestra.run.smithi026.stdout: thermald 2024-03-30T13:37:04.364 INFO:teuthology.orchestra.run.smithi026.stdout:The following NEW packages will be installed: 2024-03-30T13:37:04.364 INFO:teuthology.orchestra.run.smithi026.stdout: linux-headers-5.15.0-101 linux-headers-5.15.0-101-generic 2024-03-30T13:37:04.364 INFO:teuthology.orchestra.run.smithi026.stdout: linux-image-5.15.0-101-generic linux-modules-5.15.0-101-generic 2024-03-30T13:37:04.364 INFO:teuthology.orchestra.run.smithi026.stdout: linux-modules-extra-5.15.0-101-generic 2024-03-30T13:37:04.367 INFO:teuthology.orchestra.run.smithi026.stdout:The following packages will be upgraded: 2024-03-30T13:37:04.367 INFO:teuthology.orchestra.run.smithi026.stdout: linux-generic linux-headers-generic linux-image-generic 2024-03-30T13:37:04.459 INFO:teuthology.orchestra.run.smithi026.stdout:3 upgraded, 5 newly installed, 0 to remove and 311 not upgraded. 2024-03-30T13:37:04.459 INFO:teuthology.orchestra.run.smithi026.stdout:Need to get 113 MB of archives. 2024-03-30T13:37:04.459 INFO:teuthology.orchestra.run.smithi026.stdout:After this operation, 582 MB of additional disk space will be used. 2024-03-30T13:37:04.459 INFO:teuthology.orchestra.run.smithi026.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-101-generic amd64 5.15.0-101.111 [22.6 MB] 2024-03-30T13:37:04.574 INFO:teuthology.orchestra.run.smithi050.stdout:Reading package lists... 2024-03-30T13:37:04.592 DEBUG:teuthology.orchestra.run.smithi050:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-03-30T13:37:04.657 INFO:teuthology.orchestra.run.smithi050.stdout:Reading package lists... 2024-03-30T13:37:04.859 INFO:teuthology.orchestra.run.smithi050.stdout:Building dependency tree... 2024-03-30T13:37:04.860 INFO:teuthology.orchestra.run.smithi050.stdout:Reading state information... 2024-03-30T13:37:04.926 INFO:teuthology.orchestra.run.smithi136.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-101-generic amd64 5.15.0-101.111 [11.5 MB] 2024-03-30T13:37:05.038 INFO:teuthology.orchestra.run.smithi050.stdout:The following packages were automatically installed and are no longer required: 2024-03-30T13:37:05.038 INFO:teuthology.orchestra.run.smithi050.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-03-30T13:37:05.038 INFO:teuthology.orchestra.run.smithi050.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-03-30T13:37:05.038 INFO:teuthology.orchestra.run.smithi050.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-03-30T13:37:05.039 INFO:teuthology.orchestra.run.smithi050.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-03-30T13:37:05.039 INFO:teuthology.orchestra.run.smithi050.stdout: python2.7-minimal 2024-03-30T13:37:05.039 INFO:teuthology.orchestra.run.smithi050.stdout:Use 'sudo apt autoremove' to remove them. 2024-03-30T13:37:05.040 INFO:teuthology.orchestra.run.smithi050.stdout:The following additional packages will be installed: 2024-03-30T13:37:05.040 INFO:teuthology.orchestra.run.smithi050.stdout: linux-generic linux-headers-5.15.0-101 linux-headers-5.15.0-101-generic 2024-03-30T13:37:05.040 INFO:teuthology.orchestra.run.smithi050.stdout: linux-headers-generic linux-image-5.15.0-101-generic 2024-03-30T13:37:05.040 INFO:teuthology.orchestra.run.smithi050.stdout: linux-modules-5.15.0-101-generic linux-modules-extra-5.15.0-101-generic 2024-03-30T13:37:05.042 INFO:teuthology.orchestra.run.smithi050.stdout:Suggested packages: 2024-03-30T13:37:05.042 INFO:teuthology.orchestra.run.smithi050.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-03-30T13:37:05.042 INFO:teuthology.orchestra.run.smithi050.stdout:Recommended packages: 2024-03-30T13:37:05.042 INFO:teuthology.orchestra.run.smithi050.stdout: thermald 2024-03-30T13:37:05.083 INFO:teuthology.orchestra.run.smithi050.stdout:The following NEW packages will be installed: 2024-03-30T13:37:05.083 INFO:teuthology.orchestra.run.smithi050.stdout: linux-headers-5.15.0-101 linux-headers-5.15.0-101-generic 2024-03-30T13:37:05.083 INFO:teuthology.orchestra.run.smithi050.stdout: linux-image-5.15.0-101-generic linux-modules-5.15.0-101-generic 2024-03-30T13:37:05.083 INFO:teuthology.orchestra.run.smithi050.stdout: linux-modules-extra-5.15.0-101-generic 2024-03-30T13:37:05.083 INFO:teuthology.orchestra.run.smithi050.stdout:The following packages will be upgraded: 2024-03-30T13:37:05.084 INFO:teuthology.orchestra.run.smithi050.stdout: linux-generic linux-headers-generic linux-image-generic 2024-03-30T13:37:05.265 INFO:teuthology.orchestra.run.smithi050.stdout:3 upgraded, 5 newly installed, 0 to remove and 311 not upgraded. 2024-03-30T13:37:05.265 INFO:teuthology.orchestra.run.smithi050.stdout:Need to get 113 MB of archives. 2024-03-30T13:37:05.265 INFO:teuthology.orchestra.run.smithi050.stdout:After this operation, 582 MB of additional disk space will be used. 2024-03-30T13:37:05.265 INFO:teuthology.orchestra.run.smithi050.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-101-generic amd64 5.15.0-101.111 [22.6 MB] 2024-03-30T13:37:05.283 INFO:teuthology.orchestra.run.smithi136.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-101-generic amd64 5.15.0-101.111 [63.9 MB] 2024-03-30T13:37:05.386 INFO:teuthology.orchestra.run.smithi026.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-101-generic amd64 5.15.0-101.111 [11.5 MB] 2024-03-30T13:37:05.684 INFO:teuthology.orchestra.run.smithi026.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-101-generic amd64 5.15.0-101.111 [63.9 MB] 2024-03-30T13:37:06.683 INFO:teuthology.orchestra.run.smithi050.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-101-generic amd64 5.15.0-101.111 [11.5 MB] 2024-03-30T13:37:07.013 INFO:teuthology.orchestra.run.smithi050.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-101-generic amd64 5.15.0-101.111 [63.9 MB] 2024-03-30T13:37:07.090 INFO:teuthology.orchestra.run.smithi136.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.101.98 [1,698 B] 2024-03-30T13:37:07.090 INFO:teuthology.orchestra.run.smithi136.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.101.98 [2,486 B] 2024-03-30T13:37:07.091 INFO:teuthology.orchestra.run.smithi136.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-101 all 5.15.0-101.111 [12.3 MB] 2024-03-30T13:37:07.210 INFO:teuthology.orchestra.run.smithi026.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.101.98 [1,698 B] 2024-03-30T13:37:07.210 INFO:teuthology.orchestra.run.smithi026.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.101.98 [2,486 B] 2024-03-30T13:37:07.210 INFO:teuthology.orchestra.run.smithi026.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-101 all 5.15.0-101.111 [12.3 MB] 2024-03-30T13:37:07.271 INFO:teuthology.orchestra.run.smithi136.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-101-generic amd64 5.15.0-101.111 [2,876 kB] 2024-03-30T13:37:07.321 INFO:teuthology.orchestra.run.smithi136.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.101.98 [2,332 B] 2024-03-30T13:37:07.409 INFO:teuthology.orchestra.run.smithi026.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-101-generic amd64 5.15.0-101.111 [2,876 kB] 2024-03-30T13:37:07.457 INFO:teuthology.orchestra.run.smithi026.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.101.98 [2,332 B] 2024-03-30T13:37:07.733 INFO:teuthology.orchestra.run.smithi136.stdout:Fetched 113 MB in 3s (35.6 MB/s) 2024-03-30T13:37:07.868 INFO:teuthology.orchestra.run.smithi026.stdout:Fetched 113 MB in 3s (36.7 MB/s) 2024-03-30T13:37:07.910 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package linux-modules-5.15.0-101-generic. 2024-03-30T13:37:08.056 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package linux-modules-5.15.0-101-generic. 2024-03-30T13:37:09.255 INFO:teuthology.orchestra.run.smithi050.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.101.98 [1,698 B] 2024-03-30T13:37:09.255 INFO:teuthology.orchestra.run.smithi050.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.101.98 [2,486 B] 2024-03-30T13:37:09.256 INFO:teuthology.orchestra.run.smithi050.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-101 all 5.15.0-101.111 [12.3 MB] 2024-03-30T13:37:09.688 INFO:teuthology.orchestra.run.smithi050.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-101-generic amd64 5.15.0-101.111 [2,876 kB] 2024-03-30T13:37:09.770 INFO:teuthology.orchestra.run.smithi050.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.101.98 [2,332 B] 2024-03-30T13:37:09.845 INFO:teuthology.orchestra.run.smithi136.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-03-30T13:37:09.849 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../0-linux-modules-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-03-30T13:37:09.983 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking linux-modules-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-30T13:37:10.012 INFO:teuthology.orchestra.run.smithi026.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-03-30T13:37:10.016 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../0-linux-modules-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-03-30T13:37:10.111 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking linux-modules-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-30T13:37:10.166 INFO:teuthology.orchestra.run.smithi050.stdout:Fetched 113 MB in 5s (24.2 MB/s) 2024-03-30T13:37:10.319 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package linux-modules-5.15.0-101-generic. 2024-03-30T13:37:12.254 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package linux-image-5.15.0-101-generic. 2024-03-30T13:37:12.275 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../1-linux-image-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-03-30T13:37:12.302 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package linux-image-5.15.0-101-generic. 2024-03-30T13:37:12.324 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../1-linux-image-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-03-30T13:37:12.342 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking linux-image-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-30T13:37:12.403 INFO:teuthology.orchestra.run.smithi050.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-03-30T13:37:12.405 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking linux-image-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-30T13:37:12.407 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../0-linux-modules-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-03-30T13:37:12.469 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking linux-modules-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-30T13:37:12.799 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-101-generic. 2024-03-30T13:37:12.819 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-03-30T13:37:12.864 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-101-generic. 2024-03-30T13:37:12.873 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking linux-modules-extra-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-30T13:37:12.885 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-03-30T13:37:12.914 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking linux-modules-extra-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-30T13:37:14.470 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package linux-image-5.15.0-101-generic. 2024-03-30T13:37:14.491 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../1-linux-image-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-03-30T13:37:14.605 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking linux-image-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-30T13:37:15.098 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-101-generic. 2024-03-30T13:37:15.118 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-03-30T13:37:15.314 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking linux-modules-extra-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-30T13:37:19.607 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../3-linux-generic_5.15.0.101.98_amd64.deb ... 2024-03-30T13:37:19.733 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking linux-generic (5.15.0.101.98) over (5.15.0.56.54) ... 2024-03-30T13:37:19.951 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../3-linux-generic_5.15.0.101.98_amd64.deb ... 2024-03-30T13:37:20.058 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.101.98_amd64.deb ... 2024-03-30T13:37:20.061 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking linux-generic (5.15.0.101.98) over (5.15.0.56.54) ... 2024-03-30T13:37:20.187 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking linux-image-generic (5.15.0.101.98) over (5.15.0.56.54) ... 2024-03-30T13:37:20.411 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.101.98_amd64.deb ... 2024-03-30T13:37:20.490 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package linux-headers-5.15.0-101. 2024-03-30T13:37:20.513 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../5-linux-headers-5.15.0-101_5.15.0-101.111_all.deb ... 2024-03-30T13:37:20.548 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking linux-headers-5.15.0-101 (5.15.0-101.111) ... 2024-03-30T13:37:20.557 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking linux-image-generic (5.15.0.101.98) over (5.15.0.56.54) ... 2024-03-30T13:37:20.851 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package linux-headers-5.15.0-101. 2024-03-30T13:37:20.863 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../5-linux-headers-5.15.0-101_5.15.0-101.111_all.deb ... 2024-03-30T13:37:20.893 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking linux-headers-5.15.0-101 (5.15.0-101.111) ... 2024-03-30T13:37:21.680 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../3-linux-generic_5.15.0.101.98_amd64.deb ... 2024-03-30T13:37:21.807 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking linux-generic (5.15.0.101.98) over (5.15.0.56.54) ... 2024-03-30T13:37:22.123 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.101.98_amd64.deb ... 2024-03-30T13:37:22.219 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking linux-image-generic (5.15.0.101.98) over (5.15.0.56.54) ... 2024-03-30T13:37:22.647 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package linux-headers-5.15.0-101. 2024-03-30T13:37:22.670 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../5-linux-headers-5.15.0-101_5.15.0-101.111_all.deb ... 2024-03-30T13:37:22.713 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking linux-headers-5.15.0-101 (5.15.0-101.111) ... 2024-03-30T13:37:26.370 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package linux-headers-5.15.0-101-generic. 2024-03-30T13:37:26.404 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../6-linux-headers-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-03-30T13:37:26.449 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking linux-headers-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-30T13:37:26.517 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package linux-headers-5.15.0-101-generic. 2024-03-30T13:37:26.554 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../6-linux-headers-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-03-30T13:37:26.600 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking linux-headers-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-30T13:37:28.721 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package linux-headers-5.15.0-101-generic. 2024-03-30T13:37:28.759 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../6-linux-headers-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-03-30T13:37:28.796 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking linux-headers-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-30T13:37:29.097 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.101.98_amd64.deb ... 2024-03-30T13:37:29.219 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking linux-headers-generic (5.15.0.101.98) over (5.15.0.56.54) ... 2024-03-30T13:37:29.314 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.101.98_amd64.deb ... 2024-03-30T13:37:29.439 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking linux-headers-generic (5.15.0.101.98) over (5.15.0.56.54) ... 2024-03-30T13:37:29.561 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up linux-headers-5.15.0-101 (5.15.0-101.111) ... 2024-03-30T13:37:29.682 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up linux-headers-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-30T13:37:29.808 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up linux-headers-generic (5.15.0.101.98) ... 2024-03-30T13:37:29.813 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up linux-headers-5.15.0-101 (5.15.0-101.111) ... 2024-03-30T13:37:29.937 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up linux-image-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-30T13:37:29.944 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up linux-headers-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-30T13:37:30.088 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up linux-headers-generic (5.15.0.101.98) ... 2024-03-30T13:37:30.216 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up linux-image-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-30T13:37:31.270 INFO:teuthology.orchestra.run.smithi026.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-03-30T13:37:31.270 INFO:teuthology.orchestra.run.smithi026.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-03-30T13:37:31.270 INFO:teuthology.orchestra.run.smithi026.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-101-generic 2024-03-30T13:37:31.270 INFO:teuthology.orchestra.run.smithi026.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-101-generic 2024-03-30T13:37:31.435 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.101.98_amd64.deb ... 2024-03-30T13:37:31.456 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up linux-modules-extra-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-30T13:37:31.557 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking linux-headers-generic (5.15.0.101.98) over (5.15.0.56.54) ... 2024-03-30T13:37:31.593 INFO:teuthology.orchestra.run.smithi136.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-03-30T13:37:31.593 INFO:teuthology.orchestra.run.smithi136.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-03-30T13:37:31.593 INFO:teuthology.orchestra.run.smithi136.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-101-generic 2024-03-30T13:37:31.593 INFO:teuthology.orchestra.run.smithi136.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-101-generic 2024-03-30T13:37:32.445 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up linux-modules-extra-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-30T13:37:32.533 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up linux-headers-5.15.0-101 (5.15.0-101.111) ... 2024-03-30T13:37:32.662 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up linux-headers-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-30T13:37:32.788 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up linux-headers-generic (5.15.0.101.98) ... 2024-03-30T13:37:32.909 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up linux-image-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-30T13:37:33.115 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up linux-modules-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-30T13:37:34.250 INFO:teuthology.orchestra.run.smithi050.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-03-30T13:37:34.250 INFO:teuthology.orchestra.run.smithi050.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-03-30T13:37:34.250 INFO:teuthology.orchestra.run.smithi050.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-101-generic 2024-03-30T13:37:34.251 INFO:teuthology.orchestra.run.smithi050.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-101-generic 2024-03-30T13:37:34.362 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up linux-modules-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-30T13:37:34.411 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up linux-modules-extra-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-30T13:37:34.533 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up linux-image-generic (5.15.0.101.98) ... 2024-03-30T13:37:34.651 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up linux-generic (5.15.0.101.98) ... 2024-03-30T13:37:34.777 INFO:teuthology.orchestra.run.smithi026.stdout:Processing triggers for linux-image-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-30T13:37:34.841 INFO:teuthology.orchestra.run.smithi026.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-03-30T13:37:34.841 INFO:teuthology.orchestra.run.smithi026.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-101-generic 2024-03-30T13:37:35.782 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up linux-image-generic (5.15.0.101.98) ... 2024-03-30T13:37:35.887 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up linux-modules-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-30T13:37:35.925 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up linux-generic (5.15.0.101.98) ... 2024-03-30T13:37:36.026 INFO:teuthology.orchestra.run.smithi136.stdout:Processing triggers for linux-image-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-30T13:37:36.081 INFO:teuthology.orchestra.run.smithi136.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-03-30T13:37:36.081 INFO:teuthology.orchestra.run.smithi136.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-101-generic 2024-03-30T13:37:37.330 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up linux-image-generic (5.15.0.101.98) ... 2024-03-30T13:37:37.431 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up linux-generic (5.15.0.101.98) ... 2024-03-30T13:37:37.791 INFO:teuthology.orchestra.run.smithi050.stdout:Processing triggers for linux-image-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-30T13:37:38.408 INFO:teuthology.orchestra.run.smithi050.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-03-30T13:37:38.408 INFO:teuthology.orchestra.run.smithi050.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-101-generic 2024-03-30T13:37:49.581 INFO:teuthology.orchestra.run.smithi026.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-03-30T13:37:49.581 INFO:teuthology.orchestra.run.smithi026.stdout:Sourcing file `/etc/default/grub' 2024-03-30T13:37:49.588 INFO:teuthology.orchestra.run.smithi026.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-03-30T13:37:49.601 INFO:teuthology.orchestra.run.smithi026.stdout:Generating grub configuration file ... 2024-03-30T13:37:49.943 INFO:teuthology.orchestra.run.smithi026.stdout:Found linux image: /boot/vmlinuz-5.15.0-101-generic 2024-03-30T13:37:49.970 INFO:teuthology.orchestra.run.smithi026.stdout:Found initrd image: /boot/initrd.img-5.15.0-101-generic 2024-03-30T13:37:50.058 INFO:teuthology.orchestra.run.smithi136.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-03-30T13:37:50.058 INFO:teuthology.orchestra.run.smithi136.stdout:Sourcing file `/etc/default/grub' 2024-03-30T13:37:50.091 INFO:teuthology.orchestra.run.smithi136.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-03-30T13:37:50.115 INFO:teuthology.orchestra.run.smithi136.stdout:Generating grub configuration file ... 2024-03-30T13:37:50.359 INFO:teuthology.orchestra.run.smithi026.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-03-30T13:37:50.364 INFO:teuthology.orchestra.run.smithi026.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-03-30T13:37:50.386 INFO:teuthology.orchestra.run.smithi136.stdout:Found linux image: /boot/vmlinuz-5.15.0-101-generic 2024-03-30T13:37:50.405 INFO:teuthology.orchestra.run.smithi136.stdout:Found initrd image: /boot/initrd.img-5.15.0-101-generic 2024-03-30T13:37:50.434 INFO:teuthology.orchestra.run.smithi026.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-03-30T13:37:50.439 INFO:teuthology.orchestra.run.smithi026.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-03-30T13:37:50.583 INFO:teuthology.orchestra.run.smithi026.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-03-30T13:37:50.583 INFO:teuthology.orchestra.run.smithi026.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-03-30T13:37:50.583 INFO:teuthology.orchestra.run.smithi026.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-03-30T13:37:50.630 INFO:teuthology.orchestra.run.smithi026.stdout:done 2024-03-30T13:37:50.693 INFO:teuthology.orchestra.run.smithi136.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-03-30T13:37:50.699 INFO:teuthology.orchestra.run.smithi136.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-03-30T13:37:50.763 INFO:teuthology.orchestra.run.smithi136.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-03-30T13:37:50.768 INFO:teuthology.orchestra.run.smithi136.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-03-30T13:37:50.928 INFO:teuthology.orchestra.run.smithi136.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-03-30T13:37:50.929 INFO:teuthology.orchestra.run.smithi136.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-03-30T13:37:50.929 INFO:teuthology.orchestra.run.smithi136.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-03-30T13:37:50.979 INFO:teuthology.orchestra.run.smithi136.stdout:done 2024-03-30T13:37:51.119 DEBUG:teuthology.orchestra.run.smithi026:> dpkg -s linux-image-generic 2024-03-30T13:37:51.142 INFO:teuthology.orchestra.run.smithi026.stdout:Package: linux-image-generic 2024-03-30T13:37:51.142 INFO:teuthology.orchestra.run.smithi026.stdout:Status: install ok installed 2024-03-30T13:37:51.142 INFO:teuthology.orchestra.run.smithi026.stdout:Priority: optional 2024-03-30T13:37:51.142 INFO:teuthology.orchestra.run.smithi026.stdout:Section: kernel 2024-03-30T13:37:51.142 INFO:teuthology.orchestra.run.smithi026.stdout:Installed-Size: 21 2024-03-30T13:37:51.142 INFO:teuthology.orchestra.run.smithi026.stdout:Maintainer: Ubuntu Kernel Team 2024-03-30T13:37:51.143 INFO:teuthology.orchestra.run.smithi026.stdout:Architecture: amd64 2024-03-30T13:37:51.143 INFO:teuthology.orchestra.run.smithi026.stdout:Source: linux-meta 2024-03-30T13:37:51.143 INFO:teuthology.orchestra.run.smithi026.stdout:Version: 5.15.0.101.98 2024-03-30T13:37:51.143 INFO:teuthology.orchestra.run.smithi026.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-101), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-03-30T13:37:51.143 INFO:teuthology.orchestra.run.smithi026.stdout:Depends: linux-image-5.15.0-101-generic, linux-modules-extra-5.15.0-101-generic, linux-firmware, intel-microcode, amd64-microcode 2024-03-30T13:37:51.143 INFO:teuthology.orchestra.run.smithi026.stdout:Recommends: thermald 2024-03-30T13:37:51.143 INFO:teuthology.orchestra.run.smithi026.stdout:Description: Generic Linux kernel image 2024-03-30T13:37:51.143 INFO:teuthology.orchestra.run.smithi026.stdout: This package will always depend on the latest generic kernel image 2024-03-30T13:37:51.143 INFO:teuthology.orchestra.run.smithi026.stdout: available. 2024-03-30T13:37:51.143 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-101-generic 2024-03-30T13:37:51.143 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-03-30T13:37:51.144 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-03-30T13:37:51.144 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-03-30T13:37:51.144 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi026.front.sepia.ceph.com, path=None, version=distro) 2024-03-30T13:37:51.144 DEBUG:teuthology.orchestra.run.smithi026:> sudo apt-get clean 2024-03-30T13:37:51.332 DEBUG:teuthology.orchestra.run.smithi026:> sudo apt-get update 2024-03-30T13:37:51.459 DEBUG:teuthology.orchestra.run.smithi136:> dpkg -s linux-image-generic 2024-03-30T13:37:51.479 INFO:teuthology.orchestra.run.smithi136.stdout:Package: linux-image-generic 2024-03-30T13:37:51.479 INFO:teuthology.orchestra.run.smithi136.stdout:Status: install ok installed 2024-03-30T13:37:51.479 INFO:teuthology.orchestra.run.smithi136.stdout:Priority: optional 2024-03-30T13:37:51.479 INFO:teuthology.orchestra.run.smithi136.stdout:Section: kernel 2024-03-30T13:37:51.479 INFO:teuthology.orchestra.run.smithi136.stdout:Installed-Size: 21 2024-03-30T13:37:51.480 INFO:teuthology.orchestra.run.smithi136.stdout:Maintainer: Ubuntu Kernel Team 2024-03-30T13:37:51.480 INFO:teuthology.orchestra.run.smithi136.stdout:Architecture: amd64 2024-03-30T13:37:51.480 INFO:teuthology.orchestra.run.smithi136.stdout:Source: linux-meta 2024-03-30T13:37:51.480 INFO:teuthology.orchestra.run.smithi136.stdout:Version: 5.15.0.101.98 2024-03-30T13:37:51.480 INFO:teuthology.orchestra.run.smithi136.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-101), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-03-30T13:37:51.480 INFO:teuthology.orchestra.run.smithi136.stdout:Depends: linux-image-5.15.0-101-generic, linux-modules-extra-5.15.0-101-generic, linux-firmware, intel-microcode, amd64-microcode 2024-03-30T13:37:51.480 INFO:teuthology.orchestra.run.smithi136.stdout:Recommends: thermald 2024-03-30T13:37:51.480 INFO:teuthology.orchestra.run.smithi136.stdout:Description: Generic Linux kernel image 2024-03-30T13:37:51.480 INFO:teuthology.orchestra.run.smithi136.stdout: This package will always depend on the latest generic kernel image 2024-03-30T13:37:51.480 INFO:teuthology.orchestra.run.smithi136.stdout: available. 2024-03-30T13:37:51.480 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-101-generic 2024-03-30T13:37:51.480 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-03-30T13:37:51.480 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-03-30T13:37:51.481 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2024-03-30T13:37:51.481 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi136.front.sepia.ceph.com, path=None, version=distro) 2024-03-30T13:37:51.481 DEBUG:teuthology.orchestra.run.smithi136:> sudo apt-get clean 2024-03-30T13:37:51.488 INFO:teuthology.orchestra.run.smithi026.stdout:Hit:1 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-03-30T13:37:51.564 INFO:teuthology.orchestra.run.smithi026.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-03-30T13:37:51.646 INFO:teuthology.orchestra.run.smithi026.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-03-30T13:37:51.670 DEBUG:teuthology.orchestra.run.smithi136:> sudo apt-get update 2024-03-30T13:37:51.832 INFO:teuthology.orchestra.run.smithi136.stdout:Hit:1 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-03-30T13:37:51.902 INFO:teuthology.orchestra.run.smithi136.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-03-30T13:37:51.984 INFO:teuthology.orchestra.run.smithi136.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-03-30T13:37:52.011 INFO:teuthology.orchestra.run.smithi026.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-03-30T13:37:52.115 INFO:teuthology.orchestra.run.smithi026.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,518 kB] 2024-03-30T13:37:52.344 INFO:teuthology.orchestra.run.smithi136.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-03-30T13:37:52.435 INFO:teuthology.orchestra.run.smithi136.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [602 kB] 2024-03-30T13:37:52.538 INFO:teuthology.orchestra.run.smithi026.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [602 kB] 2024-03-30T13:37:52.558 INFO:teuthology.orchestra.run.smithi026.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,061 kB] 2024-03-30T13:37:52.608 INFO:teuthology.orchestra.run.smithi050.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-03-30T13:37:52.608 INFO:teuthology.orchestra.run.smithi050.stdout:Sourcing file `/etc/default/grub' 2024-03-30T13:37:52.617 INFO:teuthology.orchestra.run.smithi050.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-03-30T13:37:52.621 INFO:teuthology.orchestra.run.smithi026.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [698 kB] 2024-03-30T13:37:52.642 INFO:teuthology.orchestra.run.smithi050.stdout:Generating grub configuration file ... 2024-03-30T13:37:52.752 INFO:teuthology.orchestra.run.smithi136.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,518 kB] 2024-03-30T13:37:52.925 INFO:teuthology.orchestra.run.smithi136.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [698 kB] 2024-03-30T13:37:52.965 INFO:teuthology.orchestra.run.smithi136.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,061 kB] 2024-03-30T13:37:52.986 INFO:teuthology.orchestra.run.smithi050.stdout:Found linux image: /boot/vmlinuz-5.15.0-101-generic 2024-03-30T13:37:52.998 INFO:teuthology.orchestra.run.smithi026.stdout:Fetched 3,998 kB in 2s (2,651 kB/s) 2024-03-30T13:37:53.000 INFO:teuthology.orchestra.run.smithi050.stdout:Found initrd image: /boot/initrd.img-5.15.0-101-generic 2024-03-30T13:37:53.373 INFO:teuthology.orchestra.run.smithi050.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-03-30T13:37:53.379 INFO:teuthology.orchestra.run.smithi050.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-03-30T13:37:53.453 INFO:teuthology.orchestra.run.smithi136.stdout:Fetched 3,998 kB in 2s (2,570 kB/s) 2024-03-30T13:37:53.454 INFO:teuthology.orchestra.run.smithi050.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-03-30T13:37:53.460 INFO:teuthology.orchestra.run.smithi050.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-03-30T13:37:53.622 INFO:teuthology.orchestra.run.smithi050.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-03-30T13:37:53.622 INFO:teuthology.orchestra.run.smithi050.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-03-30T13:37:53.622 INFO:teuthology.orchestra.run.smithi050.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-03-30T13:37:53.670 INFO:teuthology.orchestra.run.smithi050.stdout:done 2024-03-30T13:37:53.953 INFO:teuthology.orchestra.run.smithi026.stdout:Reading package lists... 2024-03-30T13:37:53.972 DEBUG:teuthology.orchestra.run.smithi026:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-03-30T13:37:54.033 INFO:teuthology.orchestra.run.smithi026.stdout:Reading package lists... 2024-03-30T13:37:54.113 DEBUG:teuthology.orchestra.run.smithi050:> dpkg -s linux-image-generic 2024-03-30T13:37:54.130 INFO:teuthology.orchestra.run.smithi050.stdout:Package: linux-image-generic 2024-03-30T13:37:54.130 INFO:teuthology.orchestra.run.smithi050.stdout:Status: install ok installed 2024-03-30T13:37:54.130 INFO:teuthology.orchestra.run.smithi050.stdout:Priority: optional 2024-03-30T13:37:54.130 INFO:teuthology.orchestra.run.smithi050.stdout:Section: kernel 2024-03-30T13:37:54.130 INFO:teuthology.orchestra.run.smithi050.stdout:Installed-Size: 21 2024-03-30T13:37:54.130 INFO:teuthology.orchestra.run.smithi050.stdout:Maintainer: Ubuntu Kernel Team 2024-03-30T13:37:54.130 INFO:teuthology.orchestra.run.smithi050.stdout:Architecture: amd64 2024-03-30T13:37:54.130 INFO:teuthology.orchestra.run.smithi050.stdout:Source: linux-meta 2024-03-30T13:37:54.130 INFO:teuthology.orchestra.run.smithi050.stdout:Version: 5.15.0.101.98 2024-03-30T13:37:54.131 INFO:teuthology.orchestra.run.smithi050.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-101), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-03-30T13:37:54.131 INFO:teuthology.orchestra.run.smithi050.stdout:Depends: linux-image-5.15.0-101-generic, linux-modules-extra-5.15.0-101-generic, linux-firmware, intel-microcode, amd64-microcode 2024-03-30T13:37:54.131 INFO:teuthology.orchestra.run.smithi050.stdout:Recommends: thermald 2024-03-30T13:37:54.131 INFO:teuthology.orchestra.run.smithi050.stdout:Description: Generic Linux kernel image 2024-03-30T13:37:54.131 INFO:teuthology.orchestra.run.smithi050.stdout: This package will always depend on the latest generic kernel image 2024-03-30T13:37:54.131 INFO:teuthology.orchestra.run.smithi050.stdout: available. 2024-03-30T13:37:54.131 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-101-generic 2024-03-30T13:37:54.131 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-03-30T13:37:54.131 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-03-30T13:37:54.131 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-03-30T13:37:54.131 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi050.front.sepia.ceph.com, path=None, version=distro) 2024-03-30T13:37:54.132 DEBUG:teuthology.orchestra.run.smithi050:> sudo apt-get clean 2024-03-30T13:37:54.214 INFO:teuthology.orchestra.run.smithi026.stdout:Building dependency tree... 2024-03-30T13:37:54.214 INFO:teuthology.orchestra.run.smithi026.stdout:Reading state information... 2024-03-30T13:37:54.290 DEBUG:teuthology.orchestra.run.smithi050:> sudo apt-get update 2024-03-30T13:37:54.378 INFO:teuthology.orchestra.run.smithi026.stdout:linux-image-generic is already the newest version (5.15.0.101.98). 2024-03-30T13:37:54.378 INFO:teuthology.orchestra.run.smithi026.stdout:The following packages were automatically installed and are no longer required: 2024-03-30T13:37:54.378 INFO:teuthology.orchestra.run.smithi026.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-03-30T13:37:54.378 INFO:teuthology.orchestra.run.smithi026.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-03-30T13:37:54.378 INFO:teuthology.orchestra.run.smithi026.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-03-30T13:37:54.378 INFO:teuthology.orchestra.run.smithi026.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-03-30T13:37:54.379 INFO:teuthology.orchestra.run.smithi026.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-03-30T13:37:54.379 INFO:teuthology.orchestra.run.smithi026.stdout:Use 'sudo apt autoremove' to remove them. 2024-03-30T13:37:54.390 INFO:teuthology.orchestra.run.smithi136.stdout:Reading package lists... 2024-03-30T13:37:54.408 DEBUG:teuthology.orchestra.run.smithi136:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-03-30T13:37:54.418 INFO:teuthology.orchestra.run.smithi026.stdout:0 upgraded, 0 newly installed, 0 to remove and 311 not upgraded. 2024-03-30T13:37:54.420 DEBUG:teuthology.orchestra.run.smithi026:> dpkg -s linux-image-generic 2024-03-30T13:37:54.436 INFO:teuthology.orchestra.run.smithi026.stdout:Package: linux-image-generic 2024-03-30T13:37:54.436 INFO:teuthology.orchestra.run.smithi026.stdout:Status: install ok installed 2024-03-30T13:37:54.437 INFO:teuthology.orchestra.run.smithi026.stdout:Priority: optional 2024-03-30T13:37:54.437 INFO:teuthology.orchestra.run.smithi026.stdout:Section: kernel 2024-03-30T13:37:54.437 INFO:teuthology.orchestra.run.smithi026.stdout:Installed-Size: 21 2024-03-30T13:37:54.437 INFO:teuthology.orchestra.run.smithi026.stdout:Maintainer: Ubuntu Kernel Team 2024-03-30T13:37:54.437 INFO:teuthology.orchestra.run.smithi026.stdout:Architecture: amd64 2024-03-30T13:37:54.437 INFO:teuthology.orchestra.run.smithi026.stdout:Source: linux-meta 2024-03-30T13:37:54.437 INFO:teuthology.orchestra.run.smithi026.stdout:Version: 5.15.0.101.98 2024-03-30T13:37:54.437 INFO:teuthology.orchestra.run.smithi026.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-101), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-03-30T13:37:54.437 INFO:teuthology.orchestra.run.smithi026.stdout:Depends: linux-image-5.15.0-101-generic, linux-modules-extra-5.15.0-101-generic, linux-firmware, intel-microcode, amd64-microcode 2024-03-30T13:37:54.437 INFO:teuthology.orchestra.run.smithi026.stdout:Recommends: thermald 2024-03-30T13:37:54.437 INFO:teuthology.orchestra.run.smithi026.stdout:Description: Generic Linux kernel image 2024-03-30T13:37:54.437 INFO:teuthology.orchestra.run.smithi026.stdout: This package will always depend on the latest generic kernel image 2024-03-30T13:37:54.437 INFO:teuthology.orchestra.run.smithi026.stdout: available. 2024-03-30T13:37:54.438 DEBUG:teuthology.orchestra.run.smithi026:> mktemp 2024-03-30T13:37:54.470 INFO:teuthology.orchestra.run.smithi136.stdout:Reading package lists... 2024-03-30T13:37:54.481 INFO:teuthology.orchestra.run.smithi026.stdout:/tmp/tmp.ZXska5ZcGm 2024-03-30T13:37:54.482 DEBUG:teuthology.orchestra.run.smithi026:> sudo cp /boot/grub/grub.cfg /tmp/tmp.ZXska5ZcGm 2024-03-30T13:37:54.538 DEBUG:teuthology.orchestra.run.smithi026:> sudo chmod 0666 /tmp/tmp.ZXska5ZcGm 2024-03-30T13:37:54.541 INFO:teuthology.orchestra.run.smithi050.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-03-30T13:37:54.541 INFO:teuthology.orchestra.run.smithi050.stdout:Get:2 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-03-30T13:37:54.605 INFO:teuthology.orchestra.run.smithi050.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-03-30T13:37:54.652 INFO:teuthology.orchestra.run.smithi136.stdout:Building dependency tree... 2024-03-30T13:37:54.652 DEBUG:teuthology.orchestra.remote:smithi026:/tmp/tmp.ZXska5ZcGm is 10KB 2024-03-30T13:37:54.653 INFO:teuthology.orchestra.run.smithi136.stdout:Reading state information... 2024-03-30T13:37:54.665 DEBUG:teuthology.orchestra.run.smithi026:> rm -fr /tmp/tmp.ZXska5ZcGm 2024-03-30T13:37:54.670 DEBUG:teuthology.orchestra.run.smithi026:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-03-30T13:37:54.687 INFO:teuthology.orchestra.run.smithi050.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-03-30T13:37:54.726 DEBUG:teuthology.orchestra.run.smithi026:> set -ex 2024-03-30T13:37:54.726 DEBUG:teuthology.orchestra.run.smithi026:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-03-30T13:37:54.726 DEBUG:teuthology.orchestra.run.smithi026:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-03-30T13:37:54.794 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-101-generic 2024-03-30T13:37:54.794 DEBUG:teuthology.orchestra.run.smithi026:> sudo update-grub 2024-03-30T13:37:54.806 INFO:teuthology.orchestra.run.smithi136.stdout:linux-image-generic is already the newest version (5.15.0.101.98). 2024-03-30T13:37:54.806 INFO:teuthology.orchestra.run.smithi136.stdout:The following packages were automatically installed and are no longer required: 2024-03-30T13:37:54.807 INFO:teuthology.orchestra.run.smithi136.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-03-30T13:37:54.807 INFO:teuthology.orchestra.run.smithi136.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-03-30T13:37:54.807 INFO:teuthology.orchestra.run.smithi136.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-03-30T13:37:54.807 INFO:teuthology.orchestra.run.smithi136.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-03-30T13:37:54.807 INFO:teuthology.orchestra.run.smithi136.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-03-30T13:37:54.807 INFO:teuthology.orchestra.run.smithi136.stdout:Use 'sudo apt autoremove' to remove them. 2024-03-30T13:37:54.843 INFO:teuthology.orchestra.run.smithi136.stdout:0 upgraded, 0 newly installed, 0 to remove and 311 not upgraded. 2024-03-30T13:37:54.845 DEBUG:teuthology.orchestra.run.smithi136:> dpkg -s linux-image-generic 2024-03-30T13:37:54.857 INFO:teuthology.orchestra.run.smithi136.stdout:Package: linux-image-generic 2024-03-30T13:37:54.857 INFO:teuthology.orchestra.run.smithi136.stdout:Status: install ok installed 2024-03-30T13:37:54.858 INFO:teuthology.orchestra.run.smithi136.stdout:Priority: optional 2024-03-30T13:37:54.858 INFO:teuthology.orchestra.run.smithi136.stdout:Section: kernel 2024-03-30T13:37:54.858 INFO:teuthology.orchestra.run.smithi136.stdout:Installed-Size: 21 2024-03-30T13:37:54.858 INFO:teuthology.orchestra.run.smithi136.stdout:Maintainer: Ubuntu Kernel Team 2024-03-30T13:37:54.858 INFO:teuthology.orchestra.run.smithi136.stdout:Architecture: amd64 2024-03-30T13:37:54.858 INFO:teuthology.orchestra.run.smithi136.stdout:Source: linux-meta 2024-03-30T13:37:54.858 INFO:teuthology.orchestra.run.smithi136.stdout:Version: 5.15.0.101.98 2024-03-30T13:37:54.858 INFO:teuthology.orchestra.run.smithi136.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-101), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-03-30T13:37:54.858 INFO:teuthology.orchestra.run.smithi136.stdout:Depends: linux-image-5.15.0-101-generic, linux-modules-extra-5.15.0-101-generic, linux-firmware, intel-microcode, amd64-microcode 2024-03-30T13:37:54.858 INFO:teuthology.orchestra.run.smithi136.stdout:Recommends: thermald 2024-03-30T13:37:54.858 INFO:teuthology.orchestra.run.smithi136.stdout:Description: Generic Linux kernel image 2024-03-30T13:37:54.858 INFO:teuthology.orchestra.run.smithi136.stdout: This package will always depend on the latest generic kernel image 2024-03-30T13:37:54.858 INFO:teuthology.orchestra.run.smithi136.stdout: available. 2024-03-30T13:37:54.859 DEBUG:teuthology.orchestra.run.smithi136:> mktemp 2024-03-30T13:37:54.905 INFO:teuthology.orchestra.run.smithi136.stdout:/tmp/tmp.RgbsNhHxo1 2024-03-30T13:37:54.905 DEBUG:teuthology.orchestra.run.smithi136:> sudo cp /boot/grub/grub.cfg /tmp/tmp.RgbsNhHxo1 2024-03-30T13:37:54.959 DEBUG:teuthology.orchestra.run.smithi136:> sudo chmod 0666 /tmp/tmp.RgbsNhHxo1 2024-03-30T13:37:55.000 INFO:teuthology.orchestra.run.smithi050.stdout:Fetched 110 kB in 1s (195 kB/s) 2024-03-30T13:37:55.081 DEBUG:teuthology.orchestra.remote:smithi136:/tmp/tmp.RgbsNhHxo1 is 10KB 2024-03-30T13:37:55.094 DEBUG:teuthology.orchestra.run.smithi136:> rm -fr /tmp/tmp.RgbsNhHxo1 2024-03-30T13:37:55.099 DEBUG:teuthology.orchestra.run.smithi136:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-03-30T13:37:55.153 DEBUG:teuthology.orchestra.run.smithi136:> set -ex 2024-03-30T13:37:55.153 DEBUG:teuthology.orchestra.run.smithi136:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-03-30T13:37:55.153 DEBUG:teuthology.orchestra.run.smithi136:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-03-30T13:37:55.249 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-101-generic 2024-03-30T13:37:55.249 DEBUG:teuthology.orchestra.run.smithi136:> sudo update-grub 2024-03-30T13:37:55.938 INFO:teuthology.orchestra.run.smithi050.stdout:Reading package lists... 2024-03-30T13:37:55.955 DEBUG:teuthology.orchestra.run.smithi050:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-03-30T13:37:56.006 INFO:teuthology.orchestra.run.smithi050.stdout:Reading package lists... 2024-03-30T13:37:56.186 INFO:teuthology.orchestra.run.smithi050.stdout:Building dependency tree... 2024-03-30T13:37:56.186 INFO:teuthology.orchestra.run.smithi050.stdout:Reading state information... 2024-03-30T13:37:56.208 INFO:teuthology.orchestra.run.smithi026.stderr:Sourcing file `/etc/default/grub' 2024-03-30T13:37:56.209 INFO:teuthology.orchestra.run.smithi026.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-03-30T13:37:56.211 INFO:teuthology.orchestra.run.smithi026.stderr:Generating grub configuration file ... 2024-03-30T13:37:56.345 INFO:teuthology.orchestra.run.smithi050.stdout:linux-image-generic is already the newest version (5.15.0.101.98). 2024-03-30T13:37:56.345 INFO:teuthology.orchestra.run.smithi050.stdout:The following packages were automatically installed and are no longer required: 2024-03-30T13:37:56.345 INFO:teuthology.orchestra.run.smithi050.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-03-30T13:37:56.346 INFO:teuthology.orchestra.run.smithi050.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-03-30T13:37:56.346 INFO:teuthology.orchestra.run.smithi050.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-03-30T13:37:56.346 INFO:teuthology.orchestra.run.smithi050.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-03-30T13:37:56.346 INFO:teuthology.orchestra.run.smithi050.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-03-30T13:37:56.346 INFO:teuthology.orchestra.run.smithi050.stdout:Use 'sudo apt autoremove' to remove them. 2024-03-30T13:37:56.384 INFO:teuthology.orchestra.run.smithi050.stdout:0 upgraded, 0 newly installed, 0 to remove and 311 not upgraded. 2024-03-30T13:37:56.385 DEBUG:teuthology.orchestra.run.smithi050:> dpkg -s linux-image-generic 2024-03-30T13:37:56.443 INFO:teuthology.orchestra.run.smithi050.stdout:Package: linux-image-generic 2024-03-30T13:37:56.443 INFO:teuthology.orchestra.run.smithi050.stdout:Status: install ok installed 2024-03-30T13:37:56.443 INFO:teuthology.orchestra.run.smithi050.stdout:Priority: optional 2024-03-30T13:37:56.443 INFO:teuthology.orchestra.run.smithi050.stdout:Section: kernel 2024-03-30T13:37:56.443 INFO:teuthology.orchestra.run.smithi050.stdout:Installed-Size: 21 2024-03-30T13:37:56.443 INFO:teuthology.orchestra.run.smithi050.stdout:Maintainer: Ubuntu Kernel Team 2024-03-30T13:37:56.443 INFO:teuthology.orchestra.run.smithi050.stdout:Architecture: amd64 2024-03-30T13:37:56.443 INFO:teuthology.orchestra.run.smithi050.stdout:Source: linux-meta 2024-03-30T13:37:56.443 INFO:teuthology.orchestra.run.smithi050.stdout:Version: 5.15.0.101.98 2024-03-30T13:37:56.443 INFO:teuthology.orchestra.run.smithi050.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-101), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-03-30T13:37:56.444 INFO:teuthology.orchestra.run.smithi050.stdout:Depends: linux-image-5.15.0-101-generic, linux-modules-extra-5.15.0-101-generic, linux-firmware, intel-microcode, amd64-microcode 2024-03-30T13:37:56.444 INFO:teuthology.orchestra.run.smithi050.stdout:Recommends: thermald 2024-03-30T13:37:56.444 INFO:teuthology.orchestra.run.smithi050.stdout:Description: Generic Linux kernel image 2024-03-30T13:37:56.444 INFO:teuthology.orchestra.run.smithi050.stdout: This package will always depend on the latest generic kernel image 2024-03-30T13:37:56.444 INFO:teuthology.orchestra.run.smithi050.stdout: available. 2024-03-30T13:37:56.444 DEBUG:teuthology.orchestra.run.smithi050:> mktemp 2024-03-30T13:37:56.482 INFO:teuthology.orchestra.run.smithi026.stderr:Found linux image: /boot/vmlinuz-5.15.0-101-generic 2024-03-30T13:37:56.487 INFO:teuthology.orchestra.run.smithi050.stdout:/tmp/tmp.AbteqgGMyv 2024-03-30T13:37:56.487 DEBUG:teuthology.orchestra.run.smithi050:> sudo cp /boot/grub/grub.cfg /tmp/tmp.AbteqgGMyv 2024-03-30T13:37:56.490 INFO:teuthology.orchestra.run.smithi026.stderr:Found initrd image: /boot/initrd.img-5.15.0-101-generic 2024-03-30T13:37:56.548 DEBUG:teuthology.orchestra.run.smithi050:> sudo chmod 0666 /tmp/tmp.AbteqgGMyv 2024-03-30T13:37:56.662 DEBUG:teuthology.orchestra.remote:smithi050:/tmp/tmp.AbteqgGMyv is 10KB 2024-03-30T13:37:56.675 DEBUG:teuthology.orchestra.run.smithi050:> rm -fr /tmp/tmp.AbteqgGMyv 2024-03-30T13:37:56.680 DEBUG:teuthology.orchestra.run.smithi050:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-03-30T13:37:56.736 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-03-30T13:37:56.736 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-03-30T13:37:56.736 DEBUG:teuthology.orchestra.run.smithi050:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-03-30T13:37:56.787 INFO:teuthology.orchestra.run.smithi026.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-03-30T13:37:56.792 INFO:teuthology.orchestra.run.smithi026.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-03-30T13:37:56.799 INFO:teuthology.orchestra.run.smithi136.stderr:Sourcing file `/etc/default/grub' 2024-03-30T13:37:56.800 INFO:teuthology.orchestra.run.smithi136.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-03-30T13:37:56.803 INFO:teuthology.orchestra.run.smithi136.stderr:Generating grub configuration file ... 2024-03-30T13:37:56.803 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-101-generic 2024-03-30T13:37:56.803 DEBUG:teuthology.orchestra.run.smithi050:> sudo update-grub 2024-03-30T13:37:56.837 INFO:teuthology.orchestra.run.smithi026.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-03-30T13:37:56.843 INFO:teuthology.orchestra.run.smithi026.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-03-30T13:37:57.002 INFO:teuthology.orchestra.run.smithi026.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-03-30T13:37:57.002 INFO:teuthology.orchestra.run.smithi026.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-03-30T13:37:57.002 INFO:teuthology.orchestra.run.smithi026.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-03-30T13:37:57.008 INFO:teuthology.orchestra.run.smithi136.stderr:Found linux image: /boot/vmlinuz-5.15.0-101-generic 2024-03-30T13:37:57.015 INFO:teuthology.orchestra.run.smithi136.stderr:Found initrd image: /boot/initrd.img-5.15.0-101-generic 2024-03-30T13:37:57.024 INFO:teuthology.orchestra.run.smithi026.stderr:done 2024-03-30T13:37:57.029 DEBUG:teuthology.orchestra.run.smithi026:> sudo shutdown -r now 2024-03-30T13:37:57.292 INFO:teuthology.orchestra.run.smithi136.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-03-30T13:37:57.297 INFO:teuthology.orchestra.run.smithi136.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-03-30T13:37:57.337 INFO:teuthology.orchestra.run.smithi136.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-03-30T13:37:57.343 INFO:teuthology.orchestra.run.smithi136.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-03-30T13:37:57.463 INFO:teuthology.orchestra.run.smithi136.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-03-30T13:37:57.463 INFO:teuthology.orchestra.run.smithi136.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-03-30T13:37:57.463 INFO:teuthology.orchestra.run.smithi136.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-03-30T13:37:57.488 INFO:teuthology.orchestra.run.smithi136.stderr:done 2024-03-30T13:37:57.490 DEBUG:teuthology.orchestra.run.smithi136:> sudo shutdown -r now 2024-03-30T13:37:58.072 INFO:teuthology.orchestra.run.smithi050.stderr:Sourcing file `/etc/default/grub' 2024-03-30T13:37:58.150 INFO:teuthology.orchestra.run.smithi050.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-03-30T13:37:58.150 INFO:teuthology.orchestra.run.smithi050.stderr:Generating grub configuration file ... 2024-03-30T13:37:58.321 INFO:teuthology.orchestra.run.smithi050.stderr:Found linux image: /boot/vmlinuz-5.15.0-101-generic 2024-03-30T13:37:58.328 INFO:teuthology.orchestra.run.smithi050.stderr:Found initrd image: /boot/initrd.img-5.15.0-101-generic 2024-03-30T13:37:58.607 INFO:teuthology.orchestra.run.smithi050.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-03-30T13:37:58.613 INFO:teuthology.orchestra.run.smithi050.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-03-30T13:37:58.656 INFO:teuthology.orchestra.run.smithi050.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-03-30T13:37:58.662 INFO:teuthology.orchestra.run.smithi050.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-03-30T13:37:58.785 INFO:teuthology.orchestra.run.smithi050.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-03-30T13:37:58.785 INFO:teuthology.orchestra.run.smithi050.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-03-30T13:37:58.785 INFO:teuthology.orchestra.run.smithi050.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-03-30T13:37:58.805 INFO:teuthology.orchestra.run.smithi050.stderr:done 2024-03-30T13:37:58.814 DEBUG:teuthology.orchestra.run.smithi050:> sudo shutdown -r now 2024-03-30T13:38:27.051 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-03-30T13:38:27.052 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi026.front.sepia.ceph.com' 2024-03-30T13:38:27.053 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi026.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-30T13:38:27.540 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2024-03-30T13:38:27.540 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi136.front.sepia.ceph.com' 2024-03-30T13:38:27.541 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi136.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-30T13:38:28.818 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-03-30T13:38:28.818 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-03-30T13:38:28.819 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi050.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-30T13:38:45.406 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.26 2024-03-30T13:38:45.918 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.136 2024-03-30T13:38:47.198 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.50 2024-03-30T13:38:54.415 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi026.front.sepia.ceph.com' 2024-03-30T13:38:54.416 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi026.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-30T13:38:54.920 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi136.front.sepia.ceph.com' 2024-03-30T13:38:54.921 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi136.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-30T13:38:56.200 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-03-30T13:38:56.201 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi050.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-30T13:38:57.982 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.136 2024-03-30T13:39:09.994 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi136.front.sepia.ceph.com' 2024-03-30T13:39:09.995 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi136.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-30T13:39:13.055 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.136 2024-03-30T13:39:28.066 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi136.front.sepia.ceph.com' 2024-03-30T13:39:28.067 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi136.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-30T13:39:31.134 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.136 2024-03-30T13:39:49.150 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi136.front.sepia.ceph.com' 2024-03-30T13:39:49.151 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi136.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-30T13:39:49.432 DEBUG:teuthology.orchestra.run.smithi136:> true 2024-03-30T13:39:50.044 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi136.front.sepia.ceph.com' 2024-03-30T13:39:50.044 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "5.15.0-101-generic"... 2024-03-30T13:39:50.044 DEBUG:teuthology.orchestra.run.smithi136:> uname -r 2024-03-30T13:39:50.089 INFO:teuthology.orchestra.run.smithi136.stdout:5.15.0-101-generic 2024-03-30T13:39:50.090 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-101-generic vs 5.15.0-101-generic 2024-03-30T13:39:50.090 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-03-30T13:39:50.090 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-03-30T13:39:51.090 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-03-30T13:39:51.091 DEBUG:teuthology.orchestra.run.smithi136:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-03-30T13:39:51.174 INFO:teuthology.orchestra.run.smithi136.stdout:ttyS1 2024-03-30T13:39:51.200 DEBUG:teuthology.parallel:result is None 2024-03-30T13:39:54.418 DEBUG:teuthology.orchestra.remote:timed out 2024-03-30T13:39:56.203 DEBUG:teuthology.orchestra.remote:timed out 2024-03-30T13:40:06.419 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi026.front.sepia.ceph.com' 2024-03-30T13:40:06.420 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi026.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-30T13:40:06.657 DEBUG:teuthology.orchestra.run.smithi026:> true 2024-03-30T13:40:07.302 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi026.front.sepia.ceph.com' 2024-03-30T13:40:07.302 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-101-generic"... 2024-03-30T13:40:07.303 DEBUG:teuthology.orchestra.run.smithi026:> uname -r 2024-03-30T13:40:07.350 INFO:teuthology.orchestra.run.smithi026.stdout:5.15.0-101-generic 2024-03-30T13:40:07.351 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-101-generic vs 5.15.0-101-generic 2024-03-30T13:40:07.351 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-03-30T13:40:07.351 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-03-30T13:40:08.204 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-03-30T13:40:08.205 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi050.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-30T13:40:08.352 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-03-30T13:40:08.352 DEBUG:teuthology.orchestra.run.smithi026:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-03-30T13:40:08.403 DEBUG:teuthology.orchestra.run.smithi050:> true 2024-03-30T13:40:08.429 INFO:teuthology.orchestra.run.smithi026.stdout:ttyS1 2024-03-30T13:40:08.452 DEBUG:teuthology.parallel:result is None 2024-03-30T13:40:09.060 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-03-30T13:40:09.060 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-101-generic"... 2024-03-30T13:40:09.060 DEBUG:teuthology.orchestra.run.smithi050:> uname -r 2024-03-30T13:40:09.107 INFO:teuthology.orchestra.run.smithi050.stdout:5.15.0-101-generic 2024-03-30T13:40:09.107 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-101-generic vs 5.15.0-101-generic 2024-03-30T13:40:09.107 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-03-30T13:40:09.107 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-03-30T13:40:10.108 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-03-30T13:40:10.109 DEBUG:teuthology.orchestra.run.smithi050:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-03-30T13:40:10.178 INFO:teuthology.orchestra.run.smithi050.stdout:ttyS1 2024-03-30T13:40:10.192 DEBUG:teuthology.parallel:result is None 2024-03-30T13:40:10.193 INFO:teuthology.run_tasks:Running task internal.base... 2024-03-30T13:40:10.201 INFO:teuthology.task.internal:Creating test directory... 2024-03-30T13:40:10.201 DEBUG:teuthology.orchestra.run.smithi026:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-03-30T13:40:10.204 DEBUG:teuthology.orchestra.run.smithi050:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-03-30T13:40:10.206 DEBUG:teuthology.orchestra.run.smithi136:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-03-30T13:40:10.212 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-03-30T13:40:10.238 INFO:teuthology.run_tasks:Running task internal.archive... 2024-03-30T13:40:10.272 INFO:teuthology.task.internal:Creating archive directory... 2024-03-30T13:40:10.272 DEBUG:teuthology.orchestra.run.smithi026:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-03-30T13:40:10.274 DEBUG:teuthology.orchestra.run.smithi050:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-03-30T13:40:10.277 DEBUG:teuthology.orchestra.run.smithi136:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-03-30T13:40:10.299 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-03-30T13:40:10.306 INFO:teuthology.task.internal:Enabling coredump saving... 2024-03-30T13:40:10.306 DEBUG:teuthology.orchestra.run.smithi026:> 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-03-30T13:40:10.339 DEBUG:teuthology.orchestra.run.smithi050:> 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-03-30T13:40:10.342 DEBUG:teuthology.orchestra.run.smithi136:> 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-03-30T13:40:10.362 INFO:teuthology.orchestra.run.smithi026.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-03-30T13:40:10.366 INFO:teuthology.orchestra.run.smithi136.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-03-30T13:40:10.369 INFO:teuthology.orchestra.run.smithi050.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-03-30T13:40:10.369 INFO:teuthology.orchestra.run.smithi026.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-03-30T13:40:10.374 INFO:teuthology.orchestra.run.smithi136.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-03-30T13:40:10.376 INFO:teuthology.orchestra.run.smithi050.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-03-30T13:40:10.377 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-03-30T13:40:10.384 INFO:teuthology.task.internal:Configuring sudo... 2024-03-30T13:40:10.384 DEBUG:teuthology.orchestra.run.smithi026:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-03-30T13:40:10.415 DEBUG:teuthology.orchestra.run.smithi050:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-03-30T13:40:10.420 DEBUG:teuthology.orchestra.run.smithi136:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-03-30T13:40:10.433 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-03-30T13:40:10.441 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-03-30T13:40:10.442 DEBUG:teuthology.orchestra.run.smithi026:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-03-30T13:40:10.471 DEBUG:teuthology.orchestra.run.smithi050:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-03-30T13:40:10.476 DEBUG:teuthology.orchestra.run.smithi136:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-03-30T13:40:10.481 DEBUG:teuthology.orchestra.run.smithi026:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-03-30T13:40:10.523 DEBUG:teuthology.orchestra.run.smithi026:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-03-30T13:40:10.571 DEBUG:teuthology.orchestra.run.smithi026:> set -ex 2024-03-30T13:40:10.571 DEBUG:teuthology.orchestra.run.smithi026:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-03-30T13:40:10.630 DEBUG:teuthology.orchestra.run.smithi050:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-03-30T13:40:10.636 DEBUG:teuthology.orchestra.run.smithi050:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-03-30T13:40:10.683 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-03-30T13:40:10.683 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-03-30T13:40:10.746 DEBUG:teuthology.orchestra.run.smithi136:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-03-30T13:40:10.752 DEBUG:teuthology.orchestra.run.smithi136:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-03-30T13:40:10.798 DEBUG:teuthology.orchestra.run.smithi136:> set -ex 2024-03-30T13:40:10.798 DEBUG:teuthology.orchestra.run.smithi136:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-03-30T13:40:10.870 DEBUG:teuthology.orchestra.run.smithi026:> sudo service rsyslog restart 2024-03-30T13:40:10.874 DEBUG:teuthology.orchestra.run.smithi050:> sudo service rsyslog restart 2024-03-30T13:40:10.877 DEBUG:teuthology.orchestra.run.smithi136:> sudo service rsyslog restart 2024-03-30T13:40:10.944 INFO:teuthology.run_tasks:Running task internal.timer... 2024-03-30T13:40:10.953 INFO:teuthology.task.internal:Starting timer... 2024-03-30T13:40:10.953 INFO:teuthology.run_tasks:Running task pcp... 2024-03-30T13:40:11.001 INFO:teuthology.run_tasks:Running task selinux... 2024-03-30T13:40:11.032 DEBUG:teuthology.task.selinux:Excluding smithi026: OS 'ubuntu' does not support SELinux 2024-03-30T13:40:11.033 DEBUG:teuthology.task.selinux:Excluding smithi050: OS 'ubuntu' does not support SELinux 2024-03-30T13:40:11.033 DEBUG:teuthology.task.selinux:Excluding smithi136: OS 'ubuntu' does not support SELinux 2024-03-30T13:40:11.033 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-03-30T13:40:11.033 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-03-30T13:40:11.033 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-03-30T13:40:11.033 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-03-30T13:40:11.067 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-03-30T13:40:11.088 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-03-30T13:40:11.089 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi026.front.sepia.ceph.com,smithi050.front.sepia.ceph.com,smithi136.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-03-30T13:47:20.294 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi026.front.sepia.ceph.com'), Remote(name='ubuntu@smithi050.front.sepia.ceph.com'), Remote(name='ubuntu@smithi136.front.sepia.ceph.com')] 2024-03-30T13:47:20.296 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi026.front.sepia.ceph.com' 2024-03-30T13:47:20.297 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi026.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-30T13:47:20.382 DEBUG:teuthology.orchestra.run.smithi026:> true 2024-03-30T13:47:20.467 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi026.front.sepia.ceph.com' 2024-03-30T13:47:20.468 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-03-30T13:47:20.469 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi050.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-30T13:47:20.556 DEBUG:teuthology.orchestra.run.smithi050:> true 2024-03-30T13:47:20.638 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-03-30T13:47:20.639 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi136.front.sepia.ceph.com' 2024-03-30T13:47:20.639 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi136.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-30T13:47:20.724 DEBUG:teuthology.orchestra.run.smithi136:> true 2024-03-30T13:47:20.806 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi136.front.sepia.ceph.com' 2024-03-30T13:47:20.807 INFO:teuthology.run_tasks:Running task clock... 2024-03-30T13:47:20.822 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-03-30T13:47:20.822 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-03-30T13:47:20.823 DEBUG:teuthology.orchestra.run.smithi026:> 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-03-30T13:47:20.827 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-03-30T13:47:20.827 DEBUG:teuthology.orchestra.run.smithi050:> 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-03-30T13:47:20.831 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-03-30T13:47:20.831 DEBUG:teuthology.orchestra.run.smithi136:> 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-03-30T13:47:20.856 INFO:teuthology.orchestra.run.smithi026.stdout:30 Mar 13:47:20 ntpd[17099]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-03-30T13:47:20.856 INFO:teuthology.orchestra.run.smithi026.stdout:30 Mar 13:47:20 ntpd[17099]: Command line: ntpd -gq 2024-03-30T13:47:20.856 INFO:teuthology.orchestra.run.smithi026.stdout:30 Mar 13:47:20 ntpd[17099]: ---------------------------------------------------- 2024-03-30T13:47:20.856 INFO:teuthology.orchestra.run.smithi026.stdout:30 Mar 13:47:20 ntpd[17099]: ntp-4 is maintained by Network Time Foundation, 2024-03-30T13:47:20.856 INFO:teuthology.orchestra.run.smithi026.stdout:30 Mar 13:47:20 ntpd[17099]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-03-30T13:47:20.856 INFO:teuthology.orchestra.run.smithi026.stdout:30 Mar 13:47:20 ntpd[17099]: corporation. Support and training for ntp-4 are 2024-03-30T13:47:20.856 INFO:teuthology.orchestra.run.smithi026.stdout:30 Mar 13:47:20 ntpd[17099]: available at https://www.nwtime.org/support 2024-03-30T13:47:20.856 INFO:teuthology.orchestra.run.smithi026.stdout:30 Mar 13:47:20 ntpd[17099]: ---------------------------------------------------- 2024-03-30T13:47:20.857 INFO:teuthology.orchestra.run.smithi026.stdout:30 Mar 13:47:20 ntpd[17099]: proto: precision = 0.065 usec (-24) 2024-03-30T13:47:20.857 INFO:teuthology.orchestra.run.smithi026.stdout:30 Mar 13:47:20 ntpd[17099]: basedate set to 2022-02-04 2024-03-30T13:47:20.857 INFO:teuthology.orchestra.run.smithi026.stdout:30 Mar 13:47:20 ntpd[17099]: gps base set to 2022-02-06 (week 2196) 2024-03-30T13:47:20.857 INFO:teuthology.orchestra.run.smithi026.stdout:30 Mar 13:47:20 ntpd[17099]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-03-30T13:47:20.858 INFO:teuthology.orchestra.run.smithi026.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-03-30T13:47:20.858 INFO:teuthology.orchestra.run.smithi026.stderr:restrict ::: KOD does nothing without LIMITED. 2024-03-30T13:47:20.859 INFO:teuthology.orchestra.run.smithi026.stdout:30 Mar 13:47:20 ntpd[17099]: restrict ::: KOD does nothing without LIMITED. 2024-03-30T13:47:20.859 INFO:teuthology.orchestra.run.smithi026.stdout:30 Mar 13:47:20 ntpd[17099]: Listen and drop on 0 v6wildcard [::]:123 2024-03-30T13:47:20.859 INFO:teuthology.orchestra.run.smithi026.stdout:30 Mar 13:47:20 ntpd[17099]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-03-30T13:47:20.859 INFO:teuthology.orchestra.run.smithi026.stdout:30 Mar 13:47:20 ntpd[17099]: Listen normally on 2 lo 127.0.0.1:123 2024-03-30T13:47:20.859 INFO:teuthology.orchestra.run.smithi026.stdout:30 Mar 13:47:20 ntpd[17099]: Listen normally on 3 ens1f0 172.21.15.26:123 2024-03-30T13:47:20.859 INFO:teuthology.orchestra.run.smithi026.stdout:30 Mar 13:47:20 ntpd[17099]: Listen normally on 4 lo [::1]:123 2024-03-30T13:47:20.859 INFO:teuthology.orchestra.run.smithi026.stdout:30 Mar 13:47:20 ntpd[17099]: Listen normally on 5 ens1f0 [fe80::ae1f:6bff:fea5:cac0%4]:123 2024-03-30T13:47:20.859 INFO:teuthology.orchestra.run.smithi026.stdout:30 Mar 13:47:20 ntpd[17099]: Listening on routing socket on fd #22 for interface updates 2024-03-30T13:47:20.861 INFO:teuthology.orchestra.run.smithi050.stdout:30 Mar 13:47:20 ntpd[17082]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-03-30T13:47:20.861 INFO:teuthology.orchestra.run.smithi050.stdout:30 Mar 13:47:20 ntpd[17082]: Command line: ntpd -gq 2024-03-30T13:47:20.861 INFO:teuthology.orchestra.run.smithi050.stdout:30 Mar 13:47:20 ntpd[17082]: ---------------------------------------------------- 2024-03-30T13:47:20.861 INFO:teuthology.orchestra.run.smithi050.stdout:30 Mar 13:47:20 ntpd[17082]: ntp-4 is maintained by Network Time Foundation, 2024-03-30T13:47:20.861 INFO:teuthology.orchestra.run.smithi050.stdout:30 Mar 13:47:20 ntpd[17082]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-03-30T13:47:20.861 INFO:teuthology.orchestra.run.smithi050.stdout:30 Mar 13:47:20 ntpd[17082]: corporation. Support and training for ntp-4 are 2024-03-30T13:47:20.861 INFO:teuthology.orchestra.run.smithi050.stdout:30 Mar 13:47:20 ntpd[17082]: available at https://www.nwtime.org/support 2024-03-30T13:47:20.861 INFO:teuthology.orchestra.run.smithi050.stdout:30 Mar 13:47:20 ntpd[17082]: ---------------------------------------------------- 2024-03-30T13:47:20.862 INFO:teuthology.orchestra.run.smithi050.stdout:30 Mar 13:47:20 ntpd[17082]: proto: precision = 0.046 usec (-24) 2024-03-30T13:47:20.862 INFO:teuthology.orchestra.run.smithi050.stdout:30 Mar 13:47:20 ntpd[17082]: basedate set to 2022-02-04 2024-03-30T13:47:20.862 INFO:teuthology.orchestra.run.smithi050.stdout:30 Mar 13:47:20 ntpd[17082]: gps base set to 2022-02-06 (week 2196) 2024-03-30T13:47:20.862 INFO:teuthology.orchestra.run.smithi050.stdout:30 Mar 13:47:20 ntpd[17082]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-03-30T13:47:20.862 INFO:teuthology.orchestra.run.smithi050.stdout:30 Mar 13:47:20 ntpd[17082]: restrict ::: KOD does nothing without LIMITED. 2024-03-30T13:47:20.862 INFO:teuthology.orchestra.run.smithi050.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-03-30T13:47:20.862 INFO:teuthology.orchestra.run.smithi050.stderr:restrict ::: KOD does nothing without LIMITED. 2024-03-30T13:47:20.863 INFO:teuthology.orchestra.run.smithi050.stdout:30 Mar 13:47:20 ntpd[17082]: Listen and drop on 0 v6wildcard [::]:123 2024-03-30T13:47:20.863 INFO:teuthology.orchestra.run.smithi050.stdout:30 Mar 13:47:20 ntpd[17082]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-03-30T13:47:20.863 INFO:teuthology.orchestra.run.smithi050.stdout:30 Mar 13:47:20 ntpd[17082]: Listen normally on 2 lo 127.0.0.1:123 2024-03-30T13:47:20.863 INFO:teuthology.orchestra.run.smithi050.stdout:30 Mar 13:47:20 ntpd[17082]: Listen normally on 3 ens1f0 172.21.15.50:123 2024-03-30T13:47:20.863 INFO:teuthology.orchestra.run.smithi050.stdout:30 Mar 13:47:20 ntpd[17082]: Listen normally on 4 lo [::1]:123 2024-03-30T13:47:20.864 INFO:teuthology.orchestra.run.smithi050.stdout:30 Mar 13:47:20 ntpd[17082]: Listen normally on 5 ens1f0 [fe80::ec4:7aff:febd:1584%4]:123 2024-03-30T13:47:20.864 INFO:teuthology.orchestra.run.smithi050.stdout:30 Mar 13:47:20 ntpd[17082]: Listening on routing socket on fd #22 for interface updates 2024-03-30T13:47:20.875 INFO:teuthology.orchestra.run.smithi136.stdout:30 Mar 13:47:20 ntpd[17191]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-03-30T13:47:20.875 INFO:teuthology.orchestra.run.smithi136.stdout:30 Mar 13:47:20 ntpd[17191]: Command line: ntpd -gq 2024-03-30T13:47:20.875 INFO:teuthology.orchestra.run.smithi136.stdout:30 Mar 13:47:20 ntpd[17191]: ---------------------------------------------------- 2024-03-30T13:47:20.875 INFO:teuthology.orchestra.run.smithi136.stdout:30 Mar 13:47:20 ntpd[17191]: ntp-4 is maintained by Network Time Foundation, 2024-03-30T13:47:20.875 INFO:teuthology.orchestra.run.smithi136.stdout:30 Mar 13:47:20 ntpd[17191]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-03-30T13:47:20.875 INFO:teuthology.orchestra.run.smithi136.stdout:30 Mar 13:47:20 ntpd[17191]: corporation. Support and training for ntp-4 are 2024-03-30T13:47:20.876 INFO:teuthology.orchestra.run.smithi136.stdout:30 Mar 13:47:20 ntpd[17191]: available at https://www.nwtime.org/support 2024-03-30T13:47:20.876 INFO:teuthology.orchestra.run.smithi136.stdout:30 Mar 13:47:20 ntpd[17191]: ---------------------------------------------------- 2024-03-30T13:47:20.876 INFO:teuthology.orchestra.run.smithi136.stdout:30 Mar 13:47:20 ntpd[17191]: proto: precision = 0.060 usec (-24) 2024-03-30T13:47:20.876 INFO:teuthology.orchestra.run.smithi136.stdout:30 Mar 13:47:20 ntpd[17191]: basedate set to 2022-02-04 2024-03-30T13:47:20.876 INFO:teuthology.orchestra.run.smithi136.stdout:30 Mar 13:47:20 ntpd[17191]: gps base set to 2022-02-06 (week 2196) 2024-03-30T13:47:20.877 INFO:teuthology.orchestra.run.smithi136.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-03-30T13:47:20.877 INFO:teuthology.orchestra.run.smithi136.stdout:30 Mar 13:47:20 ntpd[17191]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-03-30T13:47:20.877 INFO:teuthology.orchestra.run.smithi136.stdout:30 Mar 13:47:20 ntpd[17191]: restrict ::: KOD does nothing without LIMITED. 2024-03-30T13:47:20.877 INFO:teuthology.orchestra.run.smithi136.stderr:restrict ::: KOD does nothing without LIMITED. 2024-03-30T13:47:20.878 INFO:teuthology.orchestra.run.smithi136.stdout:30 Mar 13:47:20 ntpd[17191]: Listen and drop on 0 v6wildcard [::]:123 2024-03-30T13:47:20.878 INFO:teuthology.orchestra.run.smithi136.stdout:30 Mar 13:47:20 ntpd[17191]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-03-30T13:47:20.879 INFO:teuthology.orchestra.run.smithi136.stdout:30 Mar 13:47:20 ntpd[17191]: Listen normally on 2 lo 127.0.0.1:123 2024-03-30T13:47:20.879 INFO:teuthology.orchestra.run.smithi136.stdout:30 Mar 13:47:20 ntpd[17191]: Listen normally on 3 enp3s0f1 172.21.15.136:123 2024-03-30T13:47:20.879 INFO:teuthology.orchestra.run.smithi136.stdout:30 Mar 13:47:20 ntpd[17191]: Listen normally on 4 lo [::1]:123 2024-03-30T13:47:20.879 INFO:teuthology.orchestra.run.smithi136.stdout:30 Mar 13:47:20 ntpd[17191]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:6e43%5]:123 2024-03-30T13:47:20.879 INFO:teuthology.orchestra.run.smithi136.stdout:30 Mar 13:47:20 ntpd[17191]: Listening on routing socket on fd #22 for interface updates 2024-03-30T13:47:21.857 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:21 ntpd[17099]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:21.857 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:21 ntpd[17099]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:21.857 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:21 ntpd[17099]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:21.858 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:21 ntpd[17099]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:21.858 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:21 ntpd[17099]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:21.858 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:21 ntpd[17099]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:21.858 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:21 ntpd[17099]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-30T13:47:21.858 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:21 ntpd[17099]: can't open /var/log/ntpstats/peerstats.20240330: Permission denied 2024-03-30T13:47:21.858 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:21 ntpd[17099]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:21.858 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:21 ntpd[17099]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:21.858 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:21 ntpd[17099]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-30T13:47:21.858 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:21 ntpd[17099]: can't open /var/log/ntpstats/peerstats.20240330: Permission denied 2024-03-30T13:47:21.859 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:21 ntpd[17082]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:21.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:21 ntpd[17082]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:21.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:21 ntpd[17082]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:21.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:21 ntpd[17082]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:21.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:21 ntpd[17082]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:21.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:21 ntpd[17082]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:21.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:21 ntpd[17082]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:21.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:21 ntpd[17082]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:21.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:21 ntpd[17082]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-30T13:47:21.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:21 ntpd[17082]: can't open /var/log/ntpstats/peerstats.20240330: Permission denied 2024-03-30T13:47:21.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:21 ntpd[17082]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:21.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:21 ntpd[17082]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:21.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:21 ntpd[17082]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-30T13:47:21.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:21 ntpd[17082]: can't open /var/log/ntpstats/peerstats.20240330: Permission denied 2024-03-30T13:47:21.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:21 ntpd[17191]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:21.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:21 ntpd[17191]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:21.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:21 ntpd[17191]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:21.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:21 ntpd[17191]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:21.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:21 ntpd[17191]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-30T13:47:21.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:21 ntpd[17191]: can't open /var/log/ntpstats/peerstats.20240330: Permission denied 2024-03-30T13:47:22.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:22 ntpd[17191]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:22.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:22 ntpd[17191]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:22.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:22 ntpd[17191]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:22.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:22 ntpd[17191]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:22.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:22 ntpd[17191]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:22.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:22 ntpd[17191]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:22.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:22 ntpd[17191]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-30T13:47:22.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:22 ntpd[17191]: can't open /var/log/ntpstats/peerstats.20240330: Permission denied 2024-03-30T13:47:23.857 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:23 ntpd[17099]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:23.857 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:23 ntpd[17099]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:23.857 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:23 ntpd[17099]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:23.858 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:23 ntpd[17099]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:23.858 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:23 ntpd[17099]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:23.858 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:23 ntpd[17099]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:23.858 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:23 ntpd[17099]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-30T13:47:23.858 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:23 ntpd[17099]: can't open /var/log/ntpstats/peerstats.20240330: Permission denied 2024-03-30T13:47:23.858 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:23 ntpd[17099]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:23.858 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:23 ntpd[17099]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:23.858 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:23 ntpd[17099]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-30T13:47:23.858 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:23 ntpd[17099]: can't open /var/log/ntpstats/peerstats.20240330: Permission denied 2024-03-30T13:47:23.859 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:23 ntpd[17082]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:23.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:23 ntpd[17082]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:23.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:23 ntpd[17082]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:23.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:23 ntpd[17082]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:23.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:23 ntpd[17082]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:23.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:23 ntpd[17082]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:23.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:23 ntpd[17082]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-30T13:47:23.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:23 ntpd[17082]: can't open /var/log/ntpstats/peerstats.20240330: Permission denied 2024-03-30T13:47:23.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:23 ntpd[17082]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:23.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:23 ntpd[17082]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:23.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:23 ntpd[17082]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-30T13:47:23.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:23 ntpd[17082]: can't open /var/log/ntpstats/peerstats.20240330: Permission denied 2024-03-30T13:47:23.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:23 ntpd[17191]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:23.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:23 ntpd[17191]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:23.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:23 ntpd[17191]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:23.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:23 ntpd[17191]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:23.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:23 ntpd[17191]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:23.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:23 ntpd[17191]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:23.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:23 ntpd[17191]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-30T13:47:23.877 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:23 ntpd[17191]: can't open /var/log/ntpstats/peerstats.20240330: Permission denied 2024-03-30T13:47:23.877 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:23 ntpd[17191]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:23.877 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:23 ntpd[17191]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:23.877 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:23 ntpd[17191]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-30T13:47:23.877 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:23 ntpd[17191]: can't open /var/log/ntpstats/peerstats.20240330: Permission denied 2024-03-30T13:47:24.859 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:24 ntpd[17082]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:24.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:24 ntpd[17082]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:24.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:24 ntpd[17082]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:24.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:24 ntpd[17082]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:24.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:24 ntpd[17082]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-30T13:47:24.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:24 ntpd[17082]: can't open /var/log/ntpstats/peerstats.20240330: Permission denied 2024-03-30T13:47:24.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:24 ntpd[17191]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:24.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:24 ntpd[17191]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:24.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:24 ntpd[17191]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:24.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:24 ntpd[17191]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:24.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:24 ntpd[17191]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-30T13:47:24.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:24 ntpd[17191]: can't open /var/log/ntpstats/peerstats.20240330: Permission denied 2024-03-30T13:47:25.859 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:25 ntpd[17099]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:25.859 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:25 ntpd[17099]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:25.859 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:25 ntpd[17099]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:25.859 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:25 ntpd[17099]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:25.859 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:25 ntpd[17099]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:25.860 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:25 ntpd[17099]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:25.860 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:25 ntpd[17099]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:25.860 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:25 ntpd[17099]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:25.860 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:25 ntpd[17099]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:25.860 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:25 ntpd[17099]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:25.860 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:25 ntpd[17099]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-30T13:47:25.860 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:25 ntpd[17099]: can't open /var/log/ntpstats/peerstats.20240330: Permission denied 2024-03-30T13:47:25.860 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:25 ntpd[17099]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:25.861 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:25 ntpd[17099]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:25.861 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:25 ntpd[17099]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-30T13:47:25.861 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:25 ntpd[17099]: can't open /var/log/ntpstats/peerstats.20240330: Permission denied 2024-03-30T13:47:25.861 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:25 ntpd[17099]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:25.861 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:25 ntpd[17099]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:25.861 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:25 ntpd[17099]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-30T13:47:25.861 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:25 ntpd[17099]: can't open /var/log/ntpstats/peerstats.20240330: Permission denied 2024-03-30T13:47:25.863 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:25 ntpd[17082]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:25.863 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:25 ntpd[17082]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:25.863 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:25 ntpd[17082]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:25.863 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:25 ntpd[17082]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:25.863 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:25 ntpd[17082]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:25.864 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:25 ntpd[17082]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:25.864 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:25 ntpd[17082]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-30T13:47:25.864 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:25 ntpd[17082]: can't open /var/log/ntpstats/peerstats.20240330: Permission denied 2024-03-30T13:47:25.864 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:25 ntpd[17082]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:25.864 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:25 ntpd[17082]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:25.864 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:25 ntpd[17082]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-30T13:47:25.864 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:25 ntpd[17082]: can't open /var/log/ntpstats/peerstats.20240330: Permission denied 2024-03-30T13:47:25.877 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:25 ntpd[17191]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:25.877 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:25 ntpd[17191]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:25.877 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:25 ntpd[17191]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:25.878 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:25 ntpd[17191]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:25.878 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:25 ntpd[17191]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:25.878 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:25 ntpd[17191]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:25.878 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:25 ntpd[17191]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-30T13:47:25.878 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:25 ntpd[17191]: can't open /var/log/ntpstats/peerstats.20240330: Permission denied 2024-03-30T13:47:25.878 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:25 ntpd[17191]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:25.879 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:25 ntpd[17191]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:25.879 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:25 ntpd[17191]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-30T13:47:25.879 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:25 ntpd[17191]: can't open /var/log/ntpstats/peerstats.20240330: Permission denied 2024-03-30T13:47:26.859 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:26 ntpd[17082]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:26.859 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:26 ntpd[17082]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:26.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:26 ntpd[17082]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:26.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:26 ntpd[17082]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:26.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:26 ntpd[17082]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-30T13:47:26.860 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:26 ntpd[17082]: can't open /var/log/ntpstats/peerstats.20240330: Permission denied 2024-03-30T13:47:26.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:26 ntpd[17191]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:26.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:26 ntpd[17191]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:26.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:26 ntpd[17191]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:26.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:26 ntpd[17191]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:26.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:26 ntpd[17191]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-30T13:47:26.876 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:26 ntpd[17191]: can't open /var/log/ntpstats/peerstats.20240330: Permission denied 2024-03-30T13:47:27.858 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:27 ntpd[17099]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:27.858 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:27 ntpd[17099]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:27.858 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:27 ntpd[17099]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:27.858 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:27 ntpd[17099]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:27.858 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:27 ntpd[17099]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:27.858 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:27 ntpd[17099]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:27.858 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:27 ntpd[17099]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:27.858 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:27 ntpd[17099]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:27.858 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:27 ntpd[17099]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-30T13:47:27.858 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:27 ntpd[17099]: can't open /var/log/ntpstats/peerstats.20240330: Permission denied 2024-03-30T13:47:27.858 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:27 ntpd[17099]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:27.859 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:27 ntpd[17099]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:27.859 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:27 ntpd[17099]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-30T13:47:27.859 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:27 ntpd[17099]: can't open /var/log/ntpstats/peerstats.20240330: Permission denied 2024-03-30T13:47:27.859 INFO:teuthology.orchestra.run.smithi026.stdout:30 Mar 13:47:27 ntpd[17099]: ntpd: time slew -0.000075 s 2024-03-30T13:47:27.859 INFO:teuthology.orchestra.run.smithi026.stdout:ntpd: time slew -0.000075s 2024-03-30T13:47:27.860 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:27 ntpd[17099]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-03-30T13:47:27.860 INFO:teuthology.orchestra.run.smithi026.stderr:30 Mar 13:47:27 ntpd[17099]: can't open /var/log/ntpstats/loopstats.20240330: Permission denied 2024-03-30T13:47:27.862 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:27 ntpd[17082]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:27.862 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:27 ntpd[17082]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:27.862 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:27 ntpd[17082]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:27.862 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:27 ntpd[17082]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:27.862 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:27 ntpd[17082]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:27.862 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:27 ntpd[17082]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:27.862 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:27 ntpd[17082]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-30T13:47:27.862 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:27 ntpd[17082]: can't open /var/log/ntpstats/peerstats.20240330: Permission denied 2024-03-30T13:47:27.863 INFO:teuthology.orchestra.run.smithi050.stdout:30 Mar 13:47:27 ntpd[17082]: ntpd: time slew -0.001696 s 2024-03-30T13:47:27.863 INFO:teuthology.orchestra.run.smithi050.stdout:ntpd: time slew -0.001696s 2024-03-30T13:47:27.863 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:27 ntpd[17082]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-03-30T13:47:27.863 INFO:teuthology.orchestra.run.smithi050.stderr:30 Mar 13:47:27 ntpd[17082]: can't open /var/log/ntpstats/loopstats.20240330: Permission denied 2024-03-30T13:47:27.877 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:27 ntpd[17191]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:27.878 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:27 ntpd[17191]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:27.878 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:27 ntpd[17191]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:27.878 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:27 ntpd[17191]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:27.878 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:27 ntpd[17191]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:27.878 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:27 ntpd[17191]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:27.878 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:27 ntpd[17191]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-30T13:47:27.878 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:27 ntpd[17191]: can't open /var/log/ntpstats/peerstats.20240330: Permission denied 2024-03-30T13:47:27.878 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:27 ntpd[17191]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-30T13:47:27.878 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:27 ntpd[17191]: can't open /var/log/ntpstats/rawstats.20240330: Permission denied 2024-03-30T13:47:27.878 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:27 ntpd[17191]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-30T13:47:27.879 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:27 ntpd[17191]: can't open /var/log/ntpstats/peerstats.20240330: Permission denied 2024-03-30T13:47:27.879 INFO:teuthology.orchestra.run.smithi136.stdout:30 Mar 13:47:27 ntpd[17191]: ntpd: time slew -0.001670 s 2024-03-30T13:47:27.879 INFO:teuthology.orchestra.run.smithi136.stdout:ntpd: time slew -0.001670s 2024-03-30T13:47:27.879 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:27 ntpd[17191]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-03-30T13:47:27.879 INFO:teuthology.orchestra.run.smithi136.stderr:30 Mar 13:47:27 ntpd[17191]: can't open /var/log/ntpstats/loopstats.20240330: Permission denied 2024-03-30T13:47:27.907 INFO:teuthology.orchestra.run.smithi026.stdout: remote refid st t when poll reach delay offset jitter 2024-03-30T13:47:27.907 INFO:teuthology.orchestra.run.smithi026.stdout:============================================================================== 2024-03-30T13:47:27.908 INFO:teuthology.orchestra.run.smithi026.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-30T13:47:27.908 INFO:teuthology.orchestra.run.smithi026.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-30T13:47:27.908 INFO:teuthology.orchestra.run.smithi026.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-30T13:47:27.908 INFO:teuthology.orchestra.run.smithi026.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-30T13:47:27.910 INFO:teuthology.orchestra.run.smithi050.stdout: remote refid st t when poll reach delay offset jitter 2024-03-30T13:47:27.910 INFO:teuthology.orchestra.run.smithi050.stdout:============================================================================== 2024-03-30T13:47:27.910 INFO:teuthology.orchestra.run.smithi050.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-30T13:47:27.911 INFO:teuthology.orchestra.run.smithi050.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-30T13:47:27.911 INFO:teuthology.orchestra.run.smithi050.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-30T13:47:27.911 INFO:teuthology.orchestra.run.smithi050.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-30T13:47:27.924 INFO:teuthology.orchestra.run.smithi136.stdout: remote refid st t when poll reach delay offset jitter 2024-03-30T13:47:27.924 INFO:teuthology.orchestra.run.smithi136.stdout:============================================================================== 2024-03-30T13:47:27.924 INFO:teuthology.orchestra.run.smithi136.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-30T13:47:27.925 INFO:teuthology.orchestra.run.smithi136.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-30T13:47:27.925 INFO:teuthology.orchestra.run.smithi136.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-30T13:47:27.925 INFO:teuthology.orchestra.run.smithi136.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-30T13:47:27.925 INFO:teuthology.run_tasks:Running task install... 2024-03-30T13:47:27.934 DEBUG:teuthology.task.install:project ceph 2024-03-30T13:47:27.934 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': '4e50bbcdd1630c7760b708f3a5b4d38a121e66cb'}} 2024-03-30T13:47:27.934 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': '4e50bbcdd1630c7760b708f3a5b4d38a121e66cb'} 2024-03-30T13:47:27.934 INFO:teuthology.task.install:Using flavor: default 2024-03-30T13:47:27.940 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-03-30T13:47:27.940 INFO:teuthology.task.install:extra packages: [] 2024-03-30T13:47:27.940 DEBUG:teuthology.orchestra.run.smithi026:> sudo apt-key list | grep Ceph 2024-03-30T13:47:27.941 DEBUG:teuthology.orchestra.run.smithi050:> sudo apt-key list | grep Ceph 2024-03-30T13:47:27.941 DEBUG:teuthology.orchestra.run.smithi136:> sudo apt-key list | grep Ceph 2024-03-30T13:47:28.005 INFO:teuthology.orchestra.run.smithi026.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-03-30T13:47:28.008 INFO:teuthology.orchestra.run.smithi050.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-03-30T13:47:28.025 INFO:teuthology.orchestra.run.smithi136.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-03-30T13:47:28.034 INFO:teuthology.orchestra.run.smithi026.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-03-30T13:47:28.034 INFO:teuthology.orchestra.run.smithi026.stdout:uid [ unknown] Ceph.com (release key) 2024-03-30T13:47:28.035 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-03-30T13:47:28.035 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=4e50bbcdd1630c7760b708f3a5b4d38a121e66cb 2024-03-30T13:47:28.040 INFO:teuthology.orchestra.run.smithi050.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-03-30T13:47:28.041 INFO:teuthology.orchestra.run.smithi050.stdout:uid [ unknown] Ceph.com (release key) 2024-03-30T13:47:28.041 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-03-30T13:47:28.041 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=4e50bbcdd1630c7760b708f3a5b4d38a121e66cb 2024-03-30T13:47:28.055 INFO:teuthology.orchestra.run.smithi136.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-03-30T13:47:28.055 INFO:teuthology.orchestra.run.smithi136.stdout:uid [ unknown] Ceph.com (release key) 2024-03-30T13:47:28.055 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-03-30T13:47:28.055 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=4e50bbcdd1630c7760b708f3a5b4d38a121e66cb 2024-03-30T13:47:28.261 INFO:teuthology.task.install.deb:Pulling from https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default/ 2024-03-30T13:47:28.261 INFO:teuthology.task.install.deb:Package version is 19.0.0-1967-g4e50bbcd-1jammy 2024-03-30T13:47:28.269 INFO:teuthology.task.install.deb:Pulling from https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default/ 2024-03-30T13:47:28.269 INFO:teuthology.task.install.deb:Package version is 19.0.0-1967-g4e50bbcd-1jammy 2024-03-30T13:47:28.275 INFO:teuthology.task.install.deb:Pulling from https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default/ 2024-03-30T13:47:28.276 INFO:teuthology.task.install.deb:Package version is 19.0.0-1967-g4e50bbcd-1jammy 2024-03-30T13:47:28.374 DEBUG:teuthology.orchestra.run.smithi026:> set -ex 2024-03-30T13:47:28.374 DEBUG:teuthology.orchestra.run.smithi026:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-03-30T13:47:28.385 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-03-30T13:47:28.385 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-03-30T13:47:28.390 DEBUG:teuthology.orchestra.run.smithi136:> set -ex 2024-03-30T13:47:28.390 DEBUG:teuthology.orchestra.run.smithi136:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-03-30T13:47:28.393 DEBUG:teuthology.orchestra.run.smithi026:> sudo apt-get update 2024-03-30T13:47:28.406 DEBUG:teuthology.orchestra.run.smithi050:> sudo apt-get update 2024-03-30T13:47:28.407 DEBUG:teuthology.orchestra.run.smithi136:> sudo apt-get update 2024-03-30T13:47:28.572 INFO:teuthology.orchestra.run.smithi026.stdout:Hit:1 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-03-30T13:47:28.572 INFO:teuthology.orchestra.run.smithi026.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-03-30T13:47:28.576 INFO:teuthology.orchestra.run.smithi136.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-03-30T13:47:28.577 INFO:teuthology.orchestra.run.smithi136.stdout:Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-03-30T13:47:28.586 INFO:teuthology.orchestra.run.smithi026.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-03-30T13:47:28.590 INFO:teuthology.orchestra.run.smithi136.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-03-30T13:47:28.607 INFO:teuthology.orchestra.run.smithi026.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-03-30T13:47:28.611 INFO:teuthology.orchestra.run.smithi136.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-03-30T13:47:28.619 INFO:teuthology.orchestra.run.smithi026.stdout:Ign:5 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy InRelease 2024-03-30T13:47:28.625 INFO:teuthology.orchestra.run.smithi136.stdout:Ign:5 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy InRelease 2024-03-30T13:47:28.640 INFO:teuthology.orchestra.run.smithi026.stdout:Get:6 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy Release [7,662 B] 2024-03-30T13:47:28.646 INFO:teuthology.orchestra.run.smithi136.stdout:Get:6 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy Release [7,662 B] 2024-03-30T13:47:28.666 INFO:teuthology.orchestra.run.smithi026.stdout:Ign:7 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy Release.gpg 2024-03-30T13:47:28.667 INFO:teuthology.orchestra.run.smithi136.stdout:Ign:7 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy Release.gpg 2024-03-30T13:47:28.687 INFO:teuthology.orchestra.run.smithi026.stdout:Get:8 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,412 B] 2024-03-30T13:47:28.688 INFO:teuthology.orchestra.run.smithi136.stdout:Get:8 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 Packages [17.8 kB] 2024-03-30T13:47:28.692 INFO:teuthology.orchestra.run.smithi050.stdout:Ign:1 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy InRelease 2024-03-30T13:47:28.706 INFO:teuthology.orchestra.run.smithi050.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-03-30T13:47:28.706 INFO:teuthology.orchestra.run.smithi050.stdout:Hit:3 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-03-30T13:47:28.715 INFO:teuthology.orchestra.run.smithi136.stdout:Get:9 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,412 B] 2024-03-30T13:47:28.728 INFO:teuthology.orchestra.run.smithi026.stdout:Get:9 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 Packages [17.8 kB] 2024-03-30T13:47:28.728 INFO:teuthology.orchestra.run.smithi050.stdout:Get:4 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy Release [7,662 B] 2024-03-30T13:47:28.765 INFO:teuthology.orchestra.run.smithi050.stdout:Ign:5 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy Release.gpg 2024-03-30T13:47:28.778 INFO:teuthology.orchestra.run.smithi050.stdout:Hit:6 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-03-30T13:47:28.802 INFO:teuthology.orchestra.run.smithi050.stdout:Get:7 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 Packages [17.8 kB] 2024-03-30T13:47:28.844 INFO:teuthology.orchestra.run.smithi050.stdout:Get:8 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,412 B] 2024-03-30T13:47:28.860 INFO:teuthology.orchestra.run.smithi050.stdout:Hit:9 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-03-30T13:47:28.929 INFO:teuthology.orchestra.run.smithi136.stdout:Fetched 28.9 kB in 0s (84.5 kB/s) 2024-03-30T13:47:28.954 INFO:teuthology.orchestra.run.smithi026.stdout:Fetched 28.9 kB in 0s (77.3 kB/s) 2024-03-30T13:47:29.084 INFO:teuthology.orchestra.run.smithi050.stdout:Fetched 28.9 kB in 0s (58.9 kB/s) 2024-03-30T13:47:29.853 INFO:teuthology.orchestra.run.smithi136.stdout:Reading package lists... 2024-03-30T13:47:29.868 DEBUG:teuthology.orchestra.run.smithi136:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=19.0.0-1967-g4e50bbcd-1jammy cephadm=19.0.0-1967-g4e50bbcd-1jammy ceph-mds=19.0.0-1967-g4e50bbcd-1jammy ceph-mgr=19.0.0-1967-g4e50bbcd-1jammy ceph-common=19.0.0-1967-g4e50bbcd-1jammy ceph-fuse=19.0.0-1967-g4e50bbcd-1jammy ceph-test=19.0.0-1967-g4e50bbcd-1jammy ceph-volume=19.0.0-1967-g4e50bbcd-1jammy radosgw=19.0.0-1967-g4e50bbcd-1jammy python3-rados=19.0.0-1967-g4e50bbcd-1jammy python3-rgw=19.0.0-1967-g4e50bbcd-1jammy python3-cephfs=19.0.0-1967-g4e50bbcd-1jammy python3-rbd=19.0.0-1967-g4e50bbcd-1jammy libcephfs2=19.0.0-1967-g4e50bbcd-1jammy libcephfs-dev=19.0.0-1967-g4e50bbcd-1jammy librados2=19.0.0-1967-g4e50bbcd-1jammy librbd1=19.0.0-1967-g4e50bbcd-1jammy rbd-fuse=19.0.0-1967-g4e50bbcd-1jammy 2024-03-30T13:47:29.922 INFO:teuthology.orchestra.run.smithi026.stdout:Reading package lists... 2024-03-30T13:47:29.927 INFO:teuthology.orchestra.run.smithi136.stdout:Reading package lists... 2024-03-30T13:47:29.938 DEBUG:teuthology.orchestra.run.smithi026:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=19.0.0-1967-g4e50bbcd-1jammy cephadm=19.0.0-1967-g4e50bbcd-1jammy ceph-mds=19.0.0-1967-g4e50bbcd-1jammy ceph-mgr=19.0.0-1967-g4e50bbcd-1jammy ceph-common=19.0.0-1967-g4e50bbcd-1jammy ceph-fuse=19.0.0-1967-g4e50bbcd-1jammy ceph-test=19.0.0-1967-g4e50bbcd-1jammy ceph-volume=19.0.0-1967-g4e50bbcd-1jammy radosgw=19.0.0-1967-g4e50bbcd-1jammy python3-rados=19.0.0-1967-g4e50bbcd-1jammy python3-rgw=19.0.0-1967-g4e50bbcd-1jammy python3-cephfs=19.0.0-1967-g4e50bbcd-1jammy python3-rbd=19.0.0-1967-g4e50bbcd-1jammy libcephfs2=19.0.0-1967-g4e50bbcd-1jammy libcephfs-dev=19.0.0-1967-g4e50bbcd-1jammy librados2=19.0.0-1967-g4e50bbcd-1jammy librbd1=19.0.0-1967-g4e50bbcd-1jammy rbd-fuse=19.0.0-1967-g4e50bbcd-1jammy 2024-03-30T13:47:30.007 INFO:teuthology.orchestra.run.smithi026.stdout:Reading package lists... 2024-03-30T13:47:30.092 INFO:teuthology.orchestra.run.smithi050.stdout:Reading package lists... 2024-03-30T13:47:30.108 DEBUG:teuthology.orchestra.run.smithi050:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=19.0.0-1967-g4e50bbcd-1jammy cephadm=19.0.0-1967-g4e50bbcd-1jammy ceph-mds=19.0.0-1967-g4e50bbcd-1jammy ceph-mgr=19.0.0-1967-g4e50bbcd-1jammy ceph-common=19.0.0-1967-g4e50bbcd-1jammy ceph-fuse=19.0.0-1967-g4e50bbcd-1jammy ceph-test=19.0.0-1967-g4e50bbcd-1jammy ceph-volume=19.0.0-1967-g4e50bbcd-1jammy radosgw=19.0.0-1967-g4e50bbcd-1jammy python3-rados=19.0.0-1967-g4e50bbcd-1jammy python3-rgw=19.0.0-1967-g4e50bbcd-1jammy python3-cephfs=19.0.0-1967-g4e50bbcd-1jammy python3-rbd=19.0.0-1967-g4e50bbcd-1jammy libcephfs2=19.0.0-1967-g4e50bbcd-1jammy libcephfs-dev=19.0.0-1967-g4e50bbcd-1jammy librados2=19.0.0-1967-g4e50bbcd-1jammy librbd1=19.0.0-1967-g4e50bbcd-1jammy rbd-fuse=19.0.0-1967-g4e50bbcd-1jammy 2024-03-30T13:47:30.126 INFO:teuthology.orchestra.run.smithi136.stdout:Building dependency tree... 2024-03-30T13:47:30.126 INFO:teuthology.orchestra.run.smithi136.stdout:Reading state information... 2024-03-30T13:47:30.160 INFO:teuthology.orchestra.run.smithi050.stdout:Reading package lists... 2024-03-30T13:47:30.208 INFO:teuthology.orchestra.run.smithi026.stdout:Building dependency tree... 2024-03-30T13:47:30.208 INFO:teuthology.orchestra.run.smithi026.stdout:Reading state information... 2024-03-30T13:47:30.318 INFO:teuthology.orchestra.run.smithi136.stdout:The following packages were automatically installed and are no longer required: 2024-03-30T13:47:30.318 INFO:teuthology.orchestra.run.smithi136.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-03-30T13:47:30.318 INFO:teuthology.orchestra.run.smithi136.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-03-30T13:47:30.318 INFO:teuthology.orchestra.run.smithi136.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-03-30T13:47:30.319 INFO:teuthology.orchestra.run.smithi136.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-03-30T13:47:30.319 INFO:teuthology.orchestra.run.smithi136.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-03-30T13:47:30.319 INFO:teuthology.orchestra.run.smithi136.stdout:Use 'sudo apt autoremove' to remove them. 2024-03-30T13:47:30.320 INFO:teuthology.orchestra.run.smithi136.stdout:The following additional packages will be installed: 2024-03-30T13:47:30.320 INFO:teuthology.orchestra.run.smithi136.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-03-30T13:47:30.320 INFO:teuthology.orchestra.run.smithi136.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-03-30T13:47:30.320 INFO:teuthology.orchestra.run.smithi136.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev liboath0 libonig5 2024-03-30T13:47:30.320 INFO:teuthology.orchestra.run.smithi136.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-03-30T13:47:30.321 INFO:teuthology.orchestra.run.smithi136.stdout: librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 2024-03-30T13:47:30.321 INFO:teuthology.orchestra.run.smithi136.stdout: lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli pkg-config 2024-03-30T13:47:30.322 INFO:teuthology.orchestra.run.smithi136.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-03-30T13:47:30.322 INFO:teuthology.orchestra.run.smithi136.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-03-30T13:47:30.322 INFO:teuthology.orchestra.run.smithi136.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-03-30T13:47:30.322 INFO:teuthology.orchestra.run.smithi136.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-03-30T13:47:30.322 INFO:teuthology.orchestra.run.smithi136.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-03-30T13:47:30.322 INFO:teuthology.orchestra.run.smithi136.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-03-30T13:47:30.322 INFO:teuthology.orchestra.run.smithi136.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-03-30T13:47:30.322 INFO:teuthology.orchestra.run.smithi136.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-03-30T13:47:30.322 INFO:teuthology.orchestra.run.smithi136.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-03-30T13:47:30.322 INFO:teuthology.orchestra.run.smithi136.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-03-30T13:47:30.323 INFO:teuthology.orchestra.run.smithi136.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-03-30T13:47:30.323 INFO:teuthology.orchestra.run.smithi136.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-03-30T13:47:30.323 INFO:teuthology.orchestra.run.smithi136.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-03-30T13:47:30.323 INFO:teuthology.orchestra.run.smithi136.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-03-30T13:47:30.323 INFO:teuthology.orchestra.run.smithi136.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-03-30T13:47:30.323 INFO:teuthology.orchestra.run.smithi136.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-03-30T13:47:30.323 INFO:teuthology.orchestra.run.smithi136.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-03-30T13:47:30.323 INFO:teuthology.orchestra.run.smithi136.stdout: xmlstarlet zip 2024-03-30T13:47:30.323 INFO:teuthology.orchestra.run.smithi136.stdout:Suggested packages: 2024-03-30T13:47:30.324 INFO:teuthology.orchestra.run.smithi136.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-03-30T13:47:30.324 INFO:teuthology.orchestra.run.smithi136.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-03-30T13:47:30.324 INFO:teuthology.orchestra.run.smithi136.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-03-30T13:47:30.324 INFO:teuthology.orchestra.run.smithi136.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-03-30T13:47:30.324 INFO:teuthology.orchestra.run.smithi136.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-03-30T13:47:30.324 INFO:teuthology.orchestra.run.smithi136.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-03-30T13:47:30.324 INFO:teuthology.orchestra.run.smithi136.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-03-30T13:47:30.324 INFO:teuthology.orchestra.run.smithi136.stdout:Recommended packages: 2024-03-30T13:47:30.324 INFO:teuthology.orchestra.run.smithi136.stdout: btrfs-tools 2024-03-30T13:47:30.340 INFO:teuthology.orchestra.run.smithi050.stdout:Building dependency tree... 2024-03-30T13:47:30.340 INFO:teuthology.orchestra.run.smithi050.stdout:Reading state information... 2024-03-30T13:47:30.407 INFO:teuthology.orchestra.run.smithi026.stdout:The following packages were automatically installed and are no longer required: 2024-03-30T13:47:30.407 INFO:teuthology.orchestra.run.smithi026.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-03-30T13:47:30.408 INFO:teuthology.orchestra.run.smithi026.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-03-30T13:47:30.408 INFO:teuthology.orchestra.run.smithi026.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-03-30T13:47:30.408 INFO:teuthology.orchestra.run.smithi026.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-03-30T13:47:30.408 INFO:teuthology.orchestra.run.smithi026.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-03-30T13:47:30.408 INFO:teuthology.orchestra.run.smithi026.stdout:Use 'sudo apt autoremove' to remove them. 2024-03-30T13:47:30.409 INFO:teuthology.orchestra.run.smithi026.stdout:The following additional packages will be installed: 2024-03-30T13:47:30.409 INFO:teuthology.orchestra.run.smithi026.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-03-30T13:47:30.409 INFO:teuthology.orchestra.run.smithi026.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-03-30T13:47:30.409 INFO:teuthology.orchestra.run.smithi026.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev liboath0 libonig5 2024-03-30T13:47:30.409 INFO:teuthology.orchestra.run.smithi026.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-03-30T13:47:30.410 INFO:teuthology.orchestra.run.smithi026.stdout: librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 2024-03-30T13:47:30.411 INFO:teuthology.orchestra.run.smithi026.stdout: lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli pkg-config 2024-03-30T13:47:30.411 INFO:teuthology.orchestra.run.smithi026.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-03-30T13:47:30.411 INFO:teuthology.orchestra.run.smithi026.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-03-30T13:47:30.411 INFO:teuthology.orchestra.run.smithi026.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-03-30T13:47:30.411 INFO:teuthology.orchestra.run.smithi026.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-03-30T13:47:30.411 INFO:teuthology.orchestra.run.smithi026.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-03-30T13:47:30.411 INFO:teuthology.orchestra.run.smithi026.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-03-30T13:47:30.411 INFO:teuthology.orchestra.run.smithi026.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-03-30T13:47:30.411 INFO:teuthology.orchestra.run.smithi026.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-03-30T13:47:30.411 INFO:teuthology.orchestra.run.smithi026.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-03-30T13:47:30.411 INFO:teuthology.orchestra.run.smithi026.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-03-30T13:47:30.411 INFO:teuthology.orchestra.run.smithi026.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-03-30T13:47:30.411 INFO:teuthology.orchestra.run.smithi026.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-03-30T13:47:30.411 INFO:teuthology.orchestra.run.smithi026.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-03-30T13:47:30.412 INFO:teuthology.orchestra.run.smithi026.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-03-30T13:47:30.412 INFO:teuthology.orchestra.run.smithi026.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-03-30T13:47:30.412 INFO:teuthology.orchestra.run.smithi026.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-03-30T13:47:30.412 INFO:teuthology.orchestra.run.smithi026.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-03-30T13:47:30.412 INFO:teuthology.orchestra.run.smithi026.stdout: xmlstarlet zip 2024-03-30T13:47:30.412 INFO:teuthology.orchestra.run.smithi026.stdout:Suggested packages: 2024-03-30T13:47:30.412 INFO:teuthology.orchestra.run.smithi026.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-03-30T13:47:30.412 INFO:teuthology.orchestra.run.smithi026.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-03-30T13:47:30.413 INFO:teuthology.orchestra.run.smithi026.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-03-30T13:47:30.413 INFO:teuthology.orchestra.run.smithi026.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-03-30T13:47:30.413 INFO:teuthology.orchestra.run.smithi026.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-03-30T13:47:30.413 INFO:teuthology.orchestra.run.smithi026.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-03-30T13:47:30.413 INFO:teuthology.orchestra.run.smithi026.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-03-30T13:47:30.413 INFO:teuthology.orchestra.run.smithi026.stdout:Recommended packages: 2024-03-30T13:47:30.413 INFO:teuthology.orchestra.run.smithi026.stdout: btrfs-tools 2024-03-30T13:47:30.422 INFO:teuthology.orchestra.run.smithi136.stdout:The following NEW packages will be installed: 2024-03-30T13:47:30.423 INFO:teuthology.orchestra.run.smithi136.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-03-30T13:47:30.423 INFO:teuthology.orchestra.run.smithi136.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-03-30T13:47:30.423 INFO:teuthology.orchestra.run.smithi136.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-03-30T13:47:30.423 INFO:teuthology.orchestra.run.smithi136.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-03-30T13:47:30.423 INFO:teuthology.orchestra.run.smithi136.stdout: liblua5.3-dev liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 2024-03-30T13:47:30.423 INFO:teuthology.orchestra.run.smithi136.stdout: libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-03-30T13:47:30.424 INFO:teuthology.orchestra.run.smithi136.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-03-30T13:47:30.424 INFO:teuthology.orchestra.run.smithi136.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-03-30T13:47:30.424 INFO:teuthology.orchestra.run.smithi136.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-03-30T13:47:30.424 INFO:teuthology.orchestra.run.smithi136.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-03-30T13:47:30.424 INFO:teuthology.orchestra.run.smithi136.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-03-30T13:47:30.424 INFO:teuthology.orchestra.run.smithi136.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-03-30T13:47:30.425 INFO:teuthology.orchestra.run.smithi136.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-03-30T13:47:30.425 INFO:teuthology.orchestra.run.smithi136.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-03-30T13:47:30.425 INFO:teuthology.orchestra.run.smithi136.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-03-30T13:47:30.425 INFO:teuthology.orchestra.run.smithi136.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-03-30T13:47:30.425 INFO:teuthology.orchestra.run.smithi136.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-03-30T13:47:30.425 INFO:teuthology.orchestra.run.smithi136.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-03-30T13:47:30.425 INFO:teuthology.orchestra.run.smithi136.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-03-30T13:47:30.425 INFO:teuthology.orchestra.run.smithi136.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-03-30T13:47:30.425 INFO:teuthology.orchestra.run.smithi136.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-03-30T13:47:30.425 INFO:teuthology.orchestra.run.smithi136.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-03-30T13:47:30.425 INFO:teuthology.orchestra.run.smithi136.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-03-30T13:47:30.425 INFO:teuthology.orchestra.run.smithi136.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-03-30T13:47:30.425 INFO:teuthology.orchestra.run.smithi136.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-03-30T13:47:30.425 INFO:teuthology.orchestra.run.smithi136.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-03-30T13:47:30.491 INFO:teuthology.orchestra.run.smithi136.stdout:0 upgraded, 118 newly installed, 0 to remove and 298 not upgraded. 2024-03-30T13:47:30.491 INFO:teuthology.orchestra.run.smithi136.stdout:Need to get 178 MB of archives. 2024-03-30T13:47:30.491 INFO:teuthology.orchestra.run.smithi136.stdout:After this operation, 815 MB of additional disk space will be used. 2024-03-30T13:47:30.491 INFO:teuthology.orchestra.run.smithi136.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-03-30T13:47:30.517 INFO:teuthology.orchestra.run.smithi050.stdout:The following packages were automatically installed and are no longer required: 2024-03-30T13:47:30.517 INFO:teuthology.orchestra.run.smithi050.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-03-30T13:47:30.517 INFO:teuthology.orchestra.run.smithi050.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-03-30T13:47:30.517 INFO:teuthology.orchestra.run.smithi050.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-03-30T13:47:30.518 INFO:teuthology.orchestra.run.smithi050.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-03-30T13:47:30.518 INFO:teuthology.orchestra.run.smithi050.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-03-30T13:47:30.518 INFO:teuthology.orchestra.run.smithi050.stdout:Use 'sudo apt autoremove' to remove them. 2024-03-30T13:47:30.519 INFO:teuthology.orchestra.run.smithi050.stdout:The following additional packages will be installed: 2024-03-30T13:47:30.519 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-03-30T13:47:30.519 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-03-30T13:47:30.519 INFO:teuthology.orchestra.run.smithi050.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev liboath0 libonig5 2024-03-30T13:47:30.519 INFO:teuthology.orchestra.run.smithi050.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-03-30T13:47:30.519 INFO:teuthology.orchestra.run.smithi050.stdout: librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 2024-03-30T13:47:30.521 INFO:teuthology.orchestra.run.smithi050.stdout: lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli pkg-config 2024-03-30T13:47:30.521 INFO:teuthology.orchestra.run.smithi050.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-03-30T13:47:30.521 INFO:teuthology.orchestra.run.smithi050.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-03-30T13:47:30.521 INFO:teuthology.orchestra.run.smithi050.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-03-30T13:47:30.522 INFO:teuthology.orchestra.run.smithi050.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-03-30T13:47:30.522 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-03-30T13:47:30.522 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-03-30T13:47:30.522 INFO:teuthology.orchestra.run.smithi050.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-03-30T13:47:30.522 INFO:teuthology.orchestra.run.smithi050.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-03-30T13:47:30.522 INFO:teuthology.orchestra.run.smithi050.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-03-30T13:47:30.522 INFO:teuthology.orchestra.run.smithi050.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-03-30T13:47:30.522 INFO:teuthology.orchestra.run.smithi050.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-03-30T13:47:30.522 INFO:teuthology.orchestra.run.smithi050.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-03-30T13:47:30.522 INFO:teuthology.orchestra.run.smithi050.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-03-30T13:47:30.522 INFO:teuthology.orchestra.run.smithi050.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-03-30T13:47:30.522 INFO:teuthology.orchestra.run.smithi050.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-03-30T13:47:30.522 INFO:teuthology.orchestra.run.smithi050.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-03-30T13:47:30.522 INFO:teuthology.orchestra.run.smithi050.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-03-30T13:47:30.523 INFO:teuthology.orchestra.run.smithi050.stdout: xmlstarlet zip 2024-03-30T13:47:30.523 INFO:teuthology.orchestra.run.smithi050.stdout:Suggested packages: 2024-03-30T13:47:30.523 INFO:teuthology.orchestra.run.smithi050.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-03-30T13:47:30.523 INFO:teuthology.orchestra.run.smithi050.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-03-30T13:47:30.523 INFO:teuthology.orchestra.run.smithi050.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-03-30T13:47:30.523 INFO:teuthology.orchestra.run.smithi050.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-03-30T13:47:30.523 INFO:teuthology.orchestra.run.smithi050.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-03-30T13:47:30.523 INFO:teuthology.orchestra.run.smithi050.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-03-30T13:47:30.523 INFO:teuthology.orchestra.run.smithi050.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-03-30T13:47:30.523 INFO:teuthology.orchestra.run.smithi050.stdout:Recommended packages: 2024-03-30T13:47:30.523 INFO:teuthology.orchestra.run.smithi050.stdout: btrfs-tools 2024-03-30T13:47:30.524 INFO:teuthology.orchestra.run.smithi026.stdout:The following NEW packages will be installed: 2024-03-30T13:47:30.524 INFO:teuthology.orchestra.run.smithi026.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-03-30T13:47:30.525 INFO:teuthology.orchestra.run.smithi026.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-03-30T13:47:30.525 INFO:teuthology.orchestra.run.smithi026.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-03-30T13:47:30.525 INFO:teuthology.orchestra.run.smithi026.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-03-30T13:47:30.525 INFO:teuthology.orchestra.run.smithi026.stdout: liblua5.3-dev liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 2024-03-30T13:47:30.525 INFO:teuthology.orchestra.run.smithi026.stdout: libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-03-30T13:47:30.525 INFO:teuthology.orchestra.run.smithi026.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-03-30T13:47:30.525 INFO:teuthology.orchestra.run.smithi026.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-03-30T13:47:30.525 INFO:teuthology.orchestra.run.smithi026.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-03-30T13:47:30.525 INFO:teuthology.orchestra.run.smithi026.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-03-30T13:47:30.525 INFO:teuthology.orchestra.run.smithi026.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-03-30T13:47:30.525 INFO:teuthology.orchestra.run.smithi026.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-03-30T13:47:30.525 INFO:teuthology.orchestra.run.smithi026.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-03-30T13:47:30.525 INFO:teuthology.orchestra.run.smithi026.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-03-30T13:47:30.525 INFO:teuthology.orchestra.run.smithi026.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-03-30T13:47:30.525 INFO:teuthology.orchestra.run.smithi026.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-03-30T13:47:30.526 INFO:teuthology.orchestra.run.smithi026.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-03-30T13:47:30.526 INFO:teuthology.orchestra.run.smithi026.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-03-30T13:47:30.526 INFO:teuthology.orchestra.run.smithi026.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-03-30T13:47:30.526 INFO:teuthology.orchestra.run.smithi026.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-03-30T13:47:30.526 INFO:teuthology.orchestra.run.smithi026.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-03-30T13:47:30.526 INFO:teuthology.orchestra.run.smithi026.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-03-30T13:47:30.526 INFO:teuthology.orchestra.run.smithi026.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-03-30T13:47:30.526 INFO:teuthology.orchestra.run.smithi026.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-03-30T13:47:30.526 INFO:teuthology.orchestra.run.smithi026.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-03-30T13:47:30.526 INFO:teuthology.orchestra.run.smithi026.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-03-30T13:47:30.625 INFO:teuthology.orchestra.run.smithi050.stdout:The following NEW packages will be installed: 2024-03-30T13:47:30.626 INFO:teuthology.orchestra.run.smithi050.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-03-30T13:47:30.626 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-03-30T13:47:30.626 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-03-30T13:47:30.626 INFO:teuthology.orchestra.run.smithi050.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-03-30T13:47:30.626 INFO:teuthology.orchestra.run.smithi050.stdout: liblua5.3-dev liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 2024-03-30T13:47:30.626 INFO:teuthology.orchestra.run.smithi050.stdout: libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-03-30T13:47:30.626 INFO:teuthology.orchestra.run.smithi050.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-03-30T13:47:30.627 INFO:teuthology.orchestra.run.smithi050.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-03-30T13:47:30.627 INFO:teuthology.orchestra.run.smithi050.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-03-30T13:47:30.627 INFO:teuthology.orchestra.run.smithi050.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-03-30T13:47:30.627 INFO:teuthology.orchestra.run.smithi050.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-03-30T13:47:30.628 INFO:teuthology.orchestra.run.smithi050.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-03-30T13:47:30.628 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-03-30T13:47:30.628 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-03-30T13:47:30.628 INFO:teuthology.orchestra.run.smithi050.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-03-30T13:47:30.628 INFO:teuthology.orchestra.run.smithi050.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-03-30T13:47:30.628 INFO:teuthology.orchestra.run.smithi050.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-03-30T13:47:30.628 INFO:teuthology.orchestra.run.smithi050.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-03-30T13:47:30.628 INFO:teuthology.orchestra.run.smithi050.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-03-30T13:47:30.628 INFO:teuthology.orchestra.run.smithi050.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-03-30T13:47:30.628 INFO:teuthology.orchestra.run.smithi050.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-03-30T13:47:30.628 INFO:teuthology.orchestra.run.smithi050.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-03-30T13:47:30.628 INFO:teuthology.orchestra.run.smithi050.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-03-30T13:47:30.628 INFO:teuthology.orchestra.run.smithi050.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-03-30T13:47:30.628 INFO:teuthology.orchestra.run.smithi050.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-03-30T13:47:30.628 INFO:teuthology.orchestra.run.smithi050.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-03-30T13:47:30.664 INFO:teuthology.orchestra.run.smithi026.stdout:0 upgraded, 118 newly installed, 0 to remove and 298 not upgraded. 2024-03-30T13:47:30.664 INFO:teuthology.orchestra.run.smithi026.stdout:Need to get 178 MB of archives. 2024-03-30T13:47:30.664 INFO:teuthology.orchestra.run.smithi026.stdout:After this operation, 815 MB of additional disk space will be used. 2024-03-30T13:47:30.664 INFO:teuthology.orchestra.run.smithi026.stdout:Get:1 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.0.0-1967-g4e50bbcd-1jammy [3,544 kB] 2024-03-30T13:47:30.682 INFO:teuthology.orchestra.run.smithi136.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-03-30T13:47:30.685 INFO:teuthology.orchestra.run.smithi136.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-03-30T13:47:30.697 INFO:teuthology.orchestra.run.smithi136.stdout:Get:4 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.0.0-1967-g4e50bbcd-1jammy [3,544 kB] 2024-03-30T13:47:30.707 INFO:teuthology.orchestra.run.smithi050.stdout:0 upgraded, 118 newly installed, 0 to remove and 298 not upgraded. 2024-03-30T13:47:30.707 INFO:teuthology.orchestra.run.smithi050.stdout:Need to get 178 MB of archives. 2024-03-30T13:47:30.707 INFO:teuthology.orchestra.run.smithi050.stdout:After this operation, 815 MB of additional disk space will be used. 2024-03-30T13:47:30.707 INFO:teuthology.orchestra.run.smithi050.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-03-30T13:47:30.710 INFO:teuthology.orchestra.run.smithi026.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-03-30T13:47:30.716 INFO:teuthology.orchestra.run.smithi136.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-03-30T13:47:30.771 INFO:teuthology.orchestra.run.smithi050.stdout:Get:2 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.0.0-1967-g4e50bbcd-1jammy [3,544 kB] 2024-03-30T13:47:30.799 INFO:teuthology.orchestra.run.smithi136.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-03-30T13:47:30.804 INFO:teuthology.orchestra.run.smithi136.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-03-30T13:47:30.817 INFO:teuthology.orchestra.run.smithi136.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-03-30T13:47:30.820 INFO:teuthology.orchestra.run.smithi050.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-03-30T13:47:30.821 INFO:teuthology.orchestra.run.smithi136.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-03-30T13:47:30.822 INFO:teuthology.orchestra.run.smithi136.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-03-30T13:47:30.822 INFO:teuthology.orchestra.run.smithi136.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-03-30T13:47:30.824 INFO:teuthology.orchestra.run.smithi050.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-03-30T13:47:30.832 INFO:teuthology.orchestra.run.smithi136.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline-dev amd64 8.1.2-1 [166 kB] 2024-03-30T13:47:30.834 INFO:teuthology.orchestra.run.smithi136.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblua5.3-dev amd64 5.3.6-1build1 [167 kB] 2024-03-30T13:47:30.836 INFO:teuthology.orchestra.run.smithi136.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua5.1 amd64 5.1.5-8.1build4 [94.6 kB] 2024-03-30T13:47:30.837 INFO:teuthology.orchestra.run.smithi136.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-03-30T13:47:30.844 INFO:teuthology.orchestra.run.smithi050.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-03-30T13:47:30.854 INFO:teuthology.orchestra.run.smithi136.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-03-30T13:47:30.856 INFO:teuthology.orchestra.run.smithi136.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.2 [175 kB] 2024-03-30T13:47:30.859 INFO:teuthology.orchestra.run.smithi136.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy/universe amd64 luarocks all 3.8.0+dfsg1-1 [140 kB] 2024-03-30T13:47:30.861 INFO:teuthology.orchestra.run.smithi136.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-03-30T13:47:30.861 INFO:teuthology.orchestra.run.smithi136.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-03-30T13:47:30.875 INFO:teuthology.orchestra.run.smithi136.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-cheroot all 8.5.2+ds1-1ubuntu3.1 [71.1 kB] 2024-03-30T13:47:30.876 INFO:teuthology.orchestra.run.smithi136.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-03-30T13:47:30.877 INFO:teuthology.orchestra.run.smithi136.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-03-30T13:47:30.877 INFO:teuthology.orchestra.run.smithi136.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-03-30T13:47:30.877 INFO:teuthology.orchestra.run.smithi136.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-03-30T13:47:30.897 INFO:teuthology.orchestra.run.smithi136.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-03-30T13:47:30.897 INFO:teuthology.orchestra.run.smithi136.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-03-30T13:47:30.898 INFO:teuthology.orchestra.run.smithi136.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-03-30T13:47:30.901 INFO:teuthology.orchestra.run.smithi136.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-03-30T13:47:30.901 INFO:teuthology.orchestra.run.smithi136.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-03-30T13:47:30.922 INFO:teuthology.orchestra.run.smithi050.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-03-30T13:47:30.924 INFO:teuthology.orchestra.run.smithi136.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-03-30T13:47:30.924 INFO:teuthology.orchestra.run.smithi136.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-mako all 1.1.3+ds1-2ubuntu0.1 [60.5 kB] 2024-03-30T13:47:30.925 INFO:teuthology.orchestra.run.smithi136.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-03-30T13:47:30.926 INFO:teuthology.orchestra.run.smithi136.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-03-30T13:47:30.926 INFO:teuthology.orchestra.run.smithi136.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webob all 1:1.8.6-1.1 [85.2 kB] 2024-03-30T13:47:30.928 INFO:teuthology.orchestra.run.smithi050.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-03-30T13:47:30.942 INFO:teuthology.orchestra.run.smithi050.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-03-30T13:47:30.947 INFO:teuthology.orchestra.run.smithi050.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-03-30T13:47:30.948 INFO:teuthology.orchestra.run.smithi050.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-03-30T13:47:30.949 INFO:teuthology.orchestra.run.smithi050.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-03-30T13:47:30.954 INFO:teuthology.orchestra.run.smithi136.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-03-30T13:47:30.955 INFO:teuthology.orchestra.run.smithi136.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-03-30T13:47:30.955 INFO:teuthology.orchestra.run.smithi136.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-03-30T13:47:30.958 INFO:teuthology.orchestra.run.smithi050.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline-dev amd64 8.1.2-1 [166 kB] 2024-03-30T13:47:30.960 INFO:teuthology.orchestra.run.smithi050.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblua5.3-dev amd64 5.3.6-1build1 [167 kB] 2024-03-30T13:47:30.961 INFO:teuthology.orchestra.run.smithi136.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-03-30T13:47:30.961 INFO:teuthology.orchestra.run.smithi136.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-03-30T13:47:30.962 INFO:teuthology.orchestra.run.smithi050.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua5.1 amd64 5.1.5-8.1build4 [94.6 kB] 2024-03-30T13:47:30.964 INFO:teuthology.orchestra.run.smithi050.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-03-30T13:47:30.966 INFO:teuthology.orchestra.run.smithi026.stdout:Get:3 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.0.0-1967-g4e50bbcd-1jammy [3,217 kB] 2024-03-30T13:47:30.974 INFO:teuthology.orchestra.run.smithi136.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-03-30T13:47:30.975 INFO:teuthology.orchestra.run.smithi136.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-03-30T13:47:30.976 INFO:teuthology.orchestra.run.smithi136.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-03-30T13:47:30.978 INFO:teuthology.orchestra.run.smithi136.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-idna all 3.3-1 [49.3 kB] 2024-03-30T13:47:30.979 INFO:teuthology.orchestra.run.smithi136.stdout:Get:45 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-03-30T13:47:30.980 INFO:teuthology.orchestra.run.smithi050.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-03-30T13:47:30.982 INFO:teuthology.orchestra.run.smithi050.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.2 [175 kB] 2024-03-30T13:47:30.985 INFO:teuthology.orchestra.run.smithi050.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy/universe amd64 luarocks all 3.8.0+dfsg1-1 [140 kB] 2024-03-30T13:47:30.987 INFO:teuthology.orchestra.run.smithi050.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-03-30T13:47:30.988 INFO:teuthology.orchestra.run.smithi050.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-03-30T13:47:30.995 INFO:teuthology.orchestra.run.smithi136.stdout:Get:46 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-03-30T13:47:30.996 INFO:teuthology.orchestra.run.smithi136.stdout:Get:47 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.1 [181 kB] 2024-03-30T13:47:30.998 INFO:teuthology.orchestra.run.smithi136.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-03-30T13:47:30.998 INFO:teuthology.orchestra.run.smithi136.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-03-30T13:47:30.999 INFO:teuthology.orchestra.run.smithi136.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-03-30T13:47:31.004 INFO:teuthology.orchestra.run.smithi050.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-cheroot all 8.5.2+ds1-1ubuntu3.1 [71.1 kB] 2024-03-30T13:47:31.005 INFO:teuthology.orchestra.run.smithi050.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-03-30T13:47:31.005 INFO:teuthology.orchestra.run.smithi050.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-03-30T13:47:31.006 INFO:teuthology.orchestra.run.smithi050.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-03-30T13:47:31.006 INFO:teuthology.orchestra.run.smithi050.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-03-30T13:47:31.015 INFO:teuthology.orchestra.run.smithi136.stdout:Get:51 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-babel-localedata all 2.8.0+dfsg.1-7 [4,982 kB] 2024-03-30T13:47:31.035 INFO:teuthology.orchestra.run.smithi050.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-03-30T13:47:31.035 INFO:teuthology.orchestra.run.smithi050.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-03-30T13:47:31.036 INFO:teuthology.orchestra.run.smithi050.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-03-30T13:47:31.040 INFO:teuthology.orchestra.run.smithi050.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-03-30T13:47:31.041 INFO:teuthology.orchestra.run.smithi050.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-03-30T13:47:31.074 INFO:teuthology.orchestra.run.smithi050.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-03-30T13:47:31.075 INFO:teuthology.orchestra.run.smithi050.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-mako all 1.1.3+ds1-2ubuntu0.1 [60.5 kB] 2024-03-30T13:47:31.076 INFO:teuthology.orchestra.run.smithi050.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-03-30T13:47:31.076 INFO:teuthology.orchestra.run.smithi050.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-03-30T13:47:31.077 INFO:teuthology.orchestra.run.smithi050.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webob all 1:1.8.6-1.1 [85.2 kB] 2024-03-30T13:47:31.083 INFO:teuthology.orchestra.run.smithi136.stdout:Get:52 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-03-30T13:47:31.084 INFO:teuthology.orchestra.run.smithi136.stdout:Get:53 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.1 [108 kB] 2024-03-30T13:47:31.085 INFO:teuthology.orchestra.run.smithi136.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-03-30T13:47:31.086 INFO:teuthology.orchestra.run.smithi136.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-03-30T13:47:31.088 INFO:teuthology.orchestra.run.smithi136.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-03-30T13:47:31.110 INFO:teuthology.orchestra.run.smithi136.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-03-30T13:47:31.113 INFO:teuthology.orchestra.run.smithi136.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-03-30T13:47:31.113 INFO:teuthology.orchestra.run.smithi136.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-03-30T13:47:31.113 INFO:teuthology.orchestra.run.smithi050.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-03-30T13:47:31.115 INFO:teuthology.orchestra.run.smithi050.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-03-30T13:47:31.116 INFO:teuthology.orchestra.run.smithi050.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-03-30T13:47:31.127 INFO:teuthology.orchestra.run.smithi050.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-03-30T13:47:31.128 INFO:teuthology.orchestra.run.smithi050.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-03-30T13:47:31.132 INFO:teuthology.orchestra.run.smithi026.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-03-30T13:47:31.135 INFO:teuthology.orchestra.run.smithi050.stdout:Get:41 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.0.0-1967-g4e50bbcd-1jammy [3,217 kB] 2024-03-30T13:47:31.141 INFO:teuthology.orchestra.run.smithi136.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-03-30T13:47:31.141 INFO:teuthology.orchestra.run.smithi136.stdout:Get:61 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-03-30T13:47:31.144 INFO:teuthology.orchestra.run.smithi026.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-03-30T13:47:31.145 INFO:teuthology.orchestra.run.smithi050.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-03-30T13:47:31.146 INFO:teuthology.orchestra.run.smithi050.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-03-30T13:47:31.149 INFO:teuthology.orchestra.run.smithi050.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-03-30T13:47:31.153 INFO:teuthology.orchestra.run.smithi050.stdout:Get:45 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-idna all 3.3-1 [49.3 kB] 2024-03-30T13:47:31.154 INFO:teuthology.orchestra.run.smithi136.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-03-30T13:47:31.154 INFO:teuthology.orchestra.run.smithi136.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-03-30T13:47:31.154 INFO:teuthology.orchestra.run.smithi136.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-03-30T13:47:31.155 INFO:teuthology.orchestra.run.smithi050.stdout:Get:46 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-03-30T13:47:31.155 INFO:teuthology.orchestra.run.smithi136.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-requests-oauthlib all 1.3.0+ds-0.1 [18.7 kB] 2024-03-30T13:47:31.156 INFO:teuthology.orchestra.run.smithi136.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-03-30T13:47:31.156 INFO:teuthology.orchestra.run.smithi136.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-03-30T13:47:31.160 INFO:teuthology.orchestra.run.smithi136.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-03-30T13:47:31.167 INFO:teuthology.orchestra.run.smithi050.stdout:Get:47 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-03-30T13:47:31.169 INFO:teuthology.orchestra.run.smithi050.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.1 [181 kB] 2024-03-30T13:47:31.170 INFO:teuthology.orchestra.run.smithi026.stdout:Get:6 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.0.0-1967-g4e50bbcd-1jammy [711 kB] 2024-03-30T13:47:31.174 INFO:teuthology.orchestra.run.smithi050.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-03-30T13:47:31.175 INFO:teuthology.orchestra.run.smithi050.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-03-30T13:47:31.177 INFO:teuthology.orchestra.run.smithi050.stdout:Get:51 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-03-30T13:47:31.178 INFO:teuthology.orchestra.run.smithi136.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-03-30T13:47:31.179 INFO:teuthology.orchestra.run.smithi136.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-03-30T13:47:31.180 INFO:teuthology.orchestra.run.smithi136.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-03-30T13:47:31.196 INFO:teuthology.orchestra.run.smithi050.stdout:Get:52 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-babel-localedata all 2.8.0+dfsg.1-7 [4,982 kB] 2024-03-30T13:47:31.218 INFO:teuthology.orchestra.run.smithi136.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-03-30T13:47:31.219 INFO:teuthology.orchestra.run.smithi026.stdout:Get:7 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.0.0-1967-g4e50bbcd-1jammy [356 kB] 2024-03-30T13:47:31.223 INFO:teuthology.orchestra.run.smithi136.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-socket amd64 3.0~rc1+git+ac3201d-6 [78.9 kB] 2024-03-30T13:47:31.224 INFO:teuthology.orchestra.run.smithi136.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-03-30T13:47:31.225 INFO:teuthology.orchestra.run.smithi136.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.1 [474 kB] 2024-03-30T13:47:31.226 INFO:teuthology.orchestra.run.smithi026.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-03-30T13:47:31.235 INFO:teuthology.orchestra.run.smithi136.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-03-30T13:47:31.236 INFO:teuthology.orchestra.run.smithi136.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-03-30T13:47:31.241 INFO:teuthology.orchestra.run.smithi136.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-03-30T13:47:31.250 INFO:teuthology.orchestra.run.smithi026.stdout:Get:9 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.0.0-1967-g4e50bbcd-1jammy [32.8 kB] 2024-03-30T13:47:31.252 INFO:teuthology.orchestra.run.smithi026.stdout:Get:10 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.0.0-1967-g4e50bbcd-1jammy [180 kB] 2024-03-30T13:47:31.258 INFO:teuthology.orchestra.run.smithi026.stdout:Get:11 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.0.0-1967-g4e50bbcd-1jammy [64.6 kB] 2024-03-30T13:47:31.262 INFO:teuthology.orchestra.run.smithi136.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-03-30T13:47:31.262 INFO:teuthology.orchestra.run.smithi026.stdout:Get:12 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.0.0-1967-g4e50bbcd-1jammy [330 kB] 2024-03-30T13:47:31.263 INFO:teuthology.orchestra.run.smithi136.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-03-30T13:47:31.263 INFO:teuthology.orchestra.run.smithi136.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-03-30T13:47:31.281 INFO:teuthology.orchestra.run.smithi050.stdout:Get:53 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-03-30T13:47:31.282 INFO:teuthology.orchestra.run.smithi050.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.1 [108 kB] 2024-03-30T13:47:31.284 INFO:teuthology.orchestra.run.smithi050.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-03-30T13:47:31.284 INFO:teuthology.orchestra.run.smithi050.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-03-30T13:47:31.285 INFO:teuthology.orchestra.run.smithi050.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-03-30T13:47:31.297 INFO:teuthology.orchestra.run.smithi026.stdout:Get:13 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.0.0-1967-g4e50bbcd-1jammy [6,577 kB] 2024-03-30T13:47:31.303 INFO:teuthology.orchestra.run.smithi136.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-03-30T13:47:31.305 INFO:teuthology.orchestra.run.smithi136.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-03-30T13:47:31.315 INFO:teuthology.orchestra.run.smithi136.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-03-30T13:47:31.315 INFO:teuthology.orchestra.run.smithi136.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-03-30T13:47:31.316 INFO:teuthology.orchestra.run.smithi136.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-03-30T13:47:31.319 INFO:teuthology.orchestra.run.smithi136.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-03-30T13:47:31.320 INFO:teuthology.orchestra.run.smithi136.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-03-30T13:47:31.329 INFO:teuthology.orchestra.run.smithi050.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-03-30T13:47:31.336 INFO:teuthology.orchestra.run.smithi050.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-03-30T13:47:31.337 INFO:teuthology.orchestra.run.smithi050.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-03-30T13:47:31.384 INFO:teuthology.orchestra.run.smithi050.stdout:Get:61 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.0.0-1967-g4e50bbcd-1jammy [711 kB] 2024-03-30T13:47:31.401 INFO:teuthology.orchestra.run.smithi050.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-03-30T13:47:31.402 INFO:teuthology.orchestra.run.smithi050.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-03-30T13:47:31.403 INFO:teuthology.orchestra.run.smithi050.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-03-30T13:47:31.404 INFO:teuthology.orchestra.run.smithi050.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-03-30T13:47:31.405 INFO:teuthology.orchestra.run.smithi050.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-03-30T13:47:31.406 INFO:teuthology.orchestra.run.smithi050.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-requests-oauthlib all 1.3.0+ds-0.1 [18.7 kB] 2024-03-30T13:47:31.406 INFO:teuthology.orchestra.run.smithi050.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-03-30T13:47:31.407 INFO:teuthology.orchestra.run.smithi050.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-03-30T13:47:31.413 INFO:teuthology.orchestra.run.smithi050.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-03-30T13:47:31.423 INFO:teuthology.orchestra.run.smithi050.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-03-30T13:47:31.436 INFO:teuthology.orchestra.run.smithi050.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-03-30T13:47:31.437 INFO:teuthology.orchestra.run.smithi050.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-03-30T13:47:31.443 INFO:teuthology.orchestra.run.smithi050.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-03-30T13:47:31.448 INFO:teuthology.orchestra.run.smithi050.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-socket amd64 3.0~rc1+git+ac3201d-6 [78.9 kB] 2024-03-30T13:47:31.449 INFO:teuthology.orchestra.run.smithi050.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-03-30T13:47:31.450 INFO:teuthology.orchestra.run.smithi050.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.1 [474 kB] 2024-03-30T13:47:31.456 INFO:teuthology.orchestra.run.smithi026.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-03-30T13:47:31.457 INFO:teuthology.orchestra.run.smithi050.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-03-30T13:47:31.458 INFO:teuthology.orchestra.run.smithi050.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-03-30T13:47:31.465 INFO:teuthology.orchestra.run.smithi050.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-03-30T13:47:31.468 INFO:teuthology.orchestra.run.smithi026.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-03-30T13:47:31.470 INFO:teuthology.orchestra.run.smithi050.stdout:Get:81 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.0.0-1967-g4e50bbcd-1jammy [356 kB] 2024-03-30T13:47:31.474 INFO:teuthology.orchestra.run.smithi050.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-03-30T13:47:31.476 INFO:teuthology.orchestra.run.smithi050.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-03-30T13:47:31.476 INFO:teuthology.orchestra.run.smithi050.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-03-30T13:47:31.479 INFO:teuthology.orchestra.run.smithi050.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-03-30T13:47:31.480 INFO:teuthology.orchestra.run.smithi050.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-03-30T13:47:31.485 INFO:teuthology.orchestra.run.smithi050.stdout:Get:87 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.0.0-1967-g4e50bbcd-1jammy [32.8 kB] 2024-03-30T13:47:31.487 INFO:teuthology.orchestra.run.smithi050.stdout:Get:88 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.0.0-1967-g4e50bbcd-1jammy [180 kB] 2024-03-30T13:47:31.491 INFO:teuthology.orchestra.run.smithi050.stdout:Get:89 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-03-30T13:47:31.494 INFO:teuthology.orchestra.run.smithi050.stdout:Get:90 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.0.0-1967-g4e50bbcd-1jammy [64.6 kB] 2024-03-30T13:47:31.494 INFO:teuthology.orchestra.run.smithi050.stdout:Get:91 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-03-30T13:47:31.495 INFO:teuthology.orchestra.run.smithi050.stdout:Get:92 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-03-30T13:47:31.496 INFO:teuthology.orchestra.run.smithi050.stdout:Get:93 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.0.0-1967-g4e50bbcd-1jammy [330 kB] 2024-03-30T13:47:31.497 INFO:teuthology.orchestra.run.smithi026.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-03-30T13:47:31.499 INFO:teuthology.orchestra.run.smithi050.stdout:Get:94 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-03-30T13:47:31.503 INFO:teuthology.orchestra.run.smithi050.stdout:Get:95 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-03-30T13:47:31.507 INFO:teuthology.orchestra.run.smithi026.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-03-30T13:47:31.508 INFO:teuthology.orchestra.run.smithi026.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-03-30T13:47:31.510 INFO:teuthology.orchestra.run.smithi026.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-03-30T13:47:31.528 INFO:teuthology.orchestra.run.smithi026.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline-dev amd64 8.1.2-1 [166 kB] 2024-03-30T13:47:31.535 INFO:teuthology.orchestra.run.smithi050.stdout:Get:96 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.0.0-1967-g4e50bbcd-1jammy [6,577 kB] 2024-03-30T13:47:31.595 INFO:teuthology.orchestra.run.smithi136.stdout:Get:89 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.0.0-1967-g4e50bbcd-1jammy [3,217 kB] 2024-03-30T13:47:31.696 INFO:teuthology.orchestra.run.smithi026.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblua5.3-dev amd64 5.3.6-1build1 [167 kB] 2024-03-30T13:47:31.712 INFO:teuthology.orchestra.run.smithi026.stdout:Get:22 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.0.0-1967-g4e50bbcd-1jammy [112 kB] 2024-03-30T13:47:31.747 INFO:teuthology.orchestra.run.smithi026.stdout:Get:23 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.0.0-1967-g4e50bbcd-1jammy [466 kB] 2024-03-30T13:47:31.765 INFO:teuthology.orchestra.run.smithi026.stdout:Get:24 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.0.0-1967-g4e50bbcd-1jammy [25.2 MB] 2024-03-30T13:47:32.104 INFO:teuthology.orchestra.run.smithi026.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua5.1 amd64 5.1.5-8.1build4 [94.6 kB] 2024-03-30T13:47:32.137 INFO:teuthology.orchestra.run.smithi026.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-03-30T13:47:32.139 INFO:teuthology.orchestra.run.smithi026.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-03-30T13:47:32.158 INFO:teuthology.orchestra.run.smithi050.stdout:Get:97 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.0.0-1967-g4e50bbcd-1jammy [112 kB] 2024-03-30T13:47:32.160 INFO:teuthology.orchestra.run.smithi050.stdout:Get:98 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.0.0-1967-g4e50bbcd-1jammy [466 kB] 2024-03-30T13:47:32.179 INFO:teuthology.orchestra.run.smithi050.stdout:Get:99 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.0.0-1967-g4e50bbcd-1jammy [25.2 MB] 2024-03-30T13:47:32.220 INFO:teuthology.orchestra.run.smithi026.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.2 [175 kB] 2024-03-30T13:47:32.270 INFO:teuthology.orchestra.run.smithi026.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy/universe amd64 luarocks all 3.8.0+dfsg1-1 [140 kB] 2024-03-30T13:47:32.293 INFO:teuthology.orchestra.run.smithi026.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-03-30T13:47:32.299 INFO:teuthology.orchestra.run.smithi026.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-03-30T13:47:32.300 INFO:teuthology.orchestra.run.smithi026.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-cheroot all 8.5.2+ds1-1ubuntu3.1 [71.1 kB] 2024-03-30T13:47:32.311 INFO:teuthology.orchestra.run.smithi026.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-03-30T13:47:32.312 INFO:teuthology.orchestra.run.smithi026.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-03-30T13:47:32.478 INFO:teuthology.orchestra.run.smithi026.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-03-30T13:47:32.561 INFO:teuthology.orchestra.run.smithi026.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-03-30T13:47:32.589 INFO:teuthology.orchestra.run.smithi026.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-03-30T13:47:32.606 INFO:teuthology.orchestra.run.smithi026.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-03-30T13:47:32.629 INFO:teuthology.orchestra.run.smithi136.stdout:Get:90 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.0.0-1967-g4e50bbcd-1jammy [711 kB] 2024-03-30T13:47:32.651 INFO:teuthology.orchestra.run.smithi026.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-03-30T13:47:32.865 INFO:teuthology.orchestra.run.smithi026.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-03-30T13:47:32.878 INFO:teuthology.orchestra.run.smithi136.stdout:Get:91 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.0.0-1967-g4e50bbcd-1jammy [356 kB] 2024-03-30T13:47:32.880 INFO:teuthology.orchestra.run.smithi026.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-03-30T13:47:32.887 INFO:teuthology.orchestra.run.smithi026.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-03-30T13:47:32.893 INFO:teuthology.orchestra.run.smithi026.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-mako all 1.1.3+ds1-2ubuntu0.1 [60.5 kB] 2024-03-30T13:47:32.914 INFO:teuthology.orchestra.run.smithi026.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-03-30T13:47:32.918 INFO:teuthology.orchestra.run.smithi026.stdout:Get:45 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-03-30T13:47:33.014 INFO:teuthology.orchestra.run.smithi136.stdout:Get:92 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.0.0-1967-g4e50bbcd-1jammy [32.8 kB] 2024-03-30T13:47:33.022 INFO:teuthology.orchestra.run.smithi136.stdout:Get:93 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.0.0-1967-g4e50bbcd-1jammy [180 kB] 2024-03-30T13:47:33.083 INFO:teuthology.orchestra.run.smithi026.stdout:Get:46 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webob all 1:1.8.6-1.1 [85.2 kB] 2024-03-30T13:47:33.091 INFO:teuthology.orchestra.run.smithi136.stdout:Get:94 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.0.0-1967-g4e50bbcd-1jammy [64.6 kB] 2024-03-30T13:47:33.107 INFO:teuthology.orchestra.run.smithi136.stdout:Get:95 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.0.0-1967-g4e50bbcd-1jammy [330 kB] 2024-03-30T13:47:33.220 INFO:teuthology.orchestra.run.smithi136.stdout:Get:96 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.0.0-1967-g4e50bbcd-1jammy [6,577 kB] 2024-03-30T13:47:33.414 INFO:teuthology.orchestra.run.smithi026.stdout:Get:47 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-03-30T13:47:33.517 INFO:teuthology.orchestra.run.smithi026.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-03-30T13:47:33.517 INFO:teuthology.orchestra.run.smithi026.stdout:Get:49 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.0.0-1967-g4e50bbcd-1jammy [5,077 kB] 2024-03-30T13:47:33.518 INFO:teuthology.orchestra.run.smithi026.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-03-30T13:47:33.693 INFO:teuthology.orchestra.run.smithi026.stdout:Get:51 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-03-30T13:47:33.695 INFO:teuthology.orchestra.run.smithi026.stdout:Get:52 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-03-30T13:47:33.701 INFO:teuthology.orchestra.run.smithi026.stdout:Get:53 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-03-30T13:47:33.708 INFO:teuthology.orchestra.run.smithi026.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-03-30T13:47:33.724 INFO:teuthology.orchestra.run.smithi026.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-03-30T13:47:33.726 INFO:teuthology.orchestra.run.smithi026.stdout:Get:56 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.0.0-1967-g4e50bbcd-1jammy [244 kB] 2024-03-30T13:47:33.744 INFO:teuthology.orchestra.run.smithi026.stdout:Get:57 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.0.0-1967-g4e50bbcd-1jammy [124 kB] 2024-03-30T13:47:33.747 INFO:teuthology.orchestra.run.smithi026.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-idna all 3.3-1 [49.3 kB] 2024-03-30T13:47:33.748 INFO:teuthology.orchestra.run.smithi026.stdout:Get:59 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.0.0-1967-g4e50bbcd-1jammy [1,526 kB] 2024-03-30T13:47:33.752 INFO:teuthology.orchestra.run.smithi026.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-03-30T13:47:33.834 INFO:teuthology.orchestra.run.smithi026.stdout:Get:61 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.0.0-1967-g4e50bbcd-1jammy [6,247 kB] 2024-03-30T13:47:33.927 INFO:teuthology.orchestra.run.smithi026.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-03-30T13:47:34.183 INFO:teuthology.orchestra.run.smithi026.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.1 [181 kB] 2024-03-30T13:47:34.253 INFO:teuthology.orchestra.run.smithi026.stdout:Get:64 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.0.0-1967-g4e50bbcd-1jammy [22.7 MB] 2024-03-30T13:47:34.291 INFO:teuthology.orchestra.run.smithi050.stdout:Get:100 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.0.0-1967-g4e50bbcd-1jammy [5,077 kB] 2024-03-30T13:47:34.360 INFO:teuthology.orchestra.run.smithi026.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-03-30T13:47:34.374 INFO:teuthology.orchestra.run.smithi026.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-03-30T13:47:34.393 INFO:teuthology.orchestra.run.smithi026.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-03-30T13:47:34.458 INFO:teuthology.orchestra.run.smithi026.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-babel-localedata all 2.8.0+dfsg.1-7 [4,982 kB] 2024-03-30T13:47:34.600 INFO:teuthology.orchestra.run.smithi050.stdout:Get:101 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.0.0-1967-g4e50bbcd-1jammy [244 kB] 2024-03-30T13:47:34.639 INFO:teuthology.orchestra.run.smithi050.stdout:Get:102 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.0.0-1967-g4e50bbcd-1jammy [124 kB] 2024-03-30T13:47:34.653 INFO:teuthology.orchestra.run.smithi050.stdout:Get:103 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.0.0-1967-g4e50bbcd-1jammy [1,526 kB] 2024-03-30T13:47:34.749 INFO:teuthology.orchestra.run.smithi026.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-03-30T13:47:34.751 INFO:teuthology.orchestra.run.smithi026.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.1 [108 kB] 2024-03-30T13:47:34.753 INFO:teuthology.orchestra.run.smithi026.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-03-30T13:47:34.754 INFO:teuthology.orchestra.run.smithi026.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-03-30T13:47:34.756 INFO:teuthology.orchestra.run.smithi026.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-03-30T13:47:34.781 INFO:teuthology.orchestra.run.smithi050.stdout:Get:104 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.0.0-1967-g4e50bbcd-1jammy [6,247 kB] 2024-03-30T13:47:34.975 INFO:teuthology.orchestra.run.smithi026.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-03-30T13:47:35.272 INFO:teuthology.orchestra.run.smithi050.stdout:Get:105 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.0.0-1967-g4e50bbcd-1jammy [22.7 MB] 2024-03-30T13:47:35.410 INFO:teuthology.orchestra.run.smithi026.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-03-30T13:47:35.416 INFO:teuthology.orchestra.run.smithi026.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-03-30T13:47:35.599 INFO:teuthology.orchestra.run.smithi136.stdout:Get:97 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.0.0-1967-g4e50bbcd-1jammy [112 kB] 2024-03-30T13:47:35.654 INFO:teuthology.orchestra.run.smithi136.stdout:Get:98 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.0.0-1967-g4e50bbcd-1jammy [466 kB] 2024-03-30T13:47:35.754 INFO:teuthology.orchestra.run.smithi026.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-03-30T13:47:35.754 INFO:teuthology.orchestra.run.smithi026.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-03-30T13:47:35.801 INFO:teuthology.orchestra.run.smithi026.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-03-30T13:47:35.801 INFO:teuthology.orchestra.run.smithi026.stdout:Get:80 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.0.0-1967-g4e50bbcd-1jammy [14.0 kB] 2024-03-30T13:47:35.802 INFO:teuthology.orchestra.run.smithi026.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-03-30T13:47:35.802 INFO:teuthology.orchestra.run.smithi026.stdout:Get:82 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.0.0-1967-g4e50bbcd-1jammy [869 kB] 2024-03-30T13:47:35.803 INFO:teuthology.orchestra.run.smithi026.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-03-30T13:47:35.805 INFO:teuthology.orchestra.run.smithi026.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-requests-oauthlib all 1.3.0+ds-0.1 [18.7 kB] 2024-03-30T13:47:35.806 INFO:teuthology.orchestra.run.smithi026.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-03-30T13:47:35.807 INFO:teuthology.orchestra.run.smithi026.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-03-30T13:47:35.820 INFO:teuthology.orchestra.run.smithi136.stdout:Get:99 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.0.0-1967-g4e50bbcd-1jammy [25.2 MB] 2024-03-30T13:47:35.821 INFO:teuthology.orchestra.run.smithi026.stdout:Get:87 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.0.0-1967-g4e50bbcd-1jammy [2,434 kB] 2024-03-30T13:47:35.980 INFO:teuthology.orchestra.run.smithi026.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-03-30T13:47:36.010 INFO:teuthology.orchestra.run.smithi026.stdout:Get:89 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.0.0-1967-g4e50bbcd-1jammy [777 kB] 2024-03-30T13:47:36.025 INFO:teuthology.orchestra.run.smithi026.stdout:Get:90 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.0.0-1967-g4e50bbcd-1jammy [145 kB] 2024-03-30T13:47:36.028 INFO:teuthology.orchestra.run.smithi026.stdout:Get:91 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.0.0-1967-g4e50bbcd-1jammy [2,229 kB] 2024-03-30T13:47:36.171 INFO:teuthology.orchestra.run.smithi026.stdout:Get:92 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.0.0-1967-g4e50bbcd-1jammy [8,625 kB] 2024-03-30T13:47:36.396 INFO:teuthology.orchestra.run.smithi026.stdout:Get:93 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-03-30T13:47:36.442 INFO:teuthology.orchestra.run.smithi026.stdout:Get:94 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-03-30T13:47:36.478 INFO:teuthology.orchestra.run.smithi026.stdout:Get:95 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-03-30T13:47:36.574 INFO:teuthology.orchestra.run.smithi026.stdout:Get:96 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-03-30T13:47:36.615 INFO:teuthology.orchestra.run.smithi026.stdout:Get:97 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-socket amd64 3.0~rc1+git+ac3201d-6 [78.9 kB] 2024-03-30T13:47:36.629 INFO:teuthology.orchestra.run.smithi026.stdout:Get:98 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-03-30T13:47:36.634 INFO:teuthology.orchestra.run.smithi026.stdout:Get:99 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.1 [474 kB] 2024-03-30T13:47:36.680 INFO:teuthology.orchestra.run.smithi026.stdout:Get:100 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-03-30T13:47:36.683 INFO:teuthology.orchestra.run.smithi026.stdout:Get:101 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-03-30T13:47:36.704 INFO:teuthology.orchestra.run.smithi026.stdout:Get:102 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-03-30T13:47:36.833 INFO:teuthology.orchestra.run.smithi026.stdout:Get:103 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.0.0-1967-g4e50bbcd-1jammy [14.2 kB] 2024-03-30T13:47:36.833 INFO:teuthology.orchestra.run.smithi026.stdout:Get:104 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.0.0-1967-g4e50bbcd-1jammy [50.0 MB] 2024-03-30T13:47:36.868 INFO:teuthology.orchestra.run.smithi026.stdout:Get:105 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-03-30T13:47:37.036 INFO:teuthology.orchestra.run.smithi050.stdout:Get:106 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.0.0-1967-g4e50bbcd-1jammy [14.0 kB] 2024-03-30T13:47:37.036 INFO:teuthology.orchestra.run.smithi050.stdout:Get:107 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.0.0-1967-g4e50bbcd-1jammy [869 kB] 2024-03-30T13:47:37.053 INFO:teuthology.orchestra.run.smithi050.stdout:Get:108 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.0.0-1967-g4e50bbcd-1jammy [2,434 kB] 2024-03-30T13:47:37.142 INFO:teuthology.orchestra.run.smithi026.stdout:Get:106 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-03-30T13:47:37.160 INFO:teuthology.orchestra.run.smithi026.stdout:Get:107 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-03-30T13:47:37.179 INFO:teuthology.orchestra.run.smithi050.stdout:Get:109 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.0.0-1967-g4e50bbcd-1jammy [777 kB] 2024-03-30T13:47:37.242 INFO:teuthology.orchestra.run.smithi050.stdout:Get:110 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.0.0-1967-g4e50bbcd-1jammy [145 kB] 2024-03-30T13:47:37.247 INFO:teuthology.orchestra.run.smithi050.stdout:Get:111 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.0.0-1967-g4e50bbcd-1jammy [2,229 kB] 2024-03-30T13:47:37.314 INFO:teuthology.orchestra.run.smithi026.stdout:Get:108 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-03-30T13:47:37.343 INFO:teuthology.orchestra.run.smithi026.stdout:Get:109 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-03-30T13:47:37.396 INFO:teuthology.orchestra.run.smithi050.stdout:Get:112 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.0.0-1967-g4e50bbcd-1jammy [8,625 kB] 2024-03-30T13:47:37.501 INFO:teuthology.orchestra.run.smithi026.stdout:Get:110 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-03-30T13:47:37.503 INFO:teuthology.orchestra.run.smithi026.stdout:Get:111 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-03-30T13:47:37.506 INFO:teuthology.orchestra.run.smithi026.stdout:Get:112 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-03-30T13:47:37.528 INFO:teuthology.orchestra.run.smithi026.stdout:Get:113 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-03-30T13:47:37.532 INFO:teuthology.orchestra.run.smithi026.stdout:Get:114 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-03-30T13:47:38.013 INFO:teuthology.orchestra.run.smithi050.stdout:Get:113 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.0.0-1967-g4e50bbcd-1jammy [14.2 kB] 2024-03-30T13:47:38.013 INFO:teuthology.orchestra.run.smithi050.stdout:Get:114 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.0.0-1967-g4e50bbcd-1jammy [50.0 MB] 2024-03-30T13:47:40.736 INFO:teuthology.orchestra.run.smithi026.stdout:Get:115 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.0.0-1967-g4e50bbcd-1jammy [121 kB] 2024-03-30T13:47:40.738 INFO:teuthology.orchestra.run.smithi026.stdout:Get:116 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.0.0-1967-g4e50bbcd-1jammy [38.9 kB] 2024-03-30T13:47:40.739 INFO:teuthology.orchestra.run.smithi026.stdout:Get:117 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.0.0-1967-g4e50bbcd-1jammy [13.0 MB] 2024-03-30T13:47:41.439 INFO:teuthology.orchestra.run.smithi026.stdout:Get:118 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.0.0-1967-g4e50bbcd-1jammy [91.5 kB] 2024-03-30T13:47:41.720 INFO:teuthology.orchestra.run.smithi050.stdout:Get:115 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.0.0-1967-g4e50bbcd-1jammy [121 kB] 2024-03-30T13:47:41.722 INFO:teuthology.orchestra.run.smithi050.stdout:Get:116 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.0.0-1967-g4e50bbcd-1jammy [38.9 kB] 2024-03-30T13:47:41.724 INFO:teuthology.orchestra.run.smithi050.stdout:Get:117 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.0.0-1967-g4e50bbcd-1jammy [13.0 MB] 2024-03-30T13:47:42.024 INFO:teuthology.orchestra.run.smithi026.stdout:Fetched 178 MB in 11s (16.3 MB/s) 2024-03-30T13:47:42.060 INFO:teuthology.orchestra.run.smithi050.stdout:Get:118 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.0.0-1967-g4e50bbcd-1jammy [91.5 kB] 2024-03-30T13:47:42.195 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-03-30T13:47:42.298 INFO:teuthology.orchestra.run.smithi026.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 ... 165997 files and directories currently installed.) 2024-03-30T13:47:42.304 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-03-30T13:47:42.385 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-03-30T13:47:42.648 INFO:teuthology.orchestra.run.smithi050.stdout:Fetched 178 MB in 11s (15.5 MB/s) 2024-03-30T13:47:42.777 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-03-30T13:47:42.846 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-03-30T13:47:42.873 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-03-30T13:47:42.878 INFO:teuthology.orchestra.run.smithi050.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 ... 165997 files and directories currently installed.) 2024-03-30T13:47:42.884 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-03-30T13:47:42.913 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-03-30T13:47:42.953 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-03-30T13:47:43.224 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-03-30T13:47:43.240 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-03-30T13:47:43.274 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-03-30T13:47:43.290 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-03-30T13:47:43.317 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-03-30T13:47:43.356 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-03-30T13:47:43.659 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-03-30T13:47:43.686 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-03-30T13:47:43.711 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-03-30T13:47:43.726 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-03-30T13:47:43.738 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-03-30T13:47:43.786 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-03-30T13:47:44.138 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-03-30T13:47:44.166 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-03-30T13:47:44.213 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-03-30T13:47:44.431 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-03-30T13:47:44.458 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-03-30T13:47:44.497 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-03-30T13:47:44.616 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-03-30T13:47:44.643 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-03-30T13:47:44.682 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-03-30T13:47:44.750 INFO:teuthology.orchestra.run.smithi136.stdout:Get:100 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.0.0-1967-g4e50bbcd-1jammy [5,077 kB] 2024-03-30T13:47:44.809 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-03-30T13:47:44.836 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-03-30T13:47:44.867 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-03-30T13:47:45.035 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-03-30T13:47:45.063 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-03-30T13:47:45.102 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-03-30T13:47:45.254 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-03-30T13:47:45.281 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-03-30T13:47:45.320 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-03-30T13:47:45.422 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-03-30T13:47:45.438 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-03-30T13:47:45.471 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-03-30T13:47:45.648 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package librados2. 2024-03-30T13:47:45.675 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../007-librados2_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:47:45.715 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking librados2 (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:47:45.776 INFO:teuthology.orchestra.run.smithi136.stdout:Get:101 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.0.0-1967-g4e50bbcd-1jammy [244 kB] 2024-03-30T13:47:45.799 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package librados2. 2024-03-30T13:47:45.826 INFO:teuthology.orchestra.run.smithi136.stdout:Get:102 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.0.0-1967-g4e50bbcd-1jammy [124 kB] 2024-03-30T13:47:45.827 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../007-librados2_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:47:45.848 INFO:teuthology.orchestra.run.smithi136.stdout:Get:103 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.0.0-1967-g4e50bbcd-1jammy [1,526 kB] 2024-03-30T13:47:45.866 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking librados2 (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:47:46.159 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package librbd1. 2024-03-30T13:47:46.176 INFO:teuthology.orchestra.run.smithi136.stdout:Get:104 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.0.0-1967-g4e50bbcd-1jammy [6,247 kB] 2024-03-30T13:47:46.186 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../008-librbd1_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:47:46.218 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking librbd1 (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:47:46.327 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package librbd1. 2024-03-30T13:47:46.343 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../008-librbd1_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:47:46.385 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking librbd1 (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:47:46.646 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package libcephfs2. 2024-03-30T13:47:46.672 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../009-libcephfs2_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:47:46.712 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking libcephfs2 (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:47:46.830 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package libcephfs2. 2024-03-30T13:47:46.857 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../009-libcephfs2_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:47:46.896 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking libcephfs2 (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:47:46.998 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-rados. 2024-03-30T13:47:47.014 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../010-python3-rados_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:47:47.056 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-rados (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:47:47.141 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-rados. 2024-03-30T13:47:47.157 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../010-python3-rados_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:47:47.190 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-rados (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:47:47.392 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-03-30T13:47:47.393 INFO:teuthology.orchestra.run.smithi136.stdout:Get:105 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.0.0-1967-g4e50bbcd-1jammy [22.7 MB] 2024-03-30T13:47:47.419 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../011-python3-ceph-argparse_19.0.0-1967-g4e50bbcd-1jammy_all.deb ... 2024-03-30T13:47:47.459 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-ceph-argparse (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:47:47.686 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-cephfs. 2024-03-30T13:47:47.702 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../012-python3-cephfs_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:47:47.727 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-03-30T13:47:47.736 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-cephfs (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:47:47.754 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../011-python3-ceph-argparse_19.0.0-1967-g4e50bbcd-1jammy_all.deb ... 2024-03-30T13:47:47.793 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-ceph-argparse (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:47:48.031 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-ceph-common. 2024-03-30T13:47:48.046 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-cephfs. 2024-03-30T13:47:48.058 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../013-python3-ceph-common_19.0.0-1967-g4e50bbcd-1jammy_all.deb ... 2024-03-30T13:47:48.062 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../012-python3-cephfs_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:47:48.097 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-ceph-common (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:47:48.104 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-cephfs (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:47:48.415 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-ceph-common. 2024-03-30T13:47:48.434 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-wcwidth. 2024-03-30T13:47:48.442 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../013-python3-ceph-common_19.0.0-1967-g4e50bbcd-1jammy_all.deb ... 2024-03-30T13:47:48.461 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../014-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-03-30T13:47:48.482 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-ceph-common (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:47:48.500 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-03-30T13:47:48.759 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-wcwidth. 2024-03-30T13:47:48.787 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../014-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-03-30T13:47:48.818 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-03-30T13:47:48.820 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-prettytable. 2024-03-30T13:47:48.847 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../015-python3-prettytable_2.5.0-2_all.deb ... 2024-03-30T13:47:48.886 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-03-30T13:47:49.147 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-rbd. 2024-03-30T13:47:49.154 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-prettytable. 2024-03-30T13:47:49.163 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../016-python3-rbd_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:47:49.181 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../015-python3-prettytable_2.5.0-2_all.deb ... 2024-03-30T13:47:49.221 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-03-30T13:47:49.262 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-rbd (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:47:49.473 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-rbd. 2024-03-30T13:47:49.500 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../016-python3-rbd_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:47:49.540 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-rbd (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:47:49.651 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-03-30T13:47:49.678 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../017-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-03-30T13:47:49.717 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-03-30T13:47:49.884 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-03-30T13:47:49.914 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../017-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-03-30T13:47:49.951 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-03-30T13:47:50.028 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-03-30T13:47:50.055 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../018-libreadline-dev_8.1.2-1_amd64.deb ... 2024-03-30T13:47:50.095 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-03-30T13:47:50.204 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-03-30T13:47:50.231 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../018-libreadline-dev_8.1.2-1_amd64.deb ... 2024-03-30T13:47:50.262 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-03-30T13:47:50.397 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-03-30T13:47:50.414 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../019-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-03-30T13:47:50.456 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-03-30T13:47:50.573 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-03-30T13:47:50.590 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../019-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-03-30T13:47:50.631 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-03-30T13:47:50.751 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package lua5.1. 2024-03-30T13:47:50.778 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../020-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-03-30T13:47:50.809 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-03-30T13:47:50.968 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package lua5.1. 2024-03-30T13:47:50.995 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../020-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-03-30T13:47:51.034 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-03-30T13:47:51.112 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package lua-any. 2024-03-30T13:47:51.128 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../021-lua-any_27ubuntu1_all.deb ... 2024-03-30T13:47:51.171 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking lua-any (27ubuntu1) ... 2024-03-30T13:47:51.313 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package lua-any. 2024-03-30T13:47:51.329 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../021-lua-any_27ubuntu1_all.deb ... 2024-03-30T13:47:51.371 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking lua-any (27ubuntu1) ... 2024-03-30T13:47:51.415 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package zip. 2024-03-30T13:47:51.442 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../022-zip_3.0-12build2_amd64.deb ... 2024-03-30T13:47:51.481 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking zip (3.0-12build2) ... 2024-03-30T13:47:51.552 INFO:teuthology.orchestra.run.smithi136.stdout:Get:106 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.0.0-1967-g4e50bbcd-1jammy [14.0 kB] 2024-03-30T13:47:51.552 INFO:teuthology.orchestra.run.smithi136.stdout:Get:107 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.0.0-1967-g4e50bbcd-1jammy [869 kB] 2024-03-30T13:47:51.606 INFO:teuthology.orchestra.run.smithi136.stdout:Get:108 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.0.0-1967-g4e50bbcd-1jammy [2,434 kB] 2024-03-30T13:47:51.607 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package zip. 2024-03-30T13:47:51.623 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../022-zip_3.0-12build2_amd64.deb ... 2024-03-30T13:47:51.665 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking zip (3.0-12build2) ... 2024-03-30T13:47:51.801 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package unzip. 2024-03-30T13:47:51.817 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../023-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-03-30T13:47:51.851 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-03-30T13:47:51.864 INFO:teuthology.orchestra.run.smithi136.stdout:Get:109 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.0.0-1967-g4e50bbcd-1jammy [777 kB] 2024-03-30T13:47:51.955 INFO:teuthology.orchestra.run.smithi136.stdout:Get:110 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.0.0-1967-g4e50bbcd-1jammy [145 kB] 2024-03-30T13:47:51.963 INFO:teuthology.orchestra.run.smithi136.stdout:Get:111 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.0.0-1967-g4e50bbcd-1jammy [2,229 kB] 2024-03-30T13:47:51.976 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package unzip. 2024-03-30T13:47:52.017 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../023-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-03-30T13:47:52.043 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-03-30T13:47:52.180 INFO:teuthology.orchestra.run.smithi136.stdout:Get:112 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.0.0-1967-g4e50bbcd-1jammy [8,625 kB] 2024-03-30T13:47:52.205 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package luarocks. 2024-03-30T13:47:52.232 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../024-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-03-30T13:47:52.271 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-03-30T13:47:52.405 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package luarocks. 2024-03-30T13:47:52.433 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../024-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-03-30T13:47:52.463 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-03-30T13:47:52.646 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package librgw2. 2024-03-30T13:47:52.673 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../025-librgw2_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:47:52.712 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking librgw2 (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:47:52.970 INFO:teuthology.orchestra.run.smithi136.stdout:Get:113 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.0.0-1967-g4e50bbcd-1jammy [14.2 kB] 2024-03-30T13:47:52.999 INFO:teuthology.orchestra.run.smithi136.stdout:Get:114 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.0.0-1967-g4e50bbcd-1jammy [50.0 MB] 2024-03-30T13:47:53.004 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package librgw2. 2024-03-30T13:47:53.031 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../025-librgw2_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:47:53.071 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking librgw2 (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:47:53.265 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-rgw. 2024-03-30T13:47:53.282 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../026-python3-rgw_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:47:53.323 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-rgw (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:47:53.607 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-rgw. 2024-03-30T13:47:53.634 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../026-python3-rgw_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:47:53.634 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package liboath0:amd64. 2024-03-30T13:47:53.661 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../027-liboath0_2.6.7-3build1_amd64.deb ... 2024-03-30T13:47:53.673 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-rgw (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:47:53.701 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-03-30T13:47:54.010 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package liboath0:amd64. 2024-03-30T13:47:54.037 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../027-liboath0_2.6.7-3build1_amd64.deb ... 2024-03-30T13:47:54.037 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package libradosstriper1. 2024-03-30T13:47:54.064 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../028-libradosstriper1_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:47:54.076 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-03-30T13:47:54.104 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking libradosstriper1 (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:47:54.354 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package libradosstriper1. 2024-03-30T13:47:54.370 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../028-libradosstriper1_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:47:54.404 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking libradosstriper1 (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:47:54.549 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package ceph-common. 2024-03-30T13:47:54.576 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../029-ceph-common_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:47:54.615 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking ceph-common (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:47:54.824 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package ceph-common. 2024-03-30T13:47:54.851 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../029-ceph-common_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:47:54.890 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking ceph-common (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:47:56.029 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package ceph-base. 2024-03-30T13:47:56.056 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../030-ceph-base_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:47:56.105 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking ceph-base (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:47:56.237 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package ceph-base. 2024-03-30T13:47:56.265 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../030-ceph-base_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:47:56.330 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking ceph-base (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:47:56.625 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-03-30T13:47:56.641 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../031-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-03-30T13:47:56.674 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-03-30T13:47:56.909 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-03-30T13:47:56.919 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-cheroot. 2024-03-30T13:47:56.935 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../032-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-03-30T13:47:56.936 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../031-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-03-30T13:47:56.969 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-03-30T13:47:56.975 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-03-30T13:47:57.191 INFO:teuthology.orchestra.run.smithi136.stdout:Get:115 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.0.0-1967-g4e50bbcd-1jammy [121 kB] 2024-03-30T13:47:57.193 INFO:teuthology.orchestra.run.smithi136.stdout:Get:116 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.0.0-1967-g4e50bbcd-1jammy [38.9 kB] 2024-03-30T13:47:57.194 INFO:teuthology.orchestra.run.smithi136.stdout:Get:117 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.0.0-1967-g4e50bbcd-1jammy [13.0 MB] 2024-03-30T13:47:57.244 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-cheroot. 2024-03-30T13:47:57.271 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../032-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-03-30T13:47:57.272 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-03-30T13:47:57.299 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../033-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-03-30T13:47:57.310 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-03-30T13:47:57.338 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-03-30T13:47:57.606 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-03-30T13:47:57.633 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../033-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-03-30T13:47:57.658 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-jaraco.text. 2024-03-30T13:47:57.664 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-03-30T13:47:57.685 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../034-python3-jaraco.text_3.6.0-2_all.deb ... 2024-03-30T13:47:57.724 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-03-30T13:47:57.950 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-jaraco.text. 2024-03-30T13:47:57.977 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../034-python3-jaraco.text_3.6.0-2_all.deb ... 2024-03-30T13:47:58.016 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-03-30T13:47:58.028 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-03-30T13:47:58.055 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../035-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-03-30T13:47:58.094 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-03-30T13:47:58.214 INFO:teuthology.orchestra.run.smithi136.stdout:Get:118 https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.0.0-1967-g4e50bbcd-1jammy [91.5 kB] 2024-03-30T13:47:58.336 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-03-30T13:47:58.363 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../035-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-03-30T13:47:58.372 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-tempora. 2024-03-30T13:47:58.388 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../036-python3-tempora_4.1.2-1_all.deb ... 2024-03-30T13:47:58.402 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-03-30T13:47:58.422 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-03-30T13:47:58.675 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-portend. 2024-03-30T13:47:58.702 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../037-python3-portend_3.0.0-1_all.deb ... 2024-03-30T13:47:58.722 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-tempora. 2024-03-30T13:47:58.741 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-03-30T13:47:58.749 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../036-python3-tempora_4.1.2-1_all.deb ... 2024-03-30T13:47:58.770 INFO:teuthology.orchestra.run.smithi136.stdout:Fetched 178 MB in 28s (6,394 kB/s) 2024-03-30T13:47:58.789 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-03-30T13:47:58.890 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-03-30T13:47:58.984 INFO:teuthology.orchestra.run.smithi136.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 ... 165997 files and directories currently installed.) 2024-03-30T13:47:58.990 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-03-30T13:47:59.042 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-portend. 2024-03-30T13:47:59.045 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-03-30T13:47:59.069 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../037-python3-portend_3.0.0-1_all.deb ... 2024-03-30T13:47:59.072 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-03-30T13:47:59.072 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../038-python3-zc.lockfile_2.0-1_all.deb ... 2024-03-30T13:47:59.108 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-03-30T13:47:59.111 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-03-30T13:47:59.411 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-03-30T13:47:59.414 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-cherrypy3. 2024-03-30T13:47:59.434 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-03-30T13:47:59.438 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../038-python3-zc.lockfile_2.0-1_all.deb ... 2024-03-30T13:47:59.441 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../039-python3-cherrypy3_18.6.1-4_all.deb ... 2024-03-30T13:47:59.461 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-03-30T13:47:59.478 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-03-30T13:47:59.500 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-03-30T13:47:59.647 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-03-30T13:47:59.772 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-cherrypy3. 2024-03-30T13:47:59.799 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../039-python3-cherrypy3_18.6.1-4_all.deb ... 2024-03-30T13:47:59.828 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-03-30T13:47:59.839 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-03-30T13:47:59.855 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-03-30T13:47:59.895 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-03-30T13:48:00.001 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-natsort. 2024-03-30T13:48:00.028 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../040-python3-natsort_8.0.2-1_all.deb ... 2024-03-30T13:48:00.068 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-03-30T13:48:00.142 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-natsort. 2024-03-30T13:48:00.170 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../040-python3-natsort_8.0.2-1_all.deb ... 2024-03-30T13:48:00.200 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-03-30T13:48:00.240 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-03-30T13:48:00.267 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-03-30T13:48:00.307 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-03-30T13:48:00.320 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-logutils. 2024-03-30T13:48:00.348 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../041-python3-logutils_0.3.3-8_all.deb ... 2024-03-30T13:48:00.379 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-03-30T13:48:00.454 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-logutils. 2024-03-30T13:48:00.469 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../041-python3-logutils_0.3.3-8_all.deb ... 2024-03-30T13:48:00.512 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-03-30T13:48:00.657 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-markupsafe. 2024-03-30T13:48:00.684 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../042-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-03-30T13:48:00.710 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-03-30T13:48:00.723 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-03-30T13:48:00.737 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-03-30T13:48:00.776 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-03-30T13:48:00.823 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-markupsafe. 2024-03-30T13:48:00.850 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../042-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-03-30T13:48:00.890 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-03-30T13:48:01.018 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-mako. 2024-03-30T13:48:01.045 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../043-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-03-30T13:48:01.084 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-03-30T13:48:01.096 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-03-30T13:48:01.120 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-03-30T13:48:01.155 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-03-30T13:48:01.192 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-mako. 2024-03-30T13:48:01.220 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../043-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-03-30T13:48:01.259 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-03-30T13:48:01.421 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-simplegeneric. 2024-03-30T13:48:01.448 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../044-python3-simplegeneric_0.8.1-3_all.deb ... 2024-03-30T13:48:01.466 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-03-30T13:48:01.493 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-03-30T13:48:01.510 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-03-30T13:48:01.533 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-03-30T13:48:01.587 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-simplegeneric. 2024-03-30T13:48:01.614 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../044-python3-simplegeneric_0.8.1-3_all.deb ... 2024-03-30T13:48:01.653 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-03-30T13:48:01.799 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-singledispatch. 2024-03-30T13:48:01.820 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../045-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-03-30T13:48:01.852 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package librados2. 2024-03-30T13:48:01.865 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-03-30T13:48:01.876 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../007-librados2_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:01.906 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-singledispatch. 2024-03-30T13:48:01.919 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking librados2 (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:01.922 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../045-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-03-30T13:48:01.956 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-03-30T13:48:02.160 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-webob. 2024-03-30T13:48:02.187 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../046-python3-webob_1%3a1.8.6-1.1_all.deb ... 2024-03-30T13:48:02.226 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-webob (1:1.8.6-1.1) ... 2024-03-30T13:48:02.251 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-webob. 2024-03-30T13:48:02.278 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../046-python3-webob_1%3a1.8.6-1.1_all.deb ... 2024-03-30T13:48:02.317 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-webob (1:1.8.6-1.1) ... 2024-03-30T13:48:02.373 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package librbd1. 2024-03-30T13:48:02.398 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../008-librbd1_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:02.438 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking librbd1 (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:02.579 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-waitress. 2024-03-30T13:48:02.606 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../047-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-03-30T13:48:02.637 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-waitress. 2024-03-30T13:48:02.649 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-03-30T13:48:02.664 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../047-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-03-30T13:48:02.707 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-03-30T13:48:02.875 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package libcephfs2. 2024-03-30T13:48:02.901 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../009-libcephfs2_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:02.933 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking libcephfs2 (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:02.965 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-tempita. 2024-03-30T13:48:02.992 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../048-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-03-30T13:48:03.015 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-tempita. 2024-03-30T13:48:03.032 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-03-30T13:48:03.042 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../048-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-03-30T13:48:03.082 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-03-30T13:48:03.210 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-rados. 2024-03-30T13:48:03.225 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../010-python3-rados_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:03.268 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-rados (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:03.293 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-paste. 2024-03-30T13:48:03.317 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../049-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-03-30T13:48:03.351 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-03-30T13:48:03.359 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-paste. 2024-03-30T13:48:03.387 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../049-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-03-30T13:48:03.459 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-03-30T13:48:03.588 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-03-30T13:48:03.615 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../011-python3-ceph-argparse_19.0.0-1967-g4e50bbcd-1jammy_all.deb ... 2024-03-30T13:48:03.654 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-ceph-argparse (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:03.680 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-03-30T13:48:03.696 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../050-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-03-30T13:48:03.737 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-03-30T13:48:04.355 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-03-30T13:48:04.382 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../050-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-03-30T13:48:04.555 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-03-30T13:48:04.608 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-cephfs. 2024-03-30T13:48:04.634 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../012-python3-cephfs_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:04.666 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-cephfs (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:04.825 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-pastedeploy. 2024-03-30T13:48:04.852 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../051-python3-pastedeploy_2.1.1-1_all.deb ... 2024-03-30T13:48:04.858 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-pastedeploy. 2024-03-30T13:48:04.885 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../051-python3-pastedeploy_2.1.1-1_all.deb ... 2024-03-30T13:48:04.891 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-03-30T13:48:04.924 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-03-30T13:48:04.969 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-ceph-common. 2024-03-30T13:48:04.995 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../013-python3-ceph-common_19.0.0-1967-g4e50bbcd-1jammy_all.deb ... 2024-03-30T13:48:05.035 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-ceph-common (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:05.186 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-webtest. 2024-03-30T13:48:05.202 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../052-python3-webtest_2.0.35-1_all.deb ... 2024-03-30T13:48:05.227 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-webtest. 2024-03-30T13:48:05.244 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-03-30T13:48:05.254 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../052-python3-webtest_2.0.35-1_all.deb ... 2024-03-30T13:48:05.293 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-03-30T13:48:05.363 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-wcwidth. 2024-03-30T13:48:05.390 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../014-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-03-30T13:48:05.430 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-03-30T13:48:05.580 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-pecan. 2024-03-30T13:48:05.580 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-pecan. 2024-03-30T13:48:05.607 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../053-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-03-30T13:48:05.607 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../053-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-03-30T13:48:05.646 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-03-30T13:48:05.646 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-03-30T13:48:05.758 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-prettytable. 2024-03-30T13:48:05.784 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../015-python3-prettytable_2.5.0-2_all.deb ... 2024-03-30T13:48:05.824 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-03-30T13:48:05.959 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-certifi. 2024-03-30T13:48:05.987 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../054-python3-certifi_2020.6.20-1_all.deb ... 2024-03-30T13:48:06.018 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-03-30T13:48:06.018 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-certifi. 2024-03-30T13:48:06.045 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../054-python3-certifi_2020.6.20-1_all.deb ... 2024-03-30T13:48:06.060 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-rbd. 2024-03-30T13:48:06.084 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../016-python3-rbd_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:06.085 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-03-30T13:48:06.118 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-rbd (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:06.321 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-idna. 2024-03-30T13:48:06.348 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../055-python3-idna_3.3-1_all.deb ... 2024-03-30T13:48:06.379 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-idna. 2024-03-30T13:48:06.387 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-idna (3.3-1) ... 2024-03-30T13:48:06.406 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../055-python3-idna_3.3-1_all.deb ... 2024-03-30T13:48:06.438 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-idna (3.3-1) ... 2024-03-30T13:48:06.454 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-03-30T13:48:06.481 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../017-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-03-30T13:48:06.521 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-03-30T13:48:06.707 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-urllib3. 2024-03-30T13:48:06.724 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-urllib3. 2024-03-30T13:48:06.734 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../056-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-03-30T13:48:06.751 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../056-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-03-30T13:48:06.773 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-03-30T13:48:06.790 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-03-30T13:48:06.798 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-03-30T13:48:06.814 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../018-libreadline-dev_8.1.2-1_amd64.deb ... 2024-03-30T13:48:06.865 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-03-30T13:48:07.094 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-requests. 2024-03-30T13:48:07.101 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-requests. 2024-03-30T13:48:07.121 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../057-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-03-30T13:48:07.129 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../057-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-03-30T13:48:07.160 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-03-30T13:48:07.168 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-03-30T13:48:07.168 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-03-30T13:48:07.184 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../019-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-03-30T13:48:07.226 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-03-30T13:48:07.471 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-werkzeug. 2024-03-30T13:48:07.479 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-werkzeug. 2024-03-30T13:48:07.487 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../058-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.1_all.deb ... 2024-03-30T13:48:07.506 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../058-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.1_all.deb ... 2024-03-30T13:48:07.513 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package lua5.1. 2024-03-30T13:48:07.528 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../020-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-03-30T13:48:07.529 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-03-30T13:48:07.546 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-03-30T13:48:07.563 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-03-30T13:48:07.816 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-03-30T13:48:07.832 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../059-ceph-mgr-modules-core_19.0.0-1967-g4e50bbcd-1jammy_all.deb ... 2024-03-30T13:48:07.857 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-03-30T13:48:07.873 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../059-ceph-mgr-modules-core_19.0.0-1967-g4e50bbcd-1jammy_all.deb ... 2024-03-30T13:48:07.874 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking ceph-mgr-modules-core (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:07.883 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package lua-any. 2024-03-30T13:48:07.909 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../021-lua-any_27ubuntu1_all.deb ... 2024-03-30T13:48:07.915 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking ceph-mgr-modules-core (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:07.949 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking lua-any (27ubuntu1) ... 2024-03-30T13:48:08.194 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package zip. 2024-03-30T13:48:08.220 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../022-zip_3.0-12build2_amd64.deb ... 2024-03-30T13:48:08.254 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-03-30T13:48:08.260 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking zip (3.0-12build2) ... 2024-03-30T13:48:08.282 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../060-libsqlite3-mod-ceph_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:08.286 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-03-30T13:48:08.303 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../060-libsqlite3-mod-ceph_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:08.320 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking libsqlite3-mod-ceph (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:08.336 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking libsqlite3-mod-ceph (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:08.565 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-bcrypt. 2024-03-30T13:48:08.571 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package unzip. 2024-03-30T13:48:08.592 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../061-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-03-30T13:48:08.598 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../023-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-03-30T13:48:08.631 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-03-30T13:48:08.640 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-bcrypt. 2024-03-30T13:48:08.655 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-03-30T13:48:08.667 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../061-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-03-30T13:48:08.706 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-03-30T13:48:08.934 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-openssl. 2024-03-30T13:48:08.962 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../062-python3-openssl_21.0.0-1_all.deb ... 2024-03-30T13:48:09.009 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-openssl. 2024-03-30T13:48:09.009 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-03-30T13:48:09.017 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package luarocks. 2024-03-30T13:48:09.036 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../062-python3-openssl_21.0.0-1_all.deb ... 2024-03-30T13:48:09.043 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../024-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-03-30T13:48:09.075 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-03-30T13:48:09.084 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-03-30T13:48:09.379 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package ceph-mgr. 2024-03-30T13:48:09.406 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../063-ceph-mgr_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:09.412 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package ceph-mgr. 2024-03-30T13:48:09.439 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../063-ceph-mgr_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:09.445 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking ceph-mgr (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:09.475 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package librgw2. 2024-03-30T13:48:09.478 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking ceph-mgr (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:09.501 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../025-librgw2_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:09.541 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking librgw2 (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:09.815 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package ceph-mon. 2024-03-30T13:48:09.824 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package ceph-mon. 2024-03-30T13:48:09.842 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../064-ceph-mon_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:09.851 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../064-ceph-mon_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:09.881 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking ceph-mon (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:09.882 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking ceph-mon (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:10.086 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-rgw. 2024-03-30T13:48:10.113 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../026-python3-rgw_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:10.144 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-rgw (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:10.430 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package liboath0:amd64. 2024-03-30T13:48:10.456 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../027-liboath0_2.6.7-3build1_amd64.deb ... 2024-03-30T13:48:10.476 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package ceph-osd. 2024-03-30T13:48:10.496 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-03-30T13:48:10.504 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../065-ceph-osd_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:10.543 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking ceph-osd (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:10.586 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package ceph-osd. 2024-03-30T13:48:10.613 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../065-ceph-osd_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:10.652 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking ceph-osd (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:10.808 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package libradosstriper1. 2024-03-30T13:48:10.835 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../028-libradosstriper1_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:10.875 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking libradosstriper1 (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:11.261 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package ceph-common. 2024-03-30T13:48:11.288 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../029-ceph-common_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:11.328 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking ceph-common (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:11.638 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package ceph. 2024-03-30T13:48:11.654 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../066-ceph_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:11.696 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking ceph (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:11.730 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package ceph. 2024-03-30T13:48:11.758 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../066-ceph_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:11.797 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking ceph (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:12.024 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package ceph-fuse. 2024-03-30T13:48:12.051 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../067-ceph-fuse_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:12.066 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package ceph-fuse. 2024-03-30T13:48:12.082 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking ceph-fuse (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:12.093 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../067-ceph-fuse_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:12.132 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking ceph-fuse (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:12.443 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package ceph-mds. 2024-03-30T13:48:12.471 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../068-ceph-mds_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:12.494 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package ceph-mds. 2024-03-30T13:48:12.510 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking ceph-mds (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:12.521 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../068-ceph-mds_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:12.561 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking ceph-mds (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:12.683 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package ceph-base. 2024-03-30T13:48:12.710 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../030-ceph-base_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:12.758 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking ceph-base (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:12.888 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package cephadm. 2024-03-30T13:48:12.915 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../069-cephadm_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:12.954 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking cephadm (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:12.964 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package cephadm. 2024-03-30T13:48:12.991 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../069-cephadm_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:13.047 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking cephadm (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:13.249 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-asyncssh. 2024-03-30T13:48:13.276 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../070-python3-asyncssh_2.5.0-1_all.deb ... 2024-03-30T13:48:13.304 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-03-30T13:48:13.315 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-03-30T13:48:13.330 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../031-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-03-30T13:48:13.358 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-asyncssh. 2024-03-30T13:48:13.370 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-03-30T13:48:13.385 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../070-python3-asyncssh_2.5.0-1_all.deb ... 2024-03-30T13:48:13.424 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-03-30T13:48:13.652 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python-babel-localedata. 2024-03-30T13:48:13.679 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../071-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-03-30T13:48:13.698 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-cheroot. 2024-03-30T13:48:13.718 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-03-30T13:48:13.725 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../032-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-03-30T13:48:13.777 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python-babel-localedata. 2024-03-30T13:48:13.793 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../071-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-03-30T13:48:13.835 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-03-30T13:48:13.890 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-03-30T13:48:14.302 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-03-30T13:48:14.328 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../033-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-03-30T13:48:14.368 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-03-30T13:48:14.587 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-jaraco.text. 2024-03-30T13:48:14.603 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../034-python3-jaraco.text_3.6.0-2_all.deb ... 2024-03-30T13:48:14.646 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-03-30T13:48:14.740 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-babel. 2024-03-30T13:48:14.768 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../072-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-03-30T13:48:14.798 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-03-30T13:48:14.924 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-babel. 2024-03-30T13:48:14.952 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../072-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-03-30T13:48:14.957 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-03-30T13:48:14.984 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../035-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-03-30T13:48:14.990 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-03-30T13:48:15.024 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-03-30T13:48:15.076 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-jinja2. 2024-03-30T13:48:15.104 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../073-python3-jinja2_3.0.3-1ubuntu0.1_all.deb ... 2024-03-30T13:48:15.142 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-03-30T13:48:15.327 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-tempora. 2024-03-30T13:48:15.354 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../036-python3-tempora_4.1.2-1_all.deb ... 2024-03-30T13:48:15.393 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-03-30T13:48:15.437 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-03-30T13:48:15.453 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../074-ceph-mgr-cephadm_19.0.0-1967-g4e50bbcd-1jammy_all.deb ... 2024-03-30T13:48:15.487 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking ceph-mgr-cephadm (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:15.520 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-jinja2. 2024-03-30T13:48:15.548 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../073-python3-jinja2_3.0.3-1ubuntu0.1_all.deb ... 2024-03-30T13:48:15.578 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-03-30T13:48:15.637 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-portend. 2024-03-30T13:48:15.653 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../037-python3-portend_3.0.0-1_all.deb ... 2024-03-30T13:48:15.688 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-03-30T13:48:15.782 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-repoze.lru. 2024-03-30T13:48:15.810 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../075-python3-repoze.lru_0.7-2_all.deb ... 2024-03-30T13:48:15.840 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-03-30T13:48:15.865 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-03-30T13:48:15.892 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../074-ceph-mgr-cephadm_19.0.0-1967-g4e50bbcd-1jammy_all.deb ... 2024-03-30T13:48:15.931 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking ceph-mgr-cephadm (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:15.974 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-03-30T13:48:16.001 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../038-python3-zc.lockfile_2.0-1_all.deb ... 2024-03-30T13:48:16.041 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-03-30T13:48:16.126 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-routes. 2024-03-30T13:48:16.154 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../076-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-03-30T13:48:16.193 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-03-30T13:48:16.226 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-repoze.lru. 2024-03-30T13:48:16.254 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../075-python3-repoze.lru_0.7-2_all.deb ... 2024-03-30T13:48:16.284 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-03-30T13:48:16.344 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-cherrypy3. 2024-03-30T13:48:16.371 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../039-python3-cherrypy3_18.6.1-4_all.deb ... 2024-03-30T13:48:16.410 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-03-30T13:48:16.512 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-03-30T13:48:16.540 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../077-ceph-mgr-dashboard_19.0.0-1967-g4e50bbcd-1jammy_all.deb ... 2024-03-30T13:48:16.579 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking ceph-mgr-dashboard (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:16.596 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-routes. 2024-03-30T13:48:16.623 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../076-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-03-30T13:48:16.662 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-03-30T13:48:16.730 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-natsort. 2024-03-30T13:48:16.757 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../040-python3-natsort_8.0.2-1_all.deb ... 2024-03-30T13:48:16.797 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-03-30T13:48:17.024 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-03-30T13:48:17.051 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../077-ceph-mgr-dashboard_19.0.0-1967-g4e50bbcd-1jammy_all.deb ... 2024-03-30T13:48:17.090 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking ceph-mgr-dashboard (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:17.127 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-logutils. 2024-03-30T13:48:17.154 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../041-python3-logutils_0.3.3-8_all.deb ... 2024-03-30T13:48:17.193 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-03-30T13:48:17.480 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-markupsafe. 2024-03-30T13:48:17.506 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../042-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-03-30T13:48:17.538 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-03-30T13:48:17.726 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-03-30T13:48:17.742 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../078-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-03-30T13:48:17.791 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-mako. 2024-03-30T13:48:17.809 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-03-30T13:48:17.817 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../043-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-03-30T13:48:17.857 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-03-30T13:48:18.202 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-simplegeneric. 2024-03-30T13:48:18.229 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../044-python3-simplegeneric_0.8.1-3_all.deb ... 2024-03-30T13:48:18.269 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-03-30T13:48:18.295 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-03-30T13:48:18.323 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../078-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-03-30T13:48:18.362 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-03-30T13:48:18.455 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-joblib. 2024-03-30T13:48:18.483 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../079-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-03-30T13:48:18.572 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-singledispatch. 2024-03-30T13:48:18.599 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../045-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-03-30T13:48:18.637 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-03-30T13:48:18.638 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-03-30T13:48:18.848 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-joblib. 2024-03-30T13:48:18.865 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../079-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-03-30T13:48:18.898 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-03-30T13:48:18.899 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-webob. 2024-03-30T13:48:18.914 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../046-python3-webob_1%3a1.8.6-1.1_all.deb ... 2024-03-30T13:48:18.949 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-webob (1:1.8.6-1.1) ... 2024-03-30T13:48:18.982 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-03-30T13:48:18.999 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../080-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-03-30T13:48:19.032 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-03-30T13:48:19.243 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-03-30T13:48:19.252 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-waitress. 2024-03-30T13:48:19.271 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../080-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-03-30T13:48:19.276 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-sklearn. 2024-03-30T13:48:19.279 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../047-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-03-30T13:48:19.293 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../081-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-03-30T13:48:19.301 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-03-30T13:48:19.314 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-03-30T13:48:19.334 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-03-30T13:48:19.563 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-sklearn. 2024-03-30T13:48:19.588 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-tempita. 2024-03-30T13:48:19.590 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../081-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-03-30T13:48:19.615 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../048-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-03-30T13:48:19.629 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-03-30T13:48:19.655 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-03-30T13:48:19.958 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-paste. 2024-03-30T13:48:19.985 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../049-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-03-30T13:48:19.993 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-03-30T13:48:20.011 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../082-ceph-mgr-diskprediction-local_19.0.0-1967-g4e50bbcd-1jammy_all.deb ... 2024-03-30T13:48:20.016 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-03-30T13:48:20.120 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking ceph-mgr-diskprediction-local (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:20.271 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-03-30T13:48:20.288 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../082-ceph-mgr-diskprediction-local_19.0.0-1967-g4e50bbcd-1jammy_all.deb ... 2024-03-30T13:48:20.336 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-03-30T13:48:20.352 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../050-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-03-30T13:48:20.395 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-03-30T13:48:20.406 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking ceph-mgr-diskprediction-local (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:20.696 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-pastedeploy. 2024-03-30T13:48:20.722 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../051-python3-pastedeploy_2.1.1-1_all.deb ... 2024-03-30T13:48:20.756 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-03-30T13:48:21.000 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-webtest. 2024-03-30T13:48:21.016 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../052-python3-webtest_2.0.35-1_all.deb ... 2024-03-30T13:48:21.058 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-03-30T13:48:21.074 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-cachetools. 2024-03-30T13:48:21.102 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../083-python3-cachetools_5.0.0-1_all.deb ... 2024-03-30T13:48:21.141 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-03-30T13:48:21.369 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-cachetools. 2024-03-30T13:48:21.378 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-pecan. 2024-03-30T13:48:21.396 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../083-python3-cachetools_5.0.0-1_all.deb ... 2024-03-30T13:48:21.405 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../053-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-03-30T13:48:21.435 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-03-30T13:48:21.443 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-pyasn1. 2024-03-30T13:48:21.445 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-03-30T13:48:21.472 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../084-python3-pyasn1_0.4.8-1_all.deb ... 2024-03-30T13:48:21.510 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-03-30T13:48:21.746 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-pyasn1. 2024-03-30T13:48:21.758 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-certifi. 2024-03-30T13:48:21.773 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../054-python3-certifi_2020.6.20-1_all.deb ... 2024-03-30T13:48:21.774 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../084-python3-pyasn1_0.4.8-1_all.deb ... 2024-03-30T13:48:21.788 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-03-30T13:48:21.805 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../085-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-03-30T13:48:21.812 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-03-30T13:48:21.816 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-03-30T13:48:21.838 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-03-30T13:48:22.116 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-03-30T13:48:22.132 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../085-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-03-30T13:48:22.144 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-idna. 2024-03-30T13:48:22.151 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-rsa. 2024-03-30T13:48:22.166 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-03-30T13:48:22.171 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../055-python3-idna_3.3-1_all.deb ... 2024-03-30T13:48:22.179 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../086-python3-rsa_4.8-1_all.deb ... 2024-03-30T13:48:22.211 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-idna (3.3-1) ... 2024-03-30T13:48:22.218 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-rsa (4.8-1) ... 2024-03-30T13:48:22.427 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-rsa. 2024-03-30T13:48:22.455 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../086-python3-rsa_4.8-1_all.deb ... 2024-03-30T13:48:22.485 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-rsa (4.8-1) ... 2024-03-30T13:48:22.522 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-urllib3. 2024-03-30T13:48:22.530 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-google-auth. 2024-03-30T13:48:22.549 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../056-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-03-30T13:48:22.558 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../087-python3-google-auth_1.5.1-3_all.deb ... 2024-03-30T13:48:22.589 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-03-30T13:48:22.596 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-03-30T13:48:22.806 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-google-auth. 2024-03-30T13:48:22.834 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../087-python3-google-auth_1.5.1-3_all.deb ... 2024-03-30T13:48:22.872 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-03-30T13:48:22.900 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-03-30T13:48:22.917 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-requests. 2024-03-30T13:48:22.927 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../088-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-03-30T13:48:22.943 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../057-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-03-30T13:48:22.966 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-03-30T13:48:22.983 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-03-30T13:48:23.192 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-03-30T13:48:23.220 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../088-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-03-30T13:48:23.236 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-websocket. 2024-03-30T13:48:23.258 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-03-30T13:48:23.264 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../089-python3-websocket_1.2.3-1_all.deb ... 2024-03-30T13:48:23.270 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-werkzeug. 2024-03-30T13:48:23.297 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../058-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.1_all.deb ... 2024-03-30T13:48:23.302 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-03-30T13:48:23.336 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-03-30T13:48:23.570 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-websocket. 2024-03-30T13:48:23.597 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-kubernetes. 2024-03-30T13:48:23.598 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../089-python3-websocket_1.2.3-1_all.deb ... 2024-03-30T13:48:23.623 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-03-30T13:48:23.625 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../090-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-03-30T13:48:23.636 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-03-30T13:48:23.649 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../059-ceph-mgr-modules-core_19.0.0-1967-g4e50bbcd-1jammy_all.deb ... 2024-03-30T13:48:23.672 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-03-30T13:48:23.689 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking ceph-mgr-modules-core (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:23.931 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-kubernetes. 2024-03-30T13:48:23.948 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../090-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-03-30T13:48:23.981 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-03-30T13:48:24.069 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-03-30T13:48:24.096 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../060-libsqlite3-mod-ceph_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:24.136 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking libsqlite3-mod-ceph (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:24.269 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-03-30T13:48:24.286 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../091-ceph-mgr-k8sevents_19.0.0-1967-g4e50bbcd-1jammy_all.deb ... 2024-03-30T13:48:24.328 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking ceph-mgr-k8sevents (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:24.464 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-bcrypt. 2024-03-30T13:48:24.490 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../061-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-03-30T13:48:24.530 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-03-30T13:48:24.647 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package libonig5:amd64. 2024-03-30T13:48:24.675 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../092-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-03-30T13:48:24.695 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-03-30T13:48:24.712 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../091-ceph-mgr-k8sevents_19.0.0-1967-g4e50bbcd-1jammy_all.deb ... 2024-03-30T13:48:24.713 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-03-30T13:48:24.745 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking ceph-mgr-k8sevents (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:24.816 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-openssl. 2024-03-30T13:48:24.843 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../062-python3-openssl_21.0.0-1_all.deb ... 2024-03-30T13:48:24.883 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-03-30T13:48:25.183 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package libonig5:amd64. 2024-03-30T13:48:25.211 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../092-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-03-30T13:48:25.219 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package ceph-mgr. 2024-03-30T13:48:25.246 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../063-ceph-mgr_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:25.258 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package libjq1:amd64. 2024-03-30T13:48:25.281 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-03-30T13:48:25.286 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking ceph-mgr (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:25.286 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../093-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-03-30T13:48:25.325 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-03-30T13:48:25.536 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package jq. 2024-03-30T13:48:25.552 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../094-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-03-30T13:48:25.586 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-03-30T13:48:25.647 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package ceph-mon. 2024-03-30T13:48:25.671 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../064-ceph-mon_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:25.706 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking ceph-mon (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:25.822 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package socat. 2024-03-30T13:48:25.826 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package libjq1:amd64. 2024-03-30T13:48:25.838 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../095-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-03-30T13:48:25.854 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../093-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-03-30T13:48:25.880 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-03-30T13:48:25.892 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-03-30T13:48:26.145 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package jq. 2024-03-30T13:48:26.162 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../094-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-03-30T13:48:26.183 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package xmlstarlet. 2024-03-30T13:48:26.194 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-03-30T13:48:26.211 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../096-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-03-30T13:48:26.250 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-03-30T13:48:26.284 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package ceph-osd. 2024-03-30T13:48:26.311 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../065-ceph-osd_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:26.350 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking ceph-osd (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:26.406 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package socat. 2024-03-30T13:48:26.434 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../095-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-03-30T13:48:26.472 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-03-30T13:48:26.596 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package ceph-test. 2024-03-30T13:48:26.612 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../097-ceph-test_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:26.654 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking ceph-test (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:26.784 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package xmlstarlet. 2024-03-30T13:48:26.800 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../096-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-03-30T13:48:26.842 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-03-30T13:48:27.205 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package ceph-test. 2024-03-30T13:48:27.233 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../097-ceph-test_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:27.271 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking ceph-test (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:27.421 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package ceph. 2024-03-30T13:48:27.436 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../066-ceph_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:27.479 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking ceph (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:27.798 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package ceph-fuse. 2024-03-30T13:48:27.825 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../067-ceph-fuse_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:27.881 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking ceph-fuse (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:28.185 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package ceph-mds. 2024-03-30T13:48:28.211 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../068-ceph-mds_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:28.243 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking ceph-mds (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:28.638 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package cephadm. 2024-03-30T13:48:28.664 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../069-cephadm_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:28.704 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking cephadm (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:29.000 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package ceph-volume. 2024-03-30T13:48:29.015 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-asyncssh. 2024-03-30T13:48:29.028 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../098-ceph-volume_19.0.0-1967-g4e50bbcd-1jammy_all.deb ... 2024-03-30T13:48:29.042 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../070-python3-asyncssh_2.5.0-1_all.deb ... 2024-03-30T13:48:29.066 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking ceph-volume (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:29.081 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-03-30T13:48:29.370 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package libcephfs-dev. 2024-03-30T13:48:29.387 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../099-libcephfs-dev_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:29.409 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python-babel-localedata. 2024-03-30T13:48:29.428 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking libcephfs-dev (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:29.436 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../071-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-03-30T13:48:29.476 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-03-30T13:48:29.642 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package ceph-volume. 2024-03-30T13:48:29.659 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../098-ceph-volume_19.0.0-1967-g4e50bbcd-1jammy_all.deb ... 2024-03-30T13:48:29.700 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking ceph-volume (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:29.723 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package lua-socket:amd64. 2024-03-30T13:48:29.751 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../100-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-03-30T13:48:29.789 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-03-30T13:48:29.996 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package libcephfs-dev. 2024-03-30T13:48:30.013 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../099-libcephfs-dev_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:30.054 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking libcephfs-dev (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:30.077 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package lua-sec:amd64. 2024-03-30T13:48:30.106 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../101-lua-sec_1.0.2-1_amd64.deb ... 2024-03-30T13:48:30.135 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-03-30T13:48:30.348 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package lua-socket:amd64. 2024-03-30T13:48:30.365 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../100-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-03-30T13:48:30.406 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-03-30T13:48:30.506 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package nvme-cli. 2024-03-30T13:48:30.535 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../102-nvme-cli_1.16-3ubuntu0.1_amd64.deb ... 2024-03-30T13:48:30.572 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking nvme-cli (1.16-3ubuntu0.1) ... 2024-03-30T13:48:30.694 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package lua-sec:amd64. 2024-03-30T13:48:30.723 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../101-lua-sec_1.0.2-1_amd64.deb ... 2024-03-30T13:48:30.752 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-03-30T13:48:30.756 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-babel. 2024-03-30T13:48:30.784 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../072-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-03-30T13:48:30.823 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-03-30T13:48:31.020 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package pkg-config. 2024-03-30T13:48:31.048 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../103-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-03-30T13:48:31.086 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-03-30T13:48:31.142 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-jinja2. 2024-03-30T13:48:31.169 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../073-python3-jinja2_3.0.3-1ubuntu0.1_all.deb ... 2024-03-30T13:48:31.217 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-03-30T13:48:31.290 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package nvme-cli. 2024-03-30T13:48:31.318 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../102-nvme-cli_1.16-3ubuntu0.1_amd64.deb ... 2024-03-30T13:48:31.331 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-03-30T13:48:31.347 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../104-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-03-30T13:48:31.356 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking nvme-cli (1.16-3ubuntu0.1) ... 2024-03-30T13:48:31.388 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-03-30T13:48:31.579 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-03-30T13:48:31.605 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../074-ceph-mgr-cephadm_19.0.0-1967-g4e50bbcd-1jammy_all.deb ... 2024-03-30T13:48:31.645 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking ceph-mgr-cephadm (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:31.778 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package pkg-config. 2024-03-30T13:48:31.800 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-iniconfig. 2024-03-30T13:48:31.807 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../103-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-03-30T13:48:31.829 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../105-python3-iniconfig_1.1.1-2_all.deb ... 2024-03-30T13:48:31.844 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-03-30T13:48:31.866 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-03-30T13:48:31.965 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-repoze.lru. 2024-03-30T13:48:31.992 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../075-python3-repoze.lru_0.7-2_all.deb ... 2024-03-30T13:48:32.031 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-03-30T13:48:32.098 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-03-30T13:48:32.126 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../104-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-03-30T13:48:32.164 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-03-30T13:48:32.186 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-pastescript. 2024-03-30T13:48:32.215 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../106-python3-pastescript_2.0.2-4_all.deb ... 2024-03-30T13:48:32.252 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-03-30T13:48:32.318 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-routes. 2024-03-30T13:48:32.345 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../076-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-03-30T13:48:32.384 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-03-30T13:48:32.572 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-pluggy. 2024-03-30T13:48:32.601 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../107-python3-pluggy_0.13.0-7.1_all.deb ... 2024-03-30T13:48:32.634 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-iniconfig. 2024-03-30T13:48:32.639 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-03-30T13:48:32.662 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../105-python3-iniconfig_1.1.1-2_all.deb ... 2024-03-30T13:48:32.700 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-03-30T13:48:32.712 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-03-30T13:48:32.739 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../077-ceph-mgr-dashboard_19.0.0-1967-g4e50bbcd-1jammy_all.deb ... 2024-03-30T13:48:32.779 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking ceph-mgr-dashboard (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:32.917 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-psutil. 2024-03-30T13:48:32.937 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-pastescript. 2024-03-30T13:48:32.945 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../108-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-03-30T13:48:32.966 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../106-python3-pastescript_2.0.2-4_all.deb ... 2024-03-30T13:48:32.975 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-03-30T13:48:32.994 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-03-30T13:48:33.270 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-py. 2024-03-30T13:48:33.287 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../109-python3-py_1.10.0-1_all.deb ... 2024-03-30T13:48:33.298 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-pluggy. 2024-03-30T13:48:33.319 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-py (1.10.0-1) ... 2024-03-30T13:48:33.326 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../107-python3-pluggy_0.13.0-7.1_all.deb ... 2024-03-30T13:48:33.364 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-03-30T13:48:33.598 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-pygments. 2024-03-30T13:48:33.627 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../110-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-03-30T13:48:33.672 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-03-30T13:48:33.676 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-psutil. 2024-03-30T13:48:33.704 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../108-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-03-30T13:48:33.742 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-03-30T13:48:34.043 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-03-30T13:48:34.062 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-py. 2024-03-30T13:48:34.070 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../078-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-03-30T13:48:34.090 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../109-python3-py_1.10.0-1_all.deb ... 2024-03-30T13:48:34.109 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-03-30T13:48:34.128 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-py (1.10.0-1) ... 2024-03-30T13:48:34.144 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-pyinotify. 2024-03-30T13:48:34.173 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../111-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-03-30T13:48:34.210 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-03-30T13:48:34.449 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-pygments. 2024-03-30T13:48:34.462 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-toml. 2024-03-30T13:48:34.477 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../110-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-03-30T13:48:34.479 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../112-python3-toml_0.10.2-1_all.deb ... 2024-03-30T13:48:34.515 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-03-30T13:48:34.521 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-03-30T13:48:34.604 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-joblib. 2024-03-30T13:48:34.631 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../079-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-03-30T13:48:34.671 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-03-30T13:48:34.782 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-pytest. 2024-03-30T13:48:34.799 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../113-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-03-30T13:48:34.831 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-03-30T13:48:34.961 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-pyinotify. 2024-03-30T13:48:34.989 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../111-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-03-30T13:48:35.052 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-03-30T13:48:35.082 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-03-30T13:48:35.110 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../080-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-03-30T13:48:35.149 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-03-30T13:48:35.160 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-simplejson. 2024-03-30T13:48:35.189 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../114-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-03-30T13:48:35.227 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-03-30T13:48:35.338 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-toml. 2024-03-30T13:48:35.355 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../112-python3-toml_0.10.2-1_all.deb ... 2024-03-30T13:48:35.388 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-03-30T13:48:35.460 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-sklearn. 2024-03-30T13:48:35.487 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../081-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-03-30T13:48:35.504 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-03-30T13:48:35.527 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-03-30T13:48:35.533 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../115-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-03-30T13:48:35.571 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-03-30T13:48:35.641 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-pytest. 2024-03-30T13:48:35.669 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../113-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-03-30T13:48:35.707 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-03-30T13:48:36.111 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package python3-simplejson. 2024-03-30T13:48:36.139 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../114-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-03-30T13:48:36.177 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-03-30T13:48:36.202 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-03-30T13:48:36.218 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../082-ceph-mgr-diskprediction-local_19.0.0-1967-g4e50bbcd-1jammy_all.deb ... 2024-03-30T13:48:36.292 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package radosgw. 2024-03-30T13:48:36.320 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../116-radosgw_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:36.346 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking ceph-mgr-diskprediction-local (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:36.358 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking radosgw (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:36.446 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-03-30T13:48:36.463 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../115-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-03-30T13:48:36.496 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-03-30T13:48:37.128 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package rbd-fuse. 2024-03-30T13:48:37.145 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../117-rbd-fuse_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:37.186 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking rbd-fuse (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:37.191 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package radosgw. 2024-03-30T13:48:37.209 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../116-radosgw_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:37.241 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking radosgw (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:37.299 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-cachetools. 2024-03-30T13:48:37.327 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../083-python3-cachetools_5.0.0-1_all.deb ... 2024-03-30T13:48:37.366 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-03-30T13:48:37.482 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-03-30T13:48:37.627 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-pyasn1. 2024-03-30T13:48:37.655 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../084-python3-pyasn1_0.4.8-1_all.deb ... 2024-03-30T13:48:37.685 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-03-30T13:48:37.740 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-03-30T13:48:37.866 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up nvme-cli (1.16-3ubuntu0.1) ... 2024-03-30T13:48:37.989 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-03-30T13:48:38.016 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../085-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-03-30T13:48:38.055 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-03-30T13:48:38.156 INFO:teuthology.orchestra.run.smithi050.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-03-30T13:48:38.161 INFO:teuthology.orchestra.run.smithi026.stdout:Selecting previously unselected package rbd-fuse. 2024-03-30T13:48:38.190 INFO:teuthology.orchestra.run.smithi026.stdout:Preparing to unpack .../117-rbd-fuse_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:38.228 INFO:teuthology.orchestra.run.smithi026.stdout:Unpacking rbd-fuse (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:38.375 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-rsa. 2024-03-30T13:48:38.402 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../086-python3-rsa_4.8-1_all.deb ... 2024-03-30T13:48:38.441 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-rsa (4.8-1) ... 2024-03-30T13:48:38.472 INFO:teuthology.orchestra.run.smithi050.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-03-30T13:48:38.541 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-03-30T13:48:38.771 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-google-auth. 2024-03-30T13:48:38.798 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../087-python3-google-auth_1.5.1-3_all.deb ... 2024-03-30T13:48:38.816 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-03-30T13:48:38.837 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-03-30T13:48:38.903 INFO:teuthology.orchestra.run.smithi050.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-03-30T13:48:38.934 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up nvme-cli (1.16-3ubuntu0.1) ... 2024-03-30T13:48:38.960 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up cephadm (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:39.123 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-03-30T13:48:39.136 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../088-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-03-30T13:48:39.165 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-03-30T13:48:39.180 INFO:teuthology.orchestra.run.smithi026.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-03-30T13:48:39.435 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-websocket. 2024-03-30T13:48:39.462 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../089-python3-websocket_1.2.3-1_all.deb ... 2024-03-30T13:48:39.501 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-03-30T13:48:39.510 INFO:teuthology.orchestra.run.smithi050.stdout:Adding system user cephadm....done 2024-03-30T13:48:39.512 INFO:teuthology.orchestra.run.smithi026.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-03-30T13:48:39.666 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-03-30T13:48:39.923 INFO:teuthology.orchestra.run.smithi026.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-03-30T13:48:39.951 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-03-30T13:48:39.994 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up cephadm (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:40.038 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-kubernetes. 2024-03-30T13:48:40.066 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../090-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-03-30T13:48:40.104 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-03-30T13:48:40.186 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-03-30T13:48:40.286 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-03-30T13:48:40.519 INFO:teuthology.orchestra.run.smithi026.stdout:Adding system user cephadm....done 2024-03-30T13:48:40.579 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-03-30T13:48:40.650 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-03-30T13:48:40.785 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-03-30T13:48:40.802 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../091-ceph-mgr-k8sevents_19.0.0-1967-g4e50bbcd-1jammy_all.deb ... 2024-03-30T13:48:40.843 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking ceph-mgr-k8sevents (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:40.855 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-03-30T13:48:40.951 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-03-30T13:48:40.981 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-py (1.10.0-1) ... 2024-03-30T13:48:41.180 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package libonig5:amd64. 2024-03-30T13:48:41.194 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-03-30T13:48:41.207 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../092-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-03-30T13:48:41.246 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-03-30T13:48:41.291 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-03-30T13:48:41.295 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-03-30T13:48:41.541 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package libjq1:amd64. 2024-03-30T13:48:41.563 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-03-30T13:48:41.569 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../093-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-03-30T13:48:41.599 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-03-30T13:48:41.669 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-03-30T13:48:41.822 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-03-30T13:48:41.852 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package jq. 2024-03-30T13:48:41.879 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../094-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-03-30T13:48:41.903 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-03-30T13:48:41.918 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-03-30T13:48:41.948 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-py (1.10.0-1) ... 2024-03-30T13:48:42.154 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package socat. 2024-03-30T13:48:42.154 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-03-30T13:48:42.170 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../095-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-03-30T13:48:42.237 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-03-30T13:48:42.258 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-03-30T13:48:42.389 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-03-30T13:48:42.541 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package xmlstarlet. 2024-03-30T13:48:42.569 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../096-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-03-30T13:48:42.607 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-03-30T13:48:42.627 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-03-30T13:48:42.649 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-03-30T13:48:42.895 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-03-30T13:48:42.916 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-03-30T13:48:42.962 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package ceph-test. 2024-03-30T13:48:42.990 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../097-ceph-test_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:43.028 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking ceph-test (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:43.175 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-ceph-argparse (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:43.188 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-03-30T13:48:43.456 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-03-30T13:48:43.519 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-03-30T13:48:43.620 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-03-30T13:48:43.716 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-03-30T13:48:43.721 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-03-30T13:48:43.847 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-03-30T13:48:44.008 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-03-30T13:48:44.106 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-03-30T13:48:44.334 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-ceph-argparse (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:44.516 INFO:teuthology.orchestra.run.smithi050.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-03-30T13:48:44.546 INFO:teuthology.orchestra.run.smithi050.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-03-30T13:48:44.601 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-03-30T13:48:44.618 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-03-30T13:48:44.702 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-03-30T13:48:44.744 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-03-30T13:48:44.870 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-03-30T13:48:44.996 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-03-30T13:48:45.045 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-03-30T13:48:45.163 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-03-30T13:48:45.281 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-03-30T13:48:45.382 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package ceph-volume. 2024-03-30T13:48:45.410 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../098-ceph-volume_19.0.0-1967-g4e50bbcd-1jammy_all.deb ... 2024-03-30T13:48:45.431 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-03-30T13:48:45.448 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking ceph-volume (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:45.650 INFO:teuthology.orchestra.run.smithi026.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-03-30T13:48:45.678 INFO:teuthology.orchestra.run.smithi026.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-03-30T13:48:45.698 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-03-30T13:48:45.719 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package libcephfs-dev. 2024-03-30T13:48:45.734 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-03-30T13:48:45.735 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../099-libcephfs-dev_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:45.794 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking libcephfs-dev (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:45.835 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-03-30T13:48:45.999 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up zip (3.0-12build2) ... 2024-03-30T13:48:46.063 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package lua-socket:amd64. 2024-03-30T13:48:46.082 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../100-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-03-30T13:48:46.122 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-03-30T13:48:46.125 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-03-30T13:48:46.194 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-03-30T13:48:46.329 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-03-30T13:48:46.460 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package lua-sec:amd64. 2024-03-30T13:48:46.487 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../101-lua-sec_1.0.2-1_amd64.deb ... 2024-03-30T13:48:46.526 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-03-30T13:48:46.820 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-03-30T13:48:46.847 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-03-30T13:48:46.889 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package nvme-cli. 2024-03-30T13:48:46.916 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../102-nvme-cli_1.16-3ubuntu0.1_amd64.deb ... 2024-03-30T13:48:46.955 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking nvme-cli (1.16-3ubuntu0.1) ... 2024-03-30T13:48:47.062 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-03-30T13:48:47.123 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-03-30T13:48:47.188 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-03-30T13:48:47.314 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-03-30T13:48:47.318 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package pkg-config. 2024-03-30T13:48:47.346 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../103-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-03-30T13:48:47.377 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-03-30T13:48:47.424 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up zip (3.0-12build2) ... 2024-03-30T13:48:47.550 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-03-30T13:48:47.630 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-03-30T13:48:47.632 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-03-30T13:48:47.657 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../104-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-03-30T13:48:47.696 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-03-30T13:48:48.042 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-03-30T13:48:48.091 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-iniconfig. 2024-03-30T13:48:48.119 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../105-python3-iniconfig_1.1.1-2_all.deb ... 2024-03-30T13:48:48.157 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-03-30T13:48:48.292 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-03-30T13:48:48.293 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-03-30T13:48:48.460 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-pastescript. 2024-03-30T13:48:48.488 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../106-python3-pastescript_2.0.2-4_all.deb ... 2024-03-30T13:48:48.527 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-03-30T13:48:48.561 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-03-30T13:48:48.652 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-03-30T13:48:48.696 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-03-30T13:48:48.822 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-03-30T13:48:48.855 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-pluggy. 2024-03-30T13:48:48.883 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../107-python3-pluggy_0.13.0-7.1_all.deb ... 2024-03-30T13:48:48.922 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-03-30T13:48:48.937 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-03-30T13:48:49.123 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-03-30T13:48:49.208 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-psutil. 2024-03-30T13:48:49.236 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../108-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-03-30T13:48:49.274 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-03-30T13:48:49.493 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-03-30T13:48:49.516 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-03-30T13:48:49.594 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-py. 2024-03-30T13:48:49.622 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../109-python3-py_1.10.0-1_all.deb ... 2024-03-30T13:48:49.652 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-py (1.10.0-1) ... 2024-03-30T13:48:49.784 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-03-30T13:48:49.923 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-pygments. 2024-03-30T13:48:49.950 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../110-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-03-30T13:48:49.981 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-03-30T13:48:49.981 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-03-30T13:48:50.124 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-ceph-common (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:50.152 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-03-30T13:48:50.418 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-pyinotify. 2024-03-30T13:48:50.419 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-03-30T13:48:50.447 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../111-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-03-30T13:48:50.450 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-idna (3.3-1) ... 2024-03-30T13:48:50.485 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-03-30T13:48:50.779 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-toml. 2024-03-30T13:48:50.780 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-03-30T13:48:50.802 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-03-30T13:48:50.807 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../112-python3-toml_0.10.2-1_all.deb ... 2024-03-30T13:48:50.846 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-03-30T13:48:51.031 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-03-30T13:48:51.081 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-pytest. 2024-03-30T13:48:51.095 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../113-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-03-30T13:48:51.132 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-03-30T13:48:51.157 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-ceph-common (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:51.458 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-idna (3.3-1) ... 2024-03-30T13:48:51.485 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package python3-simplejson. 2024-03-30T13:48:51.514 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../114-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-03-30T13:48:51.552 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-03-30T13:48:51.759 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-03-30T13:48:51.829 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-03-30T13:48:51.845 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../115-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-03-30T13:48:51.879 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-03-30T13:48:52.015 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-03-30T13:48:52.276 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-03-30T13:48:52.385 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-toml (0.10.2-1) ... 2024-03-30T13:48:52.516 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package radosgw. 2024-03-30T13:48:52.532 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../116-radosgw_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:52.566 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking radosgw (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:52.628 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-03-30T13:48:52.729 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-03-30T13:48:52.863 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-03-30T13:48:52.948 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-03-30T13:48:53.156 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-03-30T13:48:53.200 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-03-30T13:48:53.334 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-toml (0.10.2-1) ... 2024-03-30T13:48:53.345 INFO:teuthology.orchestra.run.smithi136.stdout:Selecting previously unselected package rbd-fuse. 2024-03-30T13:48:53.372 INFO:teuthology.orchestra.run.smithi136.stdout:Preparing to unpack .../117-rbd-fuse_19.0.0-1967-g4e50bbcd-1jammy_amd64.deb ... 2024-03-30T13:48:53.411 INFO:teuthology.orchestra.run.smithi136.stdout:Unpacking rbd-fuse (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:53.424 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-03-30T13:48:53.585 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-03-30T13:48:53.686 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-03-30T13:48:53.692 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-03-30T13:48:53.698 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-03-30T13:48:53.801 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-03-30T13:48:53.803 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-03-30T13:48:53.949 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-03-30T13:48:54.084 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up nvme-cli (1.16-3ubuntu0.1) ... 2024-03-30T13:48:54.094 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-03-30T13:48:54.113 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-03-30T13:48:54.329 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-03-30T13:48:54.345 INFO:teuthology.orchestra.run.smithi136.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-03-30T13:48:54.373 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-03-30T13:48:54.597 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-03-30T13:48:54.624 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-03-30T13:48:54.669 INFO:teuthology.orchestra.run.smithi136.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-03-30T13:48:54.750 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-03-30T13:48:54.856 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-03-30T13:48:55.051 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-03-30T13:48:55.094 INFO:teuthology.orchestra.run.smithi136.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-03-30T13:48:55.124 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-03-30T13:48:55.153 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up cephadm (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:55.302 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-03-30T13:48:55.417 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-03-30T13:48:55.534 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-03-30T13:48:55.553 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-03-30T13:48:55.811 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-03-30T13:48:55.821 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-03-30T13:48:55.914 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-03-30T13:48:55.978 INFO:teuthology.orchestra.run.smithi136.stdout:Adding system user cephadm....done 2024-03-30T13:48:56.080 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-03-30T13:48:56.143 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-03-30T13:48:56.188 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-webob (1:1.8.6-1.1) ... 2024-03-30T13:48:56.390 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-03-30T13:48:56.419 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-03-30T13:48:56.514 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-03-30T13:48:56.516 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-03-30T13:48:56.654 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-03-30T13:48:56.755 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-03-30T13:48:56.792 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-03-30T13:48:56.823 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-03-30T13:48:56.893 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-03-30T13:48:56.949 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-03-30T13:48:57.006 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-03-30T13:48:57.075 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-03-30T13:48:57.156 INFO:teuthology.orchestra.run.smithi050.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-03-30T13:48:57.186 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-webob (1:1.8.6-1.1) ... 2024-03-30T13:48:57.274 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-03-30T13:48:57.393 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-03-30T13:48:57.402 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-py (1.10.0-1) ... 2024-03-30T13:48:57.478 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-03-30T13:48:57.495 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-03-30T13:48:57.695 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-03-30T13:48:57.746 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-03-30T13:48:57.871 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-03-30T13:48:57.872 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-03-30T13:48:57.998 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-03-30T13:48:58.038 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-03-30T13:48:58.086 INFO:teuthology.orchestra.run.smithi026.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-03-30T13:48:58.139 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up lua-any (27ubuntu1) ... 2024-03-30T13:48:58.265 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-portend (3.0.0-1) ... 2024-03-30T13:48:58.289 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-03-30T13:48:58.342 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-03-30T13:48:58.459 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-03-30T13:48:58.524 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-03-30T13:48:58.557 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-03-30T13:48:58.650 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-03-30T13:48:58.817 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-03-30T13:48:58.844 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-03-30T13:48:58.960 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-03-30T13:48:59.084 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-03-30T13:48:59.103 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up lua-any (27ubuntu1) ... 2024-03-30T13:48:59.238 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-portend (3.0.0-1) ... 2024-03-30T13:48:59.261 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-03-30T13:48:59.360 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-03-30T13:48:59.506 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-03-30T13:48:59.537 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-03-30T13:48:59.632 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-03-30T13:48:59.655 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-rsa (4.8-1) ... 2024-03-30T13:48:59.659 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-ceph-argparse (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:48:59.931 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-03-30T13:48:59.958 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-03-30T13:48:59.979 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-03-30T13:49:00.114 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-03-30T13:49:00.239 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-03-30T13:49:00.241 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-03-30T13:49:00.267 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-03-30T13:49:00.365 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-03-30T13:49:00.535 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-03-30T13:49:00.586 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-03-30T13:49:00.616 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-03-30T13:49:00.635 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-rsa (4.8-1) ... 2024-03-30T13:49:00.895 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-03-30T13:49:00.954 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-03-30T13:49:01.002 INFO:teuthology.orchestra.run.smithi136.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-03-30T13:49:01.031 INFO:teuthology.orchestra.run.smithi136.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-03-30T13:49:01.094 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-03-30T13:49:01.165 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-03-30T13:49:01.195 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-03-30T13:49:01.255 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-03-30T13:49:01.526 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-03-30T13:49:01.538 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-03-30T13:49:01.608 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-03-30T13:49:01.656 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-03-30T13:49:01.734 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up librados2 (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:01.852 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up libsqlite3-mod-ceph (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:01.895 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-03-30T13:49:01.923 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-03-30T13:49:01.953 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-03-30T13:49:02.199 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-03-30T13:49:02.281 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up libcephfs2 (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:02.363 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-03-30T13:49:02.407 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up libradosstriper1 (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:02.509 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up zip (3.0-12build2) ... 2024-03-30T13:49:02.532 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-03-30T13:49:02.635 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-03-30T13:49:02.715 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-03-30T13:49:02.801 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up librbd1 (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:02.841 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up librados2 (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:02.911 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up ceph-mgr-modules-core (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:02.993 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up libsqlite3-mod-ceph (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:03.011 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up ceph-fuse (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:03.094 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-03-30T13:49:03.238 INFO:teuthology.orchestra.run.smithi050.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-03-30T13:49:03.239 INFO:teuthology.orchestra.run.smithi050.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-03-30T13:49:03.278 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-03-30T13:49:03.396 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up libcephfs2 (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:03.504 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-03-30T13:49:03.531 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up libradosstriper1 (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:03.614 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-03-30T13:49:03.657 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-03-30T13:49:03.755 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up libcephfs-dev (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:03.764 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-03-30T13:49:03.880 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-rados (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:03.942 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up librbd1 (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:04.006 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up librgw2 (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:04.060 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up ceph-mgr-modules-core (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:04.065 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-03-30T13:49:04.132 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-03-30T13:49:04.185 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up ceph-fuse (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:04.405 INFO:teuthology.orchestra.run.smithi026.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-03-30T13:49:04.405 INFO:teuthology.orchestra.run.smithi026.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-03-30T13:49:04.442 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-03-30T13:49:04.693 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-03-30T13:49:04.895 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up libcephfs-dev (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:05.021 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-rados (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:05.061 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-03-30T13:49:05.181 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up librgw2 (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:05.307 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-03-30T13:49:05.329 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-03-30T13:49:05.436 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-rbd (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:05.562 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up rbd-fuse (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:05.680 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-rgw (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:05.688 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-03-30T13:49:05.789 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-cephfs (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:05.890 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up ceph-common (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:05.939 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-03-30T13:49:06.065 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-ceph-common (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:06.374 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-idna (3.3-1) ... 2024-03-30T13:49:06.416 INFO:teuthology.orchestra.run.smithi050.stdout:Adding group ceph....done 2024-03-30T13:49:06.610 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-rbd (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:06.684 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-03-30T13:49:06.736 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up rbd-fuse (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:06.743 INFO:teuthology.orchestra.run.smithi050.stdout:Adding system user ceph....done 2024-03-30T13:49:06.877 INFO:teuthology.orchestra.run.smithi050.stdout:Setting system user ceph properties....done 2024-03-30T13:49:06.888 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-rgw (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:06.892 INFO:teuthology.orchestra.run.smithi050.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-03-30T13:49:07.013 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up python3-cephfs (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:07.037 INFO:teuthology.orchestra.run.smithi050.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-03-30T13:49:07.148 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up ceph-common (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:07.393 INFO:teuthology.orchestra.run.smithi050.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-03-30T13:49:07.691 INFO:teuthology.orchestra.run.smithi026.stdout:Adding group ceph....done 2024-03-30T13:49:07.858 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up ceph-test (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:07.889 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-03-30T13:49:08.009 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up radosgw (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:08.026 INFO:teuthology.orchestra.run.smithi026.stdout:Adding system user ceph....done 2024-03-30T13:49:08.140 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-03-30T13:49:08.194 INFO:teuthology.orchestra.run.smithi026.stdout:Setting system user ceph properties....done 2024-03-30T13:49:08.209 INFO:teuthology.orchestra.run.smithi026.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-03-30T13:49:08.275 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-toml (0.10.2-1) ... 2024-03-30T13:49:08.353 INFO:teuthology.orchestra.run.smithi026.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-03-30T13:49:08.463 INFO:teuthology.orchestra.run.smithi050.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-03-30T13:49:08.463 INFO:teuthology.orchestra.run.smithi050.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-03-30T13:49:08.560 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-03-30T13:49:08.685 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-03-30T13:49:08.690 INFO:teuthology.orchestra.run.smithi026.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-03-30T13:49:08.786 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-03-30T13:49:09.079 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-03-30T13:49:09.149 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up ceph-test (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:09.187 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up ceph-base (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:09.275 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up radosgw (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:09.347 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-03-30T13:49:09.537 INFO:teuthology.orchestra.run.smithi050.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-03-30T13:49:09.598 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-03-30T13:49:09.724 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-03-30T13:49:09.743 INFO:teuthology.orchestra.run.smithi026.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-03-30T13:49:09.743 INFO:teuthology.orchestra.run.smithi026.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-03-30T13:49:10.033 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-03-30T13:49:10.204 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up ceph-mds (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:10.227 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up ceph-base (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:10.285 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-03-30T13:49:10.552 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-03-30T13:49:10.582 INFO:teuthology.orchestra.run.smithi026.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-03-30T13:49:10.702 INFO:teuthology.orchestra.run.smithi050.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-03-30T13:49:10.702 INFO:teuthology.orchestra.run.smithi050.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-03-30T13:49:10.803 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-03-30T13:49:11.062 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up ceph-mds (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:11.071 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-03-30T13:49:11.164 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up ceph-mgr (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:11.314 INFO:teuthology.orchestra.run.smithi026.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-03-30T13:49:11.315 INFO:teuthology.orchestra.run.smithi026.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-03-30T13:49:11.322 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-03-30T13:49:11.383 INFO:teuthology.orchestra.run.smithi050.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-03-30T13:49:11.383 INFO:teuthology.orchestra.run.smithi050.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-03-30T13:49:11.448 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-03-30T13:49:11.724 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-03-30T13:49:11.788 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up ceph-mgr (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:11.849 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up ceph-osd (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:11.849 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-03-30T13:49:12.005 INFO:teuthology.orchestra.run.smithi026.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-03-30T13:49:12.005 INFO:teuthology.orchestra.run.smithi026.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-03-30T13:49:12.143 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-webob (1:1.8.6-1.1) ... 2024-03-30T13:49:12.177 INFO:teuthology.orchestra.run.smithi050.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-03-30T13:49:12.177 INFO:teuthology.orchestra.run.smithi050.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-03-30T13:49:12.435 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-03-30T13:49:12.465 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up ceph-osd (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:12.678 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-03-30T13:49:12.692 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up ceph-mgr-k8sevents (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:12.741 INFO:teuthology.orchestra.run.smithi026.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-03-30T13:49:12.741 INFO:teuthology.orchestra.run.smithi026.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-03-30T13:49:12.787 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-03-30T13:49:12.793 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up ceph-mgr-diskprediction-local (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:12.896 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-03-30T13:49:12.928 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up ceph-mon (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:12.986 INFO:teuthology.orchestra.run.smithi136.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-03-30T13:49:13.154 INFO:teuthology.orchestra.run.smithi050.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-03-30T13:49:13.154 INFO:teuthology.orchestra.run.smithi050.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-03-30T13:49:13.204 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up ceph-mgr-k8sevents (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:13.256 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-03-30T13:49:13.330 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up ceph-mgr-diskprediction-local (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:13.382 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-03-30T13:49:13.490 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up ceph-mon (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:13.621 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up ceph-mgr-cephadm (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:13.707 INFO:teuthology.orchestra.run.smithi026.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-03-30T13:49:13.707 INFO:teuthology.orchestra.run.smithi026.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-03-30T13:49:13.767 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-03-30T13:49:13.781 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up ceph (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:13.924 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up ceph-mgr-dashboard (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:14.026 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up lua-any (27ubuntu1) ... 2024-03-30T13:49:14.075 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up ceph-volume (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:14.136 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-portend (3.0.0-1) ... 2024-03-30T13:49:14.166 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up ceph-mgr-cephadm (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:14.292 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up ceph (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:14.370 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-03-30T13:49:14.418 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up ceph-mgr-dashboard (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:14.430 INFO:teuthology.orchestra.run.smithi050.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-03-30T13:49:14.529 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-03-30T13:49:14.594 INFO:teuthology.orchestra.run.smithi026.stdout:Setting up ceph-volume (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:14.622 INFO:teuthology.orchestra.run.smithi050.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-03-30T13:49:14.855 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-03-30T13:49:14.894 INFO:teuthology.orchestra.run.smithi050.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-03-30T13:49:14.938 INFO:teuthology.orchestra.run.smithi026.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-03-30T13:49:15.156 INFO:teuthology.orchestra.run.smithi026.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-03-30T13:49:15.156 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-03-30T13:49:15.308 INFO:teuthology.orchestra.run.smithi026.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-03-30T13:49:15.432 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-03-30T13:49:15.558 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-rsa (4.8-1) ... 2024-03-30T13:49:15.992 INFO:teuthology.orchestra.run.smithi050.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-03-30T13:49:16.093 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-03-30T13:49:16.326 INFO:teuthology.orchestra.run.smithi026.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-03-30T13:49:16.352 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-03-30T13:49:16.672 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-03-30T13:49:16.672 INFO:teuthology.orchestra.run.smithi050.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-03-30T13:49:16.679 DEBUG:teuthology.parallel:result is None 2024-03-30T13:49:16.968 INFO:teuthology.orchestra.run.smithi026.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-03-30T13:49:16.972 DEBUG:teuthology.parallel:result is None 2024-03-30T13:49:17.065 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-03-30T13:49:17.350 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-03-30T13:49:17.685 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-03-30T13:49:17.786 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up librados2 (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:17.896 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up libsqlite3-mod-ceph (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:18.047 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-03-30T13:49:18.383 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up libcephfs2 (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:18.509 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up libradosstriper1 (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:18.626 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-03-30T13:49:18.894 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up librbd1 (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:18.996 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up ceph-mgr-modules-core (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:19.122 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up ceph-fuse (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:19.335 INFO:teuthology.orchestra.run.smithi136.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-03-30T13:49:19.335 INFO:teuthology.orchestra.run.smithi136.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-03-30T13:49:19.806 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up libcephfs-dev (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:19.932 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-rados (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:20.058 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up librgw2 (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:20.184 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-03-30T13:49:21.337 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-rbd (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:21.463 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up rbd-fuse (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:21.589 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-rgw (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:21.740 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up python3-cephfs (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:21.866 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up ceph-common (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:22.400 INFO:teuthology.orchestra.run.smithi136.stdout:Adding group ceph....done 2024-03-30T13:49:22.685 INFO:teuthology.orchestra.run.smithi136.stdout:Adding system user ceph....done 2024-03-30T13:49:22.853 INFO:teuthology.orchestra.run.smithi136.stdout:Setting system user ceph properties....done 2024-03-30T13:49:22.871 INFO:teuthology.orchestra.run.smithi136.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-03-30T13:49:23.011 INFO:teuthology.orchestra.run.smithi136.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-03-30T13:49:23.373 INFO:teuthology.orchestra.run.smithi136.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-03-30T13:49:23.825 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up ceph-test (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:23.934 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up radosgw (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:24.428 INFO:teuthology.orchestra.run.smithi136.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-03-30T13:49:24.429 INFO:teuthology.orchestra.run.smithi136.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-03-30T13:49:24.939 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up ceph-base (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:25.408 INFO:teuthology.orchestra.run.smithi136.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-03-30T13:49:25.897 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up ceph-mds (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:26.128 INFO:teuthology.orchestra.run.smithi136.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-03-30T13:49:26.129 INFO:teuthology.orchestra.run.smithi136.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-03-30T13:49:26.565 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up ceph-mgr (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:26.781 INFO:teuthology.orchestra.run.smithi136.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-03-30T13:49:26.781 INFO:teuthology.orchestra.run.smithi136.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-03-30T13:49:27.208 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up ceph-osd (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:27.497 INFO:teuthology.orchestra.run.smithi136.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-03-30T13:49:27.497 INFO:teuthology.orchestra.run.smithi136.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-03-30T13:49:27.926 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up ceph-mgr-k8sevents (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:28.027 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up ceph-mgr-diskprediction-local (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:28.153 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up ceph-mon (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:28.370 INFO:teuthology.orchestra.run.smithi136.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-03-30T13:49:28.370 INFO:teuthology.orchestra.run.smithi136.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-03-30T13:49:28.846 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up ceph-mgr-cephadm (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:28.989 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up ceph (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:29.114 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up ceph-mgr-dashboard (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:29.265 INFO:teuthology.orchestra.run.smithi136.stdout:Setting up ceph-volume (19.0.0-1967-g4e50bbcd-1jammy) ... 2024-03-30T13:49:29.677 INFO:teuthology.orchestra.run.smithi136.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-03-30T13:49:29.785 INFO:teuthology.orchestra.run.smithi136.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-03-30T13:49:29.930 INFO:teuthology.orchestra.run.smithi136.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-03-30T13:49:30.546 INFO:teuthology.orchestra.run.smithi136.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-03-30T13:49:31.189 INFO:teuthology.orchestra.run.smithi136.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-03-30T13:49:31.193 DEBUG:teuthology.parallel:result is None 2024-03-30T13:49:31.194 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=4e50bbcdd1630c7760b708f3a5b4d38a121e66cb 2024-03-30T13:49:31.343 DEBUG:teuthology.orchestra.run.smithi026:> dpkg-query -W -f '${Version}' ceph 2024-03-30T13:49:31.363 INFO:teuthology.orchestra.run.smithi026.stdout:19.0.0-1967-g4e50bbcd-1jammy 2024-03-30T13:49:31.364 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-1967-g4e50bbcd-1jammy 2024-03-30T13:49:31.364 INFO:teuthology.task.install:The correct ceph version 19.0.0-1967-g4e50bbcd-1jammy is installed. 2024-03-30T13:49:31.366 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=4e50bbcdd1630c7760b708f3a5b4d38a121e66cb 2024-03-30T13:49:31.622 DEBUG:teuthology.orchestra.run.smithi050:> dpkg-query -W -f '${Version}' ceph 2024-03-30T13:49:31.642 INFO:teuthology.orchestra.run.smithi050.stdout:19.0.0-1967-g4e50bbcd-1jammy 2024-03-30T13:49:31.642 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-1967-g4e50bbcd-1jammy 2024-03-30T13:49:31.642 INFO:teuthology.task.install:The correct ceph version 19.0.0-1967-g4e50bbcd-1jammy is installed. 2024-03-30T13:49:31.644 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=4e50bbcdd1630c7760b708f3a5b4d38a121e66cb 2024-03-30T13:49:31.784 DEBUG:teuthology.orchestra.run.smithi136:> dpkg-query -W -f '${Version}' ceph 2024-03-30T13:49:31.803 INFO:teuthology.orchestra.run.smithi136.stdout:19.0.0-1967-g4e50bbcd-1jammy 2024-03-30T13:49:31.804 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-1967-g4e50bbcd-1jammy 2024-03-30T13:49:31.804 INFO:teuthology.task.install:The correct ceph version 19.0.0-1967-g4e50bbcd-1jammy is installed. 2024-03-30T13:49:31.806 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2024-03-30T13:49:31.806 DEBUG:teuthology.orchestra.run.smithi026:> set -ex 2024-03-30T13:49:31.806 DEBUG:teuthology.orchestra.run.smithi026:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-03-30T13:49:31.821 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-03-30T13:49:31.821 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-03-30T13:49:31.835 DEBUG:teuthology.orchestra.run.smithi136:> set -ex 2024-03-30T13:49:31.835 DEBUG:teuthology.orchestra.run.smithi136:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-03-30T13:49:31.858 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2024-03-30T13:49:31.858 DEBUG:teuthology.orchestra.run.smithi026:> set -ex 2024-03-30T13:49:31.858 DEBUG:teuthology.orchestra.run.smithi026:> sudo dd of=/usr/bin/daemon-helper 2024-03-30T13:49:31.876 DEBUG:teuthology.orchestra.run.smithi026:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-03-30T13:49:31.932 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-03-30T13:49:31.932 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/usr/bin/daemon-helper 2024-03-30T13:49:31.946 DEBUG:teuthology.orchestra.run.smithi050:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-03-30T13:49:32.001 DEBUG:teuthology.orchestra.run.smithi136:> set -ex 2024-03-30T13:49:32.001 DEBUG:teuthology.orchestra.run.smithi136:> sudo dd of=/usr/bin/daemon-helper 2024-03-30T13:49:32.015 DEBUG:teuthology.orchestra.run.smithi136:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-03-30T13:49:32.069 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2024-03-30T13:49:32.069 DEBUG:teuthology.orchestra.run.smithi026:> set -ex 2024-03-30T13:49:32.069 DEBUG:teuthology.orchestra.run.smithi026:> sudo dd of=/usr/bin/adjust-ulimits 2024-03-30T13:49:32.083 DEBUG:teuthology.orchestra.run.smithi026:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-03-30T13:49:32.135 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-03-30T13:49:32.135 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/usr/bin/adjust-ulimits 2024-03-30T13:49:32.149 DEBUG:teuthology.orchestra.run.smithi050:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-03-30T13:49:32.205 DEBUG:teuthology.orchestra.run.smithi136:> set -ex 2024-03-30T13:49:32.205 DEBUG:teuthology.orchestra.run.smithi136:> sudo dd of=/usr/bin/adjust-ulimits 2024-03-30T13:49:32.218 DEBUG:teuthology.orchestra.run.smithi136:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-03-30T13:49:32.273 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2024-03-30T13:49:32.273 DEBUG:teuthology.orchestra.run.smithi026:> set -ex 2024-03-30T13:49:32.273 DEBUG:teuthology.orchestra.run.smithi026:> sudo dd of=/usr/bin/stdin-killer 2024-03-30T13:49:32.287 DEBUG:teuthology.orchestra.run.smithi026:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-03-30T13:49:32.339 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-03-30T13:49:32.339 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/usr/bin/stdin-killer 2024-03-30T13:49:32.353 DEBUG:teuthology.orchestra.run.smithi050:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-03-30T13:49:32.409 DEBUG:teuthology.orchestra.run.smithi136:> set -ex 2024-03-30T13:49:32.409 DEBUG:teuthology.orchestra.run.smithi136:> sudo dd of=/usr/bin/stdin-killer 2024-03-30T13:49:32.422 DEBUG:teuthology.orchestra.run.smithi136:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-03-30T13:49:32.477 INFO:teuthology.run_tasks:Running task cephadm... 2024-03-30T13:49:32.579 INFO:tasks.cephadm:Config: {'conf': {'global': {'mon election default strategy': 3}, 'mgr': {'debug mgr': 20, 'debug ms': 1, 'mgr/cephadm/use_agent': True}, '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'], 'sha1': '4e50bbcdd1630c7760b708f3a5b4d38a121e66cb'} 2024-03-30T13:49:32.579 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb 2024-03-30T13:49:32.580 INFO:tasks.cephadm:Cluster fsid is 56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T13:49:32.580 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-03-30T13:49:32.580 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '172.21.15.26', 'mon.b': '172.21.15.50', 'mon.c': '172.21.15.136'} 2024-03-30T13:49:32.580 INFO:tasks.cephadm:First mon is mon.a on smithi026 2024-03-30T13:49:32.580 INFO:tasks.cephadm:First mgr is a 2024-03-30T13:49:32.581 INFO:tasks.cephadm:Normalizing hostnames... 2024-03-30T13:49:32.581 DEBUG:teuthology.orchestra.run.smithi026:> sudo hostname $(hostname -s) 2024-03-30T13:49:32.595 DEBUG:teuthology.orchestra.run.smithi050:> sudo hostname $(hostname -s) 2024-03-30T13:49:32.610 DEBUG:teuthology.orchestra.run.smithi136:> sudo hostname $(hostname -s) 2024-03-30T13:49:32.625 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-03-30T13:49:32.625 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=4e50bbcdd1630c7760b708f3a5b4d38a121e66cb 2024-03-30T13:49:32.768 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': '4e50bbcdd1630c7760b708f3a5b4d38a121e66cb', '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/54746/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.0.0-1967-g4e50bbcd', 'node_name': '172.21.2.11+braggi11', 'job_name': 'ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=jammy,DIST=jammy,MACHINE_SIZE=gigantic', 'package_manager_version': '19.0.0-1967-g4e50bbcd-1jammy'}, 'url': 'https://1.chacra.ceph.com/r/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default/', 'distro_codename': 'jammy', 'modified': '2024-03-29 16:24:11.922951', 'distro_version': '22.04', 'project': 'ceph', 'flavor': 'default', 'ref': 'squid', 'chacra_url': 'https://1.chacra.ceph.com/repos/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/flavors/default/', 'archs': ['x86_64'], 'distro': 'ubuntu'}] 2024-03-30T13:49:33.000 INFO:tasks.util.chacra:got chacra host 1.chacra.ceph.com, ref squid, sha1 4e50bbcdd1630c7760b708f3a5b4d38a121e66cb from https://shaman.ceph.com/api/search/?project=ceph&distros=ubuntu%2F22.04%2Fx86_64&flavor=default&sha1=4e50bbcdd1630c7760b708f3a5b4d38a121e66cb 2024-03-30T13:49:33.002 INFO:tasks.cephadm:Discovered cachra url: https://1.chacra.ceph.com/binaries/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-03-30T13:49:33.002 DEBUG:teuthology.orchestra.run.smithi026:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-03-30T13:49:33.696 INFO:teuthology.orchestra.run.smithi026.stdout:-rw-rw-r-- 1 ubuntu ubuntu 774733 Mar 30 13:49 /home/ubuntu/cephtest/cephadm 2024-03-30T13:49:33.697 DEBUG:teuthology.orchestra.run.smithi050:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-03-30T13:49:34.214 INFO:teuthology.orchestra.run.smithi050.stdout:-rw-rw-r-- 1 ubuntu ubuntu 774733 Mar 30 13:49 /home/ubuntu/cephtest/cephadm 2024-03-30T13:49:34.215 DEBUG:teuthology.orchestra.run.smithi136:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/squid/4e50bbcdd1630c7760b708f3a5b4d38a121e66cb/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-03-30T13:49:34.751 INFO:teuthology.orchestra.run.smithi136.stdout:-rw-rw-r-- 1 ubuntu ubuntu 774733 Mar 30 13:49 /home/ubuntu/cephtest/cephadm 2024-03-30T13:49:34.753 DEBUG:teuthology.orchestra.run.smithi026:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-03-30T13:49:34.761 DEBUG:teuthology.orchestra.run.smithi050:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-03-30T13:49:34.769 DEBUG:teuthology.orchestra.run.smithi136:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-03-30T13:49:34.788 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb on all hosts... 2024-03-30T13:49:34.788 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb pull 2024-03-30T13:49:34.805 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb pull 2024-03-30T13:49:34.815 DEBUG:teuthology.orchestra.run.smithi136:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb pull 2024-03-30T13:49:34.974 INFO:teuthology.orchestra.run.smithi026.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb... 2024-03-30T13:49:34.981 INFO:teuthology.orchestra.run.smithi136.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb... 2024-03-30T13:49:34.983 INFO:teuthology.orchestra.run.smithi050.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb... 2024-03-30T13:51:42.492 INFO:teuthology.orchestra.run.smithi026.stdout:{ 2024-03-30T13:51:42.492 INFO:teuthology.orchestra.run.smithi026.stdout: "ceph_version": "ceph version 19.0.0-1967-g4e50bbcd (4e50bbcdd1630c7760b708f3a5b4d38a121e66cb) squid (dev)", 2024-03-30T13:51:42.492 INFO:teuthology.orchestra.run.smithi026.stdout: "image_id": "b0c4478f1d83795df4d538bf108aee5fac57194348fb16dcdbb3115f3e2fe95e", 2024-03-30T13:51:42.492 INFO:teuthology.orchestra.run.smithi026.stdout: "repo_digests": [ 2024-03-30T13:51:42.492 INFO:teuthology.orchestra.run.smithi026.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:8f3809717761e681477c3ef1d8d2c03114aee2c597cd7380b93b8c10f47fcb5d" 2024-03-30T13:51:42.493 INFO:teuthology.orchestra.run.smithi026.stdout: ] 2024-03-30T13:51:42.493 INFO:teuthology.orchestra.run.smithi026.stdout:} 2024-03-30T13:51:50.587 INFO:teuthology.orchestra.run.smithi136.stdout:{ 2024-03-30T13:51:50.587 INFO:teuthology.orchestra.run.smithi136.stdout: "ceph_version": "ceph version 19.0.0-1967-g4e50bbcd (4e50bbcdd1630c7760b708f3a5b4d38a121e66cb) squid (dev)", 2024-03-30T13:51:50.587 INFO:teuthology.orchestra.run.smithi136.stdout: "image_id": "b0c4478f1d83795df4d538bf108aee5fac57194348fb16dcdbb3115f3e2fe95e", 2024-03-30T13:51:50.587 INFO:teuthology.orchestra.run.smithi136.stdout: "repo_digests": [ 2024-03-30T13:51:50.587 INFO:teuthology.orchestra.run.smithi136.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:8f3809717761e681477c3ef1d8d2c03114aee2c597cd7380b93b8c10f47fcb5d" 2024-03-30T13:51:50.588 INFO:teuthology.orchestra.run.smithi136.stdout: ] 2024-03-30T13:51:50.588 INFO:teuthology.orchestra.run.smithi136.stdout:} 2024-03-30T13:51:57.758 INFO:teuthology.orchestra.run.smithi050.stdout:{ 2024-03-30T13:51:57.759 INFO:teuthology.orchestra.run.smithi050.stdout: "ceph_version": "ceph version 19.0.0-1967-g4e50bbcd (4e50bbcdd1630c7760b708f3a5b4d38a121e66cb) squid (dev)", 2024-03-30T13:51:57.759 INFO:teuthology.orchestra.run.smithi050.stdout: "image_id": "b0c4478f1d83795df4d538bf108aee5fac57194348fb16dcdbb3115f3e2fe95e", 2024-03-30T13:51:57.759 INFO:teuthology.orchestra.run.smithi050.stdout: "repo_digests": [ 2024-03-30T13:51:57.759 INFO:teuthology.orchestra.run.smithi050.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:8f3809717761e681477c3ef1d8d2c03114aee2c597cd7380b93b8c10f47fcb5d" 2024-03-30T13:51:57.759 INFO:teuthology.orchestra.run.smithi050.stdout: ] 2024-03-30T13:51:57.759 INFO:teuthology.orchestra.run.smithi050.stdout:} 2024-03-30T13:51:57.805 DEBUG:teuthology.orchestra.run.smithi026:> sudo mkdir -p /etc/ceph 2024-03-30T13:51:57.820 DEBUG:teuthology.orchestra.run.smithi050:> sudo mkdir -p /etc/ceph 2024-03-30T13:51:57.834 DEBUG:teuthology.orchestra.run.smithi136:> sudo mkdir -p /etc/ceph 2024-03-30T13:51:57.848 DEBUG:teuthology.orchestra.run.smithi026:> sudo chmod 777 /etc/ceph 2024-03-30T13:51:57.875 DEBUG:teuthology.orchestra.run.smithi050:> sudo chmod 777 /etc/ceph 2024-03-30T13:51:57.890 DEBUG:teuthology.orchestra.run.smithi136:> sudo chmod 777 /etc/ceph 2024-03-30T13:51:57.903 INFO:tasks.cephadm:Writing seed config... 2024-03-30T13:51:57.904 INFO:tasks.cephadm: override: [global] mon election default strategy = 3 2024-03-30T13:51:57.905 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-03-30T13:51:57.905 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-03-30T13:51:57.905 INFO:tasks.cephadm: override: [mgr] mgr/cephadm/use_agent = True 2024-03-30T13:51:57.905 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-03-30T13:51:57.905 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-03-30T13:51:57.905 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-03-30T13:51:57.905 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-03-30T13:51:57.905 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-03-30T13:51:57.905 DEBUG:teuthology.orchestra.run.smithi026:> set -ex 2024-03-30T13:51:57.906 DEBUG:teuthology.orchestra.run.smithi026:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-03-30T13:51:57.923 DEBUG:tasks.cephadm:Final config: [global] # make logging friendly to teuthology log_to_file = true log_to_stderr = false log to journald = false mon cluster log to file = true mon cluster log file level = debug mon clock drift allowed = 1.000 # replicate across OSDs, not hosts osd crush chooseleaf type = 0 #osd pool default size = 2 osd pool default erasure code profile = plugin=jerasure technique=reed_sol_van k=2 m=1 crush-failure-domain=osd # enable some debugging auth debug = true ms die on old message = true ms die on bug = true debug asserts on shutdown = true # adjust warnings mon max pg per osd = 10000# >= luminous mon pg warn max object skew = 0 mon osd allow primary affinity = true mon osd allow pg remap = true mon warn on legacy crush tunables = false mon warn on crush straw calc version zero = false mon warn on no sortbitwise = false mon warn on osd down out interval zero = false mon warn on too few osds = false mon_warn_on_pool_pg_num_not_power_of_two = false # disable pg_autoscaler by default for new pools osd_pool_default_pg_autoscale_mode = off # tests delete pools mon allow pool delete = true fsid = 56554a52-ee9c-11ee-b647-cb9ed24678a4 mon election default strategy = 3 [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 = True [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-03-30T13:51:57.923 DEBUG:teuthology.orchestra.run.smithi026:mon.a> sudo journalctl -f -n 0 -u ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@mon.a.service 2024-03-30T13:51:57.968 DEBUG:teuthology.orchestra.run.smithi026:mgr.a> sudo journalctl -f -n 0 -u ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@mgr.a.service 2024-03-30T13:51:58.011 INFO:tasks.cephadm:Bootstrapping... 2024-03-30T13:51:58.011 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb -v bootstrap --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 --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.26 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-03-30T13:51:58.224 INFO:teuthology.orchestra.run.smithi026.stdout:-------------------------------------------------------------------------------- 2024-03-30T13:51:58.224 INFO:teuthology.orchestra.run.smithi026.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb', '-v', 'bootstrap', '--fsid', '56554a52-ee9c-11ee-b647-cb9ed24678a4', '--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.26', '--skip-admin-label'] 2024-03-30T13:51:58.225 INFO:teuthology.orchestra.run.smithi026.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-03-30T13:51:58.225 INFO:teuthology.orchestra.run.smithi026.stdout:Verifying podman|docker is present... 2024-03-30T13:51:58.225 INFO:teuthology.orchestra.run.smithi026.stdout:Verifying lvm2 is present... 2024-03-30T13:51:58.225 INFO:teuthology.orchestra.run.smithi026.stdout:Verifying time synchronization is in place... 2024-03-30T13:51:58.231 INFO:teuthology.orchestra.run.smithi026.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-03-30T13:51:58.231 INFO:teuthology.orchestra.run.smithi026.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-03-30T13:51:58.235 INFO:teuthology.orchestra.run.smithi026.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-03-30T13:51:58.235 INFO:teuthology.orchestra.run.smithi026.stdout:systemctl: stdout inactive 2024-03-30T13:51:58.240 INFO:teuthology.orchestra.run.smithi026.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-03-30T13:51:58.240 INFO:teuthology.orchestra.run.smithi026.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-03-30T13:51:58.244 INFO:teuthology.orchestra.run.smithi026.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-03-30T13:51:58.244 INFO:teuthology.orchestra.run.smithi026.stdout:systemctl: stdout inactive 2024-03-30T13:51:58.247 INFO:teuthology.orchestra.run.smithi026.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-03-30T13:51:58.247 INFO:teuthology.orchestra.run.smithi026.stdout:systemctl: stdout masked 2024-03-30T13:51:58.251 INFO:teuthology.orchestra.run.smithi026.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-03-30T13:51:58.251 INFO:teuthology.orchestra.run.smithi026.stdout:systemctl: stdout inactive 2024-03-30T13:51:58.255 INFO:teuthology.orchestra.run.smithi026.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-03-30T13:51:58.255 INFO:teuthology.orchestra.run.smithi026.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-03-30T13:51:58.259 INFO:teuthology.orchestra.run.smithi026.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-03-30T13:51:58.259 INFO:teuthology.orchestra.run.smithi026.stdout:systemctl: stdout inactive 2024-03-30T13:51:58.263 INFO:teuthology.orchestra.run.smithi026.stdout:systemctl: stdout enabled 2024-03-30T13:51:58.267 INFO:teuthology.orchestra.run.smithi026.stdout:systemctl: stdout active 2024-03-30T13:51:58.267 INFO:teuthology.orchestra.run.smithi026.stdout:Unit ntp.service is enabled and running 2024-03-30T13:51:58.267 INFO:teuthology.orchestra.run.smithi026.stdout:Repeating the final host check... 2024-03-30T13:51:58.267 INFO:teuthology.orchestra.run.smithi026.stdout:docker (/usr/bin/docker) is present 2024-03-30T13:51:58.267 INFO:teuthology.orchestra.run.smithi026.stdout:systemctl is present 2024-03-30T13:51:58.267 INFO:teuthology.orchestra.run.smithi026.stdout:lvcreate is present 2024-03-30T13:51:58.270 INFO:teuthology.orchestra.run.smithi026.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-03-30T13:51:58.271 INFO:teuthology.orchestra.run.smithi026.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-03-30T13:51:58.274 INFO:teuthology.orchestra.run.smithi026.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-03-30T13:51:58.274 INFO:teuthology.orchestra.run.smithi026.stdout:systemctl: stdout inactive 2024-03-30T13:51:58.278 INFO:teuthology.orchestra.run.smithi026.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-03-30T13:51:58.278 INFO:teuthology.orchestra.run.smithi026.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-03-30T13:51:58.283 INFO:teuthology.orchestra.run.smithi026.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-03-30T13:51:58.283 INFO:teuthology.orchestra.run.smithi026.stdout:systemctl: stdout inactive 2024-03-30T13:51:58.288 INFO:teuthology.orchestra.run.smithi026.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-03-30T13:51:58.288 INFO:teuthology.orchestra.run.smithi026.stdout:systemctl: stdout masked 2024-03-30T13:51:58.292 INFO:teuthology.orchestra.run.smithi026.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-03-30T13:51:58.292 INFO:teuthology.orchestra.run.smithi026.stdout:systemctl: stdout inactive 2024-03-30T13:51:58.296 INFO:teuthology.orchestra.run.smithi026.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-03-30T13:51:58.296 INFO:teuthology.orchestra.run.smithi026.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-03-30T13:51:58.299 INFO:teuthology.orchestra.run.smithi026.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-03-30T13:51:58.299 INFO:teuthology.orchestra.run.smithi026.stdout:systemctl: stdout inactive 2024-03-30T13:51:58.304 INFO:teuthology.orchestra.run.smithi026.stdout:systemctl: stdout enabled 2024-03-30T13:51:58.308 INFO:teuthology.orchestra.run.smithi026.stdout:systemctl: stdout active 2024-03-30T13:51:58.308 INFO:teuthology.orchestra.run.smithi026.stdout:Unit ntp.service is enabled and running 2024-03-30T13:51:58.308 INFO:teuthology.orchestra.run.smithi026.stdout:Host looks OK 2024-03-30T13:51:58.309 INFO:teuthology.orchestra.run.smithi026.stdout:Cluster fsid: 56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T13:51:58.309 INFO:teuthology.orchestra.run.smithi026.stdout:Acquiring lock 140159800602256 on /run/cephadm/56554a52-ee9c-11ee-b647-cb9ed24678a4.lock 2024-03-30T13:51:58.309 INFO:teuthology.orchestra.run.smithi026.stdout:Lock 140159800602256 acquired on /run/cephadm/56554a52-ee9c-11ee-b647-cb9ed24678a4.lock 2024-03-30T13:51:58.309 INFO:teuthology.orchestra.run.smithi026.stdout:Verifying IP 172.21.15.26 port 3300 ... 2024-03-30T13:51:58.309 INFO:teuthology.orchestra.run.smithi026.stdout:Verifying IP 172.21.15.26 port 6789 ... 2024-03-30T13:51:58.309 INFO:teuthology.orchestra.run.smithi026.stdout:Base mon IP(s) is [172.21.15.26:3300, 172.21.15.26:6789], mon addrv is [v2:172.21.15.26:3300,v1:172.21.15.26:6789] 2024-03-30T13:51:58.311 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev ens1f0 2024-03-30T13:51:58.311 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/sbin/ip: stdout 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-03-30T13:51:58.311 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/sbin/ip: stdout 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.26 2024-03-30T13:51:58.314 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-03-30T13:51:58.314 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/sbin/ip: stdout fe80::/64 dev ens1f0 proto kernel metric 256 pref medium 2024-03-30T13:51:58.314 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 1024 expires 1798sec hoplimit 64 pref medium 2024-03-30T13:51:58.316 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-03-30T13:51:58.316 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/sbin/ip: stdout inet6 ::1/128 scope host 2024-03-30T13:51:58.316 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-03-30T13:51:58.316 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/sbin/ip: stdout 4: ens1f0: mtu 1500 state UP qlen 1000 2024-03-30T13:51:58.316 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/sbin/ip: stdout inet6 fe80::ae1f:6bff:fea5:cac0/64 scope link 2024-03-30T13:51:58.316 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-03-30T13:51:58.317 INFO:teuthology.orchestra.run.smithi026.stdout:Mon IP `172.21.15.26` is in CIDR network `172.21.0.0/20` 2024-03-30T13:51:58.317 INFO:teuthology.orchestra.run.smithi026.stdout:Mon IP `172.21.15.26` is in CIDR network `172.21.0.0/20` 2024-03-30T13:51:58.317 INFO:teuthology.orchestra.run.smithi026.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-03-30T13:51:58.317 INFO:teuthology.orchestra.run.smithi026.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-03-30T13:51:58.317 INFO:teuthology.orchestra.run.smithi026.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb... 2024-03-30T13:51:58.848 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/docker: stdout 4e50bbcdd1630c7760b708f3a5b4d38a121e66cb: Pulling from ceph-ci/ceph 2024-03-30T13:51:58.848 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/docker: stdout Digest: sha256:8f3809717761e681477c3ef1d8d2c03114aee2c597cd7380b93b8c10f47fcb5d 2024-03-30T13:51:58.848 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/docker: stdout Status: Image is up to date for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb 2024-03-30T13:51:58.849 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/docker: stdout quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb 2024-03-30T13:52:00.368 INFO:teuthology.orchestra.run.smithi026.stdout:ceph: stdout ceph version 19.0.0-1967-g4e50bbcd (4e50bbcdd1630c7760b708f3a5b4d38a121e66cb) squid (dev) 2024-03-30T13:52:00.368 INFO:teuthology.orchestra.run.smithi026.stdout:Ceph version: ceph version 19.0.0-1967-g4e50bbcd (4e50bbcdd1630c7760b708f3a5b4d38a121e66cb) squid (dev) 2024-03-30T13:52:00.368 INFO:teuthology.orchestra.run.smithi026.stdout:Extracting ceph user uid/gid from container image... 2024-03-30T13:52:01.622 INFO:teuthology.orchestra.run.smithi026.stdout:stat: stdout 167 167 2024-03-30T13:52:01.622 INFO:teuthology.orchestra.run.smithi026.stdout:Creating initial keys... 2024-03-30T13:52:02.843 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-authtool: stdout AQACGQhmoJ6OFBAAxL2tfp37l1K+SeFmsutxTw== 2024-03-30T13:52:04.148 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-authtool: stdout AQADGQhmEDQyJRAAG2nRjbfW5rT9SXGO99meVg== 2024-03-30T13:52:05.461 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-authtool: stdout AQAEGQhm9RGfNRAAA+7+kRpCSXDKURPd7Uccew== 2024-03-30T13:52:05.462 INFO:teuthology.orchestra.run.smithi026.stdout:Creating initial monmap... 2024-03-30T13:52:06.808 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-03-30T13:52:06.808 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-03-30T13:52:06.808 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T13:52:06.809 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-03-30T13:52:06.809 INFO:teuthology.orchestra.run.smithi026.stdout:monmaptool for a [v2:172.21.15.26:3300,v1:172.21.15.26:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-03-30T13:52:06.809 INFO:teuthology.orchestra.run.smithi026.stdout:setting min_mon_release = quincy 2024-03-30T13:52:06.809 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/monmaptool: set fsid to 56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T13:52:06.809 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-03-30T13:52:06.809 INFO:teuthology.orchestra.run.smithi026.stdout: 2024-03-30T13:52:06.809 INFO:teuthology.orchestra.run.smithi026.stdout:Creating mon... 2024-03-30T13:52:08.093 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 0 set uid:gid to 167:167 (ceph:ceph) 2024-03-30T13:52:08.094 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 1 imported monmap: 2024-03-30T13:52:08.094 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr epoch 0 2024-03-30T13:52:08.094 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T13:52:08.094 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr last_changed 2024-03-30T13:52:06.246947+0000 2024-03-30T13:52:08.094 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr created 2024-03-30T13:52:06.246947+0000 2024-03-30T13:52:08.094 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr min_mon_release 17 (quincy) 2024-03-30T13:52:08.094 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr election_strategy: 1 2024-03-30T13:52:08.094 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr 0: [v2:172.21.15.26:3300/0,v1:172.21.15.26:6789/0] mon.a 2024-03-30T13:52:08.094 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr 2024-03-30T13:52:08.094 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 0 /usr/bin/ceph-mon: set fsid to 56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T13:52:08.094 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: RocksDB version: 7.9.2 2024-03-30T13:52:08.094 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr 2024-03-30T13:52:08.095 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Git sha 0 2024-03-30T13:52:08.095 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Compile date 2024-03-29 15:06:16 2024-03-30T13:52:08.095 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: DB SUMMARY 2024-03-30T13:52:08.095 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr 2024-03-30T13:52:08.095 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: DB Session ID: DO2K95TS1OROPTFO1595 2024-03-30T13:52:08.095 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr 2024-03-30T13:52:08.095 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 0, files: 2024-03-30T13:52:08.095 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr 2024-03-30T13:52:08.095 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 2024-03-30T13:52:08.095 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr 2024-03-30T13:52:08.095 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.error_if_exists: 0 2024-03-30T13:52:08.095 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.create_if_missing: 1 2024-03-30T13:52:08.095 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.paranoid_checks: 1 2024-03-30T13:52:08.095 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-03-30T13:52:08.096 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-03-30T13:52:08.096 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-03-30T13:52:08.096 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.env: 0x55a16ac98c60 2024-03-30T13:52:08.096 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.fs: PosixFileSystem 2024-03-30T13:52:08.096 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.info_log: 0x55a16bd62d60 2024-03-30T13:52:08.096 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.max_file_opening_threads: 16 2024-03-30T13:52:08.096 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.statistics: (nil) 2024-03-30T13:52:08.096 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.use_fsync: 0 2024-03-30T13:52:08.096 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.max_log_file_size: 0 2024-03-30T13:52:08.096 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-03-30T13:52:08.096 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-03-30T13:52:08.096 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.keep_log_file_num: 1000 2024-03-30T13:52:08.096 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.recycle_log_file_num: 0 2024-03-30T13:52:08.097 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.allow_fallocate: 1 2024-03-30T13:52:08.097 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.allow_mmap_reads: 0 2024-03-30T13:52:08.097 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.allow_mmap_writes: 0 2024-03-30T13:52:08.097 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.use_direct_reads: 0 2024-03-30T13:52:08.097 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-03-30T13:52:08.097 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.create_missing_column_families: 0 2024-03-30T13:52:08.097 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.db_log_dir: 2024-03-30T13:52:08.097 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.wal_dir: 2024-03-30T13:52:08.097 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-03-30T13:52:08.097 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-03-30T13:52:08.097 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-03-30T13:52:08.097 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-03-30T13:52:08.097 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-03-30T13:52:08.098 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-03-30T13:52:08.098 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.advise_random_on_open: 1 2024-03-30T13:52:08.098 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.db_write_buffer_size: 0 2024-03-30T13:52:08.098 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.write_buffer_manager: 0x55a16bd37360 2024-03-30T13:52:08.098 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-03-30T13:52:08.098 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-03-30T13:52:08.098 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-03-30T13:52:08.098 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.rate_limiter: (nil) 2024-03-30T13:52:08.098 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-03-30T13:52:08.098 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.wal_recovery_mode: 2 2024-03-30T13:52:08.098 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.enable_thread_tracking: 0 2024-03-30T13:52:08.098 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.enable_pipelined_write: 0 2024-03-30T13:52:08.098 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.unordered_write: 0 2024-03-30T13:52:08.098 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-03-30T13:52:08.099 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-03-30T13:52:08.099 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-03-30T13:52:08.099 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-03-30T13:52:08.099 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.row_cache: None 2024-03-30T13:52:08.099 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.wal_filter: None 2024-03-30T13:52:08.099 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-03-30T13:52:08.099 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.allow_ingest_behind: 0 2024-03-30T13:52:08.099 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.two_write_queues: 0 2024-03-30T13:52:08.099 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.manual_wal_flush: 0 2024-03-30T13:52:08.099 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.wal_compression: 0 2024-03-30T13:52:08.099 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.atomic_flush: 0 2024-03-30T13:52:08.099 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-03-30T13:52:08.099 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-03-30T13:52:08.100 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-03-30T13:52:08.100 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.log_readahead_size: 0 2024-03-30T13:52:08.100 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-03-30T13:52:08.100 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.best_efforts_recovery: 0 2024-03-30T13:52:08.100 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-03-30T13:52:08.100 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-03-30T13:52:08.100 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.allow_data_in_errors: 0 2024-03-30T13:52:08.100 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.db_host_id: __hostname__ 2024-03-30T13:52:08.100 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-03-30T13:52:08.100 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.max_background_jobs: 2 2024-03-30T13:52:08.100 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.max_background_compactions: -1 2024-03-30T13:52:08.100 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.max_subcompactions: 1 2024-03-30T13:52:08.100 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-03-30T13:52:08.100 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-03-30T13:52:08.100 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-03-30T13:52:08.101 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.max_total_wal_size: 0 2024-03-30T13:52:08.101 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-03-30T13:52:08.101 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-03-30T13:52:08.101 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-03-30T13:52:08.101 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-03-30T13:52:08.101 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.max_open_files: -1 2024-03-30T13:52:08.101 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.bytes_per_sync: 0 2024-03-30T13:52:08.101 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-03-30T13:52:08.101 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-03-30T13:52:08.101 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.compaction_readahead_size: 0 2024-03-30T13:52:08.101 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Options.max_background_flushes: -1 2024-03-30T13:52:08.101 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Compression algorithms supported: 2024-03-30T13:52:08.101 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-03-30T13:52:08.101 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: kZSTD supported: 0 2024-03-30T13:52:08.102 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: kXpressCompression supported: 0 2024-03-30T13:52:08.102 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: kLZ4HCCompression supported: 1 2024-03-30T13:52:08.102 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: kZlibCompression supported: 1 2024-03-30T13:52:08.102 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: kSnappyCompression supported: 1 2024-03-30T13:52:08.102 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: kLZ4Compression supported: 1 2024-03-30T13:52:08.102 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: kBZip2Compression supported: 0 2024-03-30T13:52:08.102 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-03-30T13:52:08.102 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.544+0000 7f88afc1bc80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-03-30T13:52:08.102 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: [db/db_impl/db_impl_open.cc:317] Creating manifest 1 2024-03-30T13:52:08.102 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr 2024-03-30T13:52:08.102 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000001 2024-03-30T13:52:08.102 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr 2024-03-30T13:52:08.102 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-03-30T13:52:08.102 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr 2024-03-30T13:52:08.103 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-03-30T13:52:08.103 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.merge_operator: 2024-03-30T13:52:08.103 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.compaction_filter: None 2024-03-30T13:52:08.103 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.compaction_filter_factory: None 2024-03-30T13:52:08.103 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.sst_partitioner_factory: None 2024-03-30T13:52:08.103 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-03-30T13:52:08.103 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-03-30T13:52:08.103 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55a16bd62e60) 2024-03-30T13:52:08.103 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks: 1 2024-03-30T13:52:08.103 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks_with_high_priority: 0 2024-03-30T13:52:08.103 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr pin_l0_filter_and_index_blocks_in_cache: 0 2024-03-30T13:52:08.103 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr pin_top_level_index_and_filter: 1 2024-03-30T13:52:08.103 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr index_type: 0 2024-03-30T13:52:08.103 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr data_block_index_type: 0 2024-03-30T13:52:08.104 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr index_shortening: 1 2024-03-30T13:52:08.104 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr data_block_hash_table_util_ratio: 0.750000 2024-03-30T13:52:08.104 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr checksum: 4 2024-03-30T13:52:08.104 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr no_block_cache: 0 2024-03-30T13:52:08.104 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr block_cache: 0x55a16bd67090 2024-03-30T13:52:08.104 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr block_cache_name: BinnedLRUCache 2024-03-30T13:52:08.104 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr block_cache_options: 2024-03-30T13:52:08.104 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr capacity : 536870912 2024-03-30T13:52:08.104 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr num_shard_bits : 4 2024-03-30T13:52:08.104 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr strict_capacity_limit : 0 2024-03-30T13:52:08.104 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr high_pri_pool_ratio: 0.000 2024-03-30T13:52:08.104 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr block_cache_compressed: (nil) 2024-03-30T13:52:08.104 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr persistent_cache: (nil) 2024-03-30T13:52:08.104 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr block_size: 4096 2024-03-30T13:52:08.104 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr block_size_deviation: 10 2024-03-30T13:52:08.104 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr block_restart_interval: 16 2024-03-30T13:52:08.105 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr index_block_restart_interval: 1 2024-03-30T13:52:08.105 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr metadata_block_size: 4096 2024-03-30T13:52:08.105 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr partition_filters: 0 2024-03-30T13:52:08.105 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr use_delta_encoding: 1 2024-03-30T13:52:08.105 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr filter_policy: bloomfilter 2024-03-30T13:52:08.105 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr whole_key_filtering: 1 2024-03-30T13:52:08.105 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr verify_compression: 0 2024-03-30T13:52:08.105 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr read_amp_bytes_per_bit: 0 2024-03-30T13:52:08.105 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr format_version: 5 2024-03-30T13:52:08.105 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr enable_index_compression: 1 2024-03-30T13:52:08.105 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr block_align: 0 2024-03-30T13:52:08.105 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr max_auto_readahead_size: 262144 2024-03-30T13:52:08.105 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr prepopulate_block_cache: 0 2024-03-30T13:52:08.105 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr initial_auto_readahead_size: 8192 2024-03-30T13:52:08.106 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr num_file_reads_for_auto_readahead: 2 2024-03-30T13:52:08.106 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr 2024-03-30T13:52:08.106 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.write_buffer_size: 33554432 2024-03-30T13:52:08.106 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.max_write_buffer_number: 2 2024-03-30T13:52:08.106 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.compression: NoCompression 2024-03-30T13:52:08.106 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.bottommost_compression: Disabled 2024-03-30T13:52:08.106 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.prefix_extractor: nullptr 2024-03-30T13:52:08.106 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-03-30T13:52:08.106 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.num_levels: 7 2024-03-30T13:52:08.106 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-03-30T13:52:08.106 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-03-30T13:52:08.106 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-03-30T13:52:08.106 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-03-30T13:52:08.106 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-03-30T13:52:08.107 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-03-30T13:52:08.107 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-03-30T13:52:08.107 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-03-30T13:52:08.107 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-03-30T13:52:08.107 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-03-30T13:52:08.107 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-03-30T13:52:08.107 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-03-30T13:52:08.107 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-03-30T13:52:08.107 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.compression_opts.level: 32767 2024-03-30T13:52:08.107 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.compression_opts.strategy: 0 2024-03-30T13:52:08.107 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-03-30T13:52:08.107 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-03-30T13:52:08.107 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-03-30T13:52:08.107 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-03-30T13:52:08.107 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.compression_opts.enabled: false 2024-03-30T13:52:08.108 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-03-30T13:52:08.108 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-03-30T13:52:08.108 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-03-30T13:52:08.108 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-03-30T13:52:08.108 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.target_file_size_base: 67108864 2024-03-30T13:52:08.108 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-03-30T13:52:08.108 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-03-30T13:52:08.108 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-03-30T13:52:08.108 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-03-30T13:52:08.108 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-03-30T13:52:08.108 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-03-30T13:52:08.108 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-03-30T13:52:08.108 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-03-30T13:52:08.108 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-03-30T13:52:08.108 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-03-30T13:52:08.109 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-03-30T13:52:08.109 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-03-30T13:52:08.109 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-03-30T13:52:08.109 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-03-30T13:52:08.109 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.arena_block_size: 1048576 2024-03-30T13:52:08.109 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-03-30T13:52:08.109 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-03-30T13:52:08.109 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.disable_auto_compactions: 0 2024-03-30T13:52:08.109 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-03-30T13:52:08.109 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-03-30T13:52:08.109 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-03-30T13:52:08.109 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-03-30T13:52:08.109 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-03-30T13:52:08.110 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-03-30T13:52:08.110 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-03-30T13:52:08.110 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-03-30T13:52:08.110 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-03-30T13:52:08.110 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-03-30T13:52:08.110 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.table_properties_collectors: 2024-03-30T13:52:08.110 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.inplace_update_support: 0 2024-03-30T13:52:08.110 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-03-30T13:52:08.110 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-03-30T13:52:08.110 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-03-30T13:52:08.110 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-03-30T13:52:08.110 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.bloom_locality: 0 2024-03-30T13:52:08.110 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.max_successive_merges: 0 2024-03-30T13:52:08.111 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-03-30T13:52:08.111 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.paranoid_file_checks: 0 2024-03-30T13:52:08.111 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.force_consistency_checks: 1 2024-03-30T13:52:08.111 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.report_bg_io_stats: 0 2024-03-30T13:52:08.111 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.ttl: 2592000 2024-03-30T13:52:08.111 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-03-30T13:52:08.111 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-03-30T13:52:08.111 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-03-30T13:52:08.111 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.enable_blob_files: false 2024-03-30T13:52:08.111 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.min_blob_size: 0 2024-03-30T13:52:08.111 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.blob_file_size: 268435456 2024-03-30T13:52:08.111 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-03-30T13:52:08.111 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-03-30T13:52:08.111 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-03-30T13:52:08.112 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-03-30T13:52:08.112 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-03-30T13:52:08.112 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.blob_file_starting_level: 0 2024-03-30T13:52:08.112 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-03-30T13:52:08.112 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 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-03-30T13:52:08.112 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr 2024-03-30T13:52:08.112 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-03-30T13:52:08.112 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr 2024-03-30T13:52:08.112 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 73857e4e-04f8-4839-939e-8a4b61b52d40 2024-03-30T13:52:08.112 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr 2024-03-30T13:52:08.112 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 5 2024-03-30T13:52:08.112 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr 2024-03-30T13:52:08.112 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55a16be32000 2024-03-30T13:52:08.112 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.548+0000 7f88afc1bc80 4 rocksdb: DB pointer 0x55a16be22000 2024-03-30T13:52:08.113 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.552+0000 7f889fd85700 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-03-30T13:52:08.113 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.552+0000 7f889fd85700 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-03-30T13:52:08.113 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr ** DB Stats ** 2024-03-30T13:52:08.113 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-03-30T13:52:08.113 INFO:teuthology.orchestra.run.smithi026.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-03-30T13:52:08.113 INFO:teuthology.orchestra.run.smithi026.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-03-30T13:52:08.113 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-03-30T13:52:08.113 INFO:teuthology.orchestra.run.smithi026.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-03-30T13:52:08.113 INFO:teuthology.orchestra.run.smithi026.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-03-30T13:52:08.113 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-03-30T13:52:08.113 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr 2024-03-30T13:52:08.113 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-03-30T13:52:08.113 INFO:teuthology.orchestra.run.smithi026.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-03-30T13:52:08.113 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-03-30T13:52:08.114 INFO:teuthology.orchestra.run.smithi026.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-03-30T13:52:08.114 INFO:teuthology.orchestra.run.smithi026.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-03-30T13:52:08.114 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr 2024-03-30T13:52:08.114 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-03-30T13:52:08.114 INFO:teuthology.orchestra.run.smithi026.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-03-30T13:52:08.114 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-03-30T13:52:08.114 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr 2024-03-30T13:52:08.114 INFO:teuthology.orchestra.run.smithi026.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-03-30T13:52:08.114 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr 2024-03-30T13:52:08.114 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-03-30T13:52:08.114 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr Flush(GB): cumulative 0.000, interval 0.000 2024-03-30T13:52:08.114 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr AddFile(GB): cumulative 0.000, interval 0.000 2024-03-30T13:52:08.114 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr AddFile(Total Files): cumulative 0, interval 0 2024-03-30T13:52:08.115 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr AddFile(L0 Files): cumulative 0, interval 0 2024-03-30T13:52:08.115 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr AddFile(Keys): cumulative 0, interval 0 2024-03-30T13:52:08.115 INFO:teuthology.orchestra.run.smithi026.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-03-30T13:52:08.115 INFO:teuthology.orchestra.run.smithi026.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-03-30T13:52:08.115 INFO:teuthology.orchestra.run.smithi026.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-03-30T13:52:08.115 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr Block cache BinnedLRUCache@0x55a16bd67090#7 capacity: 512.00 MB usage: 0.00 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.7e-05 secs_since: 0 2024-03-30T13:52:08.115 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) 2024-03-30T13:52:08.115 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr 2024-03-30T13:52:08.115 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr ** File Read Latency Histogram By Level [default] ** 2024-03-30T13:52:08.115 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr 2024-03-30T13:52:08.115 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.552+0000 7f88afc1bc80 4 rocksdb: [db/db_impl/db_impl.cc:496] Shutdown: canceling all background work 2024-03-30T13:52:08.115 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.552+0000 7f88afc1bc80 4 rocksdb: [db/db_impl/db_impl.cc:704] Shutdown complete 2024-03-30T13:52:08.115 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-30T13:52:07.552+0000 7f88afc1bc80 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-a for mon.a 2024-03-30T13:52:08.115 INFO:teuthology.orchestra.run.smithi026.stdout:create mon.a on 2024-03-30T13:52:08.350 INFO:teuthology.orchestra.run.smithi026.stdout:systemctl: stderr Removed /etc/systemd/system/multi-user.target.wants/ceph.target. 2024-03-30T13:52:08.551 INFO:teuthology.orchestra.run.smithi026.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2024-03-30T13:52:08.790 INFO:teuthology.orchestra.run.smithi026.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4.target -> /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4.target. 2024-03-30T13:52:08.790 INFO:teuthology.orchestra.run.smithi026.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4.target -> /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4.target. 2024-03-30T13:52:09.110 INFO:teuthology.orchestra.run.smithi026.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@mon.a 2024-03-30T13:52:09.110 INFO:teuthology.orchestra.run.smithi026.stdout:systemctl: stderr Failed to reset failed state of unit ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@mon.a.service: Unit ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@mon.a.service not loaded. 2024-03-30T13:52:09.304 INFO:teuthology.orchestra.run.smithi026.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4.target.wants/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@mon.a.service -> /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service. 2024-03-30T13:52:09.313 INFO:teuthology.orchestra.run.smithi026.stdout:firewalld does not appear to be present 2024-03-30T13:52:09.313 INFO:teuthology.orchestra.run.smithi026.stdout:Not possible to enable service . firewalld.service is not available 2024-03-30T13:52:09.313 INFO:teuthology.orchestra.run.smithi026.stdout:Waiting for mon to start... 2024-03-30T13:52:09.314 INFO:teuthology.orchestra.run.smithi026.stdout:Waiting for mon... 2024-03-30T13:52:11.112 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:10 smithi026 bash[20955]: cluster 2024-03-30T13:52:10.852805+0000 mon.a (mon.0) 1 : cluster 1 mon.a is new leader, mons a in quorum (ranks 0) 2024-03-30T13:52:11.919 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout cluster: 2024-03-30T13:52:11.919 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout id: 56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T13:52:11.919 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-03-30T13:52:11.919 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout 2024-03-30T13:52:11.919 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout services: 2024-03-30T13:52:11.919 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum a (age 0.28706s) 2024-03-30T13:52:11.919 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-03-30T13:52:11.919 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-03-30T13:52:11.919 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout 2024-03-30T13:52:11.919 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout data: 2024-03-30T13:52:11.919 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-03-30T13:52:11.919 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-03-30T13:52:11.919 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-03-30T13:52:11.920 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout pgs: 2024-03-30T13:52:11.920 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout 2024-03-30T13:52:11.920 INFO:teuthology.orchestra.run.smithi026.stdout:mon is available 2024-03-30T13:52:11.920 INFO:teuthology.orchestra.run.smithi026.stdout:Assimilating anything we can from ceph.conf... 2024-03-30T13:52:12.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:11 smithi026 bash[20955]: cluster 2024-03-30T13:52:10.872710+0000 mon.a (mon.0) 2 : cluster 1 mon.a is new leader, mons a in quorum (ranks 0) 2024-03-30T13:52:12.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:11 smithi026 bash[20955]: cluster 2024-03-30T13:52:10.872922+0000 mon.a (mon.0) 3 : cluster 0 monmap epoch 1 2024-03-30T13:52:12.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:11 smithi026 bash[20955]: cluster 2024-03-30T13:52:10.872936+0000 mon.a (mon.0) 4 : cluster 0 fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T13:52:12.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:11 smithi026 bash[20955]: cluster 2024-03-30T13:52:10.872945+0000 mon.a (mon.0) 5 : cluster 0 last_changed 2024-03-30T13:52:06.246947+0000 2024-03-30T13:52:12.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:11 smithi026 bash[20955]: cluster 2024-03-30T13:52:10.872959+0000 mon.a (mon.0) 6 : cluster 0 created 2024-03-30T13:52:06.246947+0000 2024-03-30T13:52:12.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:11 smithi026 bash[20955]: cluster 2024-03-30T13:52:10.872969+0000 mon.a (mon.0) 7 : cluster 0 min_mon_release 19 (squid) 2024-03-30T13:52:12.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:11 smithi026 bash[20955]: cluster 2024-03-30T13:52:10.872977+0000 mon.a (mon.0) 8 : cluster 0 election_strategy: 1 2024-03-30T13:52:12.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:11 smithi026 bash[20955]: cluster 2024-03-30T13:52:10.872986+0000 mon.a (mon.0) 9 : cluster 0 0: [v2:172.21.15.26:3300/0,v1:172.21.15.26:6789/0] mon.a 2024-03-30T13:52:12.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:11 smithi026 bash[20955]: cluster 2024-03-30T13:52:10.894813+0000 mon.a (mon.0) 10 : cluster 0 fsmap 2024-03-30T13:52:12.364 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:11 smithi026 bash[20955]: cluster 2024-03-30T13:52:10.897055+0000 mon.a (mon.0) 11 : cluster 0 osdmap e1: 0 total, 0 up, 0 in 2024-03-30T13:52:12.364 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:11 smithi026 bash[20955]: cluster 2024-03-30T13:52:10.897519+0000 mon.a (mon.0) 12 : cluster 0 mgrmap e1: no daemons active 2024-03-30T13:52:12.364 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:11 smithi026 bash[20955]: audit 2024-03-30T13:52:11.159704+0000 mon.a (mon.0) 13 : audit 0 from='client.? 172.21.15.26:0/3756545561' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-03-30T13:52:13.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:12 smithi026 bash[20955]: audit 2024-03-30T13:52:12.942703+0000 mon.a (mon.0) 14 : audit 1 from='client.? 172.21.15.26:0/2494580099' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-03-30T13:52:13.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:12 smithi026 bash[20955]: audit 2024-03-30T13:52:12.947284+0000 mon.a (mon.0) 15 : audit 1 from='client.? 172.21.15.26:0/2494580099' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-03-30T13:52:13.491 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout 2024-03-30T13:52:13.491 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout [global] 2024-03-30T13:52:13.491 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout fsid = 56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T13:52:13.492 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.26:3300,v1:172.21.15.26:6789] 2024-03-30T13:52:13.492 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-03-30T13:52:13.492 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-03-30T13:52:13.492 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-03-30T13:52:13.492 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-03-30T13:52:13.492 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout 2024-03-30T13:52:13.492 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout [mgr] 2024-03-30T13:52:13.492 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = True 2024-03-30T13:52:13.492 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-03-30T13:52:13.493 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout 2024-03-30T13:52:13.493 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout [osd] 2024-03-30T13:52:13.493 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-03-30T13:52:13.493 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-03-30T13:52:13.493 INFO:teuthology.orchestra.run.smithi026.stdout:Generating new minimal ceph.conf... 2024-03-30T13:52:14.863 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:14 smithi026 bash[20955]: audit 2024-03-30T13:52:14.470578+0000 mon.a (mon.0) 16 : audit 0 from='client.? 172.21.15.26:0/1818600146' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:52:15.036 INFO:teuthology.orchestra.run.smithi026.stdout:Restarting the monitor... 2024-03-30T13:52:15.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:15 smithi026 systemd[1]: Stopping Ceph mon.a for 56554a52-ee9c-11ee-b647-cb9ed24678a4... 2024-03-30T13:52:15.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:15 smithi026 bash[20955]: debug 2024-03-30T13:52:15.172+0000 7f8b8fff1700 -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-03-30T13:52:15.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:15 smithi026 bash[20955]: debug 2024-03-30T13:52:15.172+0000 7f8b8fff1700 -1 mon.a@0(leader) e1 *** Got Signal Terminated *** 2024-03-30T13:52:16.029 INFO:teuthology.orchestra.run.smithi026.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-03-30T13:52:16.112 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:15 smithi026 bash[21344]: ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4-mon-a 2024-03-30T13:52:16.112 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:16 smithi026 bash[21403]: Error response from daemon: No such container: ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4-mon-a 2024-03-30T13:52:16.113 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:16 smithi026 systemd[1]: ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@mon.a.service: Deactivated successfully. 2024-03-30T13:52:16.113 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:16 smithi026 systemd[1]: Stopped Ceph mon.a for 56554a52-ee9c-11ee-b647-cb9ed24678a4. 2024-03-30T13:52:16.113 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:16 smithi026 systemd[1]: Started Ceph mon.a for 56554a52-ee9c-11ee-b647-cb9ed24678a4. 2024-03-30T13:52:17.311 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.004+0000 7f3304d3dc80 0 set uid:gid to 167:167 (ceph:ceph) 2024-03-30T13:52:17.311 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.004+0000 7f3304d3dc80 0 ceph version 19.0.0-1967-g4e50bbcd (4e50bbcdd1630c7760b708f3a5b4d38a121e66cb) squid (dev), process ceph-mon, pid 7 2024-03-30T13:52:17.311 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.004+0000 7f3304d3dc80 0 pidfile_write: ignore empty --pid-file 2024-03-30T13:52:17.311 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 0 load: jerasure load: lrc 2024-03-30T13:52:17.311 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: RocksDB version: 7.9.2 2024-03-30T13:52:17.311 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Git sha 0 2024-03-30T13:52:17.311 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Compile date 2024-03-29 15:06:16 2024-03-30T13:52:17.311 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: DB SUMMARY 2024-03-30T13:52:17.312 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: DB Session ID: 1HDBDG53N1CAA6JTYAQO 2024-03-30T13:52:17.312 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: CURRENT file: CURRENT 2024-03-30T13:52:17.312 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: IDENTITY file: IDENTITY 2024-03-30T13:52:17.312 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-03-30T13:52:17.312 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 1, files: 000008.sst 2024-03-30T13:52:17.312 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 000009.log size: 88763 ; 2024-03-30T13:52:17.312 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.error_if_exists: 0 2024-03-30T13:52:17.312 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.create_if_missing: 0 2024-03-30T13:52:17.312 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.paranoid_checks: 1 2024-03-30T13:52:17.312 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-03-30T13:52:17.312 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-03-30T13:52:17.312 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-03-30T13:52:17.312 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.env: 0x55a876191c60 2024-03-30T13:52:17.312 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.fs: PosixFileSystem 2024-03-30T13:52:17.313 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.info_log: 0x55a8777efb20 2024-03-30T13:52:17.313 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.max_file_opening_threads: 16 2024-03-30T13:52:17.313 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.statistics: (nil) 2024-03-30T13:52:17.313 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.use_fsync: 0 2024-03-30T13:52:17.313 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.max_log_file_size: 0 2024-03-30T13:52:17.313 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-03-30T13:52:17.313 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-03-30T13:52:17.313 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.keep_log_file_num: 1000 2024-03-30T13:52:17.313 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.recycle_log_file_num: 0 2024-03-30T13:52:17.313 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.allow_fallocate: 1 2024-03-30T13:52:17.313 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.allow_mmap_reads: 0 2024-03-30T13:52:17.313 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.allow_mmap_writes: 0 2024-03-30T13:52:17.313 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.use_direct_reads: 0 2024-03-30T13:52:17.314 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-03-30T13:52:17.314 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.create_missing_column_families: 0 2024-03-30T13:52:17.314 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.db_log_dir: 2024-03-30T13:52:17.314 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.wal_dir: 2024-03-30T13:52:17.314 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-03-30T13:52:17.314 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-03-30T13:52:17.314 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-03-30T13:52:17.314 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-03-30T13:52:17.314 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-03-30T13:52:17.314 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-03-30T13:52:17.314 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.advise_random_on_open: 1 2024-03-30T13:52:17.314 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.db_write_buffer_size: 0 2024-03-30T13:52:17.314 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.write_buffer_manager: 0x55a8777c21e0 2024-03-30T13:52:17.314 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-03-30T13:52:17.315 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-03-30T13:52:17.315 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-03-30T13:52:17.315 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.rate_limiter: (nil) 2024-03-30T13:52:17.315 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-03-30T13:52:17.315 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.wal_recovery_mode: 2 2024-03-30T13:52:17.316 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.enable_thread_tracking: 0 2024-03-30T13:52:17.316 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.enable_pipelined_write: 0 2024-03-30T13:52:17.316 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.unordered_write: 0 2024-03-30T13:52:17.317 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-03-30T13:52:17.317 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-03-30T13:52:17.317 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-03-30T13:52:17.317 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-03-30T13:52:17.317 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.row_cache: None 2024-03-30T13:52:17.317 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.wal_filter: None 2024-03-30T13:52:17.317 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-03-30T13:52:17.317 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.allow_ingest_behind: 0 2024-03-30T13:52:17.317 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.two_write_queues: 0 2024-03-30T13:52:17.317 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.manual_wal_flush: 0 2024-03-30T13:52:17.317 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.wal_compression: 0 2024-03-30T13:52:17.317 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.atomic_flush: 0 2024-03-30T13:52:17.317 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-03-30T13:52:17.317 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-03-30T13:52:17.318 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-03-30T13:52:17.318 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.log_readahead_size: 0 2024-03-30T13:52:17.318 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-03-30T13:52:17.318 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.best_efforts_recovery: 0 2024-03-30T13:52:17.318 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-03-30T13:52:17.318 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-03-30T13:52:17.318 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.allow_data_in_errors: 0 2024-03-30T13:52:17.318 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.db_host_id: __hostname__ 2024-03-30T13:52:17.318 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-03-30T13:52:17.318 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.max_background_jobs: 2 2024-03-30T13:52:17.318 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.max_background_compactions: -1 2024-03-30T13:52:17.318 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.max_subcompactions: 1 2024-03-30T13:52:17.318 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-03-30T13:52:17.319 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-03-30T13:52:17.319 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-03-30T13:52:17.319 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.max_total_wal_size: 0 2024-03-30T13:52:17.319 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-03-30T13:52:17.319 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-03-30T13:52:17.319 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-03-30T13:52:17.319 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-03-30T13:52:17.319 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.max_open_files: -1 2024-03-30T13:52:17.319 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.bytes_per_sync: 0 2024-03-30T13:52:17.319 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-03-30T13:52:17.319 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-03-30T13:52:17.319 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.compaction_readahead_size: 0 2024-03-30T13:52:17.319 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.max_background_flushes: -1 2024-03-30T13:52:17.319 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Compression algorithms supported: 2024-03-30T13:52:17.320 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-03-30T13:52:17.320 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: kZSTD supported: 0 2024-03-30T13:52:17.320 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: kXpressCompression supported: 0 2024-03-30T13:52:17.320 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: kLZ4HCCompression supported: 1 2024-03-30T13:52:17.320 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: kZlibCompression supported: 1 2024-03-30T13:52:17.320 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: kSnappyCompression supported: 1 2024-03-30T13:52:17.320 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: kLZ4Compression supported: 1 2024-03-30T13:52:17.320 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: kBZip2Compression supported: 0 2024-03-30T13:52:17.320 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-03-30T13:52:17.320 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-03-30T13:52:17.320 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 2024-03-30T13:52:17.320 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-03-30T13:52:17.320 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-03-30T13:52:17.320 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.merge_operator: 2024-03-30T13:52:17.320 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.compaction_filter: None 2024-03-30T13:52:17.321 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.compaction_filter_factory: None 2024-03-30T13:52:17.321 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.sst_partitioner_factory: None 2024-03-30T13:52:17.321 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-03-30T13:52:17.321 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-03-30T13:52:17.321 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55a8777efc40) 2024-03-30T13:52:17.321 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: cache_index_and_filter_blocks: 1 2024-03-30T13:52:17.321 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: cache_index_and_filter_blocks_with_high_priority: 0 2024-03-30T13:52:17.321 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-03-30T13:52:17.321 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: pin_top_level_index_and_filter: 1 2024-03-30T13:52:17.321 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: index_type: 0 2024-03-30T13:52:17.321 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: data_block_index_type: 0 2024-03-30T13:52:17.321 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: index_shortening: 1 2024-03-30T13:52:17.321 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: data_block_hash_table_util_ratio: 0.750000 2024-03-30T13:52:17.321 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: checksum: 4 2024-03-30T13:52:17.322 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: no_block_cache: 0 2024-03-30T13:52:17.322 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: block_cache: 0x55a8777f1090 2024-03-30T13:52:17.322 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: block_cache_name: BinnedLRUCache 2024-03-30T13:52:17.322 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: block_cache_options: 2024-03-30T13:52:17.322 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: capacity : 536870912 2024-03-30T13:52:17.322 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: num_shard_bits : 4 2024-03-30T13:52:17.322 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: strict_capacity_limit : 0 2024-03-30T13:52:17.322 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: high_pri_pool_ratio: 0.000 2024-03-30T13:52:17.322 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: block_cache_compressed: (nil) 2024-03-30T13:52:17.322 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: persistent_cache: (nil) 2024-03-30T13:52:17.322 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: block_size: 4096 2024-03-30T13:52:17.322 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: block_size_deviation: 10 2024-03-30T13:52:17.322 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: block_restart_interval: 16 2024-03-30T13:52:17.323 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: index_block_restart_interval: 1 2024-03-30T13:52:17.323 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: metadata_block_size: 4096 2024-03-30T13:52:17.323 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: partition_filters: 0 2024-03-30T13:52:17.323 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: use_delta_encoding: 1 2024-03-30T13:52:17.323 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: filter_policy: bloomfilter 2024-03-30T13:52:17.323 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: whole_key_filtering: 1 2024-03-30T13:52:17.323 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: verify_compression: 0 2024-03-30T13:52:17.323 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: read_amp_bytes_per_bit: 0 2024-03-30T13:52:17.323 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: format_version: 5 2024-03-30T13:52:17.323 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: enable_index_compression: 1 2024-03-30T13:52:17.323 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: block_align: 0 2024-03-30T13:52:17.323 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: max_auto_readahead_size: 262144 2024-03-30T13:52:17.323 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: prepopulate_block_cache: 0 2024-03-30T13:52:17.323 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: initial_auto_readahead_size: 8192 2024-03-30T13:52:17.323 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: num_file_reads_for_auto_readahead: 2 2024-03-30T13:52:17.324 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.write_buffer_size: 33554432 2024-03-30T13:52:17.324 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.max_write_buffer_number: 2 2024-03-30T13:52:17.324 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.compression: NoCompression 2024-03-30T13:52:17.324 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.bottommost_compression: Disabled 2024-03-30T13:52:17.324 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.prefix_extractor: nullptr 2024-03-30T13:52:17.324 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-03-30T13:52:17.324 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.num_levels: 7 2024-03-30T13:52:17.324 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-03-30T13:52:17.324 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-03-30T13:52:17.324 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-03-30T13:52:17.324 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-03-30T13:52:17.324 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-03-30T13:52:17.324 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-03-30T13:52:17.324 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-03-30T13:52:17.324 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-03-30T13:52:17.325 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-03-30T13:52:17.325 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-03-30T13:52:17.325 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-03-30T13:52:17.325 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-03-30T13:52:17.325 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-03-30T13:52:17.325 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.compression_opts.level: 32767 2024-03-30T13:52:17.325 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.compression_opts.strategy: 0 2024-03-30T13:52:17.325 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-03-30T13:52:17.325 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-03-30T13:52:17.325 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-03-30T13:52:17.325 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-03-30T13:52:17.325 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.compression_opts.enabled: false 2024-03-30T13:52:17.325 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-03-30T13:52:17.325 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-03-30T13:52:17.326 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-03-30T13:52:17.326 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-03-30T13:52:17.326 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.target_file_size_base: 67108864 2024-03-30T13:52:17.326 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-03-30T13:52:17.326 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-03-30T13:52:17.326 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-03-30T13:52:17.326 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-03-30T13:52:17.326 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-03-30T13:52:17.326 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-03-30T13:52:17.326 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-03-30T13:52:17.326 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-03-30T13:52:17.326 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-03-30T13:52:17.326 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-03-30T13:52:17.326 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-03-30T13:52:17.327 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-03-30T13:52:17.327 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-03-30T13:52:17.327 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-03-30T13:52:17.327 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.arena_block_size: 1048576 2024-03-30T13:52:17.327 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-03-30T13:52:17.327 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-03-30T13:52:17.327 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.disable_auto_compactions: 0 2024-03-30T13:52:17.327 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-03-30T13:52:17.327 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-03-30T13:52:17.327 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-03-30T13:52:17.327 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-03-30T13:52:17.327 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-03-30T13:52:17.327 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-03-30T13:52:17.327 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-03-30T13:52:17.328 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-03-30T13:52:17.328 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-03-30T13:52:17.328 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-03-30T13:52:17.328 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.table_properties_collectors: 2024-03-30T13:52:17.328 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.inplace_update_support: 0 2024-03-30T13:52:17.328 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-03-30T13:52:17.328 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-03-30T13:52:17.328 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-03-30T13:52:17.328 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-03-30T13:52:17.328 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.bloom_locality: 0 2024-03-30T13:52:17.328 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.max_successive_merges: 0 2024-03-30T13:52:17.328 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-03-30T13:52:17.328 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.paranoid_file_checks: 0 2024-03-30T13:52:17.328 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.force_consistency_checks: 1 2024-03-30T13:52:17.328 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.report_bg_io_stats: 0 2024-03-30T13:52:17.329 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.ttl: 2592000 2024-03-30T13:52:17.329 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-03-30T13:52:17.329 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-03-30T13:52:17.329 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-03-30T13:52:17.329 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.enable_blob_files: false 2024-03-30T13:52:17.329 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.min_blob_size: 0 2024-03-30T13:52:17.329 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.blob_file_size: 268435456 2024-03-30T13:52:17.329 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-03-30T13:52:17.329 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-03-30T13:52:17.329 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-03-30T13:52:17.329 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-03-30T13:52:17.329 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-03-30T13:52:17.329 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.blob_file_starting_level: 0 2024-03-30T13:52:17.329 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.008+0000 7f3304d3dc80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-03-30T13:52:17.330 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.012+0000 7f3304d3dc80 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-03-30T13:52:17.330 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.012+0000 7f3304d3dc80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-03-30T13:52:17.330 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.012+0000 7f3304d3dc80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 73857e4e-04f8-4839-939e-8a4b61b52d40 2024-03-30T13:52:17.330 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.012+0000 7f3304d3dc80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1711806737016635, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-03-30T13:52:17.330 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.012+0000 7f3304d3dc80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-03-30T13:52:17.330 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.012+0000 7f3304d3dc80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1711806737017930, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 85354, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 258, "table_properties": {"data_size": 83527, "index_size": 237, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 581, "raw_key_size": 10201, "raw_average_key_size": 47, "raw_value_size": 77734, "raw_average_value_size": 358, "num_data_blocks": 11, "num_entries": 217, "num_filter_entries": 217, "num_deletions": 3, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "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": 1711806737, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "73857e4e-04f8-4839-939e-8a4b61b52d40", "db_session_id": "1HDBDG53N1CAA6JTYAQO", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-03-30T13:52:17.330 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.012+0000 7f3304d3dc80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1711806737018040, "job": 1, "event": "recovery_finished"} 2024-03-30T13:52:17.330 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.012+0000 7f3304d3dc80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-03-30T13:52:17.330 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.012+0000 7f3304d3dc80 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-03-30T13:52:17.330 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.012+0000 7f3304d3dc80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55a8778e6000 2024-03-30T13:52:17.330 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.012+0000 7f3304d3dc80 4 rocksdb: DB pointer 0x55a8778d0000 2024-03-30T13:52:17.330 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.012+0000 7f32f349f700 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-03-30T13:52:17.330 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.012+0000 7f32f349f700 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-03-30T13:52:17.331 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: ** DB Stats ** 2024-03-30T13:52:17.331 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: Uptime(secs): 0.0 total, 0.0 interval 2024-03-30T13:52:17.331 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-03-30T13:52:17.331 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-03-30T13:52:17.331 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-03-30T13:52:17.331 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-03-30T13:52:17.331 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-03-30T13:52:17.331 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-03-30T13:52:17.331 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: ** Compaction Stats [default] ** 2024-03-30T13:52:17.331 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: 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-03-30T13:52:17.331 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-03-30T13:52:17.331 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: L0 2/0 85.19 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 98.5 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-03-30T13:52:17.331 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: Sum 2/0 85.19 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 98.5 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-03-30T13:52:17.331 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 98.5 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-03-30T13:52:17.331 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: ** Compaction Stats [default] ** 2024-03-30T13:52:17.332 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: 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-03-30T13:52:17.332 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-03-30T13:52:17.332 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 98.5 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-03-30T13:52:17.332 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-03-30T13:52:17.332 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: Uptime(secs): 0.0 total, 0.0 interval 2024-03-30T13:52:17.332 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: Flush(GB): cumulative 0.000, interval 0.000 2024-03-30T13:52:17.332 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: AddFile(GB): cumulative 0.000, interval 0.000 2024-03-30T13:52:17.332 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: AddFile(Total Files): cumulative 0, interval 0 2024-03-30T13:52:17.332 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: AddFile(L0 Files): cumulative 0, interval 0 2024-03-30T13:52:17.332 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: AddFile(Keys): cumulative 0, interval 0 2024-03-30T13:52:17.332 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: Cumulative compaction: 0.00 GB write, 19.80 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-03-30T13:52:17.332 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: Interval compaction: 0.00 GB write, 19.80 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-03-30T13:52:17.332 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: 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-03-30T13:52:17.332 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: Block cache BinnedLRUCache@0x55a8777f1090#7 capacity: 512.00 MB usage: 1.19 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.3e-05 secs_since: 0 2024-03-30T13:52:17.333 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: Block cache entry stats(count,size,portion): FilterBlock(2,0.77 KB,0.000146031%) IndexBlock(2,0.42 KB,8.04663e-05%) Misc(1,0.00 KB,0%) 2024-03-30T13:52:17.333 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: ** File Read Latency Histogram By Level [default] ** 2024-03-30T13:52:17.333 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: debug 2024-03-30T13:52:17.016+0000 7f3304d3dc80 0 starting mon.a rank 0 at public addrs [v2:172.21.15.26:3300/0,v1:172.21.15.26:6789/0] at bind addrs [v2:172.21.15.26:3300/0,v1:172.21.15.26:6789/0] mon_data /var/lib/ceph/mon/ceph-a fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T13:52:17.333 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: cluster 2024-03-30T13:52:17.044741+0000 mon.a (mon.0) 1 : cluster 1 mon.a is new leader, mons a in quorum (ranks 0) 2024-03-30T13:52:17.333 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: cluster 2024-03-30T13:52:17.044836+0000 mon.a (mon.0) 2 : cluster 0 monmap epoch 1 2024-03-30T13:52:17.333 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: cluster 2024-03-30T13:52:17.044854+0000 mon.a (mon.0) 3 : cluster 0 fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T13:52:17.333 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: cluster 2024-03-30T13:52:17.044876+0000 mon.a (mon.0) 4 : cluster 0 last_changed 2024-03-30T13:52:06.246947+0000 2024-03-30T13:52:17.333 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: cluster 2024-03-30T13:52:17.044891+0000 mon.a (mon.0) 5 : cluster 0 created 2024-03-30T13:52:06.246947+0000 2024-03-30T13:52:17.333 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: cluster 2024-03-30T13:52:17.044913+0000 mon.a (mon.0) 6 : cluster 0 min_mon_release 19 (squid) 2024-03-30T13:52:17.333 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: cluster 2024-03-30T13:52:17.044927+0000 mon.a (mon.0) 7 : cluster 0 election_strategy: 1 2024-03-30T13:52:17.333 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: cluster 2024-03-30T13:52:17.044960+0000 mon.a (mon.0) 8 : cluster 0 0: [v2:172.21.15.26:3300/0,v1:172.21.15.26:6789/0] mon.a 2024-03-30T13:52:17.333 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: cluster 2024-03-30T13:52:17.045421+0000 mon.a (mon.0) 9 : cluster 0 fsmap 2024-03-30T13:52:17.333 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: cluster 2024-03-30T13:52:17.045463+0000 mon.a (mon.0) 10 : cluster 0 osdmap e1: 0 total, 0 up, 0 in 2024-03-30T13:52:17.333 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:17 smithi026 bash[21443]: cluster 2024-03-30T13:52:17.045894+0000 mon.a (mon.0) 11 : cluster 0 mgrmap e1: no daemons active 2024-03-30T13:52:17.937 INFO:teuthology.orchestra.run.smithi026.stdout:Wrote config to /etc/ceph/ceph.conf 2024-03-30T13:52:17.963 INFO:teuthology.orchestra.run.smithi026.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-03-30T13:52:17.963 INFO:teuthology.orchestra.run.smithi026.stdout:Creating mgr... 2024-03-30T13:52:17.963 INFO:teuthology.orchestra.run.smithi026.stdout:Verifying port 0.0.0.0:9283 ... 2024-03-30T13:52:17.963 INFO:teuthology.orchestra.run.smithi026.stdout:Verifying port 0.0.0.0:8765 ... 2024-03-30T13:52:18.296 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:18 smithi026 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:52:18.306 INFO:teuthology.orchestra.run.smithi026.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@mgr.a 2024-03-30T13:52:18.306 INFO:teuthology.orchestra.run.smithi026.stdout:systemctl: stderr Failed to reset failed state of unit ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@mgr.a.service: Unit ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@mgr.a.service not loaded. 2024-03-30T13:52:18.518 INFO:teuthology.orchestra.run.smithi026.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4.target.wants/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@mgr.a.service -> /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service. 2024-03-30T13:52:18.526 INFO:teuthology.orchestra.run.smithi026.stdout:firewalld does not appear to be present 2024-03-30T13:52:18.526 INFO:teuthology.orchestra.run.smithi026.stdout:Not possible to enable service . firewalld.service is not available 2024-03-30T13:52:18.526 INFO:teuthology.orchestra.run.smithi026.stdout:firewalld does not appear to be present 2024-03-30T13:52:18.526 INFO:teuthology.orchestra.run.smithi026.stdout:Not possible to open ports <[9283, 8765]>. firewalld.service is not available 2024-03-30T13:52:18.526 INFO:teuthology.orchestra.run.smithi026.stdout:Waiting for mgr to start... 2024-03-30T13:52:18.526 INFO:teuthology.orchestra.run.smithi026.stdout:Waiting for mgr... 2024-03-30T13:52:18.564 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:18 smithi026 bash[21443]: audit 2024-03-30T13:52:17.299053+0000 mon.a (mon.0) 12 : audit 1 from='client.? 172.21.15.26:0/1957188122' entity='client.admin' 2024-03-30T13:52:18.564 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:18 smithi026 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:52:20.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:20 smithi026 bash[21443]: audit 2024-03-30T13:52:19.987407+0000 mon.a (mon.0) 13 : audit 0 from='client.? 172.21.15.26:0/3547532311' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-03-30T13:52:20.363 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:19 smithi026 bash[21693]: debug 2024-03-30T13:52:19.880+0000 7fcebcae8200 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-03-30T13:52:20.582 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout 2024-03-30T13:52:20.583 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout { 2024-03-30T13:52:20.583 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "fsid": "56554a52-ee9c-11ee-b647-cb9ed24678a4", 2024-03-30T13:52:20.583 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "health": { 2024-03-30T13:52:20.583 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-03-30T13:52:20.583 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-03-30T13:52:20.583 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-03-30T13:52:20.583 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout }, 2024-03-30T13:52:20.583 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-03-30T13:52:20.583 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-03-30T13:52:20.583 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout 0 2024-03-30T13:52:20.583 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout ], 2024-03-30T13:52:20.583 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-03-30T13:52:20.584 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "a" 2024-03-30T13:52:20.584 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout ], 2024-03-30T13:52:20.584 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2024-03-30T13:52:20.584 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "monmap": { 2024-03-30T13:52:20.584 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-30T13:52:20.584 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-03-30T13:52:20.584 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-03-30T13:52:20.584 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout }, 2024-03-30T13:52:20.584 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-03-30T13:52:20.584 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-30T13:52:20.584 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-03-30T13:52:20.584 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-03-30T13:52:20.584 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-03-30T13:52:20.584 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-03-30T13:52:20.584 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-03-30T13:52:20.585 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-03-30T13:52:20.588 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout }, 2024-03-30T13:52:20.588 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-03-30T13:52:20.588 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-03-30T13:52:20.588 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-03-30T13:52:20.588 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-03-30T13:52:20.588 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-03-30T13:52:20.588 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-03-30T13:52:20.588 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-03-30T13:52:20.588 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-03-30T13:52:20.589 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-03-30T13:52:20.589 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout }, 2024-03-30T13:52:20.589 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-03-30T13:52:20.589 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-30T13:52:20.589 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-03-30T13:52:20.589 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-03-30T13:52:20.589 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout }, 2024-03-30T13:52:20.589 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-03-30T13:52:20.589 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "available": false, 2024-03-30T13:52:20.589 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-03-30T13:52:20.589 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "modules": [ 2024-03-30T13:52:20.589 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "iostat", 2024-03-30T13:52:20.589 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "nfs", 2024-03-30T13:52:20.589 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "restful" 2024-03-30T13:52:20.589 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout ], 2024-03-30T13:52:20.590 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "services": {} 2024-03-30T13:52:20.590 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout }, 2024-03-30T13:52:20.590 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-03-30T13:52:20.590 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-30T13:52:20.590 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "modified": "2024-03-30T13:52:10.893659+0000", 2024-03-30T13:52:20.590 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "services": {} 2024-03-30T13:52:20.590 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout }, 2024-03-30T13:52:20.590 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-03-30T13:52:20.590 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout } 2024-03-30T13:52:20.590 INFO:teuthology.orchestra.run.smithi026.stdout:mgr not available, waiting (1/15)... 2024-03-30T13:52:21.863 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:21 smithi026 bash[21693]: debug 2024-03-30T13:52:21.516+0000 7fcebcae8200 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-03-30T13:52:21.863 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:21 smithi026 bash[21693]: debug 2024-03-30T13:52:21.616+0000 7fcebcae8200 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-03-30T13:52:22.363 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:21 smithi026 bash[21693]: debug 2024-03-30T13:52:21.872+0000 7fcebcae8200 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-03-30T13:52:22.862 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:22 smithi026 bash[21693]: debug 2024-03-30T13:52:22.704+0000 7fcebcae8200 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-03-30T13:52:22.863 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:22 smithi026 bash[21693]: debug 2024-03-30T13:52:22.816+0000 7fcebcae8200 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-03-30T13:52:23.293 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:22 smithi026 bash[21693]: debug 2024-03-30T13:52:22.924+0000 7fcebcae8200 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-03-30T13:52:23.612 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:23 smithi026 bash[21693]: debug 2024-03-30T13:52:23.288+0000 7fcebcae8200 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-03-30T13:52:23.612 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:23 smithi026 bash[21693]: debug 2024-03-30T13:52:23.408+0000 7fcebcae8200 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-03-30T13:52:23.613 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:23 smithi026 bash[21693]: debug 2024-03-30T13:52:23.520+0000 7fcebcae8200 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-03-30T13:52:24.112 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:23 smithi026 bash[21443]: audit 2024-03-30T13:52:23.767088+0000 mon.a (mon.0) 14 : audit 0 from='client.? 172.21.15.26:0/3123461044' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-03-30T13:52:24.113 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:23 smithi026 bash[21693]: debug 2024-03-30T13:52:23.888+0000 7fcebcae8200 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-03-30T13:52:24.404 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:24 smithi026 bash[21693]: debug 2024-03-30T13:52:24.132+0000 7fcebcae8200 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-03-30T13:52:24.404 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:24 smithi026 bash[21693]: debug 2024-03-30T13:52:24.400+0000 7fcebcae8200 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-03-30T13:52:24.440 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout 2024-03-30T13:52:24.440 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout { 2024-03-30T13:52:24.441 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "fsid": "56554a52-ee9c-11ee-b647-cb9ed24678a4", 2024-03-30T13:52:24.441 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "health": { 2024-03-30T13:52:24.441 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-03-30T13:52:24.441 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-03-30T13:52:24.441 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-03-30T13:52:24.441 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout }, 2024-03-30T13:52:24.441 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-03-30T13:52:24.441 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-03-30T13:52:24.441 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout 0 2024-03-30T13:52:24.441 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout ], 2024-03-30T13:52:24.441 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-03-30T13:52:24.441 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "a" 2024-03-30T13:52:24.441 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout ], 2024-03-30T13:52:24.441 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "quorum_age": 6, 2024-03-30T13:52:24.441 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "monmap": { 2024-03-30T13:52:24.442 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-30T13:52:24.442 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-03-30T13:52:24.442 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-03-30T13:52:24.442 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout }, 2024-03-30T13:52:24.442 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-03-30T13:52:24.442 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-30T13:52:24.442 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-03-30T13:52:24.442 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-03-30T13:52:24.442 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-03-30T13:52:24.442 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-03-30T13:52:24.442 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-03-30T13:52:24.442 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-03-30T13:52:24.442 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout }, 2024-03-30T13:52:24.442 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-03-30T13:52:24.442 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-03-30T13:52:24.443 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-03-30T13:52:24.443 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-03-30T13:52:24.443 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-03-30T13:52:24.443 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-03-30T13:52:24.443 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-03-30T13:52:24.443 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-03-30T13:52:24.443 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-03-30T13:52:24.443 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout }, 2024-03-30T13:52:24.443 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-03-30T13:52:24.443 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-30T13:52:24.443 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-03-30T13:52:24.443 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-03-30T13:52:24.443 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout }, 2024-03-30T13:52:24.443 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-03-30T13:52:24.443 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "available": false, 2024-03-30T13:52:24.443 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-03-30T13:52:24.444 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "modules": [ 2024-03-30T13:52:24.444 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "iostat", 2024-03-30T13:52:24.444 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "nfs", 2024-03-30T13:52:24.444 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "restful" 2024-03-30T13:52:24.444 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout ], 2024-03-30T13:52:24.444 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "services": {} 2024-03-30T13:52:24.444 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout }, 2024-03-30T13:52:24.444 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-03-30T13:52:24.444 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-30T13:52:24.444 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "modified": "2024-03-30T13:52:10.893659+0000", 2024-03-30T13:52:24.444 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "services": {} 2024-03-30T13:52:24.444 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout }, 2024-03-30T13:52:24.444 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-03-30T13:52:24.444 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout } 2024-03-30T13:52:24.444 INFO:teuthology.orchestra.run.smithi026.stdout:mgr not available, waiting (2/15)... 2024-03-30T13:52:24.804 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:24 smithi026 bash[21693]: debug 2024-03-30T13:52:24.520+0000 7fcebcae8200 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-03-30T13:52:25.112 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:24 smithi026 bash[21693]: debug 2024-03-30T13:52:24.800+0000 7fcebcae8200 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-03-30T13:52:25.591 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:25 smithi026 bash[21693]: debug 2024-03-30T13:52:25.220+0000 7fcebcae8200 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-03-30T13:52:25.591 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:25 smithi026 bash[21693]: debug 2024-03-30T13:52:25.464+0000 7fcebcae8200 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-03-30T13:52:25.591 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:25 smithi026 bash[21693]: debug 2024-03-30T13:52:25.588+0000 7fcebcae8200 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-03-30T13:52:26.114 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:25 smithi026 bash[21693]: debug 2024-03-30T13:52:25.840+0000 7fcebcae8200 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-03-30T13:52:27.214 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:26 smithi026 bash[21693]: debug 2024-03-30T13:52:26.876+0000 7fcebcae8200 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-03-30T13:52:27.214 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:26 smithi026 bash[21693]: debug 2024-03-30T13:52:26.992+0000 7fcebcae8200 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-03-30T13:52:27.536 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:27 smithi026 bash[21693]: debug 2024-03-30T13:52:27.296+0000 7fcebcae8200 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-03-30T13:52:27.536 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:27 smithi026 bash[21693]: debug 2024-03-30T13:52:27.420+0000 7fcebcae8200 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-03-30T13:52:27.862 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:27 smithi026 bash[21443]: audit 2024-03-30T13:52:27.525221+0000 mon.a (mon.0) 15 : audit 0 from='client.? 172.21.15.26:0/9513256' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-03-30T13:52:28.157 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout 2024-03-30T13:52:28.158 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout { 2024-03-30T13:52:28.158 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "fsid": "56554a52-ee9c-11ee-b647-cb9ed24678a4", 2024-03-30T13:52:28.158 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "health": { 2024-03-30T13:52:28.158 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-03-30T13:52:28.158 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-03-30T13:52:28.158 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-03-30T13:52:28.158 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout }, 2024-03-30T13:52:28.158 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-03-30T13:52:28.158 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-03-30T13:52:28.158 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout 0 2024-03-30T13:52:28.158 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout ], 2024-03-30T13:52:28.159 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-03-30T13:52:28.159 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "a" 2024-03-30T13:52:28.160 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout ], 2024-03-30T13:52:28.160 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "quorum_age": 10, 2024-03-30T13:52:28.160 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "monmap": { 2024-03-30T13:52:28.160 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-30T13:52:28.160 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-03-30T13:52:28.161 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-03-30T13:52:28.161 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout }, 2024-03-30T13:52:28.161 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-03-30T13:52:28.161 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-30T13:52:28.161 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-03-30T13:52:28.161 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-03-30T13:52:28.161 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-03-30T13:52:28.161 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-03-30T13:52:28.164 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-03-30T13:52:28.165 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-03-30T13:52:28.165 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout }, 2024-03-30T13:52:28.165 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-03-30T13:52:28.165 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-03-30T13:52:28.165 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-03-30T13:52:28.165 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-03-30T13:52:28.165 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-03-30T13:52:28.165 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-03-30T13:52:28.165 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-03-30T13:52:28.165 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-03-30T13:52:28.165 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-03-30T13:52:28.165 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout }, 2024-03-30T13:52:28.165 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-03-30T13:52:28.165 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-30T13:52:28.166 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-03-30T13:52:28.166 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-03-30T13:52:28.166 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout }, 2024-03-30T13:52:28.166 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-03-30T13:52:28.166 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "available": false, 2024-03-30T13:52:28.166 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-03-30T13:52:28.166 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "modules": [ 2024-03-30T13:52:28.166 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "iostat", 2024-03-30T13:52:28.166 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "nfs", 2024-03-30T13:52:28.166 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "restful" 2024-03-30T13:52:28.166 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout ], 2024-03-30T13:52:28.166 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "services": {} 2024-03-30T13:52:28.166 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout }, 2024-03-30T13:52:28.166 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-03-30T13:52:28.167 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-30T13:52:28.167 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "modified": "2024-03-30T13:52:10.893659+0000", 2024-03-30T13:52:28.167 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "services": {} 2024-03-30T13:52:28.167 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout }, 2024-03-30T13:52:28.167 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-03-30T13:52:28.167 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout } 2024-03-30T13:52:28.167 INFO:teuthology.orchestra.run.smithi026.stdout:mgr not available, waiting (3/15)... 2024-03-30T13:52:28.362 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:27 smithi026 bash[21693]: debug 2024-03-30T13:52:27.892+0000 7fcebcae8200 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-03-30T13:52:28.363 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:28 smithi026 bash[21693]: debug 2024-03-30T13:52:28.016+0000 7fcebcae8200 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-03-30T13:52:28.863 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:28 smithi026 bash[21443]: cluster 2024-03-30T13:52:28.019683+0000 mon.a (mon.0) 16 : cluster 1 Activating manager daemon a 2024-03-30T13:52:28.863 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:28 smithi026 bash[21443]: cluster 2024-03-30T13:52:28.026250+0000 mon.a (mon.0) 17 : cluster 0 mgrmap e2: a(active, starting, since 0.00709005s) 2024-03-30T13:52:28.863 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:28 smithi026 bash[21443]: audit 2024-03-30T13:52:28.028652+0000 mon.a (mon.0) 18 : audit 0 from='mgr.14100 172.21.15.26:0/2500266506' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-03-30T13:52:28.863 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:28 smithi026 bash[21443]: audit 2024-03-30T13:52:28.029221+0000 mon.a (mon.0) 19 : audit 0 from='mgr.14100 172.21.15.26:0/2500266506' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-03-30T13:52:28.863 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:28 smithi026 bash[21443]: audit 2024-03-30T13:52:28.029630+0000 mon.a (mon.0) 20 : audit 0 from='mgr.14100 172.21.15.26:0/2500266506' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-03-30T13:52:28.863 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:28 smithi026 bash[21443]: audit 2024-03-30T13:52:28.029981+0000 mon.a (mon.0) 21 : audit 0 from='mgr.14100 172.21.15.26:0/2500266506' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-03-30T13:52:28.863 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:28 smithi026 bash[21443]: audit 2024-03-30T13:52:28.030355+0000 mon.a (mon.0) 22 : audit 0 from='mgr.14100 172.21.15.26:0/2500266506' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-03-30T13:52:28.863 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:28 smithi026 bash[21443]: audit 2024-03-30T13:52:28.030812+0000 mon.a (mon.0) 23 : audit 0 from='mgr.14100 172.21.15.26:0/2500266506' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-03-30T13:52:28.863 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:28 smithi026 bash[21443]: audit 2024-03-30T13:52:28.031224+0000 mon.a (mon.0) 24 : audit 0 from='mgr.14100 172.21.15.26:0/2500266506' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-03-30T13:52:28.863 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:28 smithi026 bash[21443]: audit 2024-03-30T13:52:28.031593+0000 mon.a (mon.0) 25 : audit 0 from='mgr.14100 172.21.15.26:0/2500266506' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-03-30T13:52:28.864 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:28 smithi026 bash[21443]: cluster 2024-03-30T13:52:28.054374+0000 mon.a (mon.0) 26 : cluster 1 Manager daemon a is now available 2024-03-30T13:52:28.864 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:28 smithi026 bash[21443]: audit 2024-03-30T13:52:28.068771+0000 mon.a (mon.0) 27 : audit 1 from='mgr.14100 172.21.15.26:0/2500266506' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-03-30T13:52:28.864 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:28 smithi026 bash[21443]: audit 2024-03-30T13:52:28.071765+0000 mon.a (mon.0) 28 : audit 1 from='mgr.14100 172.21.15.26:0/2500266506' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-03-30T13:52:28.864 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:28 smithi026 bash[21443]: audit 2024-03-30T13:52:28.074637+0000 mon.a (mon.0) 29 : audit 1 from='mgr.14100 172.21.15.26:0/2500266506' entity='mgr.a' 2024-03-30T13:52:28.864 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:28 smithi026 bash[21443]: audit 2024-03-30T13:52:28.076436+0000 mon.a (mon.0) 30 : audit 1 from='mgr.14100 172.21.15.26:0/2500266506' entity='mgr.a' 2024-03-30T13:52:28.864 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:28 smithi026 bash[21443]: audit 2024-03-30T13:52:28.078163+0000 mon.a (mon.0) 31 : audit 1 from='mgr.14100 172.21.15.26:0/2500266506' entity='mgr.a' 2024-03-30T13:52:30.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:30 smithi026 bash[21443]: cluster 2024-03-30T13:52:29.035114+0000 mon.a (mon.0) 32 : cluster 0 mgrmap e3: a(active, since 1.01595s) 2024-03-30T13:52:32.280 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout 2024-03-30T13:52:32.280 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout { 2024-03-30T13:52:32.280 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "fsid": "56554a52-ee9c-11ee-b647-cb9ed24678a4", 2024-03-30T13:52:32.280 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "health": { 2024-03-30T13:52:32.280 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-03-30T13:52:32.280 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-03-30T13:52:32.281 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-03-30T13:52:32.281 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout }, 2024-03-30T13:52:32.283 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-03-30T13:52:32.283 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-03-30T13:52:32.283 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout 0 2024-03-30T13:52:32.283 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout ], 2024-03-30T13:52:32.283 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-03-30T13:52:32.283 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "a" 2024-03-30T13:52:32.283 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout ], 2024-03-30T13:52:32.283 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "quorum_age": 14, 2024-03-30T13:52:32.283 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "monmap": { 2024-03-30T13:52:32.283 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-30T13:52:32.283 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-03-30T13:52:32.283 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-03-30T13:52:32.283 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout }, 2024-03-30T13:52:32.284 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-03-30T13:52:32.284 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-30T13:52:32.284 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-03-30T13:52:32.284 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-03-30T13:52:32.284 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-03-30T13:52:32.287 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-03-30T13:52:32.287 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-03-30T13:52:32.287 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-03-30T13:52:32.287 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout }, 2024-03-30T13:52:32.288 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-03-30T13:52:32.288 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-03-30T13:52:32.288 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-03-30T13:52:32.288 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-03-30T13:52:32.288 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-03-30T13:52:32.288 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-03-30T13:52:32.288 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-03-30T13:52:32.288 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-03-30T13:52:32.288 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-03-30T13:52:32.288 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout }, 2024-03-30T13:52:32.288 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-03-30T13:52:32.288 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-30T13:52:32.288 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-03-30T13:52:32.288 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-03-30T13:52:32.288 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout }, 2024-03-30T13:52:32.289 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-03-30T13:52:32.289 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "available": true, 2024-03-30T13:52:32.289 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-03-30T13:52:32.289 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "modules": [ 2024-03-30T13:52:32.289 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "iostat", 2024-03-30T13:52:32.289 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "nfs", 2024-03-30T13:52:32.289 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "restful" 2024-03-30T13:52:32.289 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout ], 2024-03-30T13:52:32.289 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "services": {} 2024-03-30T13:52:32.289 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout }, 2024-03-30T13:52:32.289 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-03-30T13:52:32.289 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-30T13:52:32.289 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "modified": "2024-03-30T13:52:10.893659+0000", 2024-03-30T13:52:32.289 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "services": {} 2024-03-30T13:52:32.289 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout }, 2024-03-30T13:52:32.290 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-03-30T13:52:32.290 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout } 2024-03-30T13:52:32.290 INFO:teuthology.orchestra.run.smithi026.stdout:mgr is available 2024-03-30T13:52:32.309 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:32 smithi026 bash[21443]: cluster 2024-03-30T13:52:31.029407+0000 mon.a (mon.0) 33 : cluster 0 mgrmap e4: a(active, since 3s) 2024-03-30T13:52:32.309 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:32 smithi026 bash[21443]: audit 2024-03-30T13:52:31.678172+0000 mon.a (mon.0) 34 : audit 0 from='client.? 172.21.15.26:0/3613752551' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-03-30T13:52:34.113 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:33 smithi026 bash[21443]: audit 2024-03-30T13:52:33.610212+0000 mon.a (mon.0) 35 : audit 1 from='client.? 172.21.15.26:0/2439777966' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-03-30T13:52:34.113 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:33 smithi026 bash[21443]: audit 2024-03-30T13:52:33.613720+0000 mon.a (mon.0) 36 : audit 1 from='client.? 172.21.15.26:0/2439777966' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-03-30T13:52:34.244 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout 2024-03-30T13:52:34.245 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout [global] 2024-03-30T13:52:34.245 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout fsid = 56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T13:52:34.245 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-03-30T13:52:34.245 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-03-30T13:52:34.245 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-03-30T13:52:34.245 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-03-30T13:52:34.245 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout 2024-03-30T13:52:34.245 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout [mgr] 2024-03-30T13:52:34.245 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-03-30T13:52:34.245 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout 2024-03-30T13:52:34.245 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout [osd] 2024-03-30T13:52:34.245 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-03-30T13:52:34.246 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-03-30T13:52:34.246 INFO:teuthology.orchestra.run.smithi026.stdout:Enabling cephadm module... 2024-03-30T13:52:36.112 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:35 smithi026 bash[21443]: audit 2024-03-30T13:52:35.633711+0000 mon.a (mon.0) 37 : audit 1 from='client.? 172.21.15.26:0/2739534171' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-03-30T13:52:36.112 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:35 smithi026 bash[21693]: ignoring --setuser ceph since I am not root 2024-03-30T13:52:36.113 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:35 smithi026 bash[21693]: ignoring --setgroup ceph since I am not root 2024-03-30T13:52:36.113 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:35 smithi026 bash[21693]: debug 2024-03-30T13:52:35.880+0000 7f94ffc12200 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-03-30T13:52:36.946 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:36 smithi026 bash[21443]: audit 2024-03-30T13:52:35.685645+0000 mon.a (mon.0) 38 : audit 1 from='client.? 172.21.15.26:0/2739534171' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-03-30T13:52:36.946 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:36 smithi026 bash[21443]: cluster 2024-03-30T13:52:35.690572+0000 mon.a (mon.0) 39 : cluster 0 mgrmap e5: a(active, since 7s) 2024-03-30T13:52:37.843 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:37 smithi026 bash[21693]: debug 2024-03-30T13:52:37.520+0000 7f94ffc12200 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-03-30T13:52:37.843 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:37 smithi026 bash[21693]: debug 2024-03-30T13:52:37.620+0000 7f94ffc12200 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-03-30T13:52:37.844 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:37 smithi026 bash[21443]: audit 2024-03-30T13:52:37.625242+0000 mon.a (mon.0) 40 : audit 0 from='client.? 172.21.15.26:0/3755909744' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-03-30T13:52:38.112 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:37 smithi026 bash[21693]: debug 2024-03-30T13:52:37.872+0000 7f94ffc12200 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-03-30T13:52:38.220 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout { 2024-03-30T13:52:38.220 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-03-30T13:52:38.220 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "available": true, 2024-03-30T13:52:38.220 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-03-30T13:52:38.220 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-03-30T13:52:38.220 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout } 2024-03-30T13:52:38.220 INFO:teuthology.orchestra.run.smithi026.stdout:Waiting for the mgr to restart... 2024-03-30T13:52:38.221 INFO:teuthology.orchestra.run.smithi026.stdout:Waiting for mgr epoch 5... 2024-03-30T13:52:38.954 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:38 smithi026 bash[21693]: debug 2024-03-30T13:52:38.696+0000 7f94ffc12200 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-03-30T13:52:38.954 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:38 smithi026 bash[21693]: debug 2024-03-30T13:52:38.812+0000 7f94ffc12200 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-03-30T13:52:38.954 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:38 smithi026 bash[21693]: debug 2024-03-30T13:52:38.916+0000 7f94ffc12200 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-03-30T13:52:39.508 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:39 smithi026 bash[21693]: debug 2024-03-30T13:52:39.284+0000 7f94ffc12200 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-03-30T13:52:39.508 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:39 smithi026 bash[21693]: debug 2024-03-30T13:52:39.400+0000 7f94ffc12200 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-03-30T13:52:40.362 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:39 smithi026 bash[21693]: debug 2024-03-30T13:52:39.508+0000 7f94ffc12200 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-03-30T13:52:40.362 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:39 smithi026 bash[21693]: debug 2024-03-30T13:52:39.872+0000 7f94ffc12200 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-03-30T13:52:40.362 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:40 smithi026 bash[21693]: debug 2024-03-30T13:52:40.116+0000 7f94ffc12200 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-03-30T13:52:40.782 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:40 smithi026 bash[21693]: debug 2024-03-30T13:52:40.384+0000 7f94ffc12200 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-03-30T13:52:40.782 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:40 smithi026 bash[21693]: debug 2024-03-30T13:52:40.500+0000 7f94ffc12200 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-03-30T13:52:41.112 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:40 smithi026 bash[21693]: debug 2024-03-30T13:52:40.780+0000 7f94ffc12200 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-03-30T13:52:41.574 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:41 smithi026 bash[21693]: debug 2024-03-30T13:52:41.204+0000 7f94ffc12200 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-03-30T13:52:41.574 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:41 smithi026 bash[21693]: debug 2024-03-30T13:52:41.447+0000 7f94ffc12200 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-03-30T13:52:41.826 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:41 smithi026 bash[21693]: debug 2024-03-30T13:52:41.571+0000 7f94ffc12200 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-03-30T13:52:42.112 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:41 smithi026 bash[21693]: debug 2024-03-30T13:52:41.823+0000 7f94ffc12200 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-03-30T13:52:43.112 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:42 smithi026 bash[21693]: debug 2024-03-30T13:52:42.855+0000 7f94ffc12200 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-03-30T13:52:43.112 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:42 smithi026 bash[21693]: debug 2024-03-30T13:52:42.971+0000 7f94ffc12200 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-03-30T13:52:43.612 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:43 smithi026 bash[21693]: debug 2024-03-30T13:52:43.271+0000 7f94ffc12200 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-03-30T13:52:43.612 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:43 smithi026 bash[21693]: debug 2024-03-30T13:52:43.391+0000 7f94ffc12200 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-03-30T13:52:44.112 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:43 smithi026 bash[21693]: debug 2024-03-30T13:52:43.855+0000 7f94ffc12200 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-03-30T13:52:44.112 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:43 smithi026 bash[21693]: debug 2024-03-30T13:52:43.979+0000 7f94ffc12200 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-03-30T13:52:44.112 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:44 smithi026 bash[21443]: cluster 2024-03-30T13:52:44.002327+0000 mon.a (mon.0) 41 : cluster 1 Active manager daemon a restarted 2024-03-30T13:52:44.113 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:44 smithi026 bash[21443]: cluster 2024-03-30T13:52:44.002794+0000 mon.a (mon.0) 42 : cluster 1 Activating manager daemon a 2024-03-30T13:52:44.113 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:44 smithi026 bash[21443]: cluster 2024-03-30T13:52:44.006440+0000 mon.a (mon.0) 43 : cluster 0 osdmap e2: 0 total, 0 up, 0 in 2024-03-30T13:52:44.113 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:44 smithi026 bash[21443]: cluster 2024-03-30T13:52:44.006573+0000 mon.a (mon.0) 44 : cluster 0 mgrmap e6: a(active, starting, since 0.00395792s) 2024-03-30T13:52:44.113 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:44 smithi026 bash[21443]: audit 2024-03-30T13:52:44.010302+0000 mon.a (mon.0) 45 : audit 0 from='mgr.14120 172.21.15.26:0/1989591988' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-03-30T13:52:44.113 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:44 smithi026 bash[21443]: audit 2024-03-30T13:52:44.011845+0000 mon.a (mon.0) 46 : audit 0 from='mgr.14120 172.21.15.26:0/1989591988' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-03-30T13:52:44.113 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:44 smithi026 bash[21443]: audit 2024-03-30T13:52:44.013297+0000 mon.a (mon.0) 47 : audit 0 from='mgr.14120 172.21.15.26:0/1989591988' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-03-30T13:52:44.113 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:44 smithi026 bash[21443]: audit 2024-03-30T13:52:44.013475+0000 mon.a (mon.0) 48 : audit 0 from='mgr.14120 172.21.15.26:0/1989591988' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-03-30T13:52:44.113 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:44 smithi026 bash[21443]: audit 2024-03-30T13:52:44.013596+0000 mon.a (mon.0) 49 : audit 0 from='mgr.14120 172.21.15.26:0/1989591988' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-03-30T13:52:44.113 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:44 smithi026 bash[21443]: cluster 2024-03-30T13:52:44.038690+0000 mon.a (mon.0) 50 : cluster 1 Manager daemon a is now available 2024-03-30T13:52:45.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:45 smithi026 bash[21443]: cephadm 2024-03-30T13:52:44.057288+0000 mgr.a (mgr.14120) 1 : cephadm 1 Found migration_current of "None". Setting to last migration. 2024-03-30T13:52:45.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:45 smithi026 bash[21443]: audit 2024-03-30T13:52:44.059666+0000 mon.a (mon.0) 51 : audit 1 from='mgr.14120 172.21.15.26:0/1989591988' entity='mgr.a' 2024-03-30T13:52:45.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:45 smithi026 bash[21443]: audit 2024-03-30T13:52:44.063453+0000 mon.a (mon.0) 52 : audit 1 from='mgr.14120 172.21.15.26:0/1989591988' entity='mgr.a' 2024-03-30T13:52:45.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:45 smithi026 bash[21443]: audit 2024-03-30T13:52:44.067779+0000 mon.a (mon.0) 53 : audit 1 from='mgr.14120 172.21.15.26:0/1989591988' entity='mgr.a' 2024-03-30T13:52:45.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:45 smithi026 bash[21443]: audit 2024-03-30T13:52:44.072294+0000 mon.a (mon.0) 54 : audit 0 from='mgr.14120 172.21.15.26:0/1989591988' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:52:45.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:45 smithi026 bash[21443]: audit 2024-03-30T13:52:44.077043+0000 mon.a (mon.0) 55 : audit 0 from='mgr.14120 172.21.15.26:0/1989591988' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:52:45.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:45 smithi026 bash[21443]: audit 2024-03-30T13:52:44.087245+0000 mon.a (mon.0) 56 : audit 1 from='mgr.14120 172.21.15.26:0/1989591988' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-03-30T13:52:45.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:45 smithi026 bash[21443]: audit 2024-03-30T13:52:44.089916+0000 mon.a (mon.0) 57 : audit 1 from='mgr.14120 172.21.15.26:0/1989591988' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-03-30T13:52:45.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:45 smithi026 bash[21443]: audit 2024-03-30T13:52:44.802218+0000 mon.a (mon.0) 58 : audit 1 from='mgr.14120 172.21.15.26:0/1989591988' entity='mgr.a' 2024-03-30T13:52:45.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:45 smithi026 bash[21443]: audit 2024-03-30T13:52:44.807736+0000 mon.a (mon.0) 59 : audit 1 from='mgr.14120 172.21.15.26:0/1989591988' entity='mgr.a' 2024-03-30T13:52:45.364 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:45 smithi026 bash[21443]: cluster 2024-03-30T13:52:45.010305+0000 mon.a (mon.0) 60 : cluster 0 mgrmap e7: a(active, since 1.00769s) 2024-03-30T13:52:45.732 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout { 2024-03-30T13:52:45.732 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-03-30T13:52:45.732 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "initialized": true 2024-03-30T13:52:45.733 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout } 2024-03-30T13:52:45.733 INFO:teuthology.orchestra.run.smithi026.stdout:mgr epoch 5 is available 2024-03-30T13:52:45.733 INFO:teuthology.orchestra.run.smithi026.stdout:Setting orchestrator backend to cephadm... 2024-03-30T13:52:46.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:46 smithi026 bash[21443]: audit 2024-03-30T13:52:45.012456+0000 mgr.a (mgr.14120) 2 : audit 0 from='client.14124 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-03-30T13:52:46.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:46 smithi026 bash[21443]: audit 2024-03-30T13:52:45.025110+0000 mgr.a (mgr.14120) 3 : audit 0 from='client.14124 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-03-30T13:52:47.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:47 smithi026 bash[21443]: cephadm 2024-03-30T13:52:45.902790+0000 mgr.a (mgr.14120) 4 : cephadm 1 [30/Mar/2024:13:52:45] ENGINE Bus STARTING 2024-03-30T13:52:47.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:47 smithi026 bash[21443]: cephadm 2024-03-30T13:52:46.004655+0000 mgr.a (mgr.14120) 5 : cephadm 1 [30/Mar/2024:13:52:46] ENGINE Serving on http://172.21.15.26:8765 2024-03-30T13:52:47.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:47 smithi026 bash[21443]: cluster 2024-03-30T13:52:46.069055+0000 mon.a (mon.0) 61 : cluster 0 mgrmap e8: a(active, since 2s) 2024-03-30T13:52:47.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:47 smithi026 bash[21443]: cephadm 2024-03-30T13:52:46.126614+0000 mgr.a (mgr.14120) 6 : cephadm 1 [30/Mar/2024:13:52:46] ENGINE Serving on https://172.21.15.26:7150 2024-03-30T13:52:47.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:47 smithi026 bash[21443]: cephadm 2024-03-30T13:52:46.126789+0000 mgr.a (mgr.14120) 7 : cephadm 1 [30/Mar/2024:13:52:46] ENGINE Bus STARTED 2024-03-30T13:52:47.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:47 smithi026 bash[21443]: audit 2024-03-30T13:52:46.149924+0000 mon.a (mon.0) 62 : audit 0 from='mgr.14120 172.21.15.26:0/1989591988' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:52:47.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:47 smithi026 bash[21443]: audit 2024-03-30T13:52:47.015745+0000 mon.a (mon.0) 63 : audit 1 from='mgr.14120 172.21.15.26:0/1989591988' entity='mgr.a' 2024-03-30T13:52:48.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:48 smithi026 bash[21443]: audit 2024-03-30T13:52:47.007569+0000 mgr.a (mgr.14120) 8 : audit 0 from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:52:48.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:48 smithi026 bash[21443]: audit 2024-03-30T13:52:47.069345+0000 mon.a (mon.0) 64 : audit 0 from='mgr.14120 172.21.15.26:0/1989591988' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:52:49.603 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout value unchanged 2024-03-30T13:52:49.603 INFO:teuthology.orchestra.run.smithi026.stdout:Generating ssh key... 2024-03-30T13:52:50.112 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:49 smithi026 bash[21443]: audit 2024-03-30T13:52:49.005992+0000 mgr.a (mgr.14120) 9 : audit 0 from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:52:51.362 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:50 smithi026 bash[21693]: Generating public/private rsa key pair. 2024-03-30T13:52:51.362 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:50 smithi026 bash[21693]: Your identification has been saved in /tmp/tmpzoaac09e/key. 2024-03-30T13:52:51.363 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:50 smithi026 bash[21693]: Your public key has been saved in /tmp/tmpzoaac09e/key.pub. 2024-03-30T13:52:51.363 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:50 smithi026 bash[21693]: The key fingerprint is: 2024-03-30T13:52:51.363 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:50 smithi026 bash[21693]: SHA256:+/jBwbn5eGeKKnkYtEHPfuG2/+B3m/oMhq/zwifBKww ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T13:52:51.363 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:50 smithi026 bash[21693]: The key's randomart image is: 2024-03-30T13:52:51.363 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:50 smithi026 bash[21693]: +---[RSA 3072]----+ 2024-03-30T13:52:51.363 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:50 smithi026 bash[21693]: | | 2024-03-30T13:52:51.363 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:50 smithi026 bash[21693]: | . | 2024-03-30T13:52:51.363 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:50 smithi026 bash[21693]: | . o | 2024-03-30T13:52:51.363 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:50 smithi026 bash[21693]: | o o... | 2024-03-30T13:52:51.363 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:50 smithi026 bash[21693]: | . +S.=. | 2024-03-30T13:52:51.363 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:50 smithi026 bash[21693]: | oE.o+*. | 2024-03-30T13:52:51.363 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:50 smithi026 bash[21693]: | ++o*o+o | 2024-03-30T13:52:51.363 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:50 smithi026 bash[21693]: | + .=.%+o* o| 2024-03-30T13:52:51.363 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:50 smithi026 bash[21693]: | ooo*+%X+*.| 2024-03-30T13:52:51.364 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:52:50 smithi026 bash[21693]: +----[SHA256]-----+ 2024-03-30T13:52:52.255 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:51 smithi026 bash[21443]: audit 2024-03-30T13:52:50.852186+0000 mgr.a (mgr.14120) 10 : audit 0 from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:52:52.255 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:51 smithi026 bash[21443]: cephadm 2024-03-30T13:52:50.852513+0000 mgr.a (mgr.14120) 11 : cephadm 1 Generating ssh key... 2024-03-30T13:52:52.255 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:51 smithi026 bash[21443]: audit 2024-03-30T13:52:50.955535+0000 mon.a (mon.0) 65 : audit 1 from='mgr.14120 172.21.15.26:0/1989591988' entity='mgr.a' 2024-03-30T13:52:52.255 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:51 smithi026 bash[21443]: audit 2024-03-30T13:52:50.958231+0000 mon.a (mon.0) 66 : audit 1 from='mgr.14120 172.21.15.26:0/1989591988' entity='mgr.a' 2024-03-30T13:52:53.441 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC/FywQCv26eN/rMbu7iAjtcbViWj8Zu/DD8Dvu5XQ0b9dquHVDI/XinFyVswF1huKSxKmrGgIT69qAKV0hP/0ylNgCJAM7gI+hTwD8Lk2rg8BqJ8HTX4cZ4Ahu6pkcS6znh8iaklFXlERqxOqyFUESohGdd6mkEp2jyicvSSMrxGAheQUNN35y6FTWc1cCvJwbnMxaK124Et4lG2DAiFmhUAnGR0yn0OkmlqUljDDnCHQRRsrOWu76mUv4woLFlQdv+vRDXlpWN/+QyO4V8YgAgqwl2W5NRgZpt88ItoG1eWcHSU8yor/ZFvVdGsQw4HfBfhQtyaQznlPVzmdr9DAVPdAam/H2843HS9n1RUYbF0tsGM4hihGfDQ+34dX4yF0l8KkX0CwtKBm0fMZlKkL1u5bFX+wdiAi5Gq7vG29sFvtHvtY97Gr02fHrsCfKtmS5Rcxe4dw6m+XBckL1QkNzVguIlX8/75MtxPmbuinn2XfbUztibzpzH+U2ZdXVn38= ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T13:52:53.441 INFO:teuthology.orchestra.run.smithi026.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-03-30T13:52:53.442 INFO:teuthology.orchestra.run.smithi026.stdout:Adding key to root@localhost authorized_keys... 2024-03-30T13:52:53.442 INFO:teuthology.orchestra.run.smithi026.stdout:Adding host smithi026... 2024-03-30T13:52:54.112 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:53 smithi026 bash[21443]: audit 2024-03-30T13:52:52.842343+0000 mgr.a (mgr.14120) 12 : audit 0 from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:52:55.030 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:54 smithi026 bash[21443]: audit 2024-03-30T13:52:54.734792+0000 mgr.a (mgr.14120) 13 : audit 0 from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi026", "addr": "172.21.15.26", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:52:56.112 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:52:55 smithi026 bash[21443]: cephadm 2024-03-30T13:52:55.343334+0000 mgr.a (mgr.14120) 14 : cephadm 1 Deploying cephadm binary to smithi026 2024-03-30T13:53:01.170 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout Added host 'smithi026' with addr '172.21.15.26' 2024-03-30T13:53:01.170 INFO:teuthology.orchestra.run.smithi026.stdout:Deploying unmanaged mon service... 2024-03-30T13:53:01.613 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:01 smithi026 bash[21443]: audit 2024-03-30T13:53:00.308604+0000 mon.a (mon.0) 67 : audit 1 from='mgr.14120 172.21.15.26:0/1989591988' entity='mgr.a' 2024-03-30T13:53:01.613 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:01 smithi026 bash[21443]: cephadm 2024-03-30T13:53:00.309132+0000 mgr.a (mgr.14120) 15 : cephadm 1 Added host smithi026 2024-03-30T13:53:01.614 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:01 smithi026 bash[21443]: audit 2024-03-30T13:53:00.355405+0000 mon.a (mon.0) 68 : audit 0 from='mgr.14120 172.21.15.26:0/1989591988' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:53:03.669 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-03-30T13:53:03.669 INFO:teuthology.orchestra.run.smithi026.stdout:Deploying unmanaged mgr service... 2024-03-30T13:53:04.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:04 smithi026 bash[21443]: audit 2024-03-30T13:53:03.058088+0000 mgr.a (mgr.14120) 16 : audit 0 from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:53:04.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:04 smithi026 bash[21443]: cephadm 2024-03-30T13:53:03.059490+0000 mgr.a (mgr.14120) 17 : cephadm 1 Saving service mon spec with placement count:5 2024-03-30T13:53:04.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:04 smithi026 bash[21443]: audit 2024-03-30T13:53:03.062661+0000 mon.a (mon.0) 69 : audit 1 from='mgr.14120 172.21.15.26:0/1989591988' entity='mgr.a' 2024-03-30T13:53:04.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:04 smithi026 bash[21443]: audit 2024-03-30T13:53:03.231089+0000 mon.a (mon.0) 70 : audit 1 from='mgr.14120 172.21.15.26:0/1989591988' entity='mgr.a' 2024-03-30T13:53:04.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:04 smithi026 bash[21443]: audit 2024-03-30T13:53:03.773701+0000 mon.a (mon.0) 71 : audit 1 from='mgr.14120 172.21.15.26:0/1989591988' entity='mgr.a' 2024-03-30T13:53:05.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:05 smithi026 bash[21443]: cluster 2024-03-30T13:53:04.014983+0000 mgr.a (mgr.14120) 18 : cluster 0 pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:53:05.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:05 smithi026 bash[21443]: audit 2024-03-30T13:53:04.967558+0000 mon.a (mon.0) 72 : audit 1 from='mgr.14120 172.21.15.26:0/1989591988' entity='mgr.a' 2024-03-30T13:53:05.627 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-03-30T13:53:06.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:06 smithi026 bash[21443]: audit 2024-03-30T13:53:04.960552+0000 mgr.a (mgr.14120) 19 : audit 0 from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:53:06.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:06 smithi026 bash[21443]: cephadm 2024-03-30T13:53:04.962911+0000 mgr.a (mgr.14120) 20 : cephadm 1 Saving service mgr spec with placement count:2 2024-03-30T13:53:07.247 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:07 smithi026 bash[21443]: cluster 2024-03-30T13:53:06.015472+0000 mgr.a (mgr.14120) 21 : cluster 0 pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:53:07.247 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:07 smithi026 bash[21443]: audit 2024-03-30T13:53:06.980484+0000 mon.a (mon.0) 73 : audit 1 from='client.? 172.21.15.26:0/683503357' entity='client.admin' 2024-03-30T13:53:09.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:09 smithi026 bash[21443]: cluster 2024-03-30T13:53:08.015940+0000 mgr.a (mgr.14120) 22 : cluster 0 pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:53:09.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:09 smithi026 bash[21443]: audit 2024-03-30T13:53:08.910612+0000 mon.a (mon.0) 74 : audit 1 from='client.? 172.21.15.26:0/1828959598' entity='client.admin' 2024-03-30T13:53:09.597 INFO:teuthology.orchestra.run.smithi026.stdout:Enabling the dashboard module... 2024-03-30T13:53:11.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:11 smithi026 bash[21443]: cluster 2024-03-30T13:53:10.016375+0000 mgr.a (mgr.14120) 23 : cluster 0 pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:53:11.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:11 smithi026 bash[21443]: audit 2024-03-30T13:53:10.982339+0000 mon.a (mon.0) 75 : audit 1 from='client.? 172.21.15.26:0/2643429743' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-03-30T13:53:11.362 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:53:11 smithi026 bash[21693]: ignoring --setuser ceph since I am not root 2024-03-30T13:53:11.362 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:53:11 smithi026 bash[21693]: ignoring --setgroup ceph since I am not root 2024-03-30T13:53:11.362 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:53:11 smithi026 bash[21693]: debug 2024-03-30T13:53:11.267+0000 7fe252785200 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-03-30T13:53:12.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:12 smithi026 bash[21443]: audit 2024-03-30T13:53:11.071007+0000 mon.a (mon.0) 76 : audit 1 from='client.? 172.21.15.26:0/2643429743' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-03-30T13:53:12.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:12 smithi026 bash[21443]: cluster 2024-03-30T13:53:11.076393+0000 mon.a (mon.0) 77 : cluster 0 mgrmap e9: a(active, since 27s) 2024-03-30T13:53:13.176 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:53:12 smithi026 bash[21693]: debug 2024-03-30T13:53:12.907+0000 7fe252785200 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-03-30T13:53:13.176 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:53:13 smithi026 bash[21693]: debug 2024-03-30T13:53:13.007+0000 7fe252785200 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-03-30T13:53:13.612 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:13 smithi026 bash[21443]: audit 2024-03-30T13:53:13.163394+0000 mon.a (mon.0) 78 : audit 0 from='client.? 172.21.15.26:0/2915959415' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-03-30T13:53:13.612 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:53:13 smithi026 bash[21693]: debug 2024-03-30T13:53:13.267+0000 7fe252785200 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-03-30T13:53:13.857 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout { 2024-03-30T13:53:13.857 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-03-30T13:53:13.857 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "available": true, 2024-03-30T13:53:13.858 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-03-30T13:53:13.858 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-03-30T13:53:13.858 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout } 2024-03-30T13:53:13.858 INFO:teuthology.orchestra.run.smithi026.stdout:Waiting for the mgr to restart... 2024-03-30T13:53:13.858 INFO:teuthology.orchestra.run.smithi026.stdout:Waiting for mgr epoch 9... 2024-03-30T13:53:14.208 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:53:14 smithi026 bash[21693]: debug 2024-03-30T13:53:14.091+0000 7fe252785200 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-03-30T13:53:14.556 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:53:14 smithi026 bash[21693]: debug 2024-03-30T13:53:14.207+0000 7fe252785200 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-03-30T13:53:14.557 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:53:14 smithi026 bash[21693]: debug 2024-03-30T13:53:14.319+0000 7fe252785200 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-03-30T13:53:14.861 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:53:14 smithi026 bash[21693]: debug 2024-03-30T13:53:14.687+0000 7fe252785200 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-03-30T13:53:14.862 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:53:14 smithi026 bash[21693]: debug 2024-03-30T13:53:14.807+0000 7fe252785200 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-03-30T13:53:15.285 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:53:14 smithi026 bash[21693]: debug 2024-03-30T13:53:14.915+0000 7fe252785200 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-03-30T13:53:15.612 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:53:15 smithi026 bash[21693]: debug 2024-03-30T13:53:15.283+0000 7fe252785200 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-03-30T13:53:15.612 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:53:15 smithi026 bash[21693]: debug 2024-03-30T13:53:15.531+0000 7fe252785200 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-03-30T13:53:16.112 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:53:15 smithi026 bash[21693]: debug 2024-03-30T13:53:15.799+0000 7fe252785200 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-03-30T13:53:16.112 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:53:15 smithi026 bash[21693]: debug 2024-03-30T13:53:15.919+0000 7fe252785200 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-03-30T13:53:16.612 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:53:16 smithi026 bash[21693]: debug 2024-03-30T13:53:16.203+0000 7fe252785200 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-03-30T13:53:16.999 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:53:16 smithi026 bash[21693]: debug 2024-03-30T13:53:16.627+0000 7fe252785200 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-03-30T13:53:16.999 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:53:16 smithi026 bash[21693]: debug 2024-03-30T13:53:16.875+0000 7fe252785200 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-03-30T13:53:16.999 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:53:17 smithi026 bash[21693]: debug 2024-03-30T13:53:16.999+0000 7fe252785200 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-03-30T13:53:17.611 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:53:17 smithi026 bash[21693]: debug 2024-03-30T13:53:17.255+0000 7fe252785200 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-03-30T13:53:18.611 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:53:18 smithi026 bash[21693]: debug 2024-03-30T13:53:18.295+0000 7fe252785200 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-03-30T13:53:18.611 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:53:18 smithi026 bash[21693]: debug 2024-03-30T13:53:18.415+0000 7fe252785200 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-03-30T13:53:19.111 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:53:18 smithi026 bash[21693]: debug 2024-03-30T13:53:18.719+0000 7fe252785200 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-03-30T13:53:19.112 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:53:18 smithi026 bash[21693]: debug 2024-03-30T13:53:18.835+0000 7fe252785200 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-03-30T13:53:19.571 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:53:19 smithi026 bash[21693]: debug 2024-03-30T13:53:19.303+0000 7fe252785200 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-03-30T13:53:19.571 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:53:19 smithi026 bash[21693]: debug 2024-03-30T13:53:19.431+0000 7fe252785200 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-03-30T13:53:19.571 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:19 smithi026 bash[21443]: cluster 2024-03-30T13:53:19.454492+0000 mon.a (mon.0) 79 : cluster 1 Active manager daemon a restarted 2024-03-30T13:53:19.571 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:19 smithi026 bash[21443]: cluster 2024-03-30T13:53:19.454957+0000 mon.a (mon.0) 80 : cluster 1 Activating manager daemon a 2024-03-30T13:53:19.571 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:19 smithi026 bash[21443]: cluster 2024-03-30T13:53:19.458608+0000 mon.a (mon.0) 81 : cluster 0 osdmap e3: 0 total, 0 up, 0 in 2024-03-30T13:53:19.571 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:19 smithi026 bash[21443]: cluster 2024-03-30T13:53:19.458730+0000 mon.a (mon.0) 82 : cluster 0 mgrmap e10: a(active, starting, since 0.00397984s) 2024-03-30T13:53:19.571 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:19 smithi026 bash[21443]: audit 2024-03-30T13:53:19.460868+0000 mon.a (mon.0) 83 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-03-30T13:53:19.571 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:19 smithi026 bash[21443]: audit 2024-03-30T13:53:19.462685+0000 mon.a (mon.0) 84 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-03-30T13:53:19.571 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:19 smithi026 bash[21443]: audit 2024-03-30T13:53:19.463631+0000 mon.a (mon.0) 85 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-03-30T13:53:19.571 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:19 smithi026 bash[21443]: audit 2024-03-30T13:53:19.463887+0000 mon.a (mon.0) 86 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-03-30T13:53:19.572 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:19 smithi026 bash[21443]: audit 2024-03-30T13:53:19.464095+0000 mon.a (mon.0) 87 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-03-30T13:53:19.572 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:19 smithi026 bash[21443]: cluster 2024-03-30T13:53:19.494133+0000 mon.a (mon.0) 88 : cluster 1 Manager daemon a is now available 2024-03-30T13:53:20.745 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:20 smithi026 bash[21443]: audit 2024-03-30T13:53:19.521829+0000 mon.a (mon.0) 89 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:53:20.745 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:20 smithi026 bash[21443]: audit 2024-03-30T13:53:19.524763+0000 mon.a (mon.0) 90 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:53:20.745 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:20 smithi026 bash[21443]: audit 2024-03-30T13:53:19.544221+0000 mon.a (mon.0) 91 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-03-30T13:53:20.745 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:20 smithi026 bash[21443]: audit 2024-03-30T13:53:19.547702+0000 mon.a (mon.0) 92 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-03-30T13:53:20.746 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:20 smithi026 bash[21443]: cephadm 2024-03-30T13:53:19.949517+0000 mgr.a (mgr.14152) 1 : cephadm 1 [30/Mar/2024:13:53:19] ENGINE Bus STARTING 2024-03-30T13:53:20.746 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:20 smithi026 bash[21443]: cephadm 2024-03-30T13:53:20.072982+0000 mgr.a (mgr.14152) 2 : cephadm 1 [30/Mar/2024:13:53:20] ENGINE Serving on https://172.21.15.26:7150 2024-03-30T13:53:20.746 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:20 smithi026 bash[21443]: cluster 2024-03-30T13:53:20.468740+0000 mon.a (mon.0) 93 : cluster 0 mgrmap e11: a(active, since 1.01397s) 2024-03-30T13:53:21.265 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout { 2024-03-30T13:53:21.265 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-03-30T13:53:21.265 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout "initialized": true 2024-03-30T13:53:21.265 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout } 2024-03-30T13:53:21.265 INFO:teuthology.orchestra.run.smithi026.stdout:mgr epoch 9 is available 2024-03-30T13:53:21.265 INFO:teuthology.orchestra.run.smithi026.stdout:Generating a dashboard self-signed certificate... 2024-03-30T13:53:21.612 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:21 smithi026 bash[21443]: cephadm 2024-03-30T13:53:20.174087+0000 mgr.a (mgr.14152) 3 : cephadm 1 [30/Mar/2024:13:53:20] ENGINE Serving on http://172.21.15.26:8765 2024-03-30T13:53:21.612 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:21 smithi026 bash[21443]: cephadm 2024-03-30T13:53:20.174192+0000 mgr.a (mgr.14152) 4 : cephadm 1 [30/Mar/2024:13:53:20] ENGINE Bus STARTED 2024-03-30T13:53:21.612 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:21 smithi026 bash[21443]: audit 2024-03-30T13:53:20.466185+0000 mgr.a (mgr.14152) 5 : audit 0 from='client.14156 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-03-30T13:53:21.612 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:21 smithi026 bash[21443]: audit 2024-03-30T13:53:20.479695+0000 mgr.a (mgr.14152) 6 : audit 0 from='client.14156 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-03-30T13:53:22.798 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:22 smithi026 bash[21443]: cluster 2024-03-30T13:53:21.528778+0000 mon.a (mon.0) 94 : cluster 0 mgrmap e12: a(active, since 2s) 2024-03-30T13:53:23.409 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout Self-signed certificate created 2024-03-30T13:53:23.410 INFO:teuthology.orchestra.run.smithi026.stdout:Creating initial admin user... 2024-03-30T13:53:24.107 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:23 smithi026 bash[21443]: audit 2024-03-30T13:53:22.617061+0000 mgr.a (mgr.14152) 7 : audit 0 from='client.14164 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:53:24.107 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:23 smithi026 bash[21443]: audit 2024-03-30T13:53:22.779443+0000 mon.a (mon.0) 95 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:53:24.107 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:23 smithi026 bash[21443]: audit 2024-03-30T13:53:22.781900+0000 mon.a (mon.0) 96 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:53:25.666 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$9.8HV1wsBqLff72ZPsFeZOOLBqUCBMRFT3VD66E0Ij6t7fWYzP7rO", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1711806805, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-03-30T13:53:25.666 INFO:teuthology.orchestra.run.smithi026.stdout:Fetching dashboard port number... 2024-03-30T13:53:26.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:26 smithi026 bash[21443]: audit 2024-03-30T13:53:24.763426+0000 mgr.a (mgr.14152) 8 : audit 0 from='client.14166 -' 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-03-30T13:53:26.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:26 smithi026 bash[21443]: audit 2024-03-30T13:53:25.031388+0000 mon.a (mon.0) 97 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:53:27.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:27 smithi026 bash[21443]: cluster 2024-03-30T13:53:26.037324+0000 mon.a (mon.0) 98 : cluster 0 mgrmap e13: a(active, since 6s) 2024-03-30T13:53:27.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:27 smithi026 bash[21443]: audit 2024-03-30T13:53:26.438401+0000 mon.a (mon.0) 99 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:53:27.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:27 smithi026 bash[21443]: audit 2024-03-30T13:53:26.439129+0000 mon.a (mon.0) 100 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi026", "name": "osd_memory_target"}]: dispatch 2024-03-30T13:53:27.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:27 smithi026 bash[21443]: audit 2024-03-30T13:53:26.442380+0000 mon.a (mon.0) 101 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:53:27.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:27 smithi026 bash[21443]: audit 2024-03-30T13:53:26.443812+0000 mon.a (mon.0) 102 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi026", "caps": []}]: dispatch 2024-03-30T13:53:27.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:27 smithi026 bash[21443]: audit 2024-03-30T13:53:26.444349+0000 mon.a (mon.0) 103 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi026", "caps": []}]': finished 2024-03-30T13:53:27.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:27 smithi026 bash[21443]: audit 2024-03-30T13:53:26.965001+0000 mon.a (mon.0) 104 : audit 0 from='client.? 172.21.15.26:0/3865296211' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-03-30T13:53:27.655 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stdout 8443 2024-03-30T13:53:27.655 INFO:teuthology.orchestra.run.smithi026.stdout:firewalld does not appear to be present 2024-03-30T13:53:27.655 INFO:teuthology.orchestra.run.smithi026.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-03-30T13:53:27.658 INFO:teuthology.orchestra.run.smithi026.stdout:Ceph Dashboard is now available at: 2024-03-30T13:53:27.658 INFO:teuthology.orchestra.run.smithi026.stdout: 2024-03-30T13:53:27.658 INFO:teuthology.orchestra.run.smithi026.stdout: URL: https://smithi026.front.sepia.ceph.com:8443/ 2024-03-30T13:53:27.658 INFO:teuthology.orchestra.run.smithi026.stdout: User: admin 2024-03-30T13:53:27.658 INFO:teuthology.orchestra.run.smithi026.stdout: Password: a10cvfgg2x 2024-03-30T13:53:27.659 INFO:teuthology.orchestra.run.smithi026.stdout: 2024-03-30T13:53:27.659 INFO:teuthology.orchestra.run.smithi026.stdout:Saving cluster configuration to /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config directory 2024-03-30T13:53:27.659 INFO:teuthology.orchestra.run.smithi026.stdout:Enabling autotune for osd_memory_target 2024-03-30T13:53:28.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:28 smithi026 bash[21443]: cephadm 2024-03-30T13:53:26.726950+0000 mgr.a (mgr.14152) 9 : cephadm 1 Deploying daemon agent.smithi026 on smithi026 2024-03-30T13:53:31.699 INFO:teuthology.orchestra.run.smithi026.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-03-30T13:53:31.699 INFO:teuthology.orchestra.run.smithi026.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-03-30T13:53:31.700 INFO:teuthology.orchestra.run.smithi026.stdout: 2024-03-30T13:53:31.700 INFO:teuthology.orchestra.run.smithi026.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-03-30T13:53:31.700 INFO:teuthology.orchestra.run.smithi026.stdout: 2024-03-30T13:53:31.700 INFO:teuthology.orchestra.run.smithi026.stdout:Or, if you are only running a single cluster on this host: 2024-03-30T13:53:31.700 INFO:teuthology.orchestra.run.smithi026.stdout: 2024-03-30T13:53:31.700 INFO:teuthology.orchestra.run.smithi026.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-03-30T13:53:31.700 INFO:teuthology.orchestra.run.smithi026.stdout: 2024-03-30T13:53:31.700 INFO:teuthology.orchestra.run.smithi026.stdout:Please consider enabling telemetry to help improve Ceph: 2024-03-30T13:53:31.700 INFO:teuthology.orchestra.run.smithi026.stdout: 2024-03-30T13:53:31.700 INFO:teuthology.orchestra.run.smithi026.stdout: ceph telemetry on 2024-03-30T13:53:31.700 INFO:teuthology.orchestra.run.smithi026.stdout: 2024-03-30T13:53:31.700 INFO:teuthology.orchestra.run.smithi026.stdout:For more information see: 2024-03-30T13:53:31.700 INFO:teuthology.orchestra.run.smithi026.stdout: 2024-03-30T13:53:31.700 INFO:teuthology.orchestra.run.smithi026.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-03-30T13:53:31.700 INFO:teuthology.orchestra.run.smithi026.stdout: 2024-03-30T13:53:31.701 INFO:teuthology.orchestra.run.smithi026.stdout:Bootstrap complete. 2024-03-30T13:53:31.758 INFO:tasks.cephadm:Fetching config... 2024-03-30T13:53:31.758 DEBUG:teuthology.orchestra.run.smithi026:> set -ex 2024-03-30T13:53:31.758 DEBUG:teuthology.orchestra.run.smithi026:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-03-30T13:53:31.763 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-03-30T13:53:31.763 DEBUG:teuthology.orchestra.run.smithi026:> set -ex 2024-03-30T13:53:31.763 DEBUG:teuthology.orchestra.run.smithi026:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-03-30T13:53:31.809 INFO:tasks.cephadm:Fetching mon keyring... 2024-03-30T13:53:31.809 DEBUG:teuthology.orchestra.run.smithi026:> set -ex 2024-03-30T13:53:31.809 DEBUG:teuthology.orchestra.run.smithi026:> sudo dd if=/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/keyring of=/dev/stdout 2024-03-30T13:53:31.866 INFO:tasks.cephadm:Fetching pub ssh key... 2024-03-30T13:53:31.866 DEBUG:teuthology.orchestra.run.smithi026:> set -ex 2024-03-30T13:53:31.866 DEBUG:teuthology.orchestra.run.smithi026:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-03-30T13:53:31.917 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-03-30T13:53:31.917 DEBUG:teuthology.orchestra.run.smithi026:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC/FywQCv26eN/rMbu7iAjtcbViWj8Zu/DD8Dvu5XQ0b9dquHVDI/XinFyVswF1huKSxKmrGgIT69qAKV0hP/0ylNgCJAM7gI+hTwD8Lk2rg8BqJ8HTX4cZ4Ahu6pkcS6znh8iaklFXlERqxOqyFUESohGdd6mkEp2jyicvSSMrxGAheQUNN35y6FTWc1cCvJwbnMxaK124Et4lG2DAiFmhUAnGR0yn0OkmlqUljDDnCHQRRsrOWu76mUv4woLFlQdv+vRDXlpWN/+QyO4V8YgAgqwl2W5NRgZpt88ItoG1eWcHSU8yor/ZFvVdGsQw4HfBfhQtyaQznlPVzmdr9DAVPdAam/H2843HS9n1RUYbF0tsGM4hihGfDQ+34dX4yF0l8KkX0CwtKBm0fMZlKkL1u5bFX+wdiAi5Gq7vG29sFvtHvtY97Gr02fHrsCfKtmS5Rcxe4dw6m+XBckL1QkNzVguIlX8/75MtxPmbuinn2XfbUztibzpzH+U2ZdXVn38= ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-03-30T13:53:31.975 INFO:teuthology.orchestra.run.smithi026.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC/FywQCv26eN/rMbu7iAjtcbViWj8Zu/DD8Dvu5XQ0b9dquHVDI/XinFyVswF1huKSxKmrGgIT69qAKV0hP/0ylNgCJAM7gI+hTwD8Lk2rg8BqJ8HTX4cZ4Ahu6pkcS6znh8iaklFXlERqxOqyFUESohGdd6mkEp2jyicvSSMrxGAheQUNN35y6FTWc1cCvJwbnMxaK124Et4lG2DAiFmhUAnGR0yn0OkmlqUljDDnCHQRRsrOWu76mUv4woLFlQdv+vRDXlpWN/+QyO4V8YgAgqwl2W5NRgZpt88ItoG1eWcHSU8yor/ZFvVdGsQw4HfBfhQtyaQznlPVzmdr9DAVPdAam/H2843HS9n1RUYbF0tsGM4hihGfDQ+34dX4yF0l8KkX0CwtKBm0fMZlKkL1u5bFX+wdiAi5Gq7vG29sFvtHvtY97Gr02fHrsCfKtmS5Rcxe4dw6m+XBckL1QkNzVguIlX8/75MtxPmbuinn2XfbUztibzpzH+U2ZdXVn38= ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T13:53:31.982 DEBUG:teuthology.orchestra.run.smithi050:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC/FywQCv26eN/rMbu7iAjtcbViWj8Zu/DD8Dvu5XQ0b9dquHVDI/XinFyVswF1huKSxKmrGgIT69qAKV0hP/0ylNgCJAM7gI+hTwD8Lk2rg8BqJ8HTX4cZ4Ahu6pkcS6znh8iaklFXlERqxOqyFUESohGdd6mkEp2jyicvSSMrxGAheQUNN35y6FTWc1cCvJwbnMxaK124Et4lG2DAiFmhUAnGR0yn0OkmlqUljDDnCHQRRsrOWu76mUv4woLFlQdv+vRDXlpWN/+QyO4V8YgAgqwl2W5NRgZpt88ItoG1eWcHSU8yor/ZFvVdGsQw4HfBfhQtyaQznlPVzmdr9DAVPdAam/H2843HS9n1RUYbF0tsGM4hihGfDQ+34dX4yF0l8KkX0CwtKBm0fMZlKkL1u5bFX+wdiAi5Gq7vG29sFvtHvtY97Gr02fHrsCfKtmS5Rcxe4dw6m+XBckL1QkNzVguIlX8/75MtxPmbuinn2XfbUztibzpzH+U2ZdXVn38= ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-03-30T13:53:32.005 INFO:teuthology.orchestra.run.smithi050.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC/FywQCv26eN/rMbu7iAjtcbViWj8Zu/DD8Dvu5XQ0b9dquHVDI/XinFyVswF1huKSxKmrGgIT69qAKV0hP/0ylNgCJAM7gI+hTwD8Lk2rg8BqJ8HTX4cZ4Ahu6pkcS6znh8iaklFXlERqxOqyFUESohGdd6mkEp2jyicvSSMrxGAheQUNN35y6FTWc1cCvJwbnMxaK124Et4lG2DAiFmhUAnGR0yn0OkmlqUljDDnCHQRRsrOWu76mUv4woLFlQdv+vRDXlpWN/+QyO4V8YgAgqwl2W5NRgZpt88ItoG1eWcHSU8yor/ZFvVdGsQw4HfBfhQtyaQznlPVzmdr9DAVPdAam/H2843HS9n1RUYbF0tsGM4hihGfDQ+34dX4yF0l8KkX0CwtKBm0fMZlKkL1u5bFX+wdiAi5Gq7vG29sFvtHvtY97Gr02fHrsCfKtmS5Rcxe4dw6m+XBckL1QkNzVguIlX8/75MtxPmbuinn2XfbUztibzpzH+U2ZdXVn38= ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T13:53:32.015 DEBUG:teuthology.orchestra.run.smithi136:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC/FywQCv26eN/rMbu7iAjtcbViWj8Zu/DD8Dvu5XQ0b9dquHVDI/XinFyVswF1huKSxKmrGgIT69qAKV0hP/0ylNgCJAM7gI+hTwD8Lk2rg8BqJ8HTX4cZ4Ahu6pkcS6znh8iaklFXlERqxOqyFUESohGdd6mkEp2jyicvSSMrxGAheQUNN35y6FTWc1cCvJwbnMxaK124Et4lG2DAiFmhUAnGR0yn0OkmlqUljDDnCHQRRsrOWu76mUv4woLFlQdv+vRDXlpWN/+QyO4V8YgAgqwl2W5NRgZpt88ItoG1eWcHSU8yor/ZFvVdGsQw4HfBfhQtyaQznlPVzmdr9DAVPdAam/H2843HS9n1RUYbF0tsGM4hihGfDQ+34dX4yF0l8KkX0CwtKBm0fMZlKkL1u5bFX+wdiAi5Gq7vG29sFvtHvtY97Gr02fHrsCfKtmS5Rcxe4dw6m+XBckL1QkNzVguIlX8/75MtxPmbuinn2XfbUztibzpzH+U2ZdXVn38= ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-03-30T13:53:32.025 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:31 smithi026 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:53:32.026 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:53:31 smithi026 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:53:32.038 INFO:teuthology.orchestra.run.smithi136.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC/FywQCv26eN/rMbu7iAjtcbViWj8Zu/DD8Dvu5XQ0b9dquHVDI/XinFyVswF1huKSxKmrGgIT69qAKV0hP/0ylNgCJAM7gI+hTwD8Lk2rg8BqJ8HTX4cZ4Ahu6pkcS6znh8iaklFXlERqxOqyFUESohGdd6mkEp2jyicvSSMrxGAheQUNN35y6FTWc1cCvJwbnMxaK124Et4lG2DAiFmhUAnGR0yn0OkmlqUljDDnCHQRRsrOWu76mUv4woLFlQdv+vRDXlpWN/+QyO4V8YgAgqwl2W5NRgZpt88ItoG1eWcHSU8yor/ZFvVdGsQw4HfBfhQtyaQznlPVzmdr9DAVPdAam/H2843HS9n1RUYbF0tsGM4hihGfDQ+34dX4yF0l8KkX0CwtKBm0fMZlKkL1u5bFX+wdiAi5Gq7vG29sFvtHvtY97Gr02fHrsCfKtmS5Rcxe4dw6m+XBckL1QkNzVguIlX8/75MtxPmbuinn2XfbUztibzpzH+U2ZdXVn38= ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T13:53:32.047 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-03-30T13:53:32.361 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:53:32 smithi026 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:53:32.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:32 smithi026 bash[21443]: audit 2024-03-30T13:53:31.094008+0000 mon.a (mon.0) 105 : audit 1 from='client.? 172.21.15.26:0/2361958016' entity='client.admin' 2024-03-30T13:53:32.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:32 smithi026 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:53:33.612 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:33 smithi026 bash[21443]: audit 2024-03-30T13:53:32.282345+0000 mon.a (mon.0) 106 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:53:33.612 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:33 smithi026 bash[21443]: audit 2024-03-30T13:53:32.309801+0000 mon.a (mon.0) 107 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:53:33.612 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:33 smithi026 bash[21443]: audit 2024-03-30T13:53:32.312077+0000 mon.a (mon.0) 108 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:53:33.612 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:33 smithi026 bash[21443]: audit 2024-03-30T13:53:32.328984+0000 mon.a (mon.0) 109 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:53:33.612 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:33 smithi026 bash[21443]: audit 2024-03-30T13:53:32.332311+0000 mon.a (mon.0) 110 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:53:33.612 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:33 smithi026 bash[21443]: audit 2024-03-30T13:53:32.334111+0000 mon.a (mon.0) 111 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:53:33.612 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:33 smithi026 bash[21443]: audit 2024-03-30T13:53:32.335751+0000 mon.a (mon.0) 112 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:53:33.612 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:33 smithi026 bash[21443]: audit 2024-03-30T13:53:32.337362+0000 mon.a (mon.0) 113 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:53:33.613 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:33 smithi026 bash[21443]: audit 2024-03-30T13:53:32.339849+0000 mon.a (mon.0) 114 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:53:33.613 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:33 smithi026 bash[21443]: audit 2024-03-30T13:53:32.357229+0000 mon.a (mon.0) 115 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:53:33.613 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:33 smithi026 bash[21443]: audit 2024-03-30T13:53:32.361464+0000 mon.a (mon.0) 116 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:53:33.613 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:33 smithi026 bash[21443]: audit 2024-03-30T13:53:32.738858+0000 mon.a (mon.0) 117 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:53:35.861 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:35 smithi026 bash[21443]: audit 2024-03-30T13:53:34.545517+0000 mon.a (mon.0) 118 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:53:36.758 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T13:53:38.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:38 smithi026 bash[21443]: audit 2024-03-30T13:53:37.140452+0000 mon.a (mon.0) 119 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:53:38.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:38 smithi026 bash[21443]: audit 2024-03-30T13:53:37.143481+0000 mon.a (mon.0) 120 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:53:40.533 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-03-30T13:53:40.534 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-03-30T13:53:41.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:40 smithi026 bash[21443]: cluster 2024-03-30T13:53:39.465376+0000 mgr.a (mgr.14152) 10 : cluster 0 pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:53:41.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:40 smithi026 bash[21443]: audit 2024-03-30T13:53:39.840863+0000 mon.a (mon.0) 121 : audit 1 from='client.? 172.21.15.26:0/653054608' entity='client.admin' 2024-03-30T13:53:41.112 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:40 smithi026 bash[21443]: audit 2024-03-30T13:53:39.878251+0000 mon.a (mon.0) 122 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:53:41.112 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:40 smithi026 bash[21443]: audit 2024-03-30T13:53:39.882289+0000 mon.a (mon.0) 123 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:53:43.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:42 smithi026 bash[21443]: cluster 2024-03-30T13:53:41.465859+0000 mgr.a (mgr.14152) 11 : cluster 0 pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:53:45.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:44 smithi026 bash[21443]: cluster 2024-03-30T13:53:43.466329+0000 mgr.a (mgr.14152) 12 : cluster 0 pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:53:45.410 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T13:53:46.406 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:46 smithi026 bash[21443]: audit 2024-03-30T13:53:45.139971+0000 mon.a (mon.0) 124 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:53:46.406 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:46 smithi026 bash[21443]: audit 2024-03-30T13:53:45.146196+0000 mon.a (mon.0) 125 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:53:47.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:47 smithi026 bash[21443]: cluster 2024-03-30T13:53:45.466740+0000 mgr.a (mgr.14152) 13 : cluster 0 pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:53:48.514 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:48 smithi026 bash[21443]: cluster 2024-03-30T13:53:47.467204+0000 mgr.a (mgr.14152) 14 : cluster 0 pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:53:48.992 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi050 2024-03-30T13:53:48.992 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-03-30T13:53:48.993 DEBUG:teuthology.orchestra.run.smithi050:> dd of=/etc/ceph/ceph.conf 2024-03-30T13:53:48.999 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-03-30T13:53:48.999 DEBUG:teuthology.orchestra.run.smithi050:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-03-30T13:53:49.048 INFO:tasks.cephadm:Adding host smithi050 to orchestrator... 2024-03-30T13:53:49.048 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph orch host add smithi050 2024-03-30T13:53:49.612 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:49 smithi026 bash[21443]: audit 2024-03-30T13:53:48.253253+0000 mgr.a (mgr.14152) 15 : audit 0 from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:53:49.612 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:49 smithi026 bash[21443]: audit 2024-03-30T13:53:48.256808+0000 mon.a (mon.0) 126 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:53:49.612 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:49 smithi026 bash[21443]: audit 2024-03-30T13:53:48.283136+0000 mon.a (mon.0) 127 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:53:49.612 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:49 smithi026 bash[21443]: audit 2024-03-30T13:53:48.284964+0000 mon.a (mon.0) 128 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:53:49.612 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:49 smithi026 bash[21443]: audit 2024-03-30T13:53:48.285712+0000 mon.a (mon.0) 129 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:53:49.613 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:49 smithi026 bash[21443]: cephadm 2024-03-30T13:53:48.286709+0000 mgr.a (mgr.14152) 16 : cephadm 1 Updating smithi026:/etc/ceph/ceph.conf 2024-03-30T13:53:49.613 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:49 smithi026 bash[21443]: cephadm 2024-03-30T13:53:48.400881+0000 mgr.a (mgr.14152) 17 : cephadm 1 Updating smithi026:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-03-30T13:53:49.613 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:49 smithi026 bash[21443]: cephadm 2024-03-30T13:53:48.515935+0000 mgr.a (mgr.14152) 18 : cephadm 1 Updating smithi026:/etc/ceph/ceph.client.admin.keyring 2024-03-30T13:53:49.613 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:49 smithi026 bash[21443]: cephadm 2024-03-30T13:53:48.630286+0000 mgr.a (mgr.14152) 19 : cephadm 1 Updating smithi026:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.client.admin.keyring 2024-03-30T13:53:49.613 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:49 smithi026 bash[21443]: audit 2024-03-30T13:53:48.799254+0000 mon.a (mon.0) 130 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:53:49.613 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:49 smithi026 bash[21443]: audit 2024-03-30T13:53:48.803955+0000 mon.a (mon.0) 131 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:53:49.613 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:49 smithi026 bash[21443]: audit 2024-03-30T13:53:48.808166+0000 mon.a (mon.0) 132 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:53:50.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:50 smithi026 bash[21443]: cluster 2024-03-30T13:53:49.467605+0000 mgr.a (mgr.14152) 20 : cluster 0 pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:53:52.861 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:52 smithi026 bash[21443]: cluster 2024-03-30T13:53:51.467985+0000 mgr.a (mgr.14152) 21 : cluster 0 pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:53:53.759 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T13:53:54.870 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:54 smithi026 bash[21443]: cluster 2024-03-30T13:53:53.468519+0000 mgr.a (mgr.14152) 22 : cluster 0 pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:53:57.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:56 smithi026 bash[21443]: cluster 2024-03-30T13:53:55.468992+0000 mgr.a (mgr.14152) 23 : cluster 0 pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:53:57.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:56 smithi026 bash[21443]: audit 2024-03-30T13:53:55.703044+0000 mon.a (mon.0) 133 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:53:57.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:56 smithi026 bash[21443]: audit 2024-03-30T13:53:55.705712+0000 mon.a (mon.0) 134 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:53:57.112 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:56 smithi026 bash[21443]: audit 2024-03-30T13:53:55.709158+0000 mon.a (mon.0) 135 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:53:59.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:58 smithi026 bash[21443]: cluster 2024-03-30T13:53:57.469482+0000 mgr.a (mgr.14152) 24 : cluster 0 pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:00.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:59 smithi026 bash[21443]: audit 2024-03-30T13:53:58.212662+0000 mgr.a (mgr.14152) 25 : audit 0 from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi050", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:54:00.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:53:59 smithi026 bash[21443]: cephadm 2024-03-30T13:53:58.902810+0000 mgr.a (mgr.14152) 26 : cephadm 1 Deploying cephadm binary to smithi050 2024-03-30T13:54:01.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:00 smithi026 bash[21443]: cluster 2024-03-30T13:53:59.469941+0000 mgr.a (mgr.14152) 27 : cluster 0 pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:03.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:02 smithi026 bash[21443]: cluster 2024-03-30T13:54:01.470326+0000 mgr.a (mgr.14152) 28 : cluster 0 pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:04.307 INFO:teuthology.orchestra.run.smithi026.stdout:Added host 'smithi050' with addr '172.21.15.50' 2024-03-30T13:54:05.037 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:04 smithi026 bash[21443]: cluster 2024-03-30T13:54:03.470592+0000 mgr.a (mgr.14152) 29 : cluster 0 pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:05.037 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:04 smithi026 bash[21443]: audit 2024-03-30T13:54:04.309111+0000 mon.a (mon.0) 136 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:05.037 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:04 smithi026 bash[21443]: audit 2024-03-30T13:54:04.317263+0000 mon.a (mon.0) 137 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:54:05.038 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph orch host ls --format=json 2024-03-30T13:54:06.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:05 smithi026 bash[21443]: cephadm 2024-03-30T13:54:04.310080+0000 mgr.a (mgr.14152) 30 : cephadm 1 Added host smithi050 2024-03-30T13:54:06.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:05 smithi026 bash[21443]: audit 2024-03-30T13:54:04.842555+0000 mon.a (mon.0) 138 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:07.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:06 smithi026 bash[21443]: cluster 2024-03-30T13:54:05.471045+0000 mgr.a (mgr.14152) 31 : cluster 0 pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:07.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:06 smithi026 bash[21443]: audit 2024-03-30T13:54:06.367631+0000 mon.a (mon.0) 139 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:07.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:06 smithi026 bash[21443]: audit 2024-03-30T13:54:06.373395+0000 mon.a (mon.0) 140 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:07.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:06 smithi026 bash[21443]: audit 2024-03-30T13:54:06.374874+0000 mon.a (mon.0) 141 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi050", "name": "osd_memory_target"}]: dispatch 2024-03-30T13:54:07.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:06 smithi026 bash[21443]: audit 2024-03-30T13:54:06.376984+0000 mon.a (mon.0) 142 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:54:07.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:06 smithi026 bash[21443]: audit 2024-03-30T13:54:06.378889+0000 mon.a (mon.0) 143 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:54:08.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:07 smithi026 bash[21443]: cephadm 2024-03-30T13:54:06.381761+0000 mgr.a (mgr.14152) 32 : cephadm 1 Updating smithi050:/etc/ceph/ceph.conf 2024-03-30T13:54:08.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:07 smithi026 bash[21443]: cephadm 2024-03-30T13:54:06.597700+0000 mgr.a (mgr.14152) 33 : cephadm 1 Updating smithi050:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-03-30T13:54:08.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:07 smithi026 bash[21443]: cephadm 2024-03-30T13:54:06.813443+0000 mgr.a (mgr.14152) 34 : cephadm 1 Updating smithi050:/etc/ceph/ceph.client.admin.keyring 2024-03-30T13:54:08.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:07 smithi026 bash[21443]: cephadm 2024-03-30T13:54:07.028924+0000 mgr.a (mgr.14152) 35 : cephadm 1 Updating smithi050:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.client.admin.keyring 2024-03-30T13:54:08.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:07 smithi026 bash[21443]: audit 2024-03-30T13:54:07.249609+0000 mon.a (mon.0) 144 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:08.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:07 smithi026 bash[21443]: audit 2024-03-30T13:54:07.255543+0000 mon.a (mon.0) 145 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:08.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:07 smithi026 bash[21443]: audit 2024-03-30T13:54:07.258860+0000 mon.a (mon.0) 146 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi050", "caps": []}]: dispatch 2024-03-30T13:54:08.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:07 smithi026 bash[21443]: audit 2024-03-30T13:54:07.260423+0000 mon.a (mon.0) 147 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi050", "caps": []}]': finished 2024-03-30T13:54:09.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:08 smithi026 bash[21443]: cluster 2024-03-30T13:54:07.471411+0000 mgr.a (mgr.14152) 36 : cluster 0 pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:09.750 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T13:54:10.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:09 smithi026 bash[21443]: cephadm 2024-03-30T13:54:09.025719+0000 mgr.a (mgr.14152) 37 : cephadm 1 Deploying daemon agent.smithi050 on smithi050 2024-03-30T13:54:11.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:10 smithi026 bash[21443]: cluster 2024-03-30T13:54:09.471749+0000 mgr.a (mgr.14152) 38 : cluster 0 pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:11.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:10 smithi026 bash[21443]: audit 2024-03-30T13:54:09.950777+0000 mon.a (mon.0) 148 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:11.111 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:10 smithi026 bash[21443]: audit 2024-03-30T13:54:09.997438+0000 mon.a (mon.0) 149 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:11.112 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:10 smithi026 bash[21443]: audit 2024-03-30T13:54:10.003008+0000 mon.a (mon.0) 150 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:11.112 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:10 smithi026 bash[21443]: audit 2024-03-30T13:54:10.070471+0000 mon.a (mon.0) 151 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:54:11.112 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:10 smithi026 bash[21443]: audit 2024-03-30T13:54:10.074872+0000 mon.a (mon.0) 152 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:54:11.112 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:10 smithi026 bash[21443]: audit 2024-03-30T13:54:10.076614+0000 mon.a (mon.0) 153 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:54:11.112 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:10 smithi026 bash[21443]: audit 2024-03-30T13:54:10.084670+0000 mon.a (mon.0) 154 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:11.112 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:10 smithi026 bash[21443]: audit 2024-03-30T13:54:10.154727+0000 mon.a (mon.0) 155 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:54:11.112 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:10 smithi026 bash[21443]: audit 2024-03-30T13:54:10.159270+0000 mon.a (mon.0) 156 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:54:11.112 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:10 smithi026 bash[21443]: audit 2024-03-30T13:54:10.161048+0000 mon.a (mon.0) 157 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:54:11.112 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:10 smithi026 bash[21443]: audit 2024-03-30T13:54:10.168085+0000 mon.a (mon.0) 158 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:11.112 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:10 smithi026 bash[21443]: audit 2024-03-30T13:54:10.434850+0000 mon.a (mon.0) 159 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:12.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:12 smithi026 bash[21443]: cluster 2024-03-30T13:54:11.472193+0000 mgr.a (mgr.14152) 39 : cluster 0 pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:12.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:12 smithi026 bash[21443]: audit 2024-03-30T13:54:11.495108+0000 mon.a (mon.0) 160 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:12.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:12 smithi026 bash[21443]: audit 2024-03-30T13:54:11.501420+0000 mon.a (mon.0) 161 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:13.758 INFO:teuthology.orchestra.run.smithi026.stdout: 2024-03-30T13:54:13.758 INFO:teuthology.orchestra.run.smithi026.stdout:[{"addr": "172.21.15.26", "hostname": "smithi026", "labels": [], "status": ""}, {"addr": "172.21.15.50", "hostname": "smithi050", "labels": [], "status": ""}] 2024-03-30T13:54:14.594 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:14 smithi026 bash[21443]: cluster 2024-03-30T13:54:13.472502+0000 mgr.a (mgr.14152) 40 : cluster 0 pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:14.594 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:14 smithi026 bash[21443]: audit 2024-03-30T13:54:13.761409+0000 mgr.a (mgr.14152) 41 : audit 0 from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-30T13:54:14.608 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi136 2024-03-30T13:54:14.609 DEBUG:teuthology.orchestra.run.smithi136:> set -ex 2024-03-30T13:54:14.609 DEBUG:teuthology.orchestra.run.smithi136:> dd of=/etc/ceph/ceph.conf 2024-03-30T13:54:14.615 DEBUG:teuthology.orchestra.run.smithi136:> set -ex 2024-03-30T13:54:14.615 DEBUG:teuthology.orchestra.run.smithi136:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-03-30T13:54:14.664 INFO:tasks.cephadm:Adding host smithi136 to orchestrator... 2024-03-30T13:54:14.664 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph orch host add smithi136 2024-03-30T13:54:15.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:15 smithi026 bash[21443]: audit 2024-03-30T13:54:14.552686+0000 mon.a (mon.0) 162 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:17.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:16 smithi026 bash[21443]: cluster 2024-03-30T13:54:15.472787+0000 mgr.a (mgr.14152) 42 : cluster 0 pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:17.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:16 smithi026 bash[21443]: audit 2024-03-30T13:54:15.902466+0000 mon.a (mon.0) 163 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:17.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:16 smithi026 bash[21443]: audit 2024-03-30T13:54:15.906715+0000 mon.a (mon.0) 164 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:17.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:16 smithi026 bash[21443]: audit 2024-03-30T13:54:15.911381+0000 mon.a (mon.0) 165 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:19.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:18 smithi026 bash[21443]: cluster 2024-03-30T13:54:17.473170+0000 mgr.a (mgr.14152) 43 : cluster 0 pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:19.490 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T13:54:21.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:20 smithi026 bash[21443]: cluster 2024-03-30T13:54:19.473575+0000 mgr.a (mgr.14152) 44 : cluster 0 pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:23.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:22 smithi026 bash[21443]: cluster 2024-03-30T13:54:21.474034+0000 mgr.a (mgr.14152) 45 : cluster 0 pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:24.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:23 smithi026 bash[21443]: audit 2024-03-30T13:54:22.312780+0000 mgr.a (mgr.14152) 46 : audit 0 from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi136", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:54:24.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:23 smithi026 bash[21443]: cephadm 2024-03-30T13:54:23.043718+0000 mgr.a (mgr.14152) 47 : cephadm 1 Deploying cephadm binary to smithi136 2024-03-30T13:54:25.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:24 smithi026 bash[21443]: cluster 2024-03-30T13:54:23.474461+0000 mgr.a (mgr.14152) 48 : cluster 0 pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:25.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:24 smithi026 bash[21443]: audit 2024-03-30T13:54:24.605491+0000 mon.a (mon.0) 166 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:25.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:24 smithi026 bash[21443]: audit 2024-03-30T13:54:24.621100+0000 mon.a (mon.0) 167 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:27.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:26 smithi026 bash[21443]: cluster 2024-03-30T13:54:25.474854+0000 mgr.a (mgr.14152) 49 : cluster 0 pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:28.423 INFO:teuthology.orchestra.run.smithi026.stdout:Added host 'smithi136' with addr '172.21.15.136' 2024-03-30T13:54:29.263 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:28 smithi026 bash[21443]: cluster 2024-03-30T13:54:27.475250+0000 mgr.a (mgr.14152) 50 : cluster 0 pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:29.263 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:28 smithi026 bash[21443]: audit 2024-03-30T13:54:28.425481+0000 mon.a (mon.0) 168 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:29.263 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:28 smithi026 bash[21443]: audit 2024-03-30T13:54:28.471360+0000 mon.a (mon.0) 169 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:54:29.290 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph orch host ls --format=json 2024-03-30T13:54:30.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:29 smithi026 bash[21443]: cephadm 2024-03-30T13:54:28.426264+0000 mgr.a (mgr.14152) 51 : cephadm 1 Added host smithi136 2024-03-30T13:54:30.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:29 smithi026 bash[21443]: audit 2024-03-30T13:54:28.943747+0000 mon.a (mon.0) 170 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:31.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:30 smithi026 bash[21443]: cluster 2024-03-30T13:54:29.475507+0000 mgr.a (mgr.14152) 52 : cluster 0 pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:31.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:30 smithi026 bash[21443]: audit 2024-03-30T13:54:30.470250+0000 mon.a (mon.0) 171 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:31.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:30 smithi026 bash[21443]: audit 2024-03-30T13:54:30.477760+0000 mon.a (mon.0) 172 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:31.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:30 smithi026 bash[21443]: audit 2024-03-30T13:54:30.479554+0000 mon.a (mon.0) 173 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi136", "name": "osd_memory_target"}]: dispatch 2024-03-30T13:54:31.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:30 smithi026 bash[21443]: audit 2024-03-30T13:54:30.481435+0000 mon.a (mon.0) 174 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:54:31.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:30 smithi026 bash[21443]: audit 2024-03-30T13:54:30.483010+0000 mon.a (mon.0) 175 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:54:32.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:32 smithi026 bash[21443]: cephadm 2024-03-30T13:54:30.485623+0000 mgr.a (mgr.14152) 53 : cephadm 1 Updating smithi136:/etc/ceph/ceph.conf 2024-03-30T13:54:32.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:32 smithi026 bash[21443]: cephadm 2024-03-30T13:54:30.700646+0000 mgr.a (mgr.14152) 54 : cephadm 1 Updating smithi136:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-03-30T13:54:32.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:32 smithi026 bash[21443]: cephadm 2024-03-30T13:54:30.917636+0000 mgr.a (mgr.14152) 55 : cephadm 1 Updating smithi136:/etc/ceph/ceph.client.admin.keyring 2024-03-30T13:54:32.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:32 smithi026 bash[21443]: cephadm 2024-03-30T13:54:31.031955+0000 mgr.a (mgr.14152) 56 : cephadm 1 Updating smithi136:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.client.admin.keyring 2024-03-30T13:54:32.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:32 smithi026 bash[21443]: audit 2024-03-30T13:54:31.049481+0000 mon.a (mon.0) 176 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:32.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:32 smithi026 bash[21443]: audit 2024-03-30T13:54:31.052552+0000 mon.a (mon.0) 177 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:32.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:32 smithi026 bash[21443]: audit 2024-03-30T13:54:31.056563+0000 mon.a (mon.0) 178 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:32.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:32 smithi026 bash[21443]: audit 2024-03-30T13:54:31.202431+0000 mon.a (mon.0) 179 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:32.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:32 smithi026 bash[21443]: audit 2024-03-30T13:54:31.207749+0000 mon.a (mon.0) 180 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:32.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:32 smithi026 bash[21443]: audit 2024-03-30T13:54:31.210165+0000 mon.a (mon.0) 181 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi136", "caps": []}]: dispatch 2024-03-30T13:54:32.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:32 smithi026 bash[21443]: audit 2024-03-30T13:54:31.211540+0000 mon.a (mon.0) 182 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi136", "caps": []}]': finished 2024-03-30T13:54:33.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:33 smithi026 bash[21443]: cluster 2024-03-30T13:54:31.475748+0000 mgr.a (mgr.14152) 57 : cluster 0 pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:35.018 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T13:54:35.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:35 smithi026 bash[21443]: cluster 2024-03-30T13:54:33.476076+0000 mgr.a (mgr.14152) 58 : cluster 0 pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:35.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:35 smithi026 bash[21443]: cephadm 2024-03-30T13:54:33.942510+0000 mgr.a (mgr.14152) 59 : cephadm 1 Deploying daemon agent.smithi136 on smithi136 2024-03-30T13:54:35.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:35 smithi026 bash[21443]: audit 2024-03-30T13:54:34.861230+0000 mon.a (mon.0) 183 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:35.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:35 smithi026 bash[21443]: audit 2024-03-30T13:54:34.913194+0000 mon.a (mon.0) 184 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:35.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:35 smithi026 bash[21443]: audit 2024-03-30T13:54:34.919166+0000 mon.a (mon.0) 185 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:36.215 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:36 smithi026 bash[21443]: audit 2024-03-30T13:54:35.319654+0000 mon.a (mon.0) 186 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:54:36.215 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:36 smithi026 bash[21443]: audit 2024-03-30T13:54:35.324038+0000 mon.a (mon.0) 187 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:54:36.215 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:36 smithi026 bash[21443]: audit 2024-03-30T13:54:35.325421+0000 mon.a (mon.0) 188 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:54:36.215 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:36 smithi026 bash[21443]: audit 2024-03-30T13:54:35.331101+0000 mon.a (mon.0) 189 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:36.216 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:36 smithi026 bash[21443]: audit 2024-03-30T13:54:35.357686+0000 mon.a (mon.0) 190 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:36.216 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:36 smithi026 bash[21443]: audit 2024-03-30T13:54:35.432739+0000 mon.a (mon.0) 191 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:54:36.216 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:36 smithi026 bash[21443]: audit 2024-03-30T13:54:35.438181+0000 mon.a (mon.0) 192 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:54:36.216 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:36 smithi026 bash[21443]: audit 2024-03-30T13:54:35.440163+0000 mon.a (mon.0) 193 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:54:36.216 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:36 smithi026 bash[21443]: audit 2024-03-30T13:54:35.448422+0000 mon.a (mon.0) 194 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:36.216 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:36 smithi026 bash[21443]: audit 2024-03-30T13:54:36.035520+0000 mon.a (mon.0) 195 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:36.216 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:36 smithi026 bash[21443]: audit 2024-03-30T13:54:36.037994+0000 mon.a (mon.0) 196 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:36.216 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:36 smithi026 bash[21443]: audit 2024-03-30T13:54:36.041701+0000 mon.a (mon.0) 197 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:37.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:37 smithi026 bash[21443]: cluster 2024-03-30T13:54:35.476480+0000 mgr.a (mgr.14152) 60 : cluster 0 pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:37.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:37 smithi026 bash[21443]: audit 2024-03-30T13:54:36.403943+0000 mon.a (mon.0) 198 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:37.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:37 smithi026 bash[21443]: audit 2024-03-30T13:54:36.412137+0000 mon.a (mon.0) 199 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:37.804 INFO:teuthology.orchestra.run.smithi026.stdout: 2024-03-30T13:54:37.805 INFO:teuthology.orchestra.run.smithi026.stdout:[{"addr": "172.21.15.26", "hostname": "smithi026", "labels": [], "status": ""}, {"addr": "172.21.15.50", "hostname": "smithi050", "labels": [], "status": ""}, {"addr": "172.21.15.136", "hostname": "smithi136", "labels": [], "status": ""}] 2024-03-30T13:54:38.520 INFO:tasks.cephadm:Setting crush tunables to default 2024-03-30T13:54:38.520 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph osd crush tunables default 2024-03-30T13:54:39.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:39 smithi026 bash[21443]: cluster 2024-03-30T13:54:37.476763+0000 mgr.a (mgr.14152) 61 : cluster 0 pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:39.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:39 smithi026 bash[21443]: audit 2024-03-30T13:54:37.807486+0000 mgr.a (mgr.14152) 62 : audit 0 from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-30T13:54:40.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:40 smithi026 bash[21443]: cluster 2024-03-30T13:54:39.477143+0000 mgr.a (mgr.14152) 63 : cluster 0 pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:40.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:40 smithi026 bash[21443]: audit 2024-03-30T13:54:39.560631+0000 mon.a (mon.0) 200 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:42.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:42 smithi026 bash[21443]: cluster 2024-03-30T13:54:41.477669+0000 mgr.a (mgr.14152) 64 : cluster 0 pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:43.242 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T13:54:44.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:44 smithi026 bash[21443]: cluster 2024-03-30T13:54:43.478203+0000 mgr.a (mgr.14152) 65 : cluster 0 pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:46.571 INFO:teuthology.orchestra.run.smithi026.stderr:adjusted tunables profile to default 2024-03-30T13:54:46.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:46 smithi026 bash[21443]: cluster 2024-03-30T13:54:45.478684+0000 mgr.a (mgr.14152) 66 : cluster 0 pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:46.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:46 smithi026 bash[21443]: audit 2024-03-30T13:54:46.128659+0000 mon.a (mon.0) 201 : audit 1 from='client.? 172.21.15.26:0/73685723' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-03-30T13:54:47.273 INFO:tasks.cephadm:Adding mon.a on smithi026 2024-03-30T13:54:47.273 INFO:tasks.cephadm:Adding mon.b on smithi050 2024-03-30T13:54:47.273 INFO:tasks.cephadm:Adding mon.c on smithi136 2024-03-30T13:54:47.273 DEBUG:teuthology.orchestra.run.smithi136:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph orch apply mon '3;smithi026:172.21.15.26=a;smithi050:172.21.15.50=b;smithi136:172.21.15.136=c' 2024-03-30T13:54:47.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:47 smithi026 bash[21443]: audit 2024-03-30T13:54:46.568982+0000 mon.a (mon.0) 202 : audit 1 from='client.? 172.21.15.26:0/73685723' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-03-30T13:54:47.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:47 smithi026 bash[21443]: cluster 2024-03-30T13:54:46.573072+0000 mon.a (mon.0) 203 : cluster 0 osdmap e4: 0 total, 0 up, 0 in 2024-03-30T13:54:48.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:48 smithi026 bash[21443]: cluster 2024-03-30T13:54:47.479151+0000 mgr.a (mgr.14152) 67 : cluster 0 pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:49.439 INFO:teuthology.orchestra.run.smithi136.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-03-30T13:54:50.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:50 smithi026 bash[21443]: audit 2024-03-30T13:54:49.171810+0000 mon.a (mon.0) 204 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:50.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:50 smithi026 bash[21443]: audit 2024-03-30T13:54:49.178384+0000 mon.a (mon.0) 205 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:50.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:50 smithi026 bash[21443]: cluster 2024-03-30T13:54:49.479416+0000 mgr.a (mgr.14152) 68 : cluster 0 pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:51.872 INFO:teuthology.orchestra.run.smithi136.stdout:Scheduled mon update... 2024-03-30T13:54:52.388 DEBUG:teuthology.orchestra.run.smithi050:mon.b> sudo journalctl -f -n 0 -u ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@mon.b.service 2024-03-30T13:54:52.391 DEBUG:teuthology.orchestra.run.smithi136:mon.c> sudo journalctl -f -n 0 -u ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@mon.c.service 2024-03-30T13:54:52.392 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-03-30T13:54:52.393 DEBUG:teuthology.orchestra.run.smithi136:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph mon dump -f json 2024-03-30T13:54:52.610 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:52 smithi026 bash[21443]: audit 2024-03-30T13:54:51.220687+0000 mon.a (mon.0) 206 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:52.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:52 smithi026 bash[21443]: audit 2024-03-30T13:54:51.223860+0000 mon.a (mon.0) 207 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:52.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:52 smithi026 bash[21443]: audit 2024-03-30T13:54:51.227473+0000 mon.a (mon.0) 208 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:52.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:52 smithi026 bash[21443]: cluster 2024-03-30T13:54:51.479801+0000 mgr.a (mgr.14152) 69 : cluster 0 pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:52.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:52 smithi026 bash[21443]: audit 2024-03-30T13:54:51.863848+0000 mgr.a (mgr.14152) 70 : audit 0 from='client.14188 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi026:172.21.15.26=a;smithi050:172.21.15.50=b;smithi136:172.21.15.136=c", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:54:52.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:52 smithi026 bash[21443]: cephadm 2024-03-30T13:54:51.869632+0000 mgr.a (mgr.14152) 71 : cephadm 1 Saving service mon spec with placement smithi026:172.21.15.26=a;smithi050:172.21.15.50=b;smithi136:172.21.15.136=c;count:3 2024-03-30T13:54:52.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:52 smithi026 bash[21443]: audit 2024-03-30T13:54:51.874868+0000 mon.a (mon.0) 209 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:52.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:52 smithi026 bash[21443]: audit 2024-03-30T13:54:51.905398+0000 mon.a (mon.0) 210 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:54:52.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:52 smithi026 bash[21443]: audit 2024-03-30T13:54:51.910862+0000 mon.a (mon.0) 211 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:54:52.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:52 smithi026 bash[21443]: audit 2024-03-30T13:54:51.912575+0000 mon.a (mon.0) 212 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:54:52.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:52 smithi026 bash[21443]: audit 2024-03-30T13:54:51.920289+0000 mon.a (mon.0) 213 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:52.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:52 smithi026 bash[21443]: audit 2024-03-30T13:54:51.926009+0000 mon.a (mon.0) 214 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-03-30T13:54:52.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:52 smithi026 bash[21443]: audit 2024-03-30T13:54:51.928034+0000 mon.a (mon.0) 215 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:54:52.612 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:52 smithi026 bash[21443]: cephadm 2024-03-30T13:54:51.930049+0000 mgr.a (mgr.14152) 72 : cephadm 1 Deploying daemon mon.c on smithi136 2024-03-30T13:54:53.620 INFO:teuthology.orchestra.run.smithi136.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-03-30T13:54:54.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:54 smithi026 bash[21443]: cluster 2024-03-30T13:54:53.480162+0000 mgr.a (mgr.14152) 73 : cluster 0 pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:56.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:56 smithi026 bash[21443]: cluster 2024-03-30T13:54:55.480544+0000 mgr.a (mgr.14152) 74 : cluster 0 pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:56.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:56 smithi026 bash[21443]: audit 2024-03-30T13:54:56.246434+0000 mon.a (mon.0) 216 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:56.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:56 smithi026 bash[21443]: audit 2024-03-30T13:54:56.252976+0000 mon.a (mon.0) 217 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:56.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:56 smithi026 bash[21443]: audit 2024-03-30T13:54:56.261345+0000 mon.a (mon.0) 218 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:57.929 INFO:teuthology.orchestra.run.smithi136.stdout: 2024-03-30T13:54:57.929 INFO:teuthology.orchestra.run.smithi136.stdout:{"epoch":1,"fsid":"56554a52-ee9c-11ee-b647-cb9ed24678a4","modified":"2024-03-30T13:52:06.246947Z","created":"2024-03-30T13:52:06.246947Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.26:3300","nonce":0},{"type":"v1","addr":"172.21.15.26:6789","nonce":0}]},"addr":"172.21.15.26:6789/0","public_addr":"172.21.15.26:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-03-30T13:54:57.931 INFO:teuthology.orchestra.run.smithi136.stderr:dumped monmap epoch 1 2024-03-30T13:54:58.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:58 smithi026 bash[21443]: cluster 2024-03-30T13:54:57.480945+0000 mgr.a (mgr.14152) 75 : cluster 0 pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:58.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:58 smithi026 bash[21443]: audit 2024-03-30T13:54:57.545398+0000 mon.a (mon.0) 219 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:58.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:58 smithi026 bash[21443]: audit 2024-03-30T13:54:57.551314+0000 mon.a (mon.0) 220 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:58.861 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:58 smithi026 bash[21443]: audit 2024-03-30T13:54:57.564991+0000 mon.a (mon.0) 221 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:58.861 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:58 smithi026 bash[21443]: audit 2024-03-30T13:54:57.566342+0000 mon.a (mon.0) 222 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-03-30T13:54:58.861 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:58 smithi026 bash[21443]: audit 2024-03-30T13:54:57.568370+0000 mon.a (mon.0) 223 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:54:58.861 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:58 smithi026 bash[21443]: cephadm 2024-03-30T13:54:57.570539+0000 mgr.a (mgr.14152) 76 : cephadm 1 Deploying daemon mon.b on smithi050 2024-03-30T13:54:58.861 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:58 smithi026 bash[21443]: audit 2024-03-30T13:54:57.696479+0000 mon.a (mon.0) 224 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:58.861 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:58 smithi026 bash[21443]: audit 2024-03-30T13:54:57.702773+0000 mon.a (mon.0) 225 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:58.861 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:58 smithi026 bash[21443]: audit 2024-03-30T13:54:57.711236+0000 mon.a (mon.0) 226 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:58.861 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:54:58 smithi026 bash[21443]: audit 2024-03-30T13:54:57.932483+0000 mon.a (mon.0) 227 : audit 0 from='client.? 172.21.15.136:0/2068573771' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-03-30T13:54:59.559 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:35.331101+0000 mon.a (mon.0) 189 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:59.559 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:35.357686+0000 mon.a (mon.0) 190 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:59.559 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:35.432739+0000 mon.a (mon.0) 191 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:54:59.559 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:35.438181+0000 mon.a (mon.0) 192 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:54:59.559 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:35.440163+0000 mon.a (mon.0) 193 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:54:59.700 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:35.448422+0000 mon.a (mon.0) 194 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:59.700 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:36.035520+0000 mon.a (mon.0) 195 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:59.700 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:36.037994+0000 mon.a (mon.0) 196 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:59.700 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:36.041701+0000 mon.a (mon.0) 197 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:59.700 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: cluster 2024-03-30T13:54:35.476480+0000 mgr.a (mgr.14152) 60 : cluster 0 pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:59.700 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:36.403943+0000 mon.a (mon.0) 198 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:59.700 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:36.412137+0000 mon.a (mon.0) 199 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:59.700 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: cluster 2024-03-30T13:54:37.476763+0000 mgr.a (mgr.14152) 61 : cluster 0 pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:59.700 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:37.807486+0000 mgr.a (mgr.14152) 62 : audit 0 from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-30T13:54:59.701 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: cluster 2024-03-30T13:54:39.477143+0000 mgr.a (mgr.14152) 63 : cluster 0 pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:59.701 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:39.560631+0000 mon.a (mon.0) 200 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:59.701 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: cluster 2024-03-30T13:54:41.477669+0000 mgr.a (mgr.14152) 64 : cluster 0 pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:59.701 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: cluster 2024-03-30T13:54:43.478203+0000 mgr.a (mgr.14152) 65 : cluster 0 pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:59.701 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: cluster 2024-03-30T13:54:45.478684+0000 mgr.a (mgr.14152) 66 : cluster 0 pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:59.701 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:46.128659+0000 mon.a (mon.0) 201 : audit 1 from='client.? 172.21.15.26:0/73685723' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-03-30T13:54:59.701 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:46.568982+0000 mon.a (mon.0) 202 : audit 1 from='client.? 172.21.15.26:0/73685723' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-03-30T13:54:59.701 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: cluster 2024-03-30T13:54:46.573072+0000 mon.a (mon.0) 203 : cluster 0 osdmap e4: 0 total, 0 up, 0 in 2024-03-30T13:54:59.701 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: cluster 2024-03-30T13:54:47.479151+0000 mgr.a (mgr.14152) 67 : cluster 0 pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:59.701 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:49.171810+0000 mon.a (mon.0) 204 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:59.701 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:49.178384+0000 mon.a (mon.0) 205 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:59.701 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: cluster 2024-03-30T13:54:49.479416+0000 mgr.a (mgr.14152) 68 : cluster 0 pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:59.701 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:51.220687+0000 mon.a (mon.0) 206 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:59.702 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:51.223860+0000 mon.a (mon.0) 207 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:59.702 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:51.227473+0000 mon.a (mon.0) 208 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:59.702 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: cluster 2024-03-30T13:54:51.479801+0000 mgr.a (mgr.14152) 69 : cluster 0 pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:59.702 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:51.863848+0000 mgr.a (mgr.14152) 70 : audit 0 from='client.14188 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi026:172.21.15.26=a;smithi050:172.21.15.50=b;smithi136:172.21.15.136=c", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:54:59.702 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: cephadm 2024-03-30T13:54:51.869632+0000 mgr.a (mgr.14152) 71 : cephadm 1 Saving service mon spec with placement smithi026:172.21.15.26=a;smithi050:172.21.15.50=b;smithi136:172.21.15.136=c;count:3 2024-03-30T13:54:59.702 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:51.874868+0000 mon.a (mon.0) 209 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:59.702 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:51.905398+0000 mon.a (mon.0) 210 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:54:59.702 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:51.910862+0000 mon.a (mon.0) 211 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:54:59.702 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:51.912575+0000 mon.a (mon.0) 212 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:54:59.702 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:51.920289+0000 mon.a (mon.0) 213 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:59.702 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:51.926009+0000 mon.a (mon.0) 214 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-03-30T13:54:59.702 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:51.928034+0000 mon.a (mon.0) 215 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:54:59.702 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: cephadm 2024-03-30T13:54:51.930049+0000 mgr.a (mgr.14152) 72 : cephadm 1 Deploying daemon mon.c on smithi136 2024-03-30T13:54:59.703 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: cluster 2024-03-30T13:54:53.480162+0000 mgr.a (mgr.14152) 73 : cluster 0 pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:59.703 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: cluster 2024-03-30T13:54:55.480544+0000 mgr.a (mgr.14152) 74 : cluster 0 pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:59.703 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:56.246434+0000 mon.a (mon.0) 216 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:59.703 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:56.252976+0000 mon.a (mon.0) 217 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:59.703 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:56.261345+0000 mon.a (mon.0) 218 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:59.703 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: cluster 2024-03-30T13:54:57.480945+0000 mgr.a (mgr.14152) 75 : cluster 0 pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:54:59.703 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:57.545398+0000 mon.a (mon.0) 219 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:59.703 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:57.551314+0000 mon.a (mon.0) 220 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:59.703 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:57.564991+0000 mon.a (mon.0) 221 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:59.703 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:57.566342+0000 mon.a (mon.0) 222 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-03-30T13:54:59.703 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:57.568370+0000 mon.a (mon.0) 223 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:54:59.703 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: cephadm 2024-03-30T13:54:57.570539+0000 mgr.a (mgr.14152) 76 : cephadm 1 Deploying daemon mon.b on smithi050 2024-03-30T13:54:59.703 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:57.696479+0000 mon.a (mon.0) 224 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:59.703 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:57.702773+0000 mon.a (mon.0) 225 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:59.703 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:57.711236+0000 mon.a (mon.0) 226 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:54:59.703 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: audit 2024-03-30T13:54:57.932483+0000 mon.a (mon.0) 227 : audit 0 from='client.? 172.21.15.136:0/2068573771' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-03-30T13:54:59.704 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:54:59 smithi136 bash[22230]: debug 2024-03-30T13:54:59.556+0000 7f85fde1a700 1 mon.c@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2024-03-30T13:55:00.263 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-03-30T13:55:00.264 DEBUG:teuthology.orchestra.run.smithi136:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph mon dump -f json 2024-03-30T13:55:01.969 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:01 smithi050 systemd[1]: Started Ceph mon.b for 56554a52-ee9c-11ee-b647-cb9ed24678a4. 2024-03-30T13:55:02.904 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.869+0000 7ff9853eac80 0 set uid:gid to 167:167 (ceph:ceph) 2024-03-30T13:55:02.904 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.869+0000 7ff9853eac80 0 ceph version 19.0.0-1967-g4e50bbcd (4e50bbcdd1630c7760b708f3a5b4d38a121e66cb) squid (dev), process ceph-mon, pid 7 2024-03-30T13:55:02.904 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.869+0000 7ff9853eac80 0 pidfile_write: ignore empty --pid-file 2024-03-30T13:55:02.904 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.873+0000 7ff9853eac80 0 load: jerasure load: lrc 2024-03-30T13:55:02.904 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.873+0000 7ff9853eac80 4 rocksdb: RocksDB version: 7.9.2 2024-03-30T13:55:02.905 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Git sha 0 2024-03-30T13:55:02.905 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Compile date 2024-03-29 15:06:16 2024-03-30T13:55:02.905 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: DB SUMMARY 2024-03-30T13:55:02.905 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: DB Session ID: QMNYOQ816GW4TY4KIWH4 2024-03-30T13:55:02.905 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: CURRENT file: CURRENT 2024-03-30T13:55:02.905 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: IDENTITY file: IDENTITY 2024-03-30T13:55:02.905 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2024-03-30T13:55:02.905 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-b/store.db dir, Total Num: 0, files: 2024-03-30T13:55:02.905 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-b/store.db: 000004.log size: 511 ; 2024-03-30T13:55:02.905 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.error_if_exists: 0 2024-03-30T13:55:02.905 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.create_if_missing: 0 2024-03-30T13:55:02.905 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.paranoid_checks: 1 2024-03-30T13:55:02.905 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-03-30T13:55:02.906 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-03-30T13:55:02.906 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-03-30T13:55:02.906 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.env: 0x56400d10dc60 2024-03-30T13:55:02.906 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.fs: PosixFileSystem 2024-03-30T13:55:02.906 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.info_log: 0x56400f4d7b20 2024-03-30T13:55:02.906 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.max_file_opening_threads: 16 2024-03-30T13:55:02.906 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.statistics: (nil) 2024-03-30T13:55:02.906 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.use_fsync: 0 2024-03-30T13:55:02.906 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.max_log_file_size: 0 2024-03-30T13:55:02.907 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-03-30T13:55:02.907 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-03-30T13:55:02.907 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.keep_log_file_num: 1000 2024-03-30T13:55:02.908 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.recycle_log_file_num: 0 2024-03-30T13:55:02.908 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.allow_fallocate: 1 2024-03-30T13:55:02.908 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.allow_mmap_reads: 0 2024-03-30T13:55:02.908 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.allow_mmap_writes: 0 2024-03-30T13:55:02.908 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.use_direct_reads: 0 2024-03-30T13:55:02.908 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-03-30T13:55:02.908 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.create_missing_column_families: 0 2024-03-30T13:55:02.908 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.db_log_dir: 2024-03-30T13:55:02.908 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.wal_dir: 2024-03-30T13:55:02.908 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-03-30T13:55:02.908 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-03-30T13:55:02.909 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-03-30T13:55:02.909 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-03-30T13:55:02.909 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-03-30T13:55:02.909 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-03-30T13:55:02.909 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.advise_random_on_open: 1 2024-03-30T13:55:02.909 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.db_write_buffer_size: 0 2024-03-30T13:55:02.909 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.write_buffer_manager: 0x56400f4aa1e0 2024-03-30T13:55:02.909 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-03-30T13:55:02.909 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-03-30T13:55:02.909 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-03-30T13:55:02.909 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.rate_limiter: (nil) 2024-03-30T13:55:02.909 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-03-30T13:55:02.909 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.wal_recovery_mode: 2 2024-03-30T13:55:02.910 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.enable_thread_tracking: 0 2024-03-30T13:55:02.910 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.enable_pipelined_write: 0 2024-03-30T13:55:02.910 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.unordered_write: 0 2024-03-30T13:55:02.910 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-03-30T13:55:02.910 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-03-30T13:55:02.910 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-03-30T13:55:02.910 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-03-30T13:55:02.910 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.row_cache: None 2024-03-30T13:55:02.910 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.wal_filter: None 2024-03-30T13:55:02.910 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-03-30T13:55:02.911 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.allow_ingest_behind: 0 2024-03-30T13:55:02.911 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.two_write_queues: 0 2024-03-30T13:55:02.911 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.manual_wal_flush: 0 2024-03-30T13:55:02.911 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.wal_compression: 0 2024-03-30T13:55:02.911 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.atomic_flush: 0 2024-03-30T13:55:02.911 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-03-30T13:55:02.911 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-03-30T13:55:02.911 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-03-30T13:55:02.911 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.log_readahead_size: 0 2024-03-30T13:55:02.911 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-03-30T13:55:02.911 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.best_efforts_recovery: 0 2024-03-30T13:55:02.911 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-03-30T13:55:02.911 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-03-30T13:55:02.912 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.allow_data_in_errors: 0 2024-03-30T13:55:02.912 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.db_host_id: __hostname__ 2024-03-30T13:55:02.912 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-03-30T13:55:02.912 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.max_background_jobs: 2 2024-03-30T13:55:02.912 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.max_background_compactions: -1 2024-03-30T13:55:02.912 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.max_subcompactions: 1 2024-03-30T13:55:02.912 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-03-30T13:55:02.912 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-03-30T13:55:02.912 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-03-30T13:55:02.912 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.max_total_wal_size: 0 2024-03-30T13:55:02.913 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-03-30T13:55:02.913 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-03-30T13:55:02.913 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-03-30T13:55:02.913 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-03-30T13:55:02.913 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.max_open_files: -1 2024-03-30T13:55:02.913 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.bytes_per_sync: 0 2024-03-30T13:55:02.913 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-03-30T13:55:02.913 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-03-30T13:55:02.913 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.compaction_readahead_size: 0 2024-03-30T13:55:02.913 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.max_background_flushes: -1 2024-03-30T13:55:02.913 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Compression algorithms supported: 2024-03-30T13:55:02.913 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-03-30T13:55:02.913 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: kZSTD supported: 0 2024-03-30T13:55:02.914 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: kXpressCompression supported: 0 2024-03-30T13:55:02.914 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: kLZ4HCCompression supported: 1 2024-03-30T13:55:02.914 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: kZlibCompression supported: 1 2024-03-30T13:55:02.914 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: kSnappyCompression supported: 1 2024-03-30T13:55:02.914 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: kLZ4Compression supported: 1 2024-03-30T13:55:02.914 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: kBZip2Compression supported: 0 2024-03-30T13:55:02.914 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-03-30T13:55:02.914 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-03-30T13:55:02.914 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-b/store.db/MANIFEST-000005 2024-03-30T13:55:02.914 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-03-30T13:55:02.914 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-03-30T13:55:02.914 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.merge_operator: 2024-03-30T13:55:02.915 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.compaction_filter: None 2024-03-30T13:55:02.915 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.compaction_filter_factory: None 2024-03-30T13:55:02.915 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.sst_partitioner_factory: None 2024-03-30T13:55:02.915 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-03-30T13:55:02.915 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-03-30T13:55:02.915 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x56400f4d7c40) 2024-03-30T13:55:02.915 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cache_index_and_filter_blocks: 1 2024-03-30T13:55:02.915 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cache_index_and_filter_blocks_with_high_priority: 0 2024-03-30T13:55:02.915 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-03-30T13:55:02.915 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: pin_top_level_index_and_filter: 1 2024-03-30T13:55:02.915 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: index_type: 0 2024-03-30T13:55:02.915 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: data_block_index_type: 0 2024-03-30T13:55:02.915 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: index_shortening: 1 2024-03-30T13:55:02.915 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: data_block_hash_table_util_ratio: 0.750000 2024-03-30T13:55:02.916 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: checksum: 4 2024-03-30T13:55:02.916 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: no_block_cache: 0 2024-03-30T13:55:02.916 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: block_cache: 0x56400f4d9090 2024-03-30T13:55:02.916 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: block_cache_name: BinnedLRUCache 2024-03-30T13:55:02.916 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: block_cache_options: 2024-03-30T13:55:02.916 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: capacity : 536870912 2024-03-30T13:55:02.916 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: num_shard_bits : 4 2024-03-30T13:55:02.916 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: strict_capacity_limit : 0 2024-03-30T13:55:02.916 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: high_pri_pool_ratio: 0.000 2024-03-30T13:55:02.916 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: block_cache_compressed: (nil) 2024-03-30T13:55:02.916 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: persistent_cache: (nil) 2024-03-30T13:55:02.916 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: block_size: 4096 2024-03-30T13:55:02.916 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: block_size_deviation: 10 2024-03-30T13:55:02.917 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: block_restart_interval: 16 2024-03-30T13:55:02.917 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: index_block_restart_interval: 1 2024-03-30T13:55:02.917 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: metadata_block_size: 4096 2024-03-30T13:55:02.917 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: partition_filters: 0 2024-03-30T13:55:02.917 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: use_delta_encoding: 1 2024-03-30T13:55:02.917 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: filter_policy: bloomfilter 2024-03-30T13:55:02.917 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: whole_key_filtering: 1 2024-03-30T13:55:02.917 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: verify_compression: 0 2024-03-30T13:55:02.917 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: read_amp_bytes_per_bit: 0 2024-03-30T13:55:02.917 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: format_version: 5 2024-03-30T13:55:02.917 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: enable_index_compression: 1 2024-03-30T13:55:02.917 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: block_align: 0 2024-03-30T13:55:02.917 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: max_auto_readahead_size: 262144 2024-03-30T13:55:02.917 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: prepopulate_block_cache: 0 2024-03-30T13:55:02.917 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: initial_auto_readahead_size: 8192 2024-03-30T13:55:02.918 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: num_file_reads_for_auto_readahead: 2 2024-03-30T13:55:02.918 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.write_buffer_size: 33554432 2024-03-30T13:55:02.918 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.max_write_buffer_number: 2 2024-03-30T13:55:02.918 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.compression: NoCompression 2024-03-30T13:55:02.918 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.bottommost_compression: Disabled 2024-03-30T13:55:02.918 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.prefix_extractor: nullptr 2024-03-30T13:55:02.918 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-03-30T13:55:02.918 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.num_levels: 7 2024-03-30T13:55:02.918 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-03-30T13:55:02.919 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-03-30T13:55:02.919 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-03-30T13:55:02.919 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-03-30T13:55:02.919 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-03-30T13:55:02.919 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-03-30T13:55:02.919 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-03-30T13:55:02.919 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-03-30T13:55:02.919 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-03-30T13:55:02.919 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-03-30T13:55:02.919 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-03-30T13:55:02.919 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-03-30T13:55:02.919 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-03-30T13:55:02.919 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.compression_opts.level: 32767 2024-03-30T13:55:02.920 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.compression_opts.strategy: 0 2024-03-30T13:55:02.920 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-03-30T13:55:02.920 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-03-30T13:55:02.920 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-03-30T13:55:02.920 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-03-30T13:55:02.920 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.compression_opts.enabled: false 2024-03-30T13:55:02.920 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-03-30T13:55:02.920 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-03-30T13:55:02.920 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-03-30T13:55:02.920 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-03-30T13:55:02.921 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.target_file_size_base: 67108864 2024-03-30T13:55:02.921 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-03-30T13:55:02.921 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-03-30T13:55:02.921 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-03-30T13:55:02.921 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-03-30T13:55:02.921 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-03-30T13:55:02.921 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-03-30T13:55:02.921 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-03-30T13:55:02.921 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-03-30T13:55:02.921 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-03-30T13:55:02.921 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-03-30T13:55:02.921 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-03-30T13:55:02.921 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-03-30T13:55:02.921 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-03-30T13:55:02.921 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-03-30T13:55:02.922 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.arena_block_size: 1048576 2024-03-30T13:55:02.922 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-03-30T13:55:02.922 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-03-30T13:55:02.922 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.disable_auto_compactions: 0 2024-03-30T13:55:02.922 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-03-30T13:55:02.922 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-03-30T13:55:02.922 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-03-30T13:55:02.922 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-03-30T13:55:02.922 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-03-30T13:55:02.924 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-03-30T13:55:02.924 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-03-30T13:55:02.924 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-03-30T13:55:02.924 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-03-30T13:55:02.924 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-03-30T13:55:02.924 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.table_properties_collectors: 2024-03-30T13:55:02.924 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.inplace_update_support: 0 2024-03-30T13:55:02.925 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-03-30T13:55:02.925 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-03-30T13:55:02.925 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-03-30T13:55:02.925 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-03-30T13:55:02.925 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.bloom_locality: 0 2024-03-30T13:55:02.925 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.max_successive_merges: 0 2024-03-30T13:55:02.925 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-03-30T13:55:02.925 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.paranoid_file_checks: 0 2024-03-30T13:55:02.925 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.force_consistency_checks: 1 2024-03-30T13:55:02.925 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.report_bg_io_stats: 0 2024-03-30T13:55:02.925 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.ttl: 2592000 2024-03-30T13:55:02.925 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-03-30T13:55:02.925 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-03-30T13:55:02.925 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-03-30T13:55:02.926 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.enable_blob_files: false 2024-03-30T13:55:02.926 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.min_blob_size: 0 2024-03-30T13:55:02.926 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.blob_file_size: 268435456 2024-03-30T13:55:02.926 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-03-30T13:55:02.926 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-03-30T13:55:02.926 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-03-30T13:55:02.926 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-03-30T13:55:02.926 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-03-30T13:55:02.926 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.blob_file_starting_level: 0 2024-03-30T13:55:02.926 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-03-30T13:55:02.926 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-b/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-03-30T13:55:02.926 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-03-30T13:55:02.926 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: d0b33f11-8195-45cb-9466-8d4a76d4680f 2024-03-30T13:55:02.926 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1711806902879845, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-03-30T13:55:02.927 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2024-03-30T13:55:02.927 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1711806902880311, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 8, "file_size": 1622, "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": "[]", "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": 1711806902, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "d0b33f11-8195-45cb-9466-8d4a76d4680f", "db_session_id": "QMNYOQ816GW4TY4KIWH4", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2024-03-30T13:55:02.927 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1711806902880409, "job": 1, "event": "recovery_finished"} 2024-03-30T13:55:02.927 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 10 2024-03-30T13:55:02.927 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-b/store.db/000004.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-03-30T13:55:02.927 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x56400f5ce000 2024-03-30T13:55:02.927 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.877+0000 7ff9853eac80 4 rocksdb: DB pointer 0x56400f5b8000 2024-03-30T13:55:02.927 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.881+0000 7ff973b4c700 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-03-30T13:55:02.927 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.881+0000 7ff973b4c700 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-03-30T13:55:02.927 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: ** DB Stats ** 2024-03-30T13:55:02.927 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: Uptime(secs): 0.0 total, 0.0 interval 2024-03-30T13:55:02.927 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-03-30T13:55:02.928 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-03-30T13:55:02.928 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-03-30T13:55:02.928 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-03-30T13:55:02.928 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-03-30T13:55:02.928 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-03-30T13:55:02.928 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: ** Compaction Stats [default] ** 2024-03-30T13:55:02.928 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: 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-03-30T13:55:02.928 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-03-30T13:55:02.928 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: L0 1/0 1.58 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.6 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-03-30T13:55:02.928 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: Sum 1/0 1.58 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.6 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-03-30T13:55:02.928 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: 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.6 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-03-30T13:55:02.928 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: ** Compaction Stats [default] ** 2024-03-30T13:55:02.929 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: 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-03-30T13:55:02.929 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-03-30T13:55:02.929 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: 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.6 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-03-30T13:55:02.929 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-03-30T13:55:02.929 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: Uptime(secs): 0.0 total, 0.0 interval 2024-03-30T13:55:02.929 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: Flush(GB): cumulative 0.000, interval 0.000 2024-03-30T13:55:02.929 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: AddFile(GB): cumulative 0.000, interval 0.000 2024-03-30T13:55:02.929 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: AddFile(Total Files): cumulative 0, interval 0 2024-03-30T13:55:02.929 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: AddFile(L0 Files): cumulative 0, interval 0 2024-03-30T13:55:02.929 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: AddFile(Keys): cumulative 0, interval 0 2024-03-30T13:55:02.929 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: Cumulative compaction: 0.00 GB write, 0.42 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-03-30T13:55:02.930 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: Interval compaction: 0.00 GB write, 0.42 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-03-30T13:55:02.930 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: 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-03-30T13:55:02.930 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: Block cache BinnedLRUCache@0x56400f4d9090#7 capacity: 512.00 MB usage: 0.22 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.5e-05 secs_since: 0 2024-03-30T13:55:02.930 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: 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-03-30T13:55:02.930 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: ** File Read Latency Histogram By Level [default] ** 2024-03-30T13:55:02.930 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.881+0000 7ff9853eac80 0 mon.b does not exist in monmap, will attempt to join an existing cluster 2024-03-30T13:55:02.930 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.881+0000 7ff9853eac80 0 using public_addr v2:172.21.15.50:0/0 -> [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] 2024-03-30T13:55:02.930 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.881+0000 7ff9853eac80 0 starting mon.b rank -1 at public addrs [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] at bind addrs [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon_data /var/lib/ceph/mon/ceph-b fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T13:55:02.930 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.881+0000 7ff9853eac80 1 mon.b@-1(???) e0 preinit fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T13:55:02.930 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.901+0000 7ff976b52700 0 mon.b@-1(synchronizing).mds e1 new map 2024-03-30T13:55:02.930 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.901+0000 7ff976b52700 0 mon.b@-1(synchronizing).mds e1 print_map 2024-03-30T13:55:02.930 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: e1 2024-03-30T13:55:02.930 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: enable_multiple, ever_enabled_multiple: 1,1 2024-03-30T13:55:02.931 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2024-03-30T13:55:02.931 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: legacy client fscid: -1 2024-03-30T13:55:02.931 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: 2024-03-30T13:55:02.931 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: No filesystems configured 2024-03-30T13:55:02.931 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.901+0000 7ff976b52700 1 mon.b@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-03-30T13:55:02.931 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.901+0000 7ff976b52700 1 mon.b@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-03-30T13:55:02.931 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.901+0000 7ff976b52700 1 mon.b@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-03-30T13:55:02.931 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.901+0000 7ff976b52700 1 mon.b@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-03-30T13:55:02.931 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.901+0000 7ff976b52700 1 mon.b@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-03-30T13:55:02.931 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.901+0000 7ff976b52700 1 mon.b@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-03-30T13:55:02.931 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.901+0000 7ff976b52700 0 mon.b@-1(synchronizing).osd e4 crush map has features 3314932999778484224, adjusting msgr requires 2024-03-30T13:55:02.931 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.901+0000 7ff976b52700 0 mon.b@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-03-30T13:55:02.931 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.901+0000 7ff976b52700 0 mon.b@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-03-30T13:55:02.931 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.901+0000 7ff976b52700 0 mon.b@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-03-30T13:55:02.932 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:53:45.139971+0000 mon.a (mon.0) 124 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.932 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:53:45.146196+0000 mon.a (mon.0) 125 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.932 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:53:45.466740+0000 mgr.a (mgr.14152) 13 : cluster 0 pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.932 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:53:47.467204+0000 mgr.a (mgr.14152) 14 : cluster 0 pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.932 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:53:48.253253+0000 mgr.a (mgr.14152) 15 : audit 0 from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:55:02.932 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:53:48.256808+0000 mon.a (mon.0) 126 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.932 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:53:48.283136+0000 mon.a (mon.0) 127 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:55:02.932 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:53:48.284964+0000 mon.a (mon.0) 128 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:02.932 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:53:48.285712+0000 mon.a (mon.0) 129 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:55:02.932 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cephadm 2024-03-30T13:53:48.286709+0000 mgr.a (mgr.14152) 16 : cephadm 1 Updating smithi026:/etc/ceph/ceph.conf 2024-03-30T13:55:02.932 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cephadm 2024-03-30T13:53:48.400881+0000 mgr.a (mgr.14152) 17 : cephadm 1 Updating smithi026:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-03-30T13:55:02.932 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cephadm 2024-03-30T13:53:48.515935+0000 mgr.a (mgr.14152) 18 : cephadm 1 Updating smithi026:/etc/ceph/ceph.client.admin.keyring 2024-03-30T13:55:02.932 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cephadm 2024-03-30T13:53:48.630286+0000 mgr.a (mgr.14152) 19 : cephadm 1 Updating smithi026:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.client.admin.keyring 2024-03-30T13:55:02.932 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:53:48.799254+0000 mon.a (mon.0) 130 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.933 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:53:48.803955+0000 mon.a (mon.0) 131 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.933 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:53:48.808166+0000 mon.a (mon.0) 132 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.933 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:53:49.467605+0000 mgr.a (mgr.14152) 20 : cluster 0 pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.933 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:53:51.467985+0000 mgr.a (mgr.14152) 21 : cluster 0 pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.933 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:53:53.468519+0000 mgr.a (mgr.14152) 22 : cluster 0 pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.933 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:53:55.468992+0000 mgr.a (mgr.14152) 23 : cluster 0 pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.933 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:53:55.703044+0000 mon.a (mon.0) 133 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.933 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:53:55.705712+0000 mon.a (mon.0) 134 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.933 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:53:55.709158+0000 mon.a (mon.0) 135 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.933 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:53:57.469482+0000 mgr.a (mgr.14152) 24 : cluster 0 pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.933 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:53:58.212662+0000 mgr.a (mgr.14152) 25 : audit 0 from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi050", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:55:02.933 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cephadm 2024-03-30T13:53:58.902810+0000 mgr.a (mgr.14152) 26 : cephadm 1 Deploying cephadm binary to smithi050 2024-03-30T13:55:02.933 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:53:59.469941+0000 mgr.a (mgr.14152) 27 : cluster 0 pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.933 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:54:01.470326+0000 mgr.a (mgr.14152) 28 : cluster 0 pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.934 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:54:03.470592+0000 mgr.a (mgr.14152) 29 : cluster 0 pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.934 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:04.309111+0000 mon.a (mon.0) 136 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.934 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:04.317263+0000 mon.a (mon.0) 137 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:55:02.934 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cephadm 2024-03-30T13:54:04.310080+0000 mgr.a (mgr.14152) 30 : cephadm 1 Added host smithi050 2024-03-30T13:55:02.934 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:04.842555+0000 mon.a (mon.0) 138 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.934 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:54:05.471045+0000 mgr.a (mgr.14152) 31 : cluster 0 pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.934 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:06.367631+0000 mon.a (mon.0) 139 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.934 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:06.373395+0000 mon.a (mon.0) 140 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.934 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:06.374874+0000 mon.a (mon.0) 141 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi050", "name": "osd_memory_target"}]: dispatch 2024-03-30T13:55:02.935 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:06.376984+0000 mon.a (mon.0) 142 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:02.935 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:06.378889+0000 mon.a (mon.0) 143 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:55:02.935 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cephadm 2024-03-30T13:54:06.381761+0000 mgr.a (mgr.14152) 32 : cephadm 1 Updating smithi050:/etc/ceph/ceph.conf 2024-03-30T13:55:02.935 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cephadm 2024-03-30T13:54:06.597700+0000 mgr.a (mgr.14152) 33 : cephadm 1 Updating smithi050:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-03-30T13:55:02.935 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cephadm 2024-03-30T13:54:06.813443+0000 mgr.a (mgr.14152) 34 : cephadm 1 Updating smithi050:/etc/ceph/ceph.client.admin.keyring 2024-03-30T13:55:02.935 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cephadm 2024-03-30T13:54:07.028924+0000 mgr.a (mgr.14152) 35 : cephadm 1 Updating smithi050:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.client.admin.keyring 2024-03-30T13:55:02.935 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:07.249609+0000 mon.a (mon.0) 144 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.935 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:07.255543+0000 mon.a (mon.0) 145 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.935 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:07.258860+0000 mon.a (mon.0) 146 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi050", "caps": []}]: dispatch 2024-03-30T13:55:02.935 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:07.260423+0000 mon.a (mon.0) 147 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi050", "caps": []}]': finished 2024-03-30T13:55:02.935 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:54:07.471411+0000 mgr.a (mgr.14152) 36 : cluster 0 pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.935 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cephadm 2024-03-30T13:54:09.025719+0000 mgr.a (mgr.14152) 37 : cephadm 1 Deploying daemon agent.smithi050 on smithi050 2024-03-30T13:55:02.935 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:54:09.471749+0000 mgr.a (mgr.14152) 38 : cluster 0 pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.936 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:09.950777+0000 mon.a (mon.0) 148 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.936 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:09.997438+0000 mon.a (mon.0) 149 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.936 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:10.003008+0000 mon.a (mon.0) 150 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.936 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:10.070471+0000 mon.a (mon.0) 151 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:55:02.936 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:10.074872+0000 mon.a (mon.0) 152 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:02.936 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:10.076614+0000 mon.a (mon.0) 153 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:55:02.936 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:10.084670+0000 mon.a (mon.0) 154 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.936 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:10.154727+0000 mon.a (mon.0) 155 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:55:02.936 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:10.159270+0000 mon.a (mon.0) 156 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:02.936 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:10.161048+0000 mon.a (mon.0) 157 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:55:02.936 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:10.168085+0000 mon.a (mon.0) 158 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.936 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:10.434850+0000 mon.a (mon.0) 159 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.936 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:54:11.472193+0000 mgr.a (mgr.14152) 39 : cluster 0 pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.936 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:11.495108+0000 mon.a (mon.0) 160 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.937 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:11.501420+0000 mon.a (mon.0) 161 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.937 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:54:13.472502+0000 mgr.a (mgr.14152) 40 : cluster 0 pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.937 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:13.761409+0000 mgr.a (mgr.14152) 41 : audit 0 from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-30T13:55:02.937 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:14.552686+0000 mon.a (mon.0) 162 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.937 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:54:15.472787+0000 mgr.a (mgr.14152) 42 : cluster 0 pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.937 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:15.902466+0000 mon.a (mon.0) 163 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.937 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:15.906715+0000 mon.a (mon.0) 164 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.937 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:15.911381+0000 mon.a (mon.0) 165 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.937 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:54:17.473170+0000 mgr.a (mgr.14152) 43 : cluster 0 pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.937 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:54:19.473575+0000 mgr.a (mgr.14152) 44 : cluster 0 pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.937 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:54:21.474034+0000 mgr.a (mgr.14152) 45 : cluster 0 pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.937 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:22.312780+0000 mgr.a (mgr.14152) 46 : audit 0 from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi136", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:55:02.937 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cephadm 2024-03-30T13:54:23.043718+0000 mgr.a (mgr.14152) 47 : cephadm 1 Deploying cephadm binary to smithi136 2024-03-30T13:55:02.937 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:54:23.474461+0000 mgr.a (mgr.14152) 48 : cluster 0 pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.937 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:24.605491+0000 mon.a (mon.0) 166 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.938 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:24.621100+0000 mon.a (mon.0) 167 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.938 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:54:25.474854+0000 mgr.a (mgr.14152) 49 : cluster 0 pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.938 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:54:27.475250+0000 mgr.a (mgr.14152) 50 : cluster 0 pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.938 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:28.425481+0000 mon.a (mon.0) 168 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.938 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:28.471360+0000 mon.a (mon.0) 169 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:55:02.938 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cephadm 2024-03-30T13:54:28.426264+0000 mgr.a (mgr.14152) 51 : cephadm 1 Added host smithi136 2024-03-30T13:55:02.938 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:28.943747+0000 mon.a (mon.0) 170 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.938 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:54:29.475507+0000 mgr.a (mgr.14152) 52 : cluster 0 pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.938 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:30.470250+0000 mon.a (mon.0) 171 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.938 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:30.477760+0000 mon.a (mon.0) 172 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.938 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:30.479554+0000 mon.a (mon.0) 173 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi136", "name": "osd_memory_target"}]: dispatch 2024-03-30T13:55:02.939 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:30.481435+0000 mon.a (mon.0) 174 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:02.939 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:30.483010+0000 mon.a (mon.0) 175 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:55:02.939 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cephadm 2024-03-30T13:54:30.485623+0000 mgr.a (mgr.14152) 53 : cephadm 1 Updating smithi136:/etc/ceph/ceph.conf 2024-03-30T13:55:02.939 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cephadm 2024-03-30T13:54:30.700646+0000 mgr.a (mgr.14152) 54 : cephadm 1 Updating smithi136:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-03-30T13:55:02.939 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cephadm 2024-03-30T13:54:30.917636+0000 mgr.a (mgr.14152) 55 : cephadm 1 Updating smithi136:/etc/ceph/ceph.client.admin.keyring 2024-03-30T13:55:02.939 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cephadm 2024-03-30T13:54:31.031955+0000 mgr.a (mgr.14152) 56 : cephadm 1 Updating smithi136:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.client.admin.keyring 2024-03-30T13:55:02.939 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:31.049481+0000 mon.a (mon.0) 176 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.939 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:31.052552+0000 mon.a (mon.0) 177 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.939 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:31.056563+0000 mon.a (mon.0) 178 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.940 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:31.202431+0000 mon.a (mon.0) 179 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.940 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:31.207749+0000 mon.a (mon.0) 180 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.940 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:31.210165+0000 mon.a (mon.0) 181 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi136", "caps": []}]: dispatch 2024-03-30T13:55:02.940 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:31.211540+0000 mon.a (mon.0) 182 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi136", "caps": []}]': finished 2024-03-30T13:55:02.940 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:54:31.475748+0000 mgr.a (mgr.14152) 57 : cluster 0 pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.940 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:54:33.476076+0000 mgr.a (mgr.14152) 58 : cluster 0 pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.940 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cephadm 2024-03-30T13:54:33.942510+0000 mgr.a (mgr.14152) 59 : cephadm 1 Deploying daemon agent.smithi136 on smithi136 2024-03-30T13:55:02.940 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:34.861230+0000 mon.a (mon.0) 183 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.940 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:34.913194+0000 mon.a (mon.0) 184 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.940 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:34.919166+0000 mon.a (mon.0) 185 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.940 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:35.319654+0000 mon.a (mon.0) 186 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:55:02.940 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:35.324038+0000 mon.a (mon.0) 187 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:02.940 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:35.325421+0000 mon.a (mon.0) 188 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:55:02.941 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:35.331101+0000 mon.a (mon.0) 189 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.941 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:35.357686+0000 mon.a (mon.0) 190 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.941 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:35.432739+0000 mon.a (mon.0) 191 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:55:02.941 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:35.438181+0000 mon.a (mon.0) 192 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:02.941 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:35.440163+0000 mon.a (mon.0) 193 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:55:02.941 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:35.448422+0000 mon.a (mon.0) 194 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.941 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:36.035520+0000 mon.a (mon.0) 195 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.941 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:36.037994+0000 mon.a (mon.0) 196 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.941 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:36.041701+0000 mon.a (mon.0) 197 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.941 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:54:35.476480+0000 mgr.a (mgr.14152) 60 : cluster 0 pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.941 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:36.403943+0000 mon.a (mon.0) 198 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.941 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:36.412137+0000 mon.a (mon.0) 199 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.941 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:54:37.476763+0000 mgr.a (mgr.14152) 61 : cluster 0 pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.941 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:37.807486+0000 mgr.a (mgr.14152) 62 : audit 0 from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-30T13:55:02.942 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:54:39.477143+0000 mgr.a (mgr.14152) 63 : cluster 0 pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.942 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:39.560631+0000 mon.a (mon.0) 200 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.942 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:54:41.477669+0000 mgr.a (mgr.14152) 64 : cluster 0 pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.942 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:54:43.478203+0000 mgr.a (mgr.14152) 65 : cluster 0 pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.942 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:54:45.478684+0000 mgr.a (mgr.14152) 66 : cluster 0 pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.942 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:46.128659+0000 mon.a (mon.0) 201 : audit 1 from='client.? 172.21.15.26:0/73685723' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-03-30T13:55:02.942 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:46.568982+0000 mon.a (mon.0) 202 : audit 1 from='client.? 172.21.15.26:0/73685723' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-03-30T13:55:02.942 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:54:46.573072+0000 mon.a (mon.0) 203 : cluster 0 osdmap e4: 0 total, 0 up, 0 in 2024-03-30T13:55:02.942 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:54:47.479151+0000 mgr.a (mgr.14152) 67 : cluster 0 pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.942 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:49.171810+0000 mon.a (mon.0) 204 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.942 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:49.178384+0000 mon.a (mon.0) 205 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.942 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:54:49.479416+0000 mgr.a (mgr.14152) 68 : cluster 0 pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.942 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:51.220687+0000 mon.a (mon.0) 206 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.942 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:51.223860+0000 mon.a (mon.0) 207 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.943 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:51.227473+0000 mon.a (mon.0) 208 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.943 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:54:51.479801+0000 mgr.a (mgr.14152) 69 : cluster 0 pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.943 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:51.863848+0000 mgr.a (mgr.14152) 70 : audit 0 from='client.14188 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi026:172.21.15.26=a;smithi050:172.21.15.50=b;smithi136:172.21.15.136=c", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:55:02.943 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cephadm 2024-03-30T13:54:51.869632+0000 mgr.a (mgr.14152) 71 : cephadm 1 Saving service mon spec with placement smithi026:172.21.15.26=a;smithi050:172.21.15.50=b;smithi136:172.21.15.136=c;count:3 2024-03-30T13:55:02.943 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:51.874868+0000 mon.a (mon.0) 209 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.943 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:51.905398+0000 mon.a (mon.0) 210 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:55:02.943 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:51.910862+0000 mon.a (mon.0) 211 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:02.943 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:51.912575+0000 mon.a (mon.0) 212 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:55:02.943 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:51.920289+0000 mon.a (mon.0) 213 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.943 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:51.926009+0000 mon.a (mon.0) 214 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-03-30T13:55:02.943 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:51.928034+0000 mon.a (mon.0) 215 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:02.943 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cephadm 2024-03-30T13:54:51.930049+0000 mgr.a (mgr.14152) 72 : cephadm 1 Deploying daemon mon.c on smithi136 2024-03-30T13:55:02.943 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:54:53.480162+0000 mgr.a (mgr.14152) 73 : cluster 0 pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.944 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:54:55.480544+0000 mgr.a (mgr.14152) 74 : cluster 0 pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.944 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:56.246434+0000 mon.a (mon.0) 216 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.944 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:56.252976+0000 mon.a (mon.0) 217 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.944 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:56.261345+0000 mon.a (mon.0) 218 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.944 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cluster 2024-03-30T13:54:57.480945+0000 mgr.a (mgr.14152) 75 : cluster 0 pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:02.944 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:57.545398+0000 mon.a (mon.0) 219 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.944 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:57.551314+0000 mon.a (mon.0) 220 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.944 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:57.564991+0000 mon.a (mon.0) 221 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.944 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:57.566342+0000 mon.a (mon.0) 222 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-03-30T13:55:02.944 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:57.568370+0000 mon.a (mon.0) 223 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:02.944 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: cephadm 2024-03-30T13:54:57.570539+0000 mgr.a (mgr.14152) 76 : cephadm 1 Deploying daemon mon.b on smithi050 2024-03-30T13:55:02.944 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:57.696479+0000 mon.a (mon.0) 224 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.944 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:57.702773+0000 mon.a (mon.0) 225 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.944 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:57.711236+0000 mon.a (mon.0) 226 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:02.945 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: audit 2024-03-30T13:54:57.932483+0000 mon.a (mon.0) 227 : audit 0 from='client.? 172.21.15.136:0/2068573771' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-03-30T13:55:02.945 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:02 smithi050 bash[22081]: debug 2024-03-30T13:55:02.905+0000 7ff976b52700 1 mon.b@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2024-03-30T13:55:03.959 INFO:teuthology.orchestra.run.smithi136.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.c/config 2024-03-30T13:55:04.980 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:04 smithi136 bash[22230]: cluster 2024-03-30T13:54:59.481331+0000 mgr.a (mgr.14152) 77 : cluster 0 pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:04.980 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:04 smithi136 bash[22230]: audit 2024-03-30T13:54:59.564721+0000 mon.a (mon.0) 228 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:55:04.980 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:04 smithi136 bash[22230]: audit 2024-03-30T13:54:59.569125+0000 mon.a (mon.0) 229 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-03-30T13:55:04.980 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:04 smithi136 bash[22230]: cluster 2024-03-30T13:54:59.569396+0000 mon.a (mon.0) 230 : cluster 1 mon.a calling monitor election 2024-03-30T13:55:04.980 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:04 smithi136 bash[22230]: audit 2024-03-30T13:54:59.589472+0000 mon.a (mon.0) 231 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:55:04.980 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:04 smithi136 bash[22230]: audit 2024-03-30T13:55:00.564051+0000 mon.a (mon.0) 232 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:55:04.980 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:04 smithi136 bash[22230]: cluster 2024-03-30T13:55:01.481677+0000 mgr.a (mgr.14152) 78 : cluster 0 pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:04.981 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:04 smithi136 bash[22230]: audit 2024-03-30T13:55:01.564375+0000 mon.a (mon.0) 233 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:55:04.981 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:04 smithi136 bash[22230]: cluster 2024-03-30T13:55:01.565774+0000 mon.c (mon.1) 1 : cluster 1 mon.c calling monitor election 2024-03-30T13:55:04.981 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:04 smithi136 bash[22230]: audit 2024-03-30T13:55:02.564541+0000 mon.a (mon.0) 234 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:55:04.981 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:04 smithi136 bash[22230]: audit 2024-03-30T13:55:02.912598+0000 mon.a (mon.0) 235 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:55:04.981 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:04 smithi136 bash[22230]: cluster 2024-03-30T13:55:03.481996+0000 mgr.a (mgr.14152) 79 : cluster 0 pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:04.981 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:04 smithi136 bash[22230]: audit 2024-03-30T13:55:03.564564+0000 mon.a (mon.0) 236 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:55:04.981 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:04 smithi136 bash[22230]: audit 2024-03-30T13:55:03.912804+0000 mon.a (mon.0) 237 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:55:04.981 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:04 smithi136 bash[22230]: audit 2024-03-30T13:55:04.564737+0000 mon.a (mon.0) 238 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:55:04.981 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:04 smithi136 bash[22230]: cluster 2024-03-30T13:55:04.609681+0000 mon.a (mon.0) 239 : cluster 1 mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-03-30T13:55:04.981 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:04 smithi136 bash[22230]: cluster 2024-03-30T13:55:04.616993+0000 mon.a (mon.0) 240 : cluster 0 monmap epoch 2 2024-03-30T13:55:04.981 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:04 smithi136 bash[22230]: cluster 2024-03-30T13:55:04.617048+0000 mon.a (mon.0) 241 : cluster 0 fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T13:55:04.981 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:04 smithi136 bash[22230]: cluster 2024-03-30T13:55:04.617066+0000 mon.a (mon.0) 242 : cluster 0 last_changed 2024-03-30T13:54:59.564097+0000 2024-03-30T13:55:04.981 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:04 smithi136 bash[22230]: cluster 2024-03-30T13:55:04.617085+0000 mon.a (mon.0) 243 : cluster 0 created 2024-03-30T13:52:06.246947+0000 2024-03-30T13:55:04.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:04 smithi136 bash[22230]: cluster 2024-03-30T13:55:04.617105+0000 mon.a (mon.0) 244 : cluster 0 min_mon_release 19 (squid) 2024-03-30T13:55:04.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:04 smithi136 bash[22230]: cluster 2024-03-30T13:55:04.617122+0000 mon.a (mon.0) 245 : cluster 0 election_strategy: 1 2024-03-30T13:55:04.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:04 smithi136 bash[22230]: cluster 2024-03-30T13:55:04.617165+0000 mon.a (mon.0) 246 : cluster 0 0: [v2:172.21.15.26:3300/0,v1:172.21.15.26:6789/0] mon.a 2024-03-30T13:55:04.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:04 smithi136 bash[22230]: cluster 2024-03-30T13:55:04.617186+0000 mon.a (mon.0) 247 : cluster 0 1: [v2:172.21.15.136:3300/0,v1:172.21.15.136:6789/0] mon.c 2024-03-30T13:55:04.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:04 smithi136 bash[22230]: cluster 2024-03-30T13:55:04.637114+0000 mon.a (mon.0) 248 : cluster 0 fsmap 2024-03-30T13:55:04.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:04 smithi136 bash[22230]: cluster 2024-03-30T13:55:04.637202+0000 mon.a (mon.0) 249 : cluster 0 osdmap e4: 0 total, 0 up, 0 in 2024-03-30T13:55:04.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:04 smithi136 bash[22230]: cluster 2024-03-30T13:55:04.637499+0000 mon.a (mon.0) 250 : cluster 0 mgrmap e13: a(active, since 105s) 2024-03-30T13:55:04.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:04 smithi136 bash[22230]: cluster 2024-03-30T13:55:04.637758+0000 mon.a (mon.0) 251 : cluster 1 overall HEALTH_OK 2024-03-30T13:55:04.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:04 smithi136 bash[22230]: audit 2024-03-30T13:55:04.644701+0000 mon.a (mon.0) 252 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:04.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:04 smithi136 bash[22230]: audit 2024-03-30T13:55:04.651456+0000 mon.a (mon.0) 253 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:04.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:04 smithi136 bash[22230]: audit 2024-03-30T13:55:04.661585+0000 mon.a (mon.0) 254 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:04.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:04 smithi136 bash[22230]: audit 2024-03-30T13:55:04.669158+0000 mon.a (mon.0) 255 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:05.114 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:04 smithi026 bash[21443]: cluster 2024-03-30T13:54:59.481331+0000 mgr.a (mgr.14152) 77 : cluster 0 pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:05.114 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:04 smithi026 bash[21443]: audit 2024-03-30T13:54:59.564721+0000 mon.a (mon.0) 228 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:55:05.114 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:04 smithi026 bash[21443]: audit 2024-03-30T13:54:59.569125+0000 mon.a (mon.0) 229 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-03-30T13:55:05.114 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:04 smithi026 bash[21443]: cluster 2024-03-30T13:54:59.569396+0000 mon.a (mon.0) 230 : cluster 1 mon.a calling monitor election 2024-03-30T13:55:05.114 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:04 smithi026 bash[21443]: audit 2024-03-30T13:54:59.589472+0000 mon.a (mon.0) 231 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:55:05.114 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:04 smithi026 bash[21443]: audit 2024-03-30T13:55:00.564051+0000 mon.a (mon.0) 232 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:55:05.114 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:04 smithi026 bash[21443]: cluster 2024-03-30T13:55:01.481677+0000 mgr.a (mgr.14152) 78 : cluster 0 pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:05.114 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:04 smithi026 bash[21443]: audit 2024-03-30T13:55:01.564375+0000 mon.a (mon.0) 233 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:55:05.114 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:04 smithi026 bash[21443]: cluster 2024-03-30T13:55:01.565774+0000 mon.c (mon.1) 1 : cluster 1 mon.c calling monitor election 2024-03-30T13:55:05.114 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:04 smithi026 bash[21443]: audit 2024-03-30T13:55:02.564541+0000 mon.a (mon.0) 234 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:55:05.115 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:04 smithi026 bash[21443]: audit 2024-03-30T13:55:02.912598+0000 mon.a (mon.0) 235 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:55:05.115 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:04 smithi026 bash[21443]: cluster 2024-03-30T13:55:03.481996+0000 mgr.a (mgr.14152) 79 : cluster 0 pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:05.115 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:04 smithi026 bash[21443]: audit 2024-03-30T13:55:03.564564+0000 mon.a (mon.0) 236 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:55:05.115 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:04 smithi026 bash[21443]: audit 2024-03-30T13:55:03.912804+0000 mon.a (mon.0) 237 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:55:05.115 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:04 smithi026 bash[21443]: audit 2024-03-30T13:55:04.564737+0000 mon.a (mon.0) 238 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:55:05.115 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:04 smithi026 bash[21443]: cluster 2024-03-30T13:55:04.609681+0000 mon.a (mon.0) 239 : cluster 1 mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-03-30T13:55:05.115 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:04 smithi026 bash[21443]: cluster 2024-03-30T13:55:04.616993+0000 mon.a (mon.0) 240 : cluster 0 monmap epoch 2 2024-03-30T13:55:05.115 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:04 smithi026 bash[21443]: cluster 2024-03-30T13:55:04.617048+0000 mon.a (mon.0) 241 : cluster 0 fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T13:55:05.115 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:04 smithi026 bash[21443]: cluster 2024-03-30T13:55:04.617066+0000 mon.a (mon.0) 242 : cluster 0 last_changed 2024-03-30T13:54:59.564097+0000 2024-03-30T13:55:05.115 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:04 smithi026 bash[21443]: cluster 2024-03-30T13:55:04.617085+0000 mon.a (mon.0) 243 : cluster 0 created 2024-03-30T13:52:06.246947+0000 2024-03-30T13:55:05.115 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:04 smithi026 bash[21443]: cluster 2024-03-30T13:55:04.617105+0000 mon.a (mon.0) 244 : cluster 0 min_mon_release 19 (squid) 2024-03-30T13:55:05.115 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:04 smithi026 bash[21443]: cluster 2024-03-30T13:55:04.617122+0000 mon.a (mon.0) 245 : cluster 0 election_strategy: 1 2024-03-30T13:55:05.115 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:04 smithi026 bash[21443]: cluster 2024-03-30T13:55:04.617165+0000 mon.a (mon.0) 246 : cluster 0 0: [v2:172.21.15.26:3300/0,v1:172.21.15.26:6789/0] mon.a 2024-03-30T13:55:05.115 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:04 smithi026 bash[21443]: cluster 2024-03-30T13:55:04.617186+0000 mon.a (mon.0) 247 : cluster 0 1: [v2:172.21.15.136:3300/0,v1:172.21.15.136:6789/0] mon.c 2024-03-30T13:55:05.116 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:04 smithi026 bash[21443]: cluster 2024-03-30T13:55:04.637114+0000 mon.a (mon.0) 248 : cluster 0 fsmap 2024-03-30T13:55:05.116 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:04 smithi026 bash[21443]: cluster 2024-03-30T13:55:04.637202+0000 mon.a (mon.0) 249 : cluster 0 osdmap e4: 0 total, 0 up, 0 in 2024-03-30T13:55:05.116 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:04 smithi026 bash[21443]: cluster 2024-03-30T13:55:04.637499+0000 mon.a (mon.0) 250 : cluster 0 mgrmap e13: a(active, since 105s) 2024-03-30T13:55:05.116 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:04 smithi026 bash[21443]: cluster 2024-03-30T13:55:04.637758+0000 mon.a (mon.0) 251 : cluster 1 overall HEALTH_OK 2024-03-30T13:55:05.116 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:04 smithi026 bash[21443]: audit 2024-03-30T13:55:04.644701+0000 mon.a (mon.0) 252 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:05.116 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:04 smithi026 bash[21443]: audit 2024-03-30T13:55:04.651456+0000 mon.a (mon.0) 253 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:05.116 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:04 smithi026 bash[21443]: audit 2024-03-30T13:55:04.661585+0000 mon.a (mon.0) 254 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:05.116 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:04 smithi026 bash[21443]: audit 2024-03-30T13:55:04.669158+0000 mon.a (mon.0) 255 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:05.860 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:55:05 smithi026 bash[21693]: debug 2024-03-30T13:55:05.562+0000 7fe210eec700 -1 mgr.server handle_report got status from non-daemon mon.c 2024-03-30T13:55:10.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: cephadm 2024-03-30T13:55:04.810198+0000 mgr.a (mgr.14152) 80 : cephadm 1 Updating smithi026:/etc/ceph/ceph.conf 2024-03-30T13:55:10.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: cephadm 2024-03-30T13:55:04.810708+0000 mgr.a (mgr.14152) 81 : cephadm 1 Updating smithi050:/etc/ceph/ceph.conf 2024-03-30T13:55:10.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: cephadm 2024-03-30T13:55:04.811294+0000 mgr.a (mgr.14152) 82 : cephadm 1 Updating smithi136:/etc/ceph/ceph.conf 2024-03-30T13:55:10.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: audit 2024-03-30T13:55:04.917557+0000 mon.a (mon.0) 260 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-03-30T13:55:10.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: audit 2024-03-30T13:55:04.917847+0000 mon.a (mon.0) 261 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:55:10.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: cluster 2024-03-30T13:55:04.917991+0000 mon.a (mon.0) 262 : cluster 1 mon.a calling monitor election 2024-03-30T13:55:10.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: cluster 2024-03-30T13:55:04.919353+0000 mon.c (mon.1) 2 : cluster 1 mon.c calling monitor election 2024-03-30T13:55:10.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: audit 2024-03-30T13:55:04.936967+0000 mon.a (mon.0) 263 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:55:10.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: cephadm 2024-03-30T13:55:05.025309+0000 mgr.a (mgr.14152) 83 : cephadm 1 Updating smithi026:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-03-30T13:55:10.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: cephadm 2024-03-30T13:55:05.026481+0000 mgr.a (mgr.14152) 84 : cephadm 1 Updating smithi050:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-03-30T13:55:10.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: cephadm 2024-03-30T13:55:05.028267+0000 mgr.a (mgr.14152) 85 : cephadm 1 Updating smithi136:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-03-30T13:55:10.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: cluster 2024-03-30T13:55:05.482349+0000 mgr.a (mgr.14152) 86 : cluster 0 pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:10.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: audit 2024-03-30T13:55:05.912929+0000 mon.a (mon.0) 264 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:55:10.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: audit 2024-03-30T13:55:06.913362+0000 mon.a (mon.0) 265 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:55:10.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: cluster 2024-03-30T13:55:06.915526+0000 mon.b (mon.2) 1 : cluster 1 mon.b calling monitor election 2024-03-30T13:55:10.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: cluster 2024-03-30T13:55:07.482735+0000 mgr.a (mgr.14152) 87 : cluster 0 pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:10.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: audit 2024-03-30T13:55:07.913575+0000 mon.a (mon.0) 266 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:55:10.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: audit 2024-03-30T13:55:08.913724+0000 mon.a (mon.0) 267 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:55:10.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: audit 2024-03-30T13:55:09.914157+0000 mon.a (mon.0) 268 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:55:10.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: cluster 2024-03-30T13:55:09.921707+0000 mon.a (mon.0) 269 : cluster 1 mon.a calling monitor election 2024-03-30T13:55:10.362 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: cluster 2024-03-30T13:55:09.960624+0000 mon.a (mon.0) 270 : cluster 1 mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-03-30T13:55:10.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: cluster 2024-03-30T13:55:09.967043+0000 mon.a (mon.0) 271 : cluster 0 monmap epoch 3 2024-03-30T13:55:10.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: cluster 2024-03-30T13:55:09.967080+0000 mon.a (mon.0) 272 : cluster 0 fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T13:55:10.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: cluster 2024-03-30T13:55:09.967102+0000 mon.a (mon.0) 273 : cluster 0 last_changed 2024-03-30T13:55:04.913320+0000 2024-03-30T13:55:10.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: cluster 2024-03-30T13:55:09.967123+0000 mon.a (mon.0) 274 : cluster 0 created 2024-03-30T13:52:06.246947+0000 2024-03-30T13:55:10.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: cluster 2024-03-30T13:55:09.967145+0000 mon.a (mon.0) 275 : cluster 0 min_mon_release 19 (squid) 2024-03-30T13:55:10.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: cluster 2024-03-30T13:55:09.967165+0000 mon.a (mon.0) 276 : cluster 0 election_strategy: 1 2024-03-30T13:55:10.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: cluster 2024-03-30T13:55:09.967188+0000 mon.a (mon.0) 277 : cluster 0 0: [v2:172.21.15.26:3300/0,v1:172.21.15.26:6789/0] mon.a 2024-03-30T13:55:10.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: cluster 2024-03-30T13:55:09.967213+0000 mon.a (mon.0) 278 : cluster 0 1: [v2:172.21.15.136:3300/0,v1:172.21.15.136:6789/0] mon.c 2024-03-30T13:55:10.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: cluster 2024-03-30T13:55:09.967235+0000 mon.a (mon.0) 279 : cluster 0 2: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.b 2024-03-30T13:55:10.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: cluster 2024-03-30T13:55:09.968117+0000 mon.a (mon.0) 280 : cluster 0 fsmap 2024-03-30T13:55:10.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: cluster 2024-03-30T13:55:09.968178+0000 mon.a (mon.0) 281 : cluster 0 osdmap e4: 0 total, 0 up, 0 in 2024-03-30T13:55:10.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: cluster 2024-03-30T13:55:09.968458+0000 mon.a (mon.0) 282 : cluster 0 mgrmap e13: a(active, since 110s) 2024-03-30T13:55:10.363 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: cluster 2024-03-30T13:55:09.968704+0000 mon.a (mon.0) 283 : cluster 1 overall HEALTH_OK 2024-03-30T13:55:10.364 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: audit 2024-03-30T13:55:09.978913+0000 mon.a (mon.0) 284 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:10.364 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: audit 2024-03-30T13:55:09.985450+0000 mon.a (mon.0) 285 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:10.364 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: audit 2024-03-30T13:55:09.989941+0000 mon.a (mon.0) 286 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:10.364 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: audit 2024-03-30T13:55:09.993940+0000 mon.a (mon.0) 287 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:10.364 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: audit 2024-03-30T13:55:09.999890+0000 mon.a (mon.0) 288 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:10.364 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: audit 2024-03-30T13:55:10.005611+0000 mon.a (mon.0) 289 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:10.364 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: audit 2024-03-30T13:55:10.011187+0000 mon.a (mon.0) 290 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:10.364 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:10 smithi026 bash[21443]: audit 2024-03-30T13:55:10.016905+0000 mon.a (mon.0) 291 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:10.410 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:09 smithi050 bash[22081]: cluster 2024-03-30T13:54:59.481331+0000 mgr.a (mgr.14152) 77 : cluster 0 pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:10.410 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:09 smithi050 bash[22081]: audit 2024-03-30T13:54:59.564721+0000 mon.a (mon.0) 228 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:55:10.410 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:09 smithi050 bash[22081]: audit 2024-03-30T13:54:59.569125+0000 mon.a (mon.0) 229 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-03-30T13:55:10.410 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:09 smithi050 bash[22081]: cluster 2024-03-30T13:54:59.569396+0000 mon.a (mon.0) 230 : cluster 1 mon.a calling monitor election 2024-03-30T13:55:10.410 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:09 smithi050 bash[22081]: audit 2024-03-30T13:54:59.589472+0000 mon.a (mon.0) 231 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:55:10.410 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:09 smithi050 bash[22081]: audit 2024-03-30T13:55:00.564051+0000 mon.a (mon.0) 232 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:55:10.410 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:09 smithi050 bash[22081]: cluster 2024-03-30T13:55:01.481677+0000 mgr.a (mgr.14152) 78 : cluster 0 pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:10.410 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:09 smithi050 bash[22081]: audit 2024-03-30T13:55:01.564375+0000 mon.a (mon.0) 233 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:55:10.410 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:09 smithi050 bash[22081]: cluster 2024-03-30T13:55:01.565774+0000 mon.c (mon.1) 1 : cluster 1 mon.c calling monitor election 2024-03-30T13:55:10.410 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:09 smithi050 bash[22081]: audit 2024-03-30T13:55:02.564541+0000 mon.a (mon.0) 234 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:55:10.410 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:09 smithi050 bash[22081]: audit 2024-03-30T13:55:02.912598+0000 mon.a (mon.0) 235 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:55:10.411 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:09 smithi050 bash[22081]: cluster 2024-03-30T13:55:03.481996+0000 mgr.a (mgr.14152) 79 : cluster 0 pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:10.411 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:09 smithi050 bash[22081]: audit 2024-03-30T13:55:03.564564+0000 mon.a (mon.0) 236 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:55:10.411 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:09 smithi050 bash[22081]: audit 2024-03-30T13:55:03.912804+0000 mon.a (mon.0) 237 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:55:10.411 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:09 smithi050 bash[22081]: audit 2024-03-30T13:55:04.564737+0000 mon.a (mon.0) 238 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:55:10.411 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:09 smithi050 bash[22081]: cluster 2024-03-30T13:55:04.609681+0000 mon.a (mon.0) 239 : cluster 1 mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-03-30T13:55:10.411 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:09 smithi050 bash[22081]: cluster 2024-03-30T13:55:04.616993+0000 mon.a (mon.0) 240 : cluster 0 monmap epoch 2 2024-03-30T13:55:10.411 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:09 smithi050 bash[22081]: cluster 2024-03-30T13:55:04.617048+0000 mon.a (mon.0) 241 : cluster 0 fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T13:55:10.411 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:09 smithi050 bash[22081]: cluster 2024-03-30T13:55:04.617066+0000 mon.a (mon.0) 242 : cluster 0 last_changed 2024-03-30T13:54:59.564097+0000 2024-03-30T13:55:10.411 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:09 smithi050 bash[22081]: cluster 2024-03-30T13:55:04.617085+0000 mon.a (mon.0) 243 : cluster 0 created 2024-03-30T13:52:06.246947+0000 2024-03-30T13:55:10.411 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:09 smithi050 bash[22081]: cluster 2024-03-30T13:55:04.617105+0000 mon.a (mon.0) 244 : cluster 0 min_mon_release 19 (squid) 2024-03-30T13:55:10.411 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:09 smithi050 bash[22081]: cluster 2024-03-30T13:55:04.617122+0000 mon.a (mon.0) 245 : cluster 0 election_strategy: 1 2024-03-30T13:55:10.412 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:09 smithi050 bash[22081]: cluster 2024-03-30T13:55:04.617165+0000 mon.a (mon.0) 246 : cluster 0 0: [v2:172.21.15.26:3300/0,v1:172.21.15.26:6789/0] mon.a 2024-03-30T13:55:10.412 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:09 smithi050 bash[22081]: cluster 2024-03-30T13:55:04.617186+0000 mon.a (mon.0) 247 : cluster 0 1: [v2:172.21.15.136:3300/0,v1:172.21.15.136:6789/0] mon.c 2024-03-30T13:55:10.412 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:09 smithi050 bash[22081]: cluster 2024-03-30T13:55:04.637114+0000 mon.a (mon.0) 248 : cluster 0 fsmap 2024-03-30T13:55:10.412 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:09 smithi050 bash[22081]: cluster 2024-03-30T13:55:04.637202+0000 mon.a (mon.0) 249 : cluster 0 osdmap e4: 0 total, 0 up, 0 in 2024-03-30T13:55:10.412 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:09 smithi050 bash[22081]: cluster 2024-03-30T13:55:04.637499+0000 mon.a (mon.0) 250 : cluster 0 mgrmap e13: a(active, since 105s) 2024-03-30T13:55:10.412 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:09 smithi050 bash[22081]: cluster 2024-03-30T13:55:04.637758+0000 mon.a (mon.0) 251 : cluster 1 overall HEALTH_OK 2024-03-30T13:55:10.412 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:09 smithi050 bash[22081]: audit 2024-03-30T13:55:04.644701+0000 mon.a (mon.0) 252 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:10.412 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:09 smithi050 bash[22081]: audit 2024-03-30T13:55:04.651456+0000 mon.a (mon.0) 253 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:10.412 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:09 smithi050 bash[22081]: audit 2024-03-30T13:55:04.661585+0000 mon.a (mon.0) 254 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:10.413 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:09 smithi050 bash[22081]: audit 2024-03-30T13:55:04.669158+0000 mon.a (mon.0) 255 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:10.413 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: cephadm 2024-03-30T13:55:04.810198+0000 mgr.a (mgr.14152) 80 : cephadm 1 Updating smithi026:/etc/ceph/ceph.conf 2024-03-30T13:55:10.413 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: cephadm 2024-03-30T13:55:04.810708+0000 mgr.a (mgr.14152) 81 : cephadm 1 Updating smithi050:/etc/ceph/ceph.conf 2024-03-30T13:55:10.413 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: cephadm 2024-03-30T13:55:04.811294+0000 mgr.a (mgr.14152) 82 : cephadm 1 Updating smithi136:/etc/ceph/ceph.conf 2024-03-30T13:55:10.413 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: audit 2024-03-30T13:55:04.917557+0000 mon.a (mon.0) 260 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-03-30T13:55:10.413 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: audit 2024-03-30T13:55:04.917847+0000 mon.a (mon.0) 261 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:55:10.413 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: cluster 2024-03-30T13:55:04.917991+0000 mon.a (mon.0) 262 : cluster 1 mon.a calling monitor election 2024-03-30T13:55:10.413 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: cluster 2024-03-30T13:55:04.919353+0000 mon.c (mon.1) 2 : cluster 1 mon.c calling monitor election 2024-03-30T13:55:10.413 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: audit 2024-03-30T13:55:04.936967+0000 mon.a (mon.0) 263 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:55:10.413 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: cephadm 2024-03-30T13:55:05.025309+0000 mgr.a (mgr.14152) 83 : cephadm 1 Updating smithi026:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-03-30T13:55:10.413 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: cephadm 2024-03-30T13:55:05.026481+0000 mgr.a (mgr.14152) 84 : cephadm 1 Updating smithi050:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-03-30T13:55:10.413 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: cephadm 2024-03-30T13:55:05.028267+0000 mgr.a (mgr.14152) 85 : cephadm 1 Updating smithi136:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-03-30T13:55:10.413 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: cluster 2024-03-30T13:55:05.482349+0000 mgr.a (mgr.14152) 86 : cluster 0 pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:10.413 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: audit 2024-03-30T13:55:05.912929+0000 mon.a (mon.0) 264 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:55:10.414 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: audit 2024-03-30T13:55:06.913362+0000 mon.a (mon.0) 265 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:55:10.414 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: cluster 2024-03-30T13:55:06.915526+0000 mon.b (mon.2) 1 : cluster 1 mon.b calling monitor election 2024-03-30T13:55:10.414 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: cluster 2024-03-30T13:55:07.482735+0000 mgr.a (mgr.14152) 87 : cluster 0 pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:10.414 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: audit 2024-03-30T13:55:07.913575+0000 mon.a (mon.0) 266 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:55:10.414 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: audit 2024-03-30T13:55:08.913724+0000 mon.a (mon.0) 267 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:55:10.414 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: audit 2024-03-30T13:55:09.914157+0000 mon.a (mon.0) 268 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:55:10.414 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: cluster 2024-03-30T13:55:09.921707+0000 mon.a (mon.0) 269 : cluster 1 mon.a calling monitor election 2024-03-30T13:55:10.414 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: cluster 2024-03-30T13:55:09.960624+0000 mon.a (mon.0) 270 : cluster 1 mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-03-30T13:55:10.414 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: cluster 2024-03-30T13:55:09.967043+0000 mon.a (mon.0) 271 : cluster 0 monmap epoch 3 2024-03-30T13:55:10.414 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: cluster 2024-03-30T13:55:09.967080+0000 mon.a (mon.0) 272 : cluster 0 fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T13:55:10.414 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: cluster 2024-03-30T13:55:09.967102+0000 mon.a (mon.0) 273 : cluster 0 last_changed 2024-03-30T13:55:04.913320+0000 2024-03-30T13:55:10.414 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: cluster 2024-03-30T13:55:09.967123+0000 mon.a (mon.0) 274 : cluster 0 created 2024-03-30T13:52:06.246947+0000 2024-03-30T13:55:10.414 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: cluster 2024-03-30T13:55:09.967145+0000 mon.a (mon.0) 275 : cluster 0 min_mon_release 19 (squid) 2024-03-30T13:55:10.415 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: cluster 2024-03-30T13:55:09.967165+0000 mon.a (mon.0) 276 : cluster 0 election_strategy: 1 2024-03-30T13:55:10.415 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: cluster 2024-03-30T13:55:09.967188+0000 mon.a (mon.0) 277 : cluster 0 0: [v2:172.21.15.26:3300/0,v1:172.21.15.26:6789/0] mon.a 2024-03-30T13:55:10.415 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: cluster 2024-03-30T13:55:09.967213+0000 mon.a (mon.0) 278 : cluster 0 1: [v2:172.21.15.136:3300/0,v1:172.21.15.136:6789/0] mon.c 2024-03-30T13:55:10.415 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: cluster 2024-03-30T13:55:09.967235+0000 mon.a (mon.0) 279 : cluster 0 2: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.b 2024-03-30T13:55:10.415 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: cluster 2024-03-30T13:55:09.968117+0000 mon.a (mon.0) 280 : cluster 0 fsmap 2024-03-30T13:55:10.415 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: cluster 2024-03-30T13:55:09.968178+0000 mon.a (mon.0) 281 : cluster 0 osdmap e4: 0 total, 0 up, 0 in 2024-03-30T13:55:10.415 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: cluster 2024-03-30T13:55:09.968458+0000 mon.a (mon.0) 282 : cluster 0 mgrmap e13: a(active, since 110s) 2024-03-30T13:55:10.415 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: cluster 2024-03-30T13:55:09.968704+0000 mon.a (mon.0) 283 : cluster 1 overall HEALTH_OK 2024-03-30T13:55:10.415 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: audit 2024-03-30T13:55:09.978913+0000 mon.a (mon.0) 284 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:10.415 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: audit 2024-03-30T13:55:09.985450+0000 mon.a (mon.0) 285 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:10.415 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: audit 2024-03-30T13:55:09.989941+0000 mon.a (mon.0) 286 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:10.415 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: audit 2024-03-30T13:55:09.993940+0000 mon.a (mon.0) 287 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:10.415 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: audit 2024-03-30T13:55:09.999890+0000 mon.a (mon.0) 288 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:10.415 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: audit 2024-03-30T13:55:10.005611+0000 mon.a (mon.0) 289 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:10.416 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: audit 2024-03-30T13:55:10.011187+0000 mon.a (mon.0) 290 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:10.416 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:10 smithi050 bash[22081]: audit 2024-03-30T13:55:10.016905+0000 mon.a (mon.0) 291 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:10.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: cephadm 2024-03-30T13:55:04.810198+0000 mgr.a (mgr.14152) 80 : cephadm 1 Updating smithi026:/etc/ceph/ceph.conf 2024-03-30T13:55:10.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: cephadm 2024-03-30T13:55:04.810708+0000 mgr.a (mgr.14152) 81 : cephadm 1 Updating smithi050:/etc/ceph/ceph.conf 2024-03-30T13:55:10.486 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: cephadm 2024-03-30T13:55:04.811294+0000 mgr.a (mgr.14152) 82 : cephadm 1 Updating smithi136:/etc/ceph/ceph.conf 2024-03-30T13:55:10.486 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: audit 2024-03-30T13:55:04.917557+0000 mon.a (mon.0) 260 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-03-30T13:55:10.486 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: audit 2024-03-30T13:55:04.917847+0000 mon.a (mon.0) 261 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:55:10.486 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: cluster 2024-03-30T13:55:04.917991+0000 mon.a (mon.0) 262 : cluster 1 mon.a calling monitor election 2024-03-30T13:55:10.486 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: cluster 2024-03-30T13:55:04.919353+0000 mon.c (mon.1) 2 : cluster 1 mon.c calling monitor election 2024-03-30T13:55:10.486 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: audit 2024-03-30T13:55:04.936967+0000 mon.a (mon.0) 263 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:55:10.486 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: cephadm 2024-03-30T13:55:05.025309+0000 mgr.a (mgr.14152) 83 : cephadm 1 Updating smithi026:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-03-30T13:55:10.486 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: cephadm 2024-03-30T13:55:05.026481+0000 mgr.a (mgr.14152) 84 : cephadm 1 Updating smithi050:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-03-30T13:55:10.486 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: cephadm 2024-03-30T13:55:05.028267+0000 mgr.a (mgr.14152) 85 : cephadm 1 Updating smithi136:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-03-30T13:55:10.486 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: cluster 2024-03-30T13:55:05.482349+0000 mgr.a (mgr.14152) 86 : cluster 0 pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:10.486 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: audit 2024-03-30T13:55:05.912929+0000 mon.a (mon.0) 264 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:55:10.486 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: audit 2024-03-30T13:55:06.913362+0000 mon.a (mon.0) 265 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:55:10.487 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: cluster 2024-03-30T13:55:06.915526+0000 mon.b (mon.2) 1 : cluster 1 mon.b calling monitor election 2024-03-30T13:55:10.487 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: cluster 2024-03-30T13:55:07.482735+0000 mgr.a (mgr.14152) 87 : cluster 0 pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:10.487 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: audit 2024-03-30T13:55:07.913575+0000 mon.a (mon.0) 266 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:55:10.487 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: audit 2024-03-30T13:55:08.913724+0000 mon.a (mon.0) 267 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:55:10.487 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: audit 2024-03-30T13:55:09.914157+0000 mon.a (mon.0) 268 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:55:10.487 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: cluster 2024-03-30T13:55:09.921707+0000 mon.a (mon.0) 269 : cluster 1 mon.a calling monitor election 2024-03-30T13:55:10.487 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: cluster 2024-03-30T13:55:09.960624+0000 mon.a (mon.0) 270 : cluster 1 mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-03-30T13:55:10.487 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: cluster 2024-03-30T13:55:09.967043+0000 mon.a (mon.0) 271 : cluster 0 monmap epoch 3 2024-03-30T13:55:10.487 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: cluster 2024-03-30T13:55:09.967080+0000 mon.a (mon.0) 272 : cluster 0 fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T13:55:10.487 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: cluster 2024-03-30T13:55:09.967102+0000 mon.a (mon.0) 273 : cluster 0 last_changed 2024-03-30T13:55:04.913320+0000 2024-03-30T13:55:10.487 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: cluster 2024-03-30T13:55:09.967123+0000 mon.a (mon.0) 274 : cluster 0 created 2024-03-30T13:52:06.246947+0000 2024-03-30T13:55:10.488 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: cluster 2024-03-30T13:55:09.967145+0000 mon.a (mon.0) 275 : cluster 0 min_mon_release 19 (squid) 2024-03-30T13:55:10.488 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: cluster 2024-03-30T13:55:09.967165+0000 mon.a (mon.0) 276 : cluster 0 election_strategy: 1 2024-03-30T13:55:10.488 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: cluster 2024-03-30T13:55:09.967188+0000 mon.a (mon.0) 277 : cluster 0 0: [v2:172.21.15.26:3300/0,v1:172.21.15.26:6789/0] mon.a 2024-03-30T13:55:10.488 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: cluster 2024-03-30T13:55:09.967213+0000 mon.a (mon.0) 278 : cluster 0 1: [v2:172.21.15.136:3300/0,v1:172.21.15.136:6789/0] mon.c 2024-03-30T13:55:10.488 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: cluster 2024-03-30T13:55:09.967235+0000 mon.a (mon.0) 279 : cluster 0 2: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.b 2024-03-30T13:55:10.488 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: cluster 2024-03-30T13:55:09.968117+0000 mon.a (mon.0) 280 : cluster 0 fsmap 2024-03-30T13:55:10.488 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: cluster 2024-03-30T13:55:09.968178+0000 mon.a (mon.0) 281 : cluster 0 osdmap e4: 0 total, 0 up, 0 in 2024-03-30T13:55:10.488 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: cluster 2024-03-30T13:55:09.968458+0000 mon.a (mon.0) 282 : cluster 0 mgrmap e13: a(active, since 110s) 2024-03-30T13:55:10.488 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: cluster 2024-03-30T13:55:09.968704+0000 mon.a (mon.0) 283 : cluster 1 overall HEALTH_OK 2024-03-30T13:55:10.488 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: audit 2024-03-30T13:55:09.978913+0000 mon.a (mon.0) 284 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:10.488 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: audit 2024-03-30T13:55:09.985450+0000 mon.a (mon.0) 285 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:10.488 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: audit 2024-03-30T13:55:09.989941+0000 mon.a (mon.0) 286 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:10.489 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: audit 2024-03-30T13:55:09.993940+0000 mon.a (mon.0) 287 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:10.489 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: audit 2024-03-30T13:55:09.999890+0000 mon.a (mon.0) 288 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:10.489 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: audit 2024-03-30T13:55:10.005611+0000 mon.a (mon.0) 289 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:10.489 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: audit 2024-03-30T13:55:10.011187+0000 mon.a (mon.0) 290 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:10.489 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:10 smithi136 bash[22230]: audit 2024-03-30T13:55:10.016905+0000 mon.a (mon.0) 291 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:10.521 INFO:teuthology.orchestra.run.smithi136.stdout: 2024-03-30T13:55:10.521 INFO:teuthology.orchestra.run.smithi136.stdout:{"epoch":3,"fsid":"56554a52-ee9c-11ee-b647-cb9ed24678a4","modified":"2024-03-30T13:55:04.913320Z","created":"2024-03-30T13:52:06.246947Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.26:3300","nonce":0},{"type":"v1","addr":"172.21.15.26:6789","nonce":0}]},"addr":"172.21.15.26:6789/0","public_addr":"172.21.15.26:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.136:3300","nonce":0},{"type":"v1","addr":"172.21.15.136:6789","nonce":0}]},"addr":"172.21.15.136:6789/0","public_addr":"172.21.15.136:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":2,"name":"b","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:3300","nonce":0},{"type":"v1","addr":"172.21.15.50:6789","nonce":0}]},"addr":"172.21.15.50:6789/0","public_addr":"172.21.15.50:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1,2]} 2024-03-30T13:55:10.524 INFO:teuthology.orchestra.run.smithi136.stderr:dumped monmap epoch 3 2024-03-30T13:55:11.243 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-03-30T13:55:11.243 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph config generate-minimal-conf 2024-03-30T13:55:11.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:11 smithi026 bash[21443]: cluster 2024-03-30T13:55:09.483223+0000 mgr.a (mgr.14152) 88 : cluster 0 pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:11.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:11 smithi026 bash[21443]: audit 2024-03-30T13:55:10.023315+0000 mon.a (mon.0) 292 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:11.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:11 smithi026 bash[21443]: cephadm 2024-03-30T13:55:10.024467+0000 mgr.a (mgr.14152) 89 : cephadm 1 Metadata not up to date on all hosts. Skipping non agent specs 2024-03-30T13:55:11.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:11 smithi026 bash[21443]: audit 2024-03-30T13:55:10.159853+0000 mon.a (mon.0) 293 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-03-30T13:55:11.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:11 smithi026 bash[21443]: audit 2024-03-30T13:55:10.161326+0000 mon.a (mon.0) 294 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-03-30T13:55:11.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:11 smithi026 bash[21443]: audit 2024-03-30T13:55:10.162747+0000 mon.a (mon.0) 295 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:11.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:11 smithi026 bash[21443]: audit 2024-03-30T13:55:10.524492+0000 mon.a (mon.0) 296 : audit 0 from='client.? 172.21.15.136:0/1064677967' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-03-30T13:55:11.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:11 smithi026 bash[21443]: audit 2024-03-30T13:55:10.612461+0000 mon.a (mon.0) 297 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:11.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:11 smithi026 bash[21443]: audit 2024-03-30T13:55:10.913671+0000 mon.a (mon.0) 298 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:55:11.409 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:11 smithi050 bash[22081]: cluster 2024-03-30T13:55:09.483223+0000 mgr.a (mgr.14152) 88 : cluster 0 pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:11.409 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:11 smithi050 bash[22081]: audit 2024-03-30T13:55:10.023315+0000 mon.a (mon.0) 292 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:11.409 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:11 smithi050 bash[22081]: cephadm 2024-03-30T13:55:10.024467+0000 mgr.a (mgr.14152) 89 : cephadm 1 Metadata not up to date on all hosts. Skipping non agent specs 2024-03-30T13:55:11.409 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:11 smithi050 bash[22081]: audit 2024-03-30T13:55:10.159853+0000 mon.a (mon.0) 293 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-03-30T13:55:11.409 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:11 smithi050 bash[22081]: audit 2024-03-30T13:55:10.161326+0000 mon.a (mon.0) 294 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-03-30T13:55:11.409 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:11 smithi050 bash[22081]: audit 2024-03-30T13:55:10.162747+0000 mon.a (mon.0) 295 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:11.410 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:11 smithi050 bash[22081]: audit 2024-03-30T13:55:10.524492+0000 mon.a (mon.0) 296 : audit 0 from='client.? 172.21.15.136:0/1064677967' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-03-30T13:55:11.410 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:11 smithi050 bash[22081]: audit 2024-03-30T13:55:10.612461+0000 mon.a (mon.0) 297 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:11.410 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:11 smithi050 bash[22081]: audit 2024-03-30T13:55:10.913671+0000 mon.a (mon.0) 298 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:55:11.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:11 smithi136 bash[22230]: cluster 2024-03-30T13:55:09.483223+0000 mgr.a (mgr.14152) 88 : cluster 0 pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:11.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:11 smithi136 bash[22230]: audit 2024-03-30T13:55:10.023315+0000 mon.a (mon.0) 292 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:11.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:11 smithi136 bash[22230]: cephadm 2024-03-30T13:55:10.024467+0000 mgr.a (mgr.14152) 89 : cephadm 1 Metadata not up to date on all hosts. Skipping non agent specs 2024-03-30T13:55:11.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:11 smithi136 bash[22230]: audit 2024-03-30T13:55:10.159853+0000 mon.a (mon.0) 293 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-03-30T13:55:11.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:11 smithi136 bash[22230]: audit 2024-03-30T13:55:10.161326+0000 mon.a (mon.0) 294 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-03-30T13:55:11.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:11 smithi136 bash[22230]: audit 2024-03-30T13:55:10.162747+0000 mon.a (mon.0) 295 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:11.486 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:11 smithi136 bash[22230]: audit 2024-03-30T13:55:10.524492+0000 mon.a (mon.0) 296 : audit 0 from='client.? 172.21.15.136:0/1064677967' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-03-30T13:55:11.486 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:11 smithi136 bash[22230]: audit 2024-03-30T13:55:10.612461+0000 mon.a (mon.0) 297 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:11.486 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:11 smithi136 bash[22230]: audit 2024-03-30T13:55:10.913671+0000 mon.a (mon.0) 298 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:55:12.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:12 smithi026 bash[21443]: cephadm 2024-03-30T13:55:10.159234+0000 mgr.a (mgr.14152) 90 : cephadm 1 Reconfiguring mon.a (unknown last config time)... 2024-03-30T13:55:12.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:12 smithi026 bash[21443]: cephadm 2024-03-30T13:55:10.164387+0000 mgr.a (mgr.14152) 91 : cephadm 1 Reconfiguring daemon mon.a on smithi026 2024-03-30T13:55:12.409 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:12 smithi050 bash[22081]: cephadm 2024-03-30T13:55:10.159234+0000 mgr.a (mgr.14152) 90 : cephadm 1 Reconfiguring mon.a (unknown last config time)... 2024-03-30T13:55:12.409 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:12 smithi050 bash[22081]: cephadm 2024-03-30T13:55:10.164387+0000 mgr.a (mgr.14152) 91 : cephadm 1 Reconfiguring daemon mon.a on smithi026 2024-03-30T13:55:12.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:12 smithi136 bash[22230]: cephadm 2024-03-30T13:55:10.159234+0000 mgr.a (mgr.14152) 90 : cephadm 1 Reconfiguring mon.a (unknown last config time)... 2024-03-30T13:55:12.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:12 smithi136 bash[22230]: cephadm 2024-03-30T13:55:10.164387+0000 mgr.a (mgr.14152) 91 : cephadm 1 Reconfiguring daemon mon.a on smithi026 2024-03-30T13:55:13.342 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:13 smithi026 bash[21443]: cluster 2024-03-30T13:55:11.483548+0000 mgr.a (mgr.14152) 92 : cluster 0 pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:13.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:13 smithi050 bash[22081]: cluster 2024-03-30T13:55:11.483548+0000 mgr.a (mgr.14152) 92 : cluster 0 pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:13.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:13 smithi136 bash[22230]: cluster 2024-03-30T13:55:11.483548+0000 mgr.a (mgr.14152) 92 : cluster 0 pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:14.409 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:14 smithi050 bash[22081]: audit 2024-03-30T13:55:13.132128+0000 mon.a (mon.0) 299 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:14.409 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:14 smithi050 bash[22081]: audit 2024-03-30T13:55:13.137603+0000 mon.a (mon.0) 300 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:14.409 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:14 smithi050 bash[22081]: audit 2024-03-30T13:55:13.144416+0000 mon.a (mon.0) 301 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:14.409 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:14 smithi050 bash[22081]: audit 2024-03-30T13:55:13.386257+0000 mon.a (mon.0) 302 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:14.410 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:14 smithi050 bash[22081]: audit 2024-03-30T13:55:13.393654+0000 mon.a (mon.0) 303 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:14.410 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:14 smithi050 bash[22081]: audit 2024-03-30T13:55:13.403265+0000 mon.a (mon.0) 304 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:14.410 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:14 smithi050 bash[22081]: audit 2024-03-30T13:55:13.788489+0000 mon.a (mon.0) 305 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:14.410 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:14 smithi050 bash[22081]: audit 2024-03-30T13:55:13.795551+0000 mon.a (mon.0) 306 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:14.410 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:14 smithi050 bash[22081]: audit 2024-03-30T13:55:13.838839+0000 mon.a (mon.0) 307 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-03-30T13:55:14.410 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:14 smithi050 bash[22081]: audit 2024-03-30T13:55:13.840418+0000 mon.a (mon.0) 308 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-03-30T13:55:14.410 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:14 smithi050 bash[22081]: audit 2024-03-30T13:55:13.842029+0000 mon.a (mon.0) 309 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:14.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:14 smithi136 bash[22230]: audit 2024-03-30T13:55:13.132128+0000 mon.a (mon.0) 299 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:14.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:14 smithi136 bash[22230]: audit 2024-03-30T13:55:13.137603+0000 mon.a (mon.0) 300 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:14.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:14 smithi136 bash[22230]: audit 2024-03-30T13:55:13.144416+0000 mon.a (mon.0) 301 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:14.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:14 smithi136 bash[22230]: audit 2024-03-30T13:55:13.386257+0000 mon.a (mon.0) 302 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:14.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:14 smithi136 bash[22230]: audit 2024-03-30T13:55:13.393654+0000 mon.a (mon.0) 303 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:14.486 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:14 smithi136 bash[22230]: audit 2024-03-30T13:55:13.403265+0000 mon.a (mon.0) 304 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:14.486 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:14 smithi136 bash[22230]: audit 2024-03-30T13:55:13.788489+0000 mon.a (mon.0) 305 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:14.486 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:14 smithi136 bash[22230]: audit 2024-03-30T13:55:13.795551+0000 mon.a (mon.0) 306 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:14.486 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:14 smithi136 bash[22230]: audit 2024-03-30T13:55:13.838839+0000 mon.a (mon.0) 307 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-03-30T13:55:14.486 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:14 smithi136 bash[22230]: audit 2024-03-30T13:55:13.840418+0000 mon.a (mon.0) 308 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-03-30T13:55:14.486 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:14 smithi136 bash[22230]: audit 2024-03-30T13:55:13.842029+0000 mon.a (mon.0) 309 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:14.610 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:14 smithi026 bash[21443]: audit 2024-03-30T13:55:13.132128+0000 mon.a (mon.0) 299 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:14.610 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:14 smithi026 bash[21443]: audit 2024-03-30T13:55:13.137603+0000 mon.a (mon.0) 300 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:14.610 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:14 smithi026 bash[21443]: audit 2024-03-30T13:55:13.144416+0000 mon.a (mon.0) 301 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:14.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:14 smithi026 bash[21443]: audit 2024-03-30T13:55:13.386257+0000 mon.a (mon.0) 302 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:14.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:14 smithi026 bash[21443]: audit 2024-03-30T13:55:13.393654+0000 mon.a (mon.0) 303 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:14.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:14 smithi026 bash[21443]: audit 2024-03-30T13:55:13.403265+0000 mon.a (mon.0) 304 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:14.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:14 smithi026 bash[21443]: audit 2024-03-30T13:55:13.788489+0000 mon.a (mon.0) 305 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:14.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:14 smithi026 bash[21443]: audit 2024-03-30T13:55:13.795551+0000 mon.a (mon.0) 306 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:14.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:14 smithi026 bash[21443]: audit 2024-03-30T13:55:13.838839+0000 mon.a (mon.0) 307 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-03-30T13:55:14.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:14 smithi026 bash[21443]: audit 2024-03-30T13:55:13.840418+0000 mon.a (mon.0) 308 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-03-30T13:55:14.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:14 smithi026 bash[21443]: audit 2024-03-30T13:55:13.842029+0000 mon.a (mon.0) 309 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:15.285 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:15 smithi050 bash[22081]: cluster 2024-03-30T13:55:13.483971+0000 mgr.a (mgr.14152) 93 : cluster 0 pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:15.285 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:15 smithi050 bash[22081]: cephadm 2024-03-30T13:55:13.838314+0000 mgr.a (mgr.14152) 94 : cephadm 1 Reconfiguring mon.b (monmap changed)... 2024-03-30T13:55:15.285 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:15 smithi050 bash[22081]: cephadm 2024-03-30T13:55:13.843977+0000 mgr.a (mgr.14152) 95 : cephadm 1 Reconfiguring daemon mon.b on smithi050 2024-03-30T13:55:15.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:15 smithi136 bash[22230]: cluster 2024-03-30T13:55:13.483971+0000 mgr.a (mgr.14152) 93 : cluster 0 pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:15.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:15 smithi136 bash[22230]: cephadm 2024-03-30T13:55:13.838314+0000 mgr.a (mgr.14152) 94 : cephadm 1 Reconfiguring mon.b (monmap changed)... 2024-03-30T13:55:15.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:15 smithi136 bash[22230]: cephadm 2024-03-30T13:55:13.843977+0000 mgr.a (mgr.14152) 95 : cephadm 1 Reconfiguring daemon mon.b on smithi050 2024-03-30T13:55:15.610 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:15 smithi026 bash[21443]: cluster 2024-03-30T13:55:13.483971+0000 mgr.a (mgr.14152) 93 : cluster 0 pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:15.610 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:15 smithi026 bash[21443]: cephadm 2024-03-30T13:55:13.838314+0000 mgr.a (mgr.14152) 94 : cephadm 1 Reconfiguring mon.b (monmap changed)... 2024-03-30T13:55:15.610 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:15 smithi026 bash[21443]: cephadm 2024-03-30T13:55:13.843977+0000 mgr.a (mgr.14152) 95 : cephadm 1 Reconfiguring daemon mon.b on smithi050 2024-03-30T13:55:15.958 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T13:55:16.737 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:16 smithi026 bash[21443]: cluster 2024-03-30T13:55:15.484388+0000 mgr.a (mgr.14152) 96 : cluster 0 pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:16.738 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:16 smithi026 bash[21443]: audit 2024-03-30T13:55:15.681633+0000 mon.a (mon.0) 310 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:16.738 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:16 smithi026 bash[21443]: audit 2024-03-30T13:55:15.689067+0000 mon.a (mon.0) 311 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:16.738 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:16 smithi026 bash[21443]: cephadm 2024-03-30T13:55:15.714428+0000 mgr.a (mgr.14152) 97 : cephadm 1 Reconfiguring mon.c (monmap changed)... 2024-03-30T13:55:16.738 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:16 smithi026 bash[21443]: audit 2024-03-30T13:55:15.715097+0000 mon.a (mon.0) 312 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-03-30T13:55:16.738 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:16 smithi026 bash[21443]: audit 2024-03-30T13:55:15.717077+0000 mon.a (mon.0) 313 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-03-30T13:55:16.738 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:16 smithi026 bash[21443]: audit 2024-03-30T13:55:15.718845+0000 mon.a (mon.0) 314 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:16.738 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:16 smithi026 bash[21443]: cephadm 2024-03-30T13:55:15.720839+0000 mgr.a (mgr.14152) 98 : cephadm 1 Reconfiguring daemon mon.c on smithi136 2024-03-30T13:55:16.738 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:16 smithi026 bash[21443]: audit 2024-03-30T13:55:16.476063+0000 mon.a (mon.0) 315 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:16.738 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:16 smithi026 bash[21443]: audit 2024-03-30T13:55:16.481862+0000 mon.a (mon.0) 316 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:16.738 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:16 smithi026 bash[21443]: audit 2024-03-30T13:55:16.489021+0000 mon.a (mon.0) 317 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:16.931 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:16 smithi136 bash[22230]: cluster 2024-03-30T13:55:15.484388+0000 mgr.a (mgr.14152) 96 : cluster 0 pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:16.931 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:16 smithi136 bash[22230]: audit 2024-03-30T13:55:15.681633+0000 mon.a (mon.0) 310 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:16.931 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:16 smithi136 bash[22230]: audit 2024-03-30T13:55:15.689067+0000 mon.a (mon.0) 311 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:16.931 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:16 smithi136 bash[22230]: cephadm 2024-03-30T13:55:15.714428+0000 mgr.a (mgr.14152) 97 : cephadm 1 Reconfiguring mon.c (monmap changed)... 2024-03-30T13:55:16.931 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:16 smithi136 bash[22230]: audit 2024-03-30T13:55:15.715097+0000 mon.a (mon.0) 312 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-03-30T13:55:16.931 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:16 smithi136 bash[22230]: audit 2024-03-30T13:55:15.717077+0000 mon.a (mon.0) 313 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-03-30T13:55:16.931 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:16 smithi136 bash[22230]: audit 2024-03-30T13:55:15.718845+0000 mon.a (mon.0) 314 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:16.931 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:16 smithi136 bash[22230]: cephadm 2024-03-30T13:55:15.720839+0000 mgr.a (mgr.14152) 98 : cephadm 1 Reconfiguring daemon mon.c on smithi136 2024-03-30T13:55:16.931 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:16 smithi136 bash[22230]: audit 2024-03-30T13:55:16.476063+0000 mon.a (mon.0) 315 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:16.931 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:16 smithi136 bash[22230]: audit 2024-03-30T13:55:16.481862+0000 mon.a (mon.0) 316 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:16.931 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:16 smithi136 bash[22230]: audit 2024-03-30T13:55:16.489021+0000 mon.a (mon.0) 317 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:17.159 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:16 smithi050 bash[22081]: cluster 2024-03-30T13:55:15.484388+0000 mgr.a (mgr.14152) 96 : cluster 0 pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:17.159 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:16 smithi050 bash[22081]: audit 2024-03-30T13:55:15.681633+0000 mon.a (mon.0) 310 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:17.159 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:16 smithi050 bash[22081]: audit 2024-03-30T13:55:15.689067+0000 mon.a (mon.0) 311 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:17.159 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:16 smithi050 bash[22081]: cephadm 2024-03-30T13:55:15.714428+0000 mgr.a (mgr.14152) 97 : cephadm 1 Reconfiguring mon.c (monmap changed)... 2024-03-30T13:55:17.159 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:16 smithi050 bash[22081]: audit 2024-03-30T13:55:15.715097+0000 mon.a (mon.0) 312 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-03-30T13:55:17.159 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:16 smithi050 bash[22081]: audit 2024-03-30T13:55:15.717077+0000 mon.a (mon.0) 313 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-03-30T13:55:17.160 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:16 smithi050 bash[22081]: audit 2024-03-30T13:55:15.718845+0000 mon.a (mon.0) 314 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:17.160 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:16 smithi050 bash[22081]: cephadm 2024-03-30T13:55:15.720839+0000 mgr.a (mgr.14152) 98 : cephadm 1 Reconfiguring daemon mon.c on smithi136 2024-03-30T13:55:17.160 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:16 smithi050 bash[22081]: audit 2024-03-30T13:55:16.476063+0000 mon.a (mon.0) 315 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:17.160 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:16 smithi050 bash[22081]: audit 2024-03-30T13:55:16.481862+0000 mon.a (mon.0) 316 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:17.160 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:16 smithi050 bash[22081]: audit 2024-03-30T13:55:16.489021+0000 mon.a (mon.0) 317 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:18.540 INFO:teuthology.orchestra.run.smithi026.stdout:# minimal ceph.conf for 56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T13:55:18.540 INFO:teuthology.orchestra.run.smithi026.stdout:[global] 2024-03-30T13:55:18.540 INFO:teuthology.orchestra.run.smithi026.stdout: fsid = 56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T13:55:18.540 INFO:teuthology.orchestra.run.smithi026.stdout: mon_host = [v2:172.21.15.26:3300/0,v1:172.21.15.26:6789/0] [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] [v2:172.21.15.136:3300/0,v1:172.21.15.136:6789/0] 2024-03-30T13:55:18.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:18 smithi026 bash[21443]: cluster 2024-03-30T13:55:17.484736+0000 mgr.a (mgr.14152) 99 : cluster 0 pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:18.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:18 smithi026 bash[21443]: audit 2024-03-30T13:55:17.585343+0000 mon.a (mon.0) 318 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:18.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:18 smithi026 bash[21443]: audit 2024-03-30T13:55:17.591402+0000 mon.a (mon.0) 319 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:18.861 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:18 smithi026 bash[21443]: audit 2024-03-30T13:55:17.641530+0000 mon.a (mon.0) 320 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:55:18.861 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:18 smithi026 bash[21443]: audit 2024-03-30T13:55:17.646790+0000 mon.a (mon.0) 321 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:18.861 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:18 smithi026 bash[21443]: audit 2024-03-30T13:55:17.648691+0000 mon.a (mon.0) 322 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:55:18.861 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:18 smithi026 bash[21443]: cephadm 2024-03-30T13:55:17.651551+0000 mgr.a (mgr.14152) 100 : cephadm 1 Updating smithi026:/etc/ceph/ceph.conf 2024-03-30T13:55:18.861 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:18 smithi026 bash[21443]: cephadm 2024-03-30T13:55:17.652291+0000 mgr.a (mgr.14152) 101 : cephadm 1 Updating smithi050:/etc/ceph/ceph.conf 2024-03-30T13:55:18.861 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:18 smithi026 bash[21443]: cephadm 2024-03-30T13:55:17.652691+0000 mgr.a (mgr.14152) 102 : cephadm 1 Updating smithi136:/etc/ceph/ceph.conf 2024-03-30T13:55:18.861 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:18 smithi026 bash[21443]: cephadm 2024-03-30T13:55:18.019239+0000 mgr.a (mgr.14152) 103 : cephadm 1 Updating smithi026:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-03-30T13:55:18.861 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:18 smithi026 bash[21443]: cephadm 2024-03-30T13:55:18.020040+0000 mgr.a (mgr.14152) 104 : cephadm 1 Updating smithi136:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-03-30T13:55:18.861 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:18 smithi026 bash[21443]: cephadm 2024-03-30T13:55:18.020525+0000 mgr.a (mgr.14152) 105 : cephadm 1 Updating smithi050:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-03-30T13:55:18.861 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:18 smithi026 bash[21443]: audit 2024-03-30T13:55:18.288800+0000 mon.a (mon.0) 323 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:18.862 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:18 smithi026 bash[21443]: audit 2024-03-30T13:55:18.291481+0000 mon.a (mon.0) 324 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:18.862 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:18 smithi026 bash[21443]: audit 2024-03-30T13:55:18.294162+0000 mon.a (mon.0) 325 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:18.862 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:18 smithi026 bash[21443]: audit 2024-03-30T13:55:18.296860+0000 mon.a (mon.0) 326 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:18.862 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:18 smithi026 bash[21443]: audit 2024-03-30T13:55:18.299287+0000 mon.a (mon.0) 327 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:18.862 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:18 smithi026 bash[21443]: audit 2024-03-30T13:55:18.305063+0000 mon.a (mon.0) 328 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:18.862 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:18 smithi026 bash[21443]: audit 2024-03-30T13:55:18.310825+0000 mon.a (mon.0) 329 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:18.862 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:18 smithi026 bash[21443]: audit 2024-03-30T13:55:18.544497+0000 mon.a (mon.0) 330 : audit 0 from='client.? 172.21.15.26:0/3637272224' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:18.909 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:18 smithi050 bash[22081]: cluster 2024-03-30T13:55:17.484736+0000 mgr.a (mgr.14152) 99 : cluster 0 pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:18.910 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:18 smithi050 bash[22081]: audit 2024-03-30T13:55:17.585343+0000 mon.a (mon.0) 318 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:18.910 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:18 smithi050 bash[22081]: audit 2024-03-30T13:55:17.591402+0000 mon.a (mon.0) 319 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:18.910 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:18 smithi050 bash[22081]: audit 2024-03-30T13:55:17.641530+0000 mon.a (mon.0) 320 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:55:18.910 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:18 smithi050 bash[22081]: audit 2024-03-30T13:55:17.646790+0000 mon.a (mon.0) 321 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:18.910 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:18 smithi050 bash[22081]: audit 2024-03-30T13:55:17.648691+0000 mon.a (mon.0) 322 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:55:18.910 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:18 smithi050 bash[22081]: cephadm 2024-03-30T13:55:17.651551+0000 mgr.a (mgr.14152) 100 : cephadm 1 Updating smithi026:/etc/ceph/ceph.conf 2024-03-30T13:55:18.910 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:18 smithi050 bash[22081]: cephadm 2024-03-30T13:55:17.652291+0000 mgr.a (mgr.14152) 101 : cephadm 1 Updating smithi050:/etc/ceph/ceph.conf 2024-03-30T13:55:18.910 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:18 smithi050 bash[22081]: cephadm 2024-03-30T13:55:17.652691+0000 mgr.a (mgr.14152) 102 : cephadm 1 Updating smithi136:/etc/ceph/ceph.conf 2024-03-30T13:55:18.910 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:18 smithi050 bash[22081]: cephadm 2024-03-30T13:55:18.019239+0000 mgr.a (mgr.14152) 103 : cephadm 1 Updating smithi026:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-03-30T13:55:18.911 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:18 smithi050 bash[22081]: cephadm 2024-03-30T13:55:18.020040+0000 mgr.a (mgr.14152) 104 : cephadm 1 Updating smithi136:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-03-30T13:55:18.911 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:18 smithi050 bash[22081]: cephadm 2024-03-30T13:55:18.020525+0000 mgr.a (mgr.14152) 105 : cephadm 1 Updating smithi050:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-03-30T13:55:18.911 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:18 smithi050 bash[22081]: audit 2024-03-30T13:55:18.288800+0000 mon.a (mon.0) 323 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:18.911 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:18 smithi050 bash[22081]: audit 2024-03-30T13:55:18.291481+0000 mon.a (mon.0) 324 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:18.911 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:18 smithi050 bash[22081]: audit 2024-03-30T13:55:18.294162+0000 mon.a (mon.0) 325 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:18.911 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:18 smithi050 bash[22081]: audit 2024-03-30T13:55:18.296860+0000 mon.a (mon.0) 326 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:18.911 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:18 smithi050 bash[22081]: audit 2024-03-30T13:55:18.299287+0000 mon.a (mon.0) 327 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:18.911 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:18 smithi050 bash[22081]: audit 2024-03-30T13:55:18.305063+0000 mon.a (mon.0) 328 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:18.911 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:18 smithi050 bash[22081]: audit 2024-03-30T13:55:18.310825+0000 mon.a (mon.0) 329 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:18.911 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:18 smithi050 bash[22081]: audit 2024-03-30T13:55:18.544497+0000 mon.a (mon.0) 330 : audit 0 from='client.? 172.21.15.26:0/3637272224' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:18.985 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:18 smithi136 bash[22230]: cluster 2024-03-30T13:55:17.484736+0000 mgr.a (mgr.14152) 99 : cluster 0 pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:18.986 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:18 smithi136 bash[22230]: audit 2024-03-30T13:55:17.585343+0000 mon.a (mon.0) 318 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:18.986 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:18 smithi136 bash[22230]: audit 2024-03-30T13:55:17.591402+0000 mon.a (mon.0) 319 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:18.986 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:18 smithi136 bash[22230]: audit 2024-03-30T13:55:17.641530+0000 mon.a (mon.0) 320 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:55:18.986 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:18 smithi136 bash[22230]: audit 2024-03-30T13:55:17.646790+0000 mon.a (mon.0) 321 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:18.987 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:18 smithi136 bash[22230]: audit 2024-03-30T13:55:17.648691+0000 mon.a (mon.0) 322 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:55:18.987 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:18 smithi136 bash[22230]: cephadm 2024-03-30T13:55:17.651551+0000 mgr.a (mgr.14152) 100 : cephadm 1 Updating smithi026:/etc/ceph/ceph.conf 2024-03-30T13:55:18.987 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:18 smithi136 bash[22230]: cephadm 2024-03-30T13:55:17.652291+0000 mgr.a (mgr.14152) 101 : cephadm 1 Updating smithi050:/etc/ceph/ceph.conf 2024-03-30T13:55:18.987 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:18 smithi136 bash[22230]: cephadm 2024-03-30T13:55:17.652691+0000 mgr.a (mgr.14152) 102 : cephadm 1 Updating smithi136:/etc/ceph/ceph.conf 2024-03-30T13:55:18.987 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:18 smithi136 bash[22230]: cephadm 2024-03-30T13:55:18.019239+0000 mgr.a (mgr.14152) 103 : cephadm 1 Updating smithi026:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-03-30T13:55:18.987 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:18 smithi136 bash[22230]: cephadm 2024-03-30T13:55:18.020040+0000 mgr.a (mgr.14152) 104 : cephadm 1 Updating smithi136:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-03-30T13:55:18.987 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:18 smithi136 bash[22230]: cephadm 2024-03-30T13:55:18.020525+0000 mgr.a (mgr.14152) 105 : cephadm 1 Updating smithi050:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-03-30T13:55:18.987 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:18 smithi136 bash[22230]: audit 2024-03-30T13:55:18.288800+0000 mon.a (mon.0) 323 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:18.987 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:18 smithi136 bash[22230]: audit 2024-03-30T13:55:18.291481+0000 mon.a (mon.0) 324 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:18.987 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:18 smithi136 bash[22230]: audit 2024-03-30T13:55:18.294162+0000 mon.a (mon.0) 325 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:18.987 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:18 smithi136 bash[22230]: audit 2024-03-30T13:55:18.296860+0000 mon.a (mon.0) 326 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:18.987 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:18 smithi136 bash[22230]: audit 2024-03-30T13:55:18.299287+0000 mon.a (mon.0) 327 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:18.988 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:18 smithi136 bash[22230]: audit 2024-03-30T13:55:18.305063+0000 mon.a (mon.0) 328 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:18.988 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:18 smithi136 bash[22230]: audit 2024-03-30T13:55:18.310825+0000 mon.a (mon.0) 329 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:18.988 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:18 smithi136 bash[22230]: audit 2024-03-30T13:55:18.544497+0000 mon.a (mon.0) 330 : audit 0 from='client.? 172.21.15.26:0/3637272224' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:19.188 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-03-30T13:55:19.188 DEBUG:teuthology.orchestra.run.smithi026:> set -ex 2024-03-30T13:55:19.188 DEBUG:teuthology.orchestra.run.smithi026:> sudo dd of=/etc/ceph/ceph.conf 2024-03-30T13:55:19.202 DEBUG:teuthology.orchestra.run.smithi026:> set -ex 2024-03-30T13:55:19.202 DEBUG:teuthology.orchestra.run.smithi026:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-03-30T13:55:19.256 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-03-30T13:55:19.257 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/etc/ceph/ceph.conf 2024-03-30T13:55:19.272 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-03-30T13:55:19.272 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-03-30T13:55:19.327 DEBUG:teuthology.orchestra.run.smithi136:> set -ex 2024-03-30T13:55:19.327 DEBUG:teuthology.orchestra.run.smithi136:> sudo dd of=/etc/ceph/ceph.conf 2024-03-30T13:55:19.342 DEBUG:teuthology.orchestra.run.smithi136:> set -ex 2024-03-30T13:55:19.342 DEBUG:teuthology.orchestra.run.smithi136:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-03-30T13:55:19.398 INFO:tasks.cephadm:Adding mgr.a on smithi026 2024-03-30T13:55:19.398 INFO:tasks.cephadm:Adding mgr.b on smithi050 2024-03-30T13:55:19.398 DEBUG:teuthology.orchestra.run.smithi136:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph orch apply mgr '2;smithi026=a;smithi050=b' 2024-03-30T13:55:20.859 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:20 smithi026 bash[21443]: cluster 2024-03-30T13:55:19.485115+0000 mgr.a (mgr.14152) 106 : cluster 0 pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:20.909 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:20 smithi050 bash[22081]: cluster 2024-03-30T13:55:19.485115+0000 mgr.a (mgr.14152) 106 : cluster 0 pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:20.985 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:20 smithi136 bash[22230]: cluster 2024-03-30T13:55:19.485115+0000 mgr.a (mgr.14152) 106 : cluster 0 pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:22.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:22 smithi026 bash[21443]: cluster 2024-03-30T13:55:21.485477+0000 mgr.a (mgr.14152) 107 : cluster 0 pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:22.908 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:22 smithi050 bash[22081]: cluster 2024-03-30T13:55:21.485477+0000 mgr.a (mgr.14152) 107 : cluster 0 pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:22.985 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:22 smithi136 bash[22230]: cluster 2024-03-30T13:55:21.485477+0000 mgr.a (mgr.14152) 107 : cluster 0 pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:23.139 INFO:teuthology.orchestra.run.smithi136.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.c/config 2024-03-30T13:55:24.731 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:24 smithi136 bash[22230]: cluster 2024-03-30T13:55:23.485899+0000 mgr.a (mgr.14152) 108 : cluster 0 pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:24.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:24 smithi026 bash[21443]: cluster 2024-03-30T13:55:23.485899+0000 mgr.a (mgr.14152) 108 : cluster 0 pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:24.908 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:24 smithi050 bash[22081]: cluster 2024-03-30T13:55:23.485899+0000 mgr.a (mgr.14152) 108 : cluster 0 pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:26.607 INFO:teuthology.orchestra.run.smithi136.stdout:Scheduled mgr update... 2024-03-30T13:55:26.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:26 smithi026 bash[21443]: cluster 2024-03-30T13:55:25.486290+0000 mgr.a (mgr.14152) 109 : cluster 0 pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:26.899 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:26 smithi136 bash[22230]: cluster 2024-03-30T13:55:25.486290+0000 mgr.a (mgr.14152) 109 : cluster 0 pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:26.908 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:26 smithi050 bash[22081]: cluster 2024-03-30T13:55:25.486290+0000 mgr.a (mgr.14152) 109 : cluster 0 pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:27.287 DEBUG:teuthology.orchestra.run.smithi050:mgr.b> sudo journalctl -f -n 0 -u ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@mgr.b.service 2024-03-30T13:55:27.290 INFO:tasks.cephadm:Deploying OSDs... 2024-03-30T13:55:27.290 DEBUG:teuthology.orchestra.run.smithi026:> set -ex 2024-03-30T13:55:27.290 DEBUG:teuthology.orchestra.run.smithi026:> dd if=/scratch_devs of=/dev/stdout 2024-03-30T13:55:27.296 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-03-30T13:55:27.296 DEBUG:teuthology.orchestra.run.smithi026:> stat /dev/vg_nvme/lv_1 2024-03-30T13:55:27.344 INFO:teuthology.orchestra.run.smithi026.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-03-30T13:55:27.344 INFO:teuthology.orchestra.run.smithi026.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-30T13:55:27.345 INFO:teuthology.orchestra.run.smithi026.stdout:Device: 5h/5d Inode: 884 Links: 1 2024-03-30T13:55:27.345 INFO:teuthology.orchestra.run.smithi026.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-30T13:55:27.345 INFO:teuthology.orchestra.run.smithi026.stdout:Access: 2024-03-30 13:43:59.319693998 +0000 2024-03-30T13:55:27.345 INFO:teuthology.orchestra.run.smithi026.stdout:Modify: 2024-03-30 13:43:59.315694034 +0000 2024-03-30T13:55:27.345 INFO:teuthology.orchestra.run.smithi026.stdout:Change: 2024-03-30 13:43:59.315694034 +0000 2024-03-30T13:55:27.345 INFO:teuthology.orchestra.run.smithi026.stdout: Birth: - 2024-03-30T13:55:27.345 DEBUG:teuthology.orchestra.run.smithi026:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-03-30T13:55:27.399 INFO:teuthology.orchestra.run.smithi026.stderr:1+0 records in 2024-03-30T13:55:27.399 INFO:teuthology.orchestra.run.smithi026.stderr:1+0 records out 2024-03-30T13:55:27.399 INFO:teuthology.orchestra.run.smithi026.stderr:512 bytes copied, 0.000350028 s, 1.5 MB/s 2024-03-30T13:55:27.401 DEBUG:teuthology.orchestra.run.smithi026:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-03-30T13:55:27.453 DEBUG:teuthology.orchestra.run.smithi026:> stat /dev/vg_nvme/lv_2 2024-03-30T13:55:27.500 INFO:teuthology.orchestra.run.smithi026.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-03-30T13:55:27.500 INFO:teuthology.orchestra.run.smithi026.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-30T13:55:27.500 INFO:teuthology.orchestra.run.smithi026.stdout:Device: 5h/5d Inode: 902 Links: 1 2024-03-30T13:55:27.500 INFO:teuthology.orchestra.run.smithi026.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-30T13:55:27.500 INFO:teuthology.orchestra.run.smithi026.stdout:Access: 2024-03-30 13:44:00.075687245 +0000 2024-03-30T13:55:27.500 INFO:teuthology.orchestra.run.smithi026.stdout:Modify: 2024-03-30 13:43:59.799689711 +0000 2024-03-30T13:55:27.501 INFO:teuthology.orchestra.run.smithi026.stdout:Change: 2024-03-30 13:43:59.799689711 +0000 2024-03-30T13:55:27.501 INFO:teuthology.orchestra.run.smithi026.stdout: Birth: - 2024-03-30T13:55:27.501 DEBUG:teuthology.orchestra.run.smithi026:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-03-30T13:55:27.555 INFO:teuthology.orchestra.run.smithi026.stderr:1+0 records in 2024-03-30T13:55:27.555 INFO:teuthology.orchestra.run.smithi026.stderr:1+0 records out 2024-03-30T13:55:27.555 INFO:teuthology.orchestra.run.smithi026.stderr:512 bytes copied, 0.000263424 s, 1.9 MB/s 2024-03-30T13:55:27.556 DEBUG:teuthology.orchestra.run.smithi026:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-03-30T13:55:27.607 DEBUG:teuthology.orchestra.run.smithi026:> stat /dev/vg_nvme/lv_3 2024-03-30T13:55:27.656 INFO:teuthology.orchestra.run.smithi026.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-03-30T13:55:27.656 INFO:teuthology.orchestra.run.smithi026.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-30T13:55:27.656 INFO:teuthology.orchestra.run.smithi026.stdout:Device: 5h/5d Inode: 919 Links: 1 2024-03-30T13:55:27.656 INFO:teuthology.orchestra.run.smithi026.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-30T13:55:27.657 INFO:teuthology.orchestra.run.smithi026.stdout:Access: 2024-03-30 13:44:00.543683065 +0000 2024-03-30T13:55:27.657 INFO:teuthology.orchestra.run.smithi026.stdout:Modify: 2024-03-30 13:44:00.299685244 +0000 2024-03-30T13:55:27.657 INFO:teuthology.orchestra.run.smithi026.stdout:Change: 2024-03-30 13:44:00.299685244 +0000 2024-03-30T13:55:27.657 INFO:teuthology.orchestra.run.smithi026.stdout: Birth: - 2024-03-30T13:55:27.657 DEBUG:teuthology.orchestra.run.smithi026:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-03-30T13:55:27.709 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:27 smithi026 bash[21443]: audit 2024-03-30T13:55:26.600489+0000 mgr.a (mgr.14152) 110 : audit 0 from='client.24106 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi026=a;smithi050=b", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:55:27.709 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:27 smithi026 bash[21443]: cephadm 2024-03-30T13:55:26.604570+0000 mgr.a (mgr.14152) 111 : cephadm 1 Saving service mgr spec with placement smithi026=a;smithi050=b;count:2 2024-03-30T13:55:27.709 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:27 smithi026 bash[21443]: audit 2024-03-30T13:55:26.610388+0000 mon.a (mon.0) 331 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:27.709 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:27 smithi026 bash[21443]: audit 2024-03-30T13:55:26.630476+0000 mon.a (mon.0) 332 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:55:27.709 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:27 smithi026 bash[21443]: audit 2024-03-30T13:55:26.636228+0000 mon.a (mon.0) 333 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:27.709 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:27 smithi026 bash[21443]: audit 2024-03-30T13:55:26.638027+0000 mon.a (mon.0) 334 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:55:27.710 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:27 smithi026 bash[21443]: audit 2024-03-30T13:55:26.647003+0000 mon.a (mon.0) 335 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:27.710 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:27 smithi026 bash[21443]: audit 2024-03-30T13:55:26.651602+0000 mon.a (mon.0) 336 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-03-30T13:55:27.710 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:27 smithi026 bash[21443]: audit 2024-03-30T13:55:26.654280+0000 mon.a (mon.0) 337 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-03-30T13:55:27.710 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:27 smithi026 bash[21443]: audit 2024-03-30T13:55:26.658671+0000 mon.a (mon.0) 338 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-03-30T13:55:27.710 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:27 smithi026 bash[21443]: audit 2024-03-30T13:55:26.660602+0000 mon.a (mon.0) 339 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:27.710 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:27 smithi026 bash[21443]: cephadm 2024-03-30T13:55:26.662754+0000 mgr.a (mgr.14152) 112 : cephadm 1 Deploying daemon mgr.b on smithi050 2024-03-30T13:55:27.711 INFO:teuthology.orchestra.run.smithi026.stderr:1+0 records in 2024-03-30T13:55:27.711 INFO:teuthology.orchestra.run.smithi026.stderr:1+0 records out 2024-03-30T13:55:27.711 INFO:teuthology.orchestra.run.smithi026.stderr:512 bytes copied, 0.000303236 s, 1.7 MB/s 2024-03-30T13:55:27.713 DEBUG:teuthology.orchestra.run.smithi026:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-03-30T13:55:27.762 DEBUG:teuthology.orchestra.run.smithi026:> stat /dev/vg_nvme/lv_4 2024-03-30T13:55:27.808 INFO:teuthology.orchestra.run.smithi026.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-03-30T13:55:27.808 INFO:teuthology.orchestra.run.smithi026.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-30T13:55:27.808 INFO:teuthology.orchestra.run.smithi026.stdout:Device: 5h/5d Inode: 931 Links: 1 2024-03-30T13:55:27.808 INFO:teuthology.orchestra.run.smithi026.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-30T13:55:27.808 INFO:teuthology.orchestra.run.smithi026.stdout:Access: 2024-03-30 13:44:01.043678599 +0000 2024-03-30T13:55:27.808 INFO:teuthology.orchestra.run.smithi026.stdout:Modify: 2024-03-30 13:44:00.767681064 +0000 2024-03-30T13:55:27.808 INFO:teuthology.orchestra.run.smithi026.stdout:Change: 2024-03-30 13:44:00.767681064 +0000 2024-03-30T13:55:27.808 INFO:teuthology.orchestra.run.smithi026.stdout: Birth: - 2024-03-30T13:55:27.808 DEBUG:teuthology.orchestra.run.smithi026:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-03-30T13:55:27.862 INFO:teuthology.orchestra.run.smithi026.stderr:1+0 records in 2024-03-30T13:55:27.863 INFO:teuthology.orchestra.run.smithi026.stderr:1+0 records out 2024-03-30T13:55:27.863 INFO:teuthology.orchestra.run.smithi026.stderr:512 bytes copied, 0.000290134 s, 1.8 MB/s 2024-03-30T13:55:27.865 DEBUG:teuthology.orchestra.run.smithi026:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-03-30T13:55:27.909 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:27 smithi050 bash[22081]: audit 2024-03-30T13:55:26.600489+0000 mgr.a (mgr.14152) 110 : audit 0 from='client.24106 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi026=a;smithi050=b", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:55:27.909 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:27 smithi050 bash[22081]: cephadm 2024-03-30T13:55:26.604570+0000 mgr.a (mgr.14152) 111 : cephadm 1 Saving service mgr spec with placement smithi026=a;smithi050=b;count:2 2024-03-30T13:55:27.909 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:27 smithi050 bash[22081]: audit 2024-03-30T13:55:26.610388+0000 mon.a (mon.0) 331 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:27.910 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:27 smithi050 bash[22081]: audit 2024-03-30T13:55:26.630476+0000 mon.a (mon.0) 332 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:55:27.910 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:27 smithi050 bash[22081]: audit 2024-03-30T13:55:26.636228+0000 mon.a (mon.0) 333 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:27.910 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:27 smithi050 bash[22081]: audit 2024-03-30T13:55:26.638027+0000 mon.a (mon.0) 334 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:55:27.910 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:27 smithi050 bash[22081]: audit 2024-03-30T13:55:26.647003+0000 mon.a (mon.0) 335 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:27.910 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:27 smithi050 bash[22081]: audit 2024-03-30T13:55:26.651602+0000 mon.a (mon.0) 336 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-03-30T13:55:27.910 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:27 smithi050 bash[22081]: audit 2024-03-30T13:55:26.654280+0000 mon.a (mon.0) 337 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-03-30T13:55:27.910 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:27 smithi050 bash[22081]: audit 2024-03-30T13:55:26.658671+0000 mon.a (mon.0) 338 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-03-30T13:55:27.910 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:27 smithi050 bash[22081]: audit 2024-03-30T13:55:26.660602+0000 mon.a (mon.0) 339 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:27.910 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:27 smithi050 bash[22081]: cephadm 2024-03-30T13:55:26.662754+0000 mgr.a (mgr.14152) 112 : cephadm 1 Deploying daemon mgr.b on smithi050 2024-03-30T13:55:27.913 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-03-30T13:55:27.913 DEBUG:teuthology.orchestra.run.smithi050:> dd if=/scratch_devs of=/dev/stdout 2024-03-30T13:55:27.919 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-03-30T13:55:27.919 DEBUG:teuthology.orchestra.run.smithi050:> stat /dev/vg_nvme/lv_1 2024-03-30T13:55:27.966 INFO:teuthology.orchestra.run.smithi050.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-03-30T13:55:27.966 INFO:teuthology.orchestra.run.smithi050.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-30T13:55:27.967 INFO:teuthology.orchestra.run.smithi050.stdout:Device: 5h/5d Inode: 885 Links: 1 2024-03-30T13:55:27.967 INFO:teuthology.orchestra.run.smithi050.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-30T13:55:27.967 INFO:teuthology.orchestra.run.smithi050.stdout:Access: 2024-03-30 13:43:58.154781918 +0000 2024-03-30T13:55:27.967 INFO:teuthology.orchestra.run.smithi050.stdout:Modify: 2024-03-30 13:43:57.866795859 +0000 2024-03-30T13:55:27.967 INFO:teuthology.orchestra.run.smithi050.stdout:Change: 2024-03-30 13:43:57.866795859 +0000 2024-03-30T13:55:27.967 INFO:teuthology.orchestra.run.smithi050.stdout: Birth: - 2024-03-30T13:55:27.967 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-03-30T13:55:27.985 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:27 smithi136 bash[22230]: audit 2024-03-30T13:55:26.600489+0000 mgr.a (mgr.14152) 110 : audit 0 from='client.24106 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi026=a;smithi050=b", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:55:27.985 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:27 smithi136 bash[22230]: cephadm 2024-03-30T13:55:26.604570+0000 mgr.a (mgr.14152) 111 : cephadm 1 Saving service mgr spec with placement smithi026=a;smithi050=b;count:2 2024-03-30T13:55:27.985 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:27 smithi136 bash[22230]: audit 2024-03-30T13:55:26.610388+0000 mon.a (mon.0) 331 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:27.985 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:27 smithi136 bash[22230]: audit 2024-03-30T13:55:26.630476+0000 mon.a (mon.0) 332 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:55:27.985 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:27 smithi136 bash[22230]: audit 2024-03-30T13:55:26.636228+0000 mon.a (mon.0) 333 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:27.985 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:27 smithi136 bash[22230]: audit 2024-03-30T13:55:26.638027+0000 mon.a (mon.0) 334 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:55:27.985 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:27 smithi136 bash[22230]: audit 2024-03-30T13:55:26.647003+0000 mon.a (mon.0) 335 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:27.985 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:27 smithi136 bash[22230]: audit 2024-03-30T13:55:26.651602+0000 mon.a (mon.0) 336 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-03-30T13:55:27.985 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:27 smithi136 bash[22230]: audit 2024-03-30T13:55:26.654280+0000 mon.a (mon.0) 337 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-03-30T13:55:27.985 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:27 smithi136 bash[22230]: audit 2024-03-30T13:55:26.658671+0000 mon.a (mon.0) 338 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-03-30T13:55:27.985 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:27 smithi136 bash[22230]: audit 2024-03-30T13:55:26.660602+0000 mon.a (mon.0) 339 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:27.986 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:27 smithi136 bash[22230]: cephadm 2024-03-30T13:55:26.662754+0000 mgr.a (mgr.14152) 112 : cephadm 1 Deploying daemon mgr.b on smithi050 2024-03-30T13:55:28.021 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records in 2024-03-30T13:55:28.021 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records out 2024-03-30T13:55:28.022 INFO:teuthology.orchestra.run.smithi050.stderr:512 bytes copied, 0.000347462 s, 1.5 MB/s 2024-03-30T13:55:28.023 DEBUG:teuthology.orchestra.run.smithi050:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-03-30T13:55:28.071 DEBUG:teuthology.orchestra.run.smithi050:> stat /dev/vg_nvme/lv_2 2024-03-30T13:55:28.118 INFO:teuthology.orchestra.run.smithi050.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-03-30T13:55:28.118 INFO:teuthology.orchestra.run.smithi050.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-30T13:55:28.118 INFO:teuthology.orchestra.run.smithi050.stdout:Device: 5h/5d Inode: 899 Links: 1 2024-03-30T13:55:28.118 INFO:teuthology.orchestra.run.smithi050.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-30T13:55:28.118 INFO:teuthology.orchestra.run.smithi050.stdout:Access: 2024-03-30 13:43:58.654757958 +0000 2024-03-30T13:55:28.118 INFO:teuthology.orchestra.run.smithi050.stdout:Modify: 2024-03-30 13:43:58.358772143 +0000 2024-03-30T13:55:28.118 INFO:teuthology.orchestra.run.smithi050.stdout:Change: 2024-03-30 13:43:58.358772143 +0000 2024-03-30T13:55:28.119 INFO:teuthology.orchestra.run.smithi050.stdout: Birth: - 2024-03-30T13:55:28.119 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-03-30T13:55:28.173 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records in 2024-03-30T13:55:28.173 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records out 2024-03-30T13:55:28.173 INFO:teuthology.orchestra.run.smithi050.stderr:512 bytes copied, 0.000186523 s, 2.7 MB/s 2024-03-30T13:55:28.174 DEBUG:teuthology.orchestra.run.smithi050:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-03-30T13:55:28.223 DEBUG:teuthology.orchestra.run.smithi050:> stat /dev/vg_nvme/lv_3 2024-03-30T13:55:28.270 INFO:teuthology.orchestra.run.smithi050.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-03-30T13:55:28.270 INFO:teuthology.orchestra.run.smithi050.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-30T13:55:28.270 INFO:teuthology.orchestra.run.smithi050.stdout:Device: 5h/5d Inode: 912 Links: 1 2024-03-30T13:55:28.270 INFO:teuthology.orchestra.run.smithi050.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-30T13:55:28.270 INFO:teuthology.orchestra.run.smithi050.stdout:Access: 2024-03-30 13:43:59.142734710 +0000 2024-03-30T13:55:28.271 INFO:teuthology.orchestra.run.smithi050.stdout:Modify: 2024-03-30 13:43:58.874747415 +0000 2024-03-30T13:55:28.271 INFO:teuthology.orchestra.run.smithi050.stdout:Change: 2024-03-30 13:43:58.874747415 +0000 2024-03-30T13:55:28.271 INFO:teuthology.orchestra.run.smithi050.stdout: Birth: - 2024-03-30T13:55:28.271 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-03-30T13:55:28.324 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records in 2024-03-30T13:55:28.324 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records out 2024-03-30T13:55:28.324 INFO:teuthology.orchestra.run.smithi050.stderr:512 bytes copied, 0.000210552 s, 2.4 MB/s 2024-03-30T13:55:28.325 DEBUG:teuthology.orchestra.run.smithi050:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-03-30T13:55:28.381 DEBUG:teuthology.orchestra.run.smithi050:> stat /dev/vg_nvme/lv_4 2024-03-30T13:55:28.430 INFO:teuthology.orchestra.run.smithi050.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-03-30T13:55:28.430 INFO:teuthology.orchestra.run.smithi050.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-30T13:55:28.430 INFO:teuthology.orchestra.run.smithi050.stdout:Device: 5h/5d Inode: 935 Links: 1 2024-03-30T13:55:28.430 INFO:teuthology.orchestra.run.smithi050.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-30T13:55:28.430 INFO:teuthology.orchestra.run.smithi050.stdout:Access: 2024-03-30 13:43:59.354724763 +0000 2024-03-30T13:55:28.430 INFO:teuthology.orchestra.run.smithi050.stdout:Modify: 2024-03-30 13:43:59.350724949 +0000 2024-03-30T13:55:28.430 INFO:teuthology.orchestra.run.smithi050.stdout:Change: 2024-03-30 13:43:59.350724949 +0000 2024-03-30T13:55:28.430 INFO:teuthology.orchestra.run.smithi050.stdout: Birth: - 2024-03-30T13:55:28.430 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-03-30T13:55:28.487 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records in 2024-03-30T13:55:28.487 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records out 2024-03-30T13:55:28.487 INFO:teuthology.orchestra.run.smithi050.stderr:512 bytes copied, 0.000149695 s, 3.4 MB/s 2024-03-30T13:55:28.488 DEBUG:teuthology.orchestra.run.smithi050:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-03-30T13:55:28.534 DEBUG:teuthology.orchestra.run.smithi136:> set -ex 2024-03-30T13:55:28.534 DEBUG:teuthology.orchestra.run.smithi136:> dd if=/scratch_devs of=/dev/stdout 2024-03-30T13:55:28.541 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-03-30T13:55:28.541 DEBUG:teuthology.orchestra.run.smithi136:> stat /dev/vg_nvme/lv_1 2024-03-30T13:55:28.591 INFO:teuthology.orchestra.run.smithi136.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-03-30T13:55:28.591 INFO:teuthology.orchestra.run.smithi136.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-30T13:55:28.591 INFO:teuthology.orchestra.run.smithi136.stdout:Device: 5h/5d Inode: 879 Links: 1 2024-03-30T13:55:28.591 INFO:teuthology.orchestra.run.smithi136.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-30T13:55:28.591 INFO:teuthology.orchestra.run.smithi136.stdout:Access: 2024-03-30 13:43:53.643190639 +0000 2024-03-30T13:55:28.591 INFO:teuthology.orchestra.run.smithi136.stdout:Modify: 2024-03-30 13:43:53.383192961 +0000 2024-03-30T13:55:28.591 INFO:teuthology.orchestra.run.smithi136.stdout:Change: 2024-03-30 13:43:53.383192961 +0000 2024-03-30T13:55:28.592 INFO:teuthology.orchestra.run.smithi136.stdout: Birth: - 2024-03-30T13:55:28.592 DEBUG:teuthology.orchestra.run.smithi136:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-03-30T13:55:28.645 INFO:teuthology.orchestra.run.smithi136.stderr:1+0 records in 2024-03-30T13:55:28.646 INFO:teuthology.orchestra.run.smithi136.stderr:1+0 records out 2024-03-30T13:55:28.646 INFO:teuthology.orchestra.run.smithi136.stderr:512 bytes copied, 0.000400686 s, 1.3 MB/s 2024-03-30T13:55:28.647 DEBUG:teuthology.orchestra.run.smithi136:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-03-30T13:55:28.698 DEBUG:teuthology.orchestra.run.smithi136:> stat /dev/vg_nvme/lv_2 2024-03-30T13:55:28.747 INFO:teuthology.orchestra.run.smithi136.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-03-30T13:55:28.747 INFO:teuthology.orchestra.run.smithi136.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-30T13:55:28.748 INFO:teuthology.orchestra.run.smithi136.stdout:Device: 5h/5d Inode: 895 Links: 1 2024-03-30T13:55:28.748 INFO:teuthology.orchestra.run.smithi136.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-30T13:55:28.748 INFO:teuthology.orchestra.run.smithi136.stdout:Access: 2024-03-30 13:43:54.167185959 +0000 2024-03-30T13:55:28.748 INFO:teuthology.orchestra.run.smithi136.stdout:Modify: 2024-03-30 13:43:53.899188352 +0000 2024-03-30T13:55:28.748 INFO:teuthology.orchestra.run.smithi136.stdout:Change: 2024-03-30 13:43:53.899188352 +0000 2024-03-30T13:55:28.748 INFO:teuthology.orchestra.run.smithi136.stdout: Birth: - 2024-03-30T13:55:28.748 DEBUG:teuthology.orchestra.run.smithi136:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-03-30T13:55:28.801 INFO:teuthology.orchestra.run.smithi136.stderr:1+0 records in 2024-03-30T13:55:28.801 INFO:teuthology.orchestra.run.smithi136.stderr:1+0 records out 2024-03-30T13:55:28.801 INFO:teuthology.orchestra.run.smithi136.stderr:512 bytes copied, 0.000365219 s, 1.4 MB/s 2024-03-30T13:55:28.802 DEBUG:teuthology.orchestra.run.smithi136:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-03-30T13:55:28.852 DEBUG:teuthology.orchestra.run.smithi136:> stat /dev/vg_nvme/lv_3 2024-03-30T13:55:28.899 INFO:teuthology.orchestra.run.smithi136.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-03-30T13:55:28.899 INFO:teuthology.orchestra.run.smithi136.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-30T13:55:28.899 INFO:teuthology.orchestra.run.smithi136.stdout:Device: 5h/5d Inode: 910 Links: 1 2024-03-30T13:55:28.899 INFO:teuthology.orchestra.run.smithi136.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-30T13:55:28.899 INFO:teuthology.orchestra.run.smithi136.stdout:Access: 2024-03-30 13:43:54.651181635 +0000 2024-03-30T13:55:28.899 INFO:teuthology.orchestra.run.smithi136.stdout:Modify: 2024-03-30 13:43:54.399183885 +0000 2024-03-30T13:55:28.899 INFO:teuthology.orchestra.run.smithi136.stdout:Change: 2024-03-30 13:43:54.399183885 +0000 2024-03-30T13:55:28.899 INFO:teuthology.orchestra.run.smithi136.stdout: Birth: - 2024-03-30T13:55:28.899 DEBUG:teuthology.orchestra.run.smithi136:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-03-30T13:55:28.908 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:28 smithi050 bash[22081]: cluster 2024-03-30T13:55:27.486685+0000 mgr.a (mgr.14152) 113 : cluster 0 pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:28.951 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:28 smithi136 bash[22230]: cluster 2024-03-30T13:55:27.486685+0000 mgr.a (mgr.14152) 113 : cluster 0 pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:28.953 INFO:teuthology.orchestra.run.smithi136.stderr:1+0 records in 2024-03-30T13:55:28.954 INFO:teuthology.orchestra.run.smithi136.stderr:1+0 records out 2024-03-30T13:55:28.954 INFO:teuthology.orchestra.run.smithi136.stderr:512 bytes copied, 0.000448935 s, 1.1 MB/s 2024-03-30T13:55:28.955 DEBUG:teuthology.orchestra.run.smithi136:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-03-30T13:55:29.005 DEBUG:teuthology.orchestra.run.smithi136:> stat /dev/vg_nvme/lv_4 2024-03-30T13:55:29.019 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:28 smithi026 bash[21443]: cluster 2024-03-30T13:55:27.486685+0000 mgr.a (mgr.14152) 113 : cluster 0 pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:29.051 INFO:teuthology.orchestra.run.smithi136.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-03-30T13:55:29.051 INFO:teuthology.orchestra.run.smithi136.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-30T13:55:29.051 INFO:teuthology.orchestra.run.smithi136.stdout:Device: 5h/5d Inode: 927 Links: 1 2024-03-30T13:55:29.051 INFO:teuthology.orchestra.run.smithi136.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-30T13:55:29.051 INFO:teuthology.orchestra.run.smithi136.stdout:Access: 2024-03-30 13:43:55.135177312 +0000 2024-03-30T13:55:29.051 INFO:teuthology.orchestra.run.smithi136.stdout:Modify: 2024-03-30 13:43:54.883179562 +0000 2024-03-30T13:55:29.051 INFO:teuthology.orchestra.run.smithi136.stdout:Change: 2024-03-30 13:43:54.883179562 +0000 2024-03-30T13:55:29.051 INFO:teuthology.orchestra.run.smithi136.stdout: Birth: - 2024-03-30T13:55:29.052 DEBUG:teuthology.orchestra.run.smithi136:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-03-30T13:55:29.105 INFO:teuthology.orchestra.run.smithi136.stderr:1+0 records in 2024-03-30T13:55:29.105 INFO:teuthology.orchestra.run.smithi136.stderr:1+0 records out 2024-03-30T13:55:29.105 INFO:teuthology.orchestra.run.smithi136.stderr:512 bytes copied, 0.000286401 s, 1.8 MB/s 2024-03-30T13:55:29.106 DEBUG:teuthology.orchestra.run.smithi136:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-03-30T13:55:29.156 INFO:tasks.cephadm:Deploying osd.0 on smithi026 with /dev/vg_nvme/lv_4... 2024-03-30T13:55:29.156 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-03-30T13:55:29.861 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:29 smithi050 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:55:29.862 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:55:29 smithi050 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:55:29.862 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:55:29 smithi050 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:55:29.862 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:55:29 smithi050 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:55:30.159 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:29 smithi050 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:55:30.159 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:55:29 smithi050 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:55:30.159 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:55:29 smithi050 systemd[1]: Started Ceph mgr.b for 56554a52-ee9c-11ee-b647-cb9ed24678a4. 2024-03-30T13:55:31.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:31 smithi026 bash[21443]: cluster 2024-03-30T13:55:29.487072+0000 mgr.a (mgr.14152) 114 : cluster 0 pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:31.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:31 smithi026 bash[21443]: audit 2024-03-30T13:55:30.006197+0000 mon.a (mon.0) 340 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:31.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:31 smithi026 bash[21443]: audit 2024-03-30T13:55:30.014288+0000 mon.a (mon.0) 341 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:31.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:31 smithi026 bash[21443]: audit 2024-03-30T13:55:30.043129+0000 mon.a (mon.0) 342 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:31.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:31 smithi026 bash[21443]: audit 2024-03-30T13:55:30.050042+0000 mon.a (mon.0) 343 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:31.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:31 smithi026 bash[21443]: audit 2024-03-30T13:55:30.150732+0000 mon.a (mon.0) 344 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:55:31.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:31 smithi026 bash[21443]: audit 2024-03-30T13:55:30.155500+0000 mon.a (mon.0) 345 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:31.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:31 smithi026 bash[21443]: audit 2024-03-30T13:55:30.156680+0000 mon.a (mon.0) 346 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:55:31.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:31 smithi026 bash[21443]: audit 2024-03-30T13:55:30.164649+0000 mon.a (mon.0) 347 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:31.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:31 smithi026 bash[21443]: audit 2024-03-30T13:55:30.265498+0000 mon.a (mon.0) 348 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-03-30T13:55:31.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:31 smithi026 bash[21443]: audit 2024-03-30T13:55:30.267240+0000 mon.a (mon.0) 349 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-03-30T13:55:31.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:31 smithi026 bash[21443]: audit 2024-03-30T13:55:30.268610+0000 mon.a (mon.0) 350 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:31.409 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:55:31 smithi050 bash[23126]: debug 2024-03-30T13:55:31.088+0000 7fcb138af700 1 -- 172.21.15.50:0/1964937833 <== mon.2 v2:172.21.15.50:3300/0 4 ==== auth_reply(proto 2 0 (0) Success) ==== 194+0+0 (secure 0 0 0) 0x55d207a425a0 con 0x55d2087c2800 2024-03-30T13:55:31.409 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:55:31 smithi050 bash[23126]: debug 2024-03-30T13:55:31.236+0000 7fcb1dab7200 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-03-30T13:55:31.409 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:31 smithi050 bash[22081]: cluster 2024-03-30T13:55:29.487072+0000 mgr.a (mgr.14152) 114 : cluster 0 pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:31.409 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:31 smithi050 bash[22081]: audit 2024-03-30T13:55:30.006197+0000 mon.a (mon.0) 340 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:31.409 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:31 smithi050 bash[22081]: audit 2024-03-30T13:55:30.014288+0000 mon.a (mon.0) 341 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:31.409 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:31 smithi050 bash[22081]: audit 2024-03-30T13:55:30.043129+0000 mon.a (mon.0) 342 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:31.410 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:31 smithi050 bash[22081]: audit 2024-03-30T13:55:30.050042+0000 mon.a (mon.0) 343 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:31.410 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:31 smithi050 bash[22081]: audit 2024-03-30T13:55:30.150732+0000 mon.a (mon.0) 344 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:55:31.410 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:31 smithi050 bash[22081]: audit 2024-03-30T13:55:30.155500+0000 mon.a (mon.0) 345 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:31.410 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:31 smithi050 bash[22081]: audit 2024-03-30T13:55:30.156680+0000 mon.a (mon.0) 346 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:55:31.410 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:31 smithi050 bash[22081]: audit 2024-03-30T13:55:30.164649+0000 mon.a (mon.0) 347 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:31.410 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:31 smithi050 bash[22081]: audit 2024-03-30T13:55:30.265498+0000 mon.a (mon.0) 348 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-03-30T13:55:31.410 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:31 smithi050 bash[22081]: audit 2024-03-30T13:55:30.267240+0000 mon.a (mon.0) 349 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-03-30T13:55:31.410 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:31 smithi050 bash[22081]: audit 2024-03-30T13:55:30.268610+0000 mon.a (mon.0) 350 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:31.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:31 smithi136 bash[22230]: cluster 2024-03-30T13:55:29.487072+0000 mgr.a (mgr.14152) 114 : cluster 0 pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:31.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:31 smithi136 bash[22230]: audit 2024-03-30T13:55:30.006197+0000 mon.a (mon.0) 340 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:31.486 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:31 smithi136 bash[22230]: audit 2024-03-30T13:55:30.014288+0000 mon.a (mon.0) 341 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:31.486 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:31 smithi136 bash[22230]: audit 2024-03-30T13:55:30.043129+0000 mon.a (mon.0) 342 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:31.486 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:31 smithi136 bash[22230]: audit 2024-03-30T13:55:30.050042+0000 mon.a (mon.0) 343 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:31.486 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:31 smithi136 bash[22230]: audit 2024-03-30T13:55:30.150732+0000 mon.a (mon.0) 344 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:55:31.486 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:31 smithi136 bash[22230]: audit 2024-03-30T13:55:30.155500+0000 mon.a (mon.0) 345 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:31.486 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:31 smithi136 bash[22230]: audit 2024-03-30T13:55:30.156680+0000 mon.a (mon.0) 346 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:55:31.487 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:31 smithi136 bash[22230]: audit 2024-03-30T13:55:30.164649+0000 mon.a (mon.0) 347 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:31.487 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:31 smithi136 bash[22230]: audit 2024-03-30T13:55:30.265498+0000 mon.a (mon.0) 348 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-03-30T13:55:31.487 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:31 smithi136 bash[22230]: audit 2024-03-30T13:55:30.267240+0000 mon.a (mon.0) 349 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-03-30T13:55:31.487 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:31 smithi136 bash[22230]: audit 2024-03-30T13:55:30.268610+0000 mon.a (mon.0) 350 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:32.159 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:32 smithi050 bash[22081]: cephadm 2024-03-30T13:55:30.165261+0000 mgr.a (mgr.14152) 115 : cephadm 1 Metadata not up to date on all hosts. Skipping non agent specs 2024-03-30T13:55:32.159 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:32 smithi050 bash[22081]: cephadm 2024-03-30T13:55:30.264770+0000 mgr.a (mgr.14152) 116 : cephadm 1 Reconfiguring mgr.a (unknown last config time)... 2024-03-30T13:55:32.159 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:32 smithi050 bash[22081]: cephadm 2024-03-30T13:55:30.270251+0000 mgr.a (mgr.14152) 117 : cephadm 1 Reconfiguring daemon mgr.a on smithi026 2024-03-30T13:55:32.159 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:32 smithi050 bash[22081]: audit 2024-03-30T13:55:31.720125+0000 mon.a (mon.0) 351 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:32.159 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:32 smithi050 bash[22081]: audit 2024-03-30T13:55:31.727520+0000 mon.a (mon.0) 352 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:32.159 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:32 smithi050 bash[22081]: audit 2024-03-30T13:55:31.736888+0000 mon.a (mon.0) 353 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:32.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:32 smithi026 bash[21443]: cephadm 2024-03-30T13:55:30.165261+0000 mgr.a (mgr.14152) 115 : cephadm 1 Metadata not up to date on all hosts. Skipping non agent specs 2024-03-30T13:55:32.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:32 smithi026 bash[21443]: cephadm 2024-03-30T13:55:30.264770+0000 mgr.a (mgr.14152) 116 : cephadm 1 Reconfiguring mgr.a (unknown last config time)... 2024-03-30T13:55:32.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:32 smithi026 bash[21443]: cephadm 2024-03-30T13:55:30.270251+0000 mgr.a (mgr.14152) 117 : cephadm 1 Reconfiguring daemon mgr.a on smithi026 2024-03-30T13:55:32.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:32 smithi026 bash[21443]: audit 2024-03-30T13:55:31.720125+0000 mon.a (mon.0) 351 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:32.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:32 smithi026 bash[21443]: audit 2024-03-30T13:55:31.727520+0000 mon.a (mon.0) 352 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:32.361 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:32 smithi026 bash[21443]: audit 2024-03-30T13:55:31.736888+0000 mon.a (mon.0) 353 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:32.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:32 smithi136 bash[22230]: cephadm 2024-03-30T13:55:30.165261+0000 mgr.a (mgr.14152) 115 : cephadm 1 Metadata not up to date on all hosts. Skipping non agent specs 2024-03-30T13:55:32.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:32 smithi136 bash[22230]: cephadm 2024-03-30T13:55:30.264770+0000 mgr.a (mgr.14152) 116 : cephadm 1 Reconfiguring mgr.a (unknown last config time)... 2024-03-30T13:55:32.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:32 smithi136 bash[22230]: cephadm 2024-03-30T13:55:30.270251+0000 mgr.a (mgr.14152) 117 : cephadm 1 Reconfiguring daemon mgr.a on smithi026 2024-03-30T13:55:32.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:32 smithi136 bash[22230]: audit 2024-03-30T13:55:31.720125+0000 mon.a (mon.0) 351 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:32.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:32 smithi136 bash[22230]: audit 2024-03-30T13:55:31.727520+0000 mon.a (mon.0) 352 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:32.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:32 smithi136 bash[22230]: audit 2024-03-30T13:55:31.736888+0000 mon.a (mon.0) 353 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:33.129 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:33 smithi050 bash[22081]: cluster 2024-03-30T13:55:31.487459+0000 mgr.a (mgr.14152) 118 : cluster 0 pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:33.129 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:55:32 smithi050 bash[23126]: debug 2024-03-30T13:55:32.876+0000 7fcb1dab7200 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-03-30T13:55:33.129 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:55:32 smithi050 bash[23126]: debug 2024-03-30T13:55:32.976+0000 7fcb1dab7200 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-03-30T13:55:33.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:33 smithi026 bash[21443]: cluster 2024-03-30T13:55:31.487459+0000 mgr.a (mgr.14152) 118 : cluster 0 pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:33.408 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:55:33 smithi050 bash[23126]: debug 2024-03-30T13:55:33.236+0000 7fcb1dab7200 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-03-30T13:55:33.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:33 smithi136 bash[22230]: cluster 2024-03-30T13:55:31.487459+0000 mgr.a (mgr.14152) 118 : cluster 0 pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:34.159 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:55:34 smithi050 bash[23126]: debug 2024-03-30T13:55:34.064+0000 7fcb1dab7200 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-03-30T13:55:34.514 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:55:34 smithi050 bash[23126]: debug 2024-03-30T13:55:34.172+0000 7fcb1dab7200 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-03-30T13:55:34.515 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:55:34 smithi050 bash[23126]: debug 2024-03-30T13:55:34.280+0000 7fcb1dab7200 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-03-30T13:55:34.769 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:55:34 smithi050 bash[23126]: debug 2024-03-30T13:55:34.652+0000 7fcb1dab7200 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-03-30T13:55:34.770 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:34 smithi050 bash[22081]: cluster 2024-03-30T13:55:33.487838+0000 mgr.a (mgr.14152) 119 : cluster 0 pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:34.770 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:34 smithi050 bash[22081]: audit 2024-03-30T13:55:33.519276+0000 mon.a (mon.0) 354 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:34.770 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:34 smithi050 bash[22081]: audit 2024-03-30T13:55:33.526164+0000 mon.a (mon.0) 355 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:34.770 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:34 smithi050 bash[22081]: audit 2024-03-30T13:55:33.546535+0000 mon.a (mon.0) 356 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:55:34.770 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:34 smithi050 bash[22081]: audit 2024-03-30T13:55:33.552283+0000 mon.a (mon.0) 357 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:34.771 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:34 smithi050 bash[22081]: audit 2024-03-30T13:55:33.556623+0000 mon.a (mon.0) 358 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:55:34.771 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:34 smithi050 bash[22081]: audit 2024-03-30T13:55:33.566661+0000 mon.a (mon.0) 359 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:34.771 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:34 smithi050 bash[22081]: audit 2024-03-30T13:55:33.571641+0000 mon.a (mon.0) 360 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:34.771 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:34 smithi050 bash[22081]: cephadm 2024-03-30T13:55:33.572613+0000 mgr.a (mgr.14152) 120 : cephadm 1 Metadata not up to date on all hosts. Skipping non agent specs 2024-03-30T13:55:34.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:34 smithi026 bash[21443]: cluster 2024-03-30T13:55:33.487838+0000 mgr.a (mgr.14152) 119 : cluster 0 pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:34.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:34 smithi026 bash[21443]: audit 2024-03-30T13:55:33.519276+0000 mon.a (mon.0) 354 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:34.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:34 smithi026 bash[21443]: audit 2024-03-30T13:55:33.526164+0000 mon.a (mon.0) 355 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:34.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:34 smithi026 bash[21443]: audit 2024-03-30T13:55:33.546535+0000 mon.a (mon.0) 356 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:55:34.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:34 smithi026 bash[21443]: audit 2024-03-30T13:55:33.552283+0000 mon.a (mon.0) 357 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:34.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:34 smithi026 bash[21443]: audit 2024-03-30T13:55:33.556623+0000 mon.a (mon.0) 358 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:55:34.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:34 smithi026 bash[21443]: audit 2024-03-30T13:55:33.566661+0000 mon.a (mon.0) 359 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:34.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:34 smithi026 bash[21443]: audit 2024-03-30T13:55:33.571641+0000 mon.a (mon.0) 360 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:34.860 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:34 smithi026 bash[21443]: cephadm 2024-03-30T13:55:33.572613+0000 mgr.a (mgr.14152) 120 : cephadm 1 Metadata not up to date on all hosts. Skipping non agent specs 2024-03-30T13:55:34.947 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T13:55:34.985 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:34 smithi136 bash[22230]: cluster 2024-03-30T13:55:33.487838+0000 mgr.a (mgr.14152) 119 : cluster 0 pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:34.985 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:34 smithi136 bash[22230]: audit 2024-03-30T13:55:33.519276+0000 mon.a (mon.0) 354 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:34.985 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:34 smithi136 bash[22230]: audit 2024-03-30T13:55:33.526164+0000 mon.a (mon.0) 355 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:34.985 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:34 smithi136 bash[22230]: audit 2024-03-30T13:55:33.546535+0000 mon.a (mon.0) 356 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:55:34.985 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:34 smithi136 bash[22230]: audit 2024-03-30T13:55:33.552283+0000 mon.a (mon.0) 357 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:34.985 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:34 smithi136 bash[22230]: audit 2024-03-30T13:55:33.556623+0000 mon.a (mon.0) 358 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:55:34.985 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:34 smithi136 bash[22230]: audit 2024-03-30T13:55:33.566661+0000 mon.a (mon.0) 359 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:34.985 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:34 smithi136 bash[22230]: audit 2024-03-30T13:55:33.571641+0000 mon.a (mon.0) 360 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:34.985 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:34 smithi136 bash[22230]: cephadm 2024-03-30T13:55:33.572613+0000 mgr.a (mgr.14152) 120 : cephadm 1 Metadata not up to date on all hosts. Skipping non agent specs 2024-03-30T13:55:35.158 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:55:34 smithi050 bash[23126]: debug 2024-03-30T13:55:34.768+0000 7fcb1dab7200 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-03-30T13:55:35.159 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:55:34 smithi050 bash[23126]: debug 2024-03-30T13:55:34.876+0000 7fcb1dab7200 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-03-30T13:55:35.518 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:55:35 smithi050 bash[23126]: debug 2024-03-30T13:55:35.244+0000 7fcb1dab7200 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-03-30T13:55:35.518 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:55:35 smithi050 bash[23126]: debug 2024-03-30T13:55:35.492+0000 7fcb1dab7200 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-03-30T13:55:35.873 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:55:35 smithi050 bash[23126]: debug 2024-03-30T13:55:35.756+0000 7fcb1dab7200 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-03-30T13:55:36.155 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:55:35 smithi050 bash[23126]: debug 2024-03-30T13:55:35.872+0000 7fcb1dab7200 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-03-30T13:55:36.155 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:36 smithi050 bash[22081]: audit 2024-03-30T13:55:35.006785+0000 mon.a (mon.0) 361 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:36.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:36 smithi026 bash[21443]: audit 2024-03-30T13:55:35.006785+0000 mon.a (mon.0) 361 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:36.408 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:55:36 smithi050 bash[23126]: debug 2024-03-30T13:55:36.156+0000 7fcb1dab7200 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-03-30T13:55:36.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:36 smithi136 bash[22230]: audit 2024-03-30T13:55:35.006785+0000 mon.a (mon.0) 361 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:36.908 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:55:36 smithi050 bash[23126]: debug 2024-03-30T13:55:36.576+0000 7fcb1dab7200 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-03-30T13:55:36.909 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:55:36 smithi050 bash[23126]: debug 2024-03-30T13:55:36.824+0000 7fcb1dab7200 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-03-30T13:55:37.197 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:55:36 smithi050 bash[23126]: debug 2024-03-30T13:55:36.944+0000 7fcb1dab7200 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-03-30T13:55:37.198 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:37 smithi050 bash[22081]: cluster 2024-03-30T13:55:35.488343+0000 mgr.a (mgr.14152) 121 : cluster 0 pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:37.198 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:37 smithi050 bash[22081]: audit 2024-03-30T13:55:36.045239+0000 mon.a (mon.0) 362 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:37.198 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:37 smithi050 bash[22081]: audit 2024-03-30T13:55:36.622250+0000 mon.a (mon.0) 363 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:37.198 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:37 smithi050 bash[22081]: audit 2024-03-30T13:55:36.625932+0000 mon.a (mon.0) 364 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:37.198 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:37 smithi050 bash[22081]: audit 2024-03-30T13:55:36.631089+0000 mon.a (mon.0) 365 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:37.311 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:37 smithi026 bash[21443]: cluster 2024-03-30T13:55:35.488343+0000 mgr.a (mgr.14152) 121 : cluster 0 pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:37.311 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:37 smithi026 bash[21443]: audit 2024-03-30T13:55:36.045239+0000 mon.a (mon.0) 362 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:37.311 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:37 smithi026 bash[21443]: audit 2024-03-30T13:55:36.622250+0000 mon.a (mon.0) 363 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:37.311 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:37 smithi026 bash[21443]: audit 2024-03-30T13:55:36.625932+0000 mon.a (mon.0) 364 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:37.312 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:37 smithi026 bash[21443]: audit 2024-03-30T13:55:36.631089+0000 mon.a (mon.0) 365 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:37.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:37 smithi136 bash[22230]: cluster 2024-03-30T13:55:35.488343+0000 mgr.a (mgr.14152) 121 : cluster 0 pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:37.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:37 smithi136 bash[22230]: audit 2024-03-30T13:55:36.045239+0000 mon.a (mon.0) 362 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:37.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:37 smithi136 bash[22230]: audit 2024-03-30T13:55:36.622250+0000 mon.a (mon.0) 363 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:37.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:37 smithi136 bash[22230]: audit 2024-03-30T13:55:36.625932+0000 mon.a (mon.0) 364 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:37.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:37 smithi136 bash[22230]: audit 2024-03-30T13:55:36.631089+0000 mon.a (mon.0) 365 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:38.042 INFO:teuthology.orchestra.run.smithi026.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-03-30T13:55:38.042 INFO:teuthology.orchestra.run.smithi026.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-03-30T13:55:38.042 INFO:teuthology.orchestra.run.smithi026.stderr: stderr: 10+0 records in 2024-03-30T13:55:38.042 INFO:teuthology.orchestra.run.smithi026.stderr:10+0 records out 2024-03-30T13:55:38.043 INFO:teuthology.orchestra.run.smithi026.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0136671 s, 767 MB/s 2024-03-30T13:55:38.043 INFO:teuthology.orchestra.run.smithi026.stderr:--> Zapping successful for: 2024-03-30T13:55:38.658 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:55:37 smithi050 bash[23126]: debug 2024-03-30T13:55:37.196+0000 7fcb1dab7200 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-03-30T13:55:38.659 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:55:38 smithi050 bash[23126]: debug 2024-03-30T13:55:38.228+0000 7fcb1dab7200 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-03-30T13:55:38.659 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:55:38 smithi050 bash[23126]: debug 2024-03-30T13:55:38.344+0000 7fcb1dab7200 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-03-30T13:55:38.689 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph orch daemon add osd smithi026:vg_nvme/lv_4 2024-03-30T13:55:39.045 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:55:38 smithi050 bash[23126]: debug 2024-03-30T13:55:38.664+0000 7fcb1dab7200 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-03-30T13:55:39.046 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:55:38 smithi050 bash[23126]: debug 2024-03-30T13:55:38.780+0000 7fcb1dab7200 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-03-30T13:55:39.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:39 smithi026 bash[21443]: cluster 2024-03-30T13:55:37.488714+0000 mgr.a (mgr.14152) 122 : cluster 0 pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:39.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:39 smithi026 bash[21443]: audit 2024-03-30T13:55:38.810959+0000 mon.a (mon.0) 366 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:39.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:39 smithi026 bash[21443]: audit 2024-03-30T13:55:38.818686+0000 mon.a (mon.0) 367 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:39.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:39 smithi026 bash[21443]: audit 2024-03-30T13:55:38.828444+0000 mon.a (mon.0) 368 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:39.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:39 smithi026 bash[21443]: audit 2024-03-30T13:55:38.854829+0000 mon.a (mon.0) 369 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:55:39.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:39 smithi026 bash[21443]: audit 2024-03-30T13:55:38.859681+0000 mon.a (mon.0) 370 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:39.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:39 smithi026 bash[21443]: audit 2024-03-30T13:55:38.861365+0000 mon.a (mon.0) 371 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:55:39.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:39 smithi026 bash[21443]: audit 2024-03-30T13:55:38.870611+0000 mon.a (mon.0) 372 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:39.375 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:55:39 smithi050 bash[23126]: debug 2024-03-30T13:55:39.252+0000 7fcb1dab7200 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-03-30T13:55:39.376 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:55:39 smithi050 bash[23126]: debug 2024-03-30T13:55:39.376+0000 7fcb1dab7200 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-03-30T13:55:39.376 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:39 smithi050 bash[22081]: cluster 2024-03-30T13:55:37.488714+0000 mgr.a (mgr.14152) 122 : cluster 0 pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:39.376 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:39 smithi050 bash[22081]: audit 2024-03-30T13:55:38.810959+0000 mon.a (mon.0) 366 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:39.376 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:39 smithi050 bash[22081]: audit 2024-03-30T13:55:38.818686+0000 mon.a (mon.0) 367 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:39.376 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:39 smithi050 bash[22081]: audit 2024-03-30T13:55:38.828444+0000 mon.a (mon.0) 368 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:39.376 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:39 smithi050 bash[22081]: audit 2024-03-30T13:55:38.854829+0000 mon.a (mon.0) 369 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:55:39.376 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:39 smithi050 bash[22081]: audit 2024-03-30T13:55:38.859681+0000 mon.a (mon.0) 370 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:39.376 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:39 smithi050 bash[22081]: audit 2024-03-30T13:55:38.861365+0000 mon.a (mon.0) 371 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:55:39.376 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:39 smithi050 bash[22081]: audit 2024-03-30T13:55:38.870611+0000 mon.a (mon.0) 372 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:39.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:39 smithi136 bash[22230]: cluster 2024-03-30T13:55:37.488714+0000 mgr.a (mgr.14152) 122 : cluster 0 pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:39.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:39 smithi136 bash[22230]: audit 2024-03-30T13:55:38.810959+0000 mon.a (mon.0) 366 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:39.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:39 smithi136 bash[22230]: audit 2024-03-30T13:55:38.818686+0000 mon.a (mon.0) 367 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:39.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:39 smithi136 bash[22230]: audit 2024-03-30T13:55:38.828444+0000 mon.a (mon.0) 368 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:39.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:39 smithi136 bash[22230]: audit 2024-03-30T13:55:38.854829+0000 mon.a (mon.0) 369 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:55:39.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:39 smithi136 bash[22230]: audit 2024-03-30T13:55:38.859681+0000 mon.a (mon.0) 370 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:39.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:39 smithi136 bash[22230]: audit 2024-03-30T13:55:38.861365+0000 mon.a (mon.0) 371 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:55:39.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:39 smithi136 bash[22230]: audit 2024-03-30T13:55:38.870611+0000 mon.a (mon.0) 372 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:40.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:40 smithi026 bash[21443]: cluster 2024-03-30T13:55:39.401963+0000 mon.a (mon.0) 373 : cluster 0 Standby manager daemon b started 2024-03-30T13:55:40.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:40 smithi026 bash[21443]: audit 2024-03-30T13:55:39.403347+0000 mon.b (mon.2) 2 : audit 0 from='mgr.? 172.21.15.50:0/3905630415' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-03-30T13:55:40.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:40 smithi026 bash[21443]: audit 2024-03-30T13:55:39.404377+0000 mon.b (mon.2) 3 : audit 0 from='mgr.? 172.21.15.50:0/3905630415' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-03-30T13:55:40.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:40 smithi026 bash[21443]: audit 2024-03-30T13:55:39.405579+0000 mon.b (mon.2) 4 : audit 0 from='mgr.? 172.21.15.50:0/3905630415' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-03-30T13:55:40.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:40 smithi026 bash[21443]: audit 2024-03-30T13:55:39.406221+0000 mon.b (mon.2) 5 : audit 0 from='mgr.? 172.21.15.50:0/3905630415' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-03-30T13:55:40.409 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:40 smithi050 bash[22081]: cluster 2024-03-30T13:55:39.401963+0000 mon.a (mon.0) 373 : cluster 0 Standby manager daemon b started 2024-03-30T13:55:40.409 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:40 smithi050 bash[22081]: audit 2024-03-30T13:55:39.403347+0000 mon.b (mon.2) 2 : audit 0 from='mgr.? 172.21.15.50:0/3905630415' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-03-30T13:55:40.409 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:40 smithi050 bash[22081]: audit 2024-03-30T13:55:39.404377+0000 mon.b (mon.2) 3 : audit 0 from='mgr.? 172.21.15.50:0/3905630415' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-03-30T13:55:40.409 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:40 smithi050 bash[22081]: audit 2024-03-30T13:55:39.405579+0000 mon.b (mon.2) 4 : audit 0 from='mgr.? 172.21.15.50:0/3905630415' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-03-30T13:55:40.409 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:40 smithi050 bash[22081]: audit 2024-03-30T13:55:39.406221+0000 mon.b (mon.2) 5 : audit 0 from='mgr.? 172.21.15.50:0/3905630415' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-03-30T13:55:40.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:40 smithi136 bash[22230]: cluster 2024-03-30T13:55:39.401963+0000 mon.a (mon.0) 373 : cluster 0 Standby manager daemon b started 2024-03-30T13:55:40.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:40 smithi136 bash[22230]: audit 2024-03-30T13:55:39.403347+0000 mon.b (mon.2) 2 : audit 0 from='mgr.? 172.21.15.50:0/3905630415' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-03-30T13:55:40.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:40 smithi136 bash[22230]: audit 2024-03-30T13:55:39.404377+0000 mon.b (mon.2) 3 : audit 0 from='mgr.? 172.21.15.50:0/3905630415' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-03-30T13:55:40.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:40 smithi136 bash[22230]: audit 2024-03-30T13:55:39.405579+0000 mon.b (mon.2) 4 : audit 0 from='mgr.? 172.21.15.50:0/3905630415' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-03-30T13:55:40.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:40 smithi136 bash[22230]: audit 2024-03-30T13:55:39.406221+0000 mon.b (mon.2) 5 : audit 0 from='mgr.? 172.21.15.50:0/3905630415' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-03-30T13:55:41.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:41 smithi026 bash[21443]: cluster 2024-03-30T13:55:39.489095+0000 mgr.a (mgr.14152) 123 : cluster 0 pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:41.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:41 smithi026 bash[21443]: cluster 2024-03-30T13:55:40.070537+0000 mon.a (mon.0) 374 : cluster 0 mgrmap e14: a(active, since 2m), standbys: b 2024-03-30T13:55:41.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:41 smithi026 bash[21443]: audit 2024-03-30T13:55:40.070830+0000 mon.a (mon.0) 375 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-03-30T13:55:41.409 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:41 smithi050 bash[22081]: cluster 2024-03-30T13:55:39.489095+0000 mgr.a (mgr.14152) 123 : cluster 0 pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:41.409 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:41 smithi050 bash[22081]: cluster 2024-03-30T13:55:40.070537+0000 mon.a (mon.0) 374 : cluster 0 mgrmap e14: a(active, since 2m), standbys: b 2024-03-30T13:55:41.409 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:41 smithi050 bash[22081]: audit 2024-03-30T13:55:40.070830+0000 mon.a (mon.0) 375 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-03-30T13:55:41.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:41 smithi136 bash[22230]: cluster 2024-03-30T13:55:39.489095+0000 mgr.a (mgr.14152) 123 : cluster 0 pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:41.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:41 smithi136 bash[22230]: cluster 2024-03-30T13:55:40.070537+0000 mon.a (mon.0) 374 : cluster 0 mgrmap e14: a(active, since 2m), standbys: b 2024-03-30T13:55:41.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:41 smithi136 bash[22230]: audit 2024-03-30T13:55:40.070830+0000 mon.a (mon.0) 375 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-03-30T13:55:43.234 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:43 smithi136 bash[22230]: cluster 2024-03-30T13:55:41.489507+0000 mgr.a (mgr.14152) 124 : cluster 0 pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:43.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:43 smithi026 bash[21443]: cluster 2024-03-30T13:55:41.489507+0000 mgr.a (mgr.14152) 124 : cluster 0 pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:43.403 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T13:55:43.408 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:43 smithi050 bash[22081]: cluster 2024-03-30T13:55:41.489507+0000 mgr.a (mgr.14152) 124 : cluster 0 pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:45.234 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:45 smithi136 bash[22230]: cluster 2024-03-30T13:55:43.489952+0000 mgr.a (mgr.14152) 125 : cluster 0 pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:45.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:45 smithi026 bash[21443]: cluster 2024-03-30T13:55:43.489952+0000 mgr.a (mgr.14152) 125 : cluster 0 pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:45.408 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:45 smithi050 bash[22081]: cluster 2024-03-30T13:55:43.489952+0000 mgr.a (mgr.14152) 125 : cluster 0 pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:47.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:47 smithi026 bash[21443]: cluster 2024-03-30T13:55:45.490363+0000 mgr.a (mgr.14152) 126 : cluster 0 pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:47.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:47 smithi026 bash[21443]: audit 2024-03-30T13:55:46.238326+0000 mon.a (mon.0) 376 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-30T13:55:47.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:47 smithi026 bash[21443]: audit 2024-03-30T13:55:46.241616+0000 mon.a (mon.0) 377 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-30T13:55:47.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:47 smithi026 bash[21443]: audit 2024-03-30T13:55:46.242357+0000 mon.a (mon.0) 378 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:47.408 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:47 smithi050 bash[22081]: cluster 2024-03-30T13:55:45.490363+0000 mgr.a (mgr.14152) 126 : cluster 0 pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:47.409 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:47 smithi050 bash[22081]: audit 2024-03-30T13:55:46.238326+0000 mon.a (mon.0) 376 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-30T13:55:47.409 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:47 smithi050 bash[22081]: audit 2024-03-30T13:55:46.241616+0000 mon.a (mon.0) 377 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-30T13:55:47.409 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:47 smithi050 bash[22081]: audit 2024-03-30T13:55:46.242357+0000 mon.a (mon.0) 378 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:47.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:47 smithi136 bash[22230]: cluster 2024-03-30T13:55:45.490363+0000 mgr.a (mgr.14152) 126 : cluster 0 pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:47.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:47 smithi136 bash[22230]: audit 2024-03-30T13:55:46.238326+0000 mon.a (mon.0) 376 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-30T13:55:47.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:47 smithi136 bash[22230]: audit 2024-03-30T13:55:46.241616+0000 mon.a (mon.0) 377 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-30T13:55:47.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:47 smithi136 bash[22230]: audit 2024-03-30T13:55:46.242357+0000 mon.a (mon.0) 378 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:55:48.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:48 smithi026 bash[21443]: audit 2024-03-30T13:55:46.231119+0000 mgr.a (mgr.14152) 127 : audit 0 from='client.14211 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi026:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:55:48.408 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:48 smithi050 bash[22081]: audit 2024-03-30T13:55:46.231119+0000 mgr.a (mgr.14152) 127 : audit 0 from='client.14211 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi026:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:55:48.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:48 smithi136 bash[22230]: audit 2024-03-30T13:55:46.231119+0000 mgr.a (mgr.14152) 127 : audit 0 from='client.14211 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi026:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:55:49.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:49 smithi026 bash[21443]: cluster 2024-03-30T13:55:47.490834+0000 mgr.a (mgr.14152) 128 : cluster 0 pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:49.408 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:49 smithi050 bash[22081]: cluster 2024-03-30T13:55:47.490834+0000 mgr.a (mgr.14152) 128 : cluster 0 pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:49.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:49 smithi136 bash[22230]: cluster 2024-03-30T13:55:47.490834+0000 mgr.a (mgr.14152) 128 : cluster 0 pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:51.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:51 smithi026 bash[21443]: cluster 2024-03-30T13:55:49.491263+0000 mgr.a (mgr.14152) 129 : cluster 0 pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:51.408 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:51 smithi050 bash[22081]: cluster 2024-03-30T13:55:49.491263+0000 mgr.a (mgr.14152) 129 : cluster 0 pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:51.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:51 smithi136 bash[22230]: cluster 2024-03-30T13:55:49.491263+0000 mgr.a (mgr.14152) 129 : cluster 0 pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:53.049 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:52 smithi050 bash[22081]: cluster 2024-03-30T13:55:51.491708+0000 mgr.a (mgr.14152) 130 : cluster 0 pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:53.050 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:52 smithi050 bash[22081]: audit 2024-03-30T13:55:51.927269+0000 mon.a (mon.0) 379 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:53.050 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:52 smithi050 bash[22081]: audit 2024-03-30T13:55:51.935513+0000 mon.a (mon.0) 380 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:53.050 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:52 smithi050 bash[22081]: audit 2024-03-30T13:55:51.945495+0000 mon.a (mon.0) 381 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:53.234 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:52 smithi136 bash[22230]: cluster 2024-03-30T13:55:51.491708+0000 mgr.a (mgr.14152) 130 : cluster 0 pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:53.234 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:52 smithi136 bash[22230]: audit 2024-03-30T13:55:51.927269+0000 mon.a (mon.0) 379 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:53.235 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:52 smithi136 bash[22230]: audit 2024-03-30T13:55:51.935513+0000 mon.a (mon.0) 380 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:53.235 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:52 smithi136 bash[22230]: audit 2024-03-30T13:55:51.945495+0000 mon.a (mon.0) 381 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:53.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:52 smithi026 bash[21443]: cluster 2024-03-30T13:55:51.491708+0000 mgr.a (mgr.14152) 130 : cluster 0 pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:53.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:52 smithi026 bash[21443]: audit 2024-03-30T13:55:51.927269+0000 mon.a (mon.0) 379 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:53.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:52 smithi026 bash[21443]: audit 2024-03-30T13:55:51.935513+0000 mon.a (mon.0) 380 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:53.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:52 smithi026 bash[21443]: audit 2024-03-30T13:55:51.945495+0000 mon.a (mon.0) 381 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:55.158 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:54 smithi050 bash[22081]: cluster 2024-03-30T13:55:53.492011+0000 mgr.a (mgr.14152) 131 : cluster 0 pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:55.234 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:54 smithi136 bash[22230]: cluster 2024-03-30T13:55:53.492011+0000 mgr.a (mgr.14152) 131 : cluster 0 pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:55.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:54 smithi026 bash[21443]: cluster 2024-03-30T13:55:53.492011+0000 mgr.a (mgr.14152) 131 : cluster 0 pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:56.234 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:55 smithi136 bash[22230]: audit 2024-03-30T13:55:55.157224+0000 mon.a (mon.0) 382 : audit 1 from='client.? 172.21.15.26:0/3555244722' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "68b92ed1-233e-4b44-94fd-fb7b8cf5ba13"}]: dispatch 2024-03-30T13:55:56.234 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:55 smithi136 bash[22230]: audit 2024-03-30T13:55:55.159967+0000 mon.a (mon.0) 383 : audit 1 from='client.? 172.21.15.26:0/3555244722' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "68b92ed1-233e-4b44-94fd-fb7b8cf5ba13"}]': finished 2024-03-30T13:55:56.234 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:55 smithi136 bash[22230]: cluster 2024-03-30T13:55:55.162454+0000 mon.a (mon.0) 384 : cluster 0 osdmap e5: 1 total, 0 up, 1 in 2024-03-30T13:55:56.235 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:55 smithi136 bash[22230]: audit 2024-03-30T13:55:55.162631+0000 mon.a (mon.0) 385 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-30T13:55:56.235 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:55 smithi136 bash[22230]: audit 2024-03-30T13:55:55.883731+0000 mon.a (mon.0) 386 : audit 0 from='client.? 172.21.15.26:0/872568481' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-30T13:55:56.235 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:55 smithi050 bash[22081]: audit 2024-03-30T13:55:55.157224+0000 mon.a (mon.0) 382 : audit 1 from='client.? 172.21.15.26:0/3555244722' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "68b92ed1-233e-4b44-94fd-fb7b8cf5ba13"}]: dispatch 2024-03-30T13:55:56.235 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:55 smithi050 bash[22081]: audit 2024-03-30T13:55:55.159967+0000 mon.a (mon.0) 383 : audit 1 from='client.? 172.21.15.26:0/3555244722' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "68b92ed1-233e-4b44-94fd-fb7b8cf5ba13"}]': finished 2024-03-30T13:55:56.235 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:55 smithi050 bash[22081]: cluster 2024-03-30T13:55:55.162454+0000 mon.a (mon.0) 384 : cluster 0 osdmap e5: 1 total, 0 up, 1 in 2024-03-30T13:55:56.235 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:55 smithi050 bash[22081]: audit 2024-03-30T13:55:55.162631+0000 mon.a (mon.0) 385 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-30T13:55:56.235 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:55 smithi050 bash[22081]: audit 2024-03-30T13:55:55.883731+0000 mon.a (mon.0) 386 : audit 0 from='client.? 172.21.15.26:0/872568481' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-30T13:55:56.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:55 smithi026 bash[21443]: audit 2024-03-30T13:55:55.157224+0000 mon.a (mon.0) 382 : audit 1 from='client.? 172.21.15.26:0/3555244722' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "68b92ed1-233e-4b44-94fd-fb7b8cf5ba13"}]: dispatch 2024-03-30T13:55:56.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:55 smithi026 bash[21443]: audit 2024-03-30T13:55:55.159967+0000 mon.a (mon.0) 383 : audit 1 from='client.? 172.21.15.26:0/3555244722' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "68b92ed1-233e-4b44-94fd-fb7b8cf5ba13"}]': finished 2024-03-30T13:55:56.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:55 smithi026 bash[21443]: cluster 2024-03-30T13:55:55.162454+0000 mon.a (mon.0) 384 : cluster 0 osdmap e5: 1 total, 0 up, 1 in 2024-03-30T13:55:56.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:55 smithi026 bash[21443]: audit 2024-03-30T13:55:55.162631+0000 mon.a (mon.0) 385 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-30T13:55:56.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:55 smithi026 bash[21443]: audit 2024-03-30T13:55:55.883731+0000 mon.a (mon.0) 386 : audit 0 from='client.? 172.21.15.26:0/872568481' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-30T13:55:57.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:57 smithi136 bash[22230]: cluster 2024-03-30T13:55:55.492402+0000 mgr.a (mgr.14152) 132 : cluster 0 pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:57.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:57 smithi136 bash[22230]: audit 2024-03-30T13:55:56.410609+0000 mon.a (mon.0) 387 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:57.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:57 smithi136 bash[22230]: audit 2024-03-30T13:55:56.418770+0000 mon.a (mon.0) 388 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:57.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:57 smithi136 bash[22230]: audit 2024-03-30T13:55:56.428362+0000 mon.a (mon.0) 389 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:57.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:57 smithi136 bash[22230]: audit 2024-03-30T13:55:56.778665+0000 mon.a (mon.0) 390 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:57.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:57 smithi136 bash[22230]: audit 2024-03-30T13:55:56.783352+0000 mon.a (mon.0) 391 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:57.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:57 smithi136 bash[22230]: audit 2024-03-30T13:55:56.788952+0000 mon.a (mon.0) 392 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:57.609 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:57 smithi026 bash[21443]: cluster 2024-03-30T13:55:55.492402+0000 mgr.a (mgr.14152) 132 : cluster 0 pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:57.609 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:57 smithi026 bash[21443]: audit 2024-03-30T13:55:56.410609+0000 mon.a (mon.0) 387 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:57.609 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:57 smithi026 bash[21443]: audit 2024-03-30T13:55:56.418770+0000 mon.a (mon.0) 388 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:57.609 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:57 smithi026 bash[21443]: audit 2024-03-30T13:55:56.428362+0000 mon.a (mon.0) 389 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:57.610 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:57 smithi026 bash[21443]: audit 2024-03-30T13:55:56.778665+0000 mon.a (mon.0) 390 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:57.610 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:57 smithi026 bash[21443]: audit 2024-03-30T13:55:56.783352+0000 mon.a (mon.0) 391 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:57.610 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:57 smithi026 bash[21443]: audit 2024-03-30T13:55:56.788952+0000 mon.a (mon.0) 392 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:57.658 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:57 smithi050 bash[22081]: cluster 2024-03-30T13:55:55.492402+0000 mgr.a (mgr.14152) 132 : cluster 0 pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:57.658 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:57 smithi050 bash[22081]: audit 2024-03-30T13:55:56.410609+0000 mon.a (mon.0) 387 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:57.659 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:57 smithi050 bash[22081]: audit 2024-03-30T13:55:56.418770+0000 mon.a (mon.0) 388 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:57.659 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:57 smithi050 bash[22081]: audit 2024-03-30T13:55:56.428362+0000 mon.a (mon.0) 389 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:57.659 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:57 smithi050 bash[22081]: audit 2024-03-30T13:55:56.778665+0000 mon.a (mon.0) 390 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:57.659 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:57 smithi050 bash[22081]: audit 2024-03-30T13:55:56.783352+0000 mon.a (mon.0) 391 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:57.659 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:57 smithi050 bash[22081]: audit 2024-03-30T13:55:56.788952+0000 mon.a (mon.0) 392 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:55:58.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:55:58 smithi136 bash[22230]: cluster 2024-03-30T13:55:57.492775+0000 mgr.a (mgr.14152) 133 : cluster 0 pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:58.559 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:55:58 smithi026 bash[21443]: cluster 2024-03-30T13:55:57.492775+0000 mgr.a (mgr.14152) 133 : cluster 0 pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:55:58.658 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:55:58 smithi050 bash[22081]: cluster 2024-03-30T13:55:57.492775+0000 mgr.a (mgr.14152) 133 : cluster 0 pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:00.859 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:00 smithi026 bash[21443]: cluster 2024-03-30T13:55:59.493175+0000 mgr.a (mgr.14152) 134 : cluster 0 pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:00.908 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:00 smithi050 bash[22081]: cluster 2024-03-30T13:55:59.493175+0000 mgr.a (mgr.14152) 134 : cluster 0 pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:00.984 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:00 smithi136 bash[22230]: cluster 2024-03-30T13:55:59.493175+0000 mgr.a (mgr.14152) 134 : cluster 0 pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:02.859 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:02 smithi026 bash[21443]: cluster 2024-03-30T13:56:01.493542+0000 mgr.a (mgr.14152) 135 : cluster 0 pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:02.908 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:02 smithi050 bash[22081]: cluster 2024-03-30T13:56:01.493542+0000 mgr.a (mgr.14152) 135 : cluster 0 pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:02.984 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:02 smithi136 bash[22230]: cluster 2024-03-30T13:56:01.493542+0000 mgr.a (mgr.14152) 135 : cluster 0 pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:04.734 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:04 smithi136 bash[22230]: cluster 2024-03-30T13:56:03.493923+0000 mgr.a (mgr.14152) 136 : cluster 0 pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:04.859 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:04 smithi026 bash[21443]: cluster 2024-03-30T13:56:03.493923+0000 mgr.a (mgr.14152) 136 : cluster 0 pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:04.908 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:04 smithi050 bash[22081]: cluster 2024-03-30T13:56:03.493923+0000 mgr.a (mgr.14152) 136 : cluster 0 pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:06.734 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:06 smithi136 bash[22230]: cluster 2024-03-30T13:56:05.494334+0000 mgr.a (mgr.14152) 137 : cluster 0 pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:06.859 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:06 smithi026 bash[21443]: cluster 2024-03-30T13:56:05.494334+0000 mgr.a (mgr.14152) 137 : cluster 0 pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:06.908 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:06 smithi050 bash[22081]: cluster 2024-03-30T13:56:05.494334+0000 mgr.a (mgr.14152) 137 : cluster 0 pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:08.859 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:08 smithi026 bash[21443]: cluster 2024-03-30T13:56:07.494782+0000 mgr.a (mgr.14152) 138 : cluster 0 pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:08.859 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:08 smithi026 bash[21443]: audit 2024-03-30T13:56:07.687450+0000 mon.a (mon.0) 393 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-03-30T13:56:08.859 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:08 smithi026 bash[21443]: audit 2024-03-30T13:56:07.689414+0000 mon.a (mon.0) 394 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:56:08.859 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:08 smithi026 bash[21443]: cephadm 2024-03-30T13:56:07.691071+0000 mgr.a (mgr.14152) 139 : cephadm 1 Deploying daemon osd.0 on smithi026 2024-03-30T13:56:08.908 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:08 smithi050 bash[22081]: cluster 2024-03-30T13:56:07.494782+0000 mgr.a (mgr.14152) 138 : cluster 0 pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:08.908 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:08 smithi050 bash[22081]: audit 2024-03-30T13:56:07.687450+0000 mon.a (mon.0) 393 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-03-30T13:56:08.908 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:08 smithi050 bash[22081]: audit 2024-03-30T13:56:07.689414+0000 mon.a (mon.0) 394 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:56:08.908 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:08 smithi050 bash[22081]: cephadm 2024-03-30T13:56:07.691071+0000 mgr.a (mgr.14152) 139 : cephadm 1 Deploying daemon osd.0 on smithi026 2024-03-30T13:56:08.984 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:08 smithi136 bash[22230]: cluster 2024-03-30T13:56:07.494782+0000 mgr.a (mgr.14152) 138 : cluster 0 pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:08.984 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:08 smithi136 bash[22230]: audit 2024-03-30T13:56:07.687450+0000 mon.a (mon.0) 393 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-03-30T13:56:08.984 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:08 smithi136 bash[22230]: audit 2024-03-30T13:56:07.689414+0000 mon.a (mon.0) 394 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:56:08.984 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:08 smithi136 bash[22230]: cephadm 2024-03-30T13:56:07.691071+0000 mgr.a (mgr.14152) 139 : cephadm 1 Deploying daemon osd.0 on smithi026 2024-03-30T13:56:10.859 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:10 smithi026 bash[21443]: cluster 2024-03-30T13:56:09.495211+0000 mgr.a (mgr.14152) 140 : cluster 0 pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:10.911 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:10 smithi050 bash[22081]: cluster 2024-03-30T13:56:09.495211+0000 mgr.a (mgr.14152) 140 : cluster 0 pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:10.984 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:10 smithi136 bash[22230]: cluster 2024-03-30T13:56:09.495211+0000 mgr.a (mgr.14152) 140 : cluster 0 pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:12.505 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:12 smithi026 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:56:12.505 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:56:12 smithi026 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:56:12.779 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:56:12 smithi026 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:56:12.780 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:12 smithi026 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:56:13.408 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:13 smithi050 bash[22081]: cluster 2024-03-30T13:56:11.495648+0000 mgr.a (mgr.14152) 141 : cluster 0 pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:13.408 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:13 smithi050 bash[22081]: audit 2024-03-30T13:56:12.161529+0000 mon.a (mon.0) 395 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:13.408 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:13 smithi050 bash[22081]: audit 2024-03-30T13:56:12.167813+0000 mon.a (mon.0) 396 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:13.408 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:13 smithi050 bash[22081]: audit 2024-03-30T13:56:12.174482+0000 mon.a (mon.0) 397 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:13.408 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:13 smithi050 bash[22081]: audit 2024-03-30T13:56:12.788195+0000 mon.a (mon.0) 398 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:13.409 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:13 smithi050 bash[22081]: audit 2024-03-30T13:56:12.792814+0000 mon.a (mon.0) 399 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:13.409 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:13 smithi050 bash[22081]: audit 2024-03-30T13:56:12.821567+0000 mon.a (mon.0) 400 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:56:13.409 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:13 smithi050 bash[22081]: audit 2024-03-30T13:56:12.824437+0000 mon.a (mon.0) 401 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:56:13.409 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:13 smithi050 bash[22081]: audit 2024-03-30T13:56:12.825386+0000 mon.a (mon.0) 402 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:56:13.409 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:13 smithi050 bash[22081]: audit 2024-03-30T13:56:12.830822+0000 mon.a (mon.0) 403 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:13.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:13 smithi136 bash[22230]: cluster 2024-03-30T13:56:11.495648+0000 mgr.a (mgr.14152) 141 : cluster 0 pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:13.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:13 smithi136 bash[22230]: audit 2024-03-30T13:56:12.161529+0000 mon.a (mon.0) 395 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:13.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:13 smithi136 bash[22230]: audit 2024-03-30T13:56:12.167813+0000 mon.a (mon.0) 396 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:13.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:13 smithi136 bash[22230]: audit 2024-03-30T13:56:12.174482+0000 mon.a (mon.0) 397 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:13.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:13 smithi136 bash[22230]: audit 2024-03-30T13:56:12.788195+0000 mon.a (mon.0) 398 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:13.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:13 smithi136 bash[22230]: audit 2024-03-30T13:56:12.792814+0000 mon.a (mon.0) 399 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:13.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:13 smithi136 bash[22230]: audit 2024-03-30T13:56:12.821567+0000 mon.a (mon.0) 400 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:56:13.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:13 smithi136 bash[22230]: audit 2024-03-30T13:56:12.824437+0000 mon.a (mon.0) 401 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:56:13.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:13 smithi136 bash[22230]: audit 2024-03-30T13:56:12.825386+0000 mon.a (mon.0) 402 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:56:13.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:13 smithi136 bash[22230]: audit 2024-03-30T13:56:12.830822+0000 mon.a (mon.0) 403 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:13.609 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:13 smithi026 bash[21443]: cluster 2024-03-30T13:56:11.495648+0000 mgr.a (mgr.14152) 141 : cluster 0 pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:13.609 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:13 smithi026 bash[21443]: audit 2024-03-30T13:56:12.161529+0000 mon.a (mon.0) 395 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:13.609 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:13 smithi026 bash[21443]: audit 2024-03-30T13:56:12.167813+0000 mon.a (mon.0) 396 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:13.610 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:13 smithi026 bash[21443]: audit 2024-03-30T13:56:12.174482+0000 mon.a (mon.0) 397 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:13.610 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:13 smithi026 bash[21443]: audit 2024-03-30T13:56:12.788195+0000 mon.a (mon.0) 398 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:13.610 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:13 smithi026 bash[21443]: audit 2024-03-30T13:56:12.792814+0000 mon.a (mon.0) 399 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:13.610 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:13 smithi026 bash[21443]: audit 2024-03-30T13:56:12.821567+0000 mon.a (mon.0) 400 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:56:13.610 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:13 smithi026 bash[21443]: audit 2024-03-30T13:56:12.824437+0000 mon.a (mon.0) 401 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:56:13.610 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:13 smithi026 bash[21443]: audit 2024-03-30T13:56:12.825386+0000 mon.a (mon.0) 402 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:56:13.610 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:13 smithi026 bash[21443]: audit 2024-03-30T13:56:12.830822+0000 mon.a (mon.0) 403 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:15.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:15 smithi136 bash[22230]: cluster 2024-03-30T13:56:13.496079+0000 mgr.a (mgr.14152) 142 : cluster 0 pgmap v82: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:15.496 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:15 smithi050 bash[22081]: cluster 2024-03-30T13:56:13.496079+0000 mgr.a (mgr.14152) 142 : cluster 0 pgmap v82: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:15.609 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:15 smithi026 bash[21443]: cluster 2024-03-30T13:56:13.496079+0000 mgr.a (mgr.14152) 142 : cluster 0 pgmap v82: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:17.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:17 smithi026 bash[21443]: cluster 2024-03-30T13:56:15.496448+0000 mgr.a (mgr.14152) 143 : cluster 0 pgmap v83: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:17.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:17 smithi026 bash[21443]: audit 2024-03-30T13:56:16.640586+0000 mon.a (mon.0) 404 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:17.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:17 smithi026 bash[21443]: audit 2024-03-30T13:56:16.648463+0000 mon.a (mon.0) 405 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:17.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:17 smithi026 bash[21443]: audit 2024-03-30T13:56:16.658251+0000 mon.a (mon.0) 406 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:17.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:17 smithi026 bash[21443]: audit 2024-03-30T13:56:16.980049+0000 mon.a (mon.0) 407 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:17.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:17 smithi026 bash[21443]: audit 2024-03-30T13:56:16.985170+0000 mon.a (mon.0) 408 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:17.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:17 smithi026 bash[21443]: audit 2024-03-30T13:56:16.988565+0000 mon.a (mon.0) 409 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:56:17.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:17 smithi026 bash[21443]: audit 2024-03-30T13:56:16.993926+0000 mon.a (mon.0) 410 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:17.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:17 smithi026 bash[21443]: audit 2024-03-30T13:56:16.994621+0000 mon.a (mon.0) 411 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:56:17.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:17 smithi026 bash[21443]: audit 2024-03-30T13:56:16.996485+0000 mon.a (mon.0) 412 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:56:17.360 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:17 smithi026 bash[21443]: audit 2024-03-30T13:56:17.006040+0000 mon.a (mon.0) 413 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:17.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:17 smithi136 bash[22230]: cluster 2024-03-30T13:56:15.496448+0000 mgr.a (mgr.14152) 143 : cluster 0 pgmap v83: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:17.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:17 smithi136 bash[22230]: audit 2024-03-30T13:56:16.640586+0000 mon.a (mon.0) 404 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:17.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:17 smithi136 bash[22230]: audit 2024-03-30T13:56:16.648463+0000 mon.a (mon.0) 405 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:17.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:17 smithi136 bash[22230]: audit 2024-03-30T13:56:16.658251+0000 mon.a (mon.0) 406 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:17.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:17 smithi136 bash[22230]: audit 2024-03-30T13:56:16.980049+0000 mon.a (mon.0) 407 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:17.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:17 smithi136 bash[22230]: audit 2024-03-30T13:56:16.985170+0000 mon.a (mon.0) 408 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:17.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:17 smithi136 bash[22230]: audit 2024-03-30T13:56:16.988565+0000 mon.a (mon.0) 409 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:56:17.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:17 smithi136 bash[22230]: audit 2024-03-30T13:56:16.993926+0000 mon.a (mon.0) 410 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:17.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:17 smithi136 bash[22230]: audit 2024-03-30T13:56:16.994621+0000 mon.a (mon.0) 411 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:56:17.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:17 smithi136 bash[22230]: audit 2024-03-30T13:56:16.996485+0000 mon.a (mon.0) 412 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:56:17.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:17 smithi136 bash[22230]: audit 2024-03-30T13:56:17.006040+0000 mon.a (mon.0) 413 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:17.658 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:17 smithi050 bash[22081]: cluster 2024-03-30T13:56:15.496448+0000 mgr.a (mgr.14152) 143 : cluster 0 pgmap v83: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:17.658 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:17 smithi050 bash[22081]: audit 2024-03-30T13:56:16.640586+0000 mon.a (mon.0) 404 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:17.658 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:17 smithi050 bash[22081]: audit 2024-03-30T13:56:16.648463+0000 mon.a (mon.0) 405 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:17.658 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:17 smithi050 bash[22081]: audit 2024-03-30T13:56:16.658251+0000 mon.a (mon.0) 406 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:17.658 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:17 smithi050 bash[22081]: audit 2024-03-30T13:56:16.980049+0000 mon.a (mon.0) 407 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:17.659 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:17 smithi050 bash[22081]: audit 2024-03-30T13:56:16.985170+0000 mon.a (mon.0) 408 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:17.659 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:17 smithi050 bash[22081]: audit 2024-03-30T13:56:16.988565+0000 mon.a (mon.0) 409 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:56:17.659 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:17 smithi050 bash[22081]: audit 2024-03-30T13:56:16.993926+0000 mon.a (mon.0) 410 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:17.659 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:17 smithi050 bash[22081]: audit 2024-03-30T13:56:16.994621+0000 mon.a (mon.0) 411 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:56:17.659 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:17 smithi050 bash[22081]: audit 2024-03-30T13:56:16.996485+0000 mon.a (mon.0) 412 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:56:17.659 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:17 smithi050 bash[22081]: audit 2024-03-30T13:56:17.006040+0000 mon.a (mon.0) 413 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:18.483 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:18 smithi136 bash[22230]: cephadm 2024-03-30T13:56:16.986656+0000 mgr.a (mgr.14152) 144 : cephadm 1 Detected new or changed devices on smithi026 2024-03-30T13:56:18.609 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:18 smithi026 bash[21443]: cephadm 2024-03-30T13:56:16.986656+0000 mgr.a (mgr.14152) 144 : cephadm 1 Detected new or changed devices on smithi026 2024-03-30T13:56:18.657 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:18 smithi050 bash[22081]: cephadm 2024-03-30T13:56:16.986656+0000 mgr.a (mgr.14152) 144 : cephadm 1 Detected new or changed devices on smithi026 2024-03-30T13:56:19.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:19 smithi136 bash[22230]: cluster 2024-03-30T13:56:17.496828+0000 mgr.a (mgr.14152) 145 : cluster 0 pgmap v84: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:19.515 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:19 smithi026 bash[21443]: cluster 2024-03-30T13:56:17.496828+0000 mgr.a (mgr.14152) 145 : cluster 0 pgmap v84: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:19.657 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:19 smithi050 bash[22081]: cluster 2024-03-30T13:56:17.496828+0000 mgr.a (mgr.14152) 145 : cluster 0 pgmap v84: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:20.483 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:20 smithi136 bash[22230]: cluster 2024-03-30T13:56:19.497223+0000 mgr.a (mgr.14152) 146 : cluster 0 pgmap v85: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:20.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:20 smithi136 bash[22230]: audit 2024-03-30T13:56:19.904926+0000 mon.a (mon.0) 414 : audit 1 from='osd.0 [v2:172.21.15.26:6802/3101378251,v1:172.21.15.26:6803/3101378251]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-03-30T13:56:20.609 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:20 smithi026 bash[21443]: cluster 2024-03-30T13:56:19.497223+0000 mgr.a (mgr.14152) 146 : cluster 0 pgmap v85: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:20.609 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:20 smithi026 bash[21443]: audit 2024-03-30T13:56:19.904926+0000 mon.a (mon.0) 414 : audit 1 from='osd.0 [v2:172.21.15.26:6802/3101378251,v1:172.21.15.26:6803/3101378251]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-03-30T13:56:20.658 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:20 smithi050 bash[22081]: cluster 2024-03-30T13:56:19.497223+0000 mgr.a (mgr.14152) 146 : cluster 0 pgmap v85: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:20.658 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:20 smithi050 bash[22081]: audit 2024-03-30T13:56:19.904926+0000 mon.a (mon.0) 414 : audit 1 from='osd.0 [v2:172.21.15.26:6802/3101378251,v1:172.21.15.26:6803/3101378251]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-03-30T13:56:21.450 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:21 smithi026 bash[21443]: audit 2024-03-30T13:56:20.186325+0000 mon.a (mon.0) 415 : audit 1 from='osd.0 [v2:172.21.15.26:6802/3101378251,v1:172.21.15.26:6803/3101378251]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-03-30T13:56:21.450 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:21 smithi026 bash[21443]: cluster 2024-03-30T13:56:20.190583+0000 mon.a (mon.0) 416 : cluster 0 osdmap e6: 1 total, 0 up, 1 in 2024-03-30T13:56:21.450 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:21 smithi026 bash[21443]: audit 2024-03-30T13:56:20.191083+0000 mon.a (mon.0) 417 : audit 1 from='osd.0 [v2:172.21.15.26:6802/3101378251,v1:172.21.15.26:6803/3101378251]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi026", "root=default"]}]: dispatch 2024-03-30T13:56:21.450 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:21 smithi026 bash[21443]: audit 2024-03-30T13:56:20.191665+0000 mon.a (mon.0) 418 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-30T13:56:21.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:21 smithi136 bash[22230]: audit 2024-03-30T13:56:20.186325+0000 mon.a (mon.0) 415 : audit 1 from='osd.0 [v2:172.21.15.26:6802/3101378251,v1:172.21.15.26:6803/3101378251]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-03-30T13:56:21.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:21 smithi136 bash[22230]: cluster 2024-03-30T13:56:20.190583+0000 mon.a (mon.0) 416 : cluster 0 osdmap e6: 1 total, 0 up, 1 in 2024-03-30T13:56:21.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:21 smithi136 bash[22230]: audit 2024-03-30T13:56:20.191083+0000 mon.a (mon.0) 417 : audit 1 from='osd.0 [v2:172.21.15.26:6802/3101378251,v1:172.21.15.26:6803/3101378251]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi026", "root=default"]}]: dispatch 2024-03-30T13:56:21.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:21 smithi136 bash[22230]: audit 2024-03-30T13:56:20.191665+0000 mon.a (mon.0) 418 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-30T13:56:21.657 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:21 smithi050 bash[22081]: audit 2024-03-30T13:56:20.186325+0000 mon.a (mon.0) 415 : audit 1 from='osd.0 [v2:172.21.15.26:6802/3101378251,v1:172.21.15.26:6803/3101378251]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-03-30T13:56:21.658 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:21 smithi050 bash[22081]: cluster 2024-03-30T13:56:20.190583+0000 mon.a (mon.0) 416 : cluster 0 osdmap e6: 1 total, 0 up, 1 in 2024-03-30T13:56:21.658 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:21 smithi050 bash[22081]: audit 2024-03-30T13:56:20.191083+0000 mon.a (mon.0) 417 : audit 1 from='osd.0 [v2:172.21.15.26:6802/3101378251,v1:172.21.15.26:6803/3101378251]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi026", "root=default"]}]: dispatch 2024-03-30T13:56:21.658 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:21 smithi050 bash[22081]: audit 2024-03-30T13:56:20.191665+0000 mon.a (mon.0) 418 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-30T13:56:22.241 INFO:teuthology.orchestra.run.smithi026.stdout:Created osd(s) 0 on host 'smithi026' 2024-03-30T13:56:22.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:22 smithi136 bash[22230]: audit 2024-03-30T13:56:21.187909+0000 mon.a (mon.0) 419 : audit 1 from='osd.0 [v2:172.21.15.26:6802/3101378251,v1:172.21.15.26:6803/3101378251]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi026", "root=default"]}]': finished 2024-03-30T13:56:22.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:22 smithi136 bash[22230]: cluster 2024-03-30T13:56:21.192550+0000 mon.a (mon.0) 420 : cluster 0 osdmap e7: 1 total, 0 up, 1 in 2024-03-30T13:56:22.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:22 smithi136 bash[22230]: audit 2024-03-30T13:56:21.196006+0000 mon.a (mon.0) 421 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-30T13:56:22.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:22 smithi136 bash[22230]: audit 2024-03-30T13:56:21.209292+0000 mon.a (mon.0) 422 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-30T13:56:22.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:22 smithi136 bash[22230]: audit 2024-03-30T13:56:21.459743+0000 mon.a (mon.0) 423 : audit 1 from='osd.0 [v2:172.21.15.26:6802/3101378251,v1:172.21.15.26:6803/3101378251]' entity='osd.0' 2024-03-30T13:56:22.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:22 smithi136 bash[22230]: cluster 2024-03-30T13:56:21.497484+0000 mgr.a (mgr.14152) 147 : cluster 0 pgmap v88: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:22.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:22 smithi136 bash[22230]: audit 2024-03-30T13:56:22.198388+0000 mon.a (mon.0) 424 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:22.609 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:22 smithi026 bash[21443]: audit 2024-03-30T13:56:21.187909+0000 mon.a (mon.0) 419 : audit 1 from='osd.0 [v2:172.21.15.26:6802/3101378251,v1:172.21.15.26:6803/3101378251]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi026", "root=default"]}]': finished 2024-03-30T13:56:22.610 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:22 smithi026 bash[21443]: cluster 2024-03-30T13:56:21.192550+0000 mon.a (mon.0) 420 : cluster 0 osdmap e7: 1 total, 0 up, 1 in 2024-03-30T13:56:22.610 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:22 smithi026 bash[21443]: audit 2024-03-30T13:56:21.196006+0000 mon.a (mon.0) 421 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-30T13:56:22.610 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:22 smithi026 bash[21443]: audit 2024-03-30T13:56:21.209292+0000 mon.a (mon.0) 422 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-30T13:56:22.610 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:22 smithi026 bash[21443]: audit 2024-03-30T13:56:21.459743+0000 mon.a (mon.0) 423 : audit 1 from='osd.0 [v2:172.21.15.26:6802/3101378251,v1:172.21.15.26:6803/3101378251]' entity='osd.0' 2024-03-30T13:56:22.610 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:22 smithi026 bash[21443]: cluster 2024-03-30T13:56:21.497484+0000 mgr.a (mgr.14152) 147 : cluster 0 pgmap v88: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:22.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:22 smithi026 bash[21443]: audit 2024-03-30T13:56:22.198388+0000 mon.a (mon.0) 424 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:22.658 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:22 smithi050 bash[22081]: audit 2024-03-30T13:56:21.187909+0000 mon.a (mon.0) 419 : audit 1 from='osd.0 [v2:172.21.15.26:6802/3101378251,v1:172.21.15.26:6803/3101378251]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi026", "root=default"]}]': finished 2024-03-30T13:56:22.658 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:22 smithi050 bash[22081]: cluster 2024-03-30T13:56:21.192550+0000 mon.a (mon.0) 420 : cluster 0 osdmap e7: 1 total, 0 up, 1 in 2024-03-30T13:56:22.658 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:22 smithi050 bash[22081]: audit 2024-03-30T13:56:21.196006+0000 mon.a (mon.0) 421 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-30T13:56:22.658 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:22 smithi050 bash[22081]: audit 2024-03-30T13:56:21.209292+0000 mon.a (mon.0) 422 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-30T13:56:22.658 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:22 smithi050 bash[22081]: audit 2024-03-30T13:56:21.459743+0000 mon.a (mon.0) 423 : audit 1 from='osd.0 [v2:172.21.15.26:6802/3101378251,v1:172.21.15.26:6803/3101378251]' entity='osd.0' 2024-03-30T13:56:22.658 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:22 smithi050 bash[22081]: cluster 2024-03-30T13:56:21.497484+0000 mgr.a (mgr.14152) 147 : cluster 0 pgmap v88: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-30T13:56:22.658 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:22 smithi050 bash[22081]: audit 2024-03-30T13:56:22.198388+0000 mon.a (mon.0) 424 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:22.873 DEBUG:teuthology.orchestra.run.smithi026:osd.0> sudo journalctl -f -n 0 -u ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@osd.0.service 2024-03-30T13:56:22.875 INFO:tasks.cephadm:Deploying osd.1 on smithi026 with /dev/vg_nvme/lv_3... 2024-03-30T13:56:22.875 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-03-30T13:56:23.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:23 smithi136 bash[22230]: cluster 2024-03-30T13:56:20.900638+0000 osd.0 (osd.0) 1 : cluster 0 purged_snaps scrub starts 2024-03-30T13:56:23.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:23 smithi136 bash[22230]: cluster 2024-03-30T13:56:20.900807+0000 osd.0 (osd.0) 2 : cluster 0 purged_snaps scrub ok 2024-03-30T13:56:23.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:23 smithi136 bash[22230]: audit 2024-03-30T13:56:22.201695+0000 mon.a (mon.0) 425 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-30T13:56:23.484 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:23 smithi136 bash[22230]: audit 2024-03-30T13:56:22.211341+0000 mon.a (mon.0) 426 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:23.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:23 smithi136 bash[22230]: audit 2024-03-30T13:56:22.240003+0000 mon.a (mon.0) 427 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:56:23.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:23 smithi136 bash[22230]: audit 2024-03-30T13:56:22.246527+0000 mon.a (mon.0) 428 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi026", "name": "osd_memory_target"}]: dispatch 2024-03-30T13:56:23.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:23 smithi136 bash[22230]: audit 2024-03-30T13:56:22.248813+0000 mon.a (mon.0) 429 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:56:23.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:23 smithi136 bash[22230]: audit 2024-03-30T13:56:22.250722+0000 mon.a (mon.0) 430 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:56:23.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:23 smithi136 bash[22230]: audit 2024-03-30T13:56:22.260060+0000 mon.a (mon.0) 431 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:23.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:23 smithi136 bash[22230]: cluster 2024-03-30T13:56:22.469799+0000 mon.a (mon.0) 432 : cluster 1 osd.0 [v2:172.21.15.26:6802/3101378251,v1:172.21.15.26:6803/3101378251] boot 2024-03-30T13:56:23.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:23 smithi136 bash[22230]: cluster 2024-03-30T13:56:22.469890+0000 mon.a (mon.0) 433 : cluster 0 osdmap e8: 1 total, 1 up, 1 in 2024-03-30T13:56:23.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:23 smithi136 bash[22230]: audit 2024-03-30T13:56:22.470241+0000 mon.a (mon.0) 434 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-30T13:56:23.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:23 smithi136 bash[22230]: audit 2024-03-30T13:56:23.034822+0000 mon.a (mon.0) 435 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:23.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:23 smithi136 bash[22230]: audit 2024-03-30T13:56:23.039375+0000 mon.a (mon.0) 436 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:23.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:23 smithi136 bash[22230]: audit 2024-03-30T13:56:23.044349+0000 mon.a (mon.0) 437 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:23.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:23 smithi136 bash[22230]: audit 2024-03-30T13:56:23.081357+0000 mon.a (mon.0) 438 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:56:23.485 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:23 smithi136 bash[22230]: audit 2024-03-30T13:56:23.085908+0000 mon.a (mon.0) 439 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:56:23.486 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:23 smithi136 bash[22230]: audit 2024-03-30T13:56:23.087308+0000 mon.a (mon.0) 440 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:56:23.486 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:23 smithi136 bash[22230]: audit 2024-03-30T13:56:23.092593+0000 mon.a (mon.0) 441 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:23.610 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:23 smithi026 bash[21443]: cluster 2024-03-30T13:56:20.900638+0000 osd.0 (osd.0) 1 : cluster 0 purged_snaps scrub starts 2024-03-30T13:56:23.610 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:23 smithi026 bash[21443]: cluster 2024-03-30T13:56:20.900807+0000 osd.0 (osd.0) 2 : cluster 0 purged_snaps scrub ok 2024-03-30T13:56:23.610 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:23 smithi026 bash[21443]: audit 2024-03-30T13:56:22.201695+0000 mon.a (mon.0) 425 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-30T13:56:23.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:23 smithi026 bash[21443]: audit 2024-03-30T13:56:22.211341+0000 mon.a (mon.0) 426 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:23.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:23 smithi026 bash[21443]: audit 2024-03-30T13:56:22.240003+0000 mon.a (mon.0) 427 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:56:23.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:23 smithi026 bash[21443]: audit 2024-03-30T13:56:22.246527+0000 mon.a (mon.0) 428 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi026", "name": "osd_memory_target"}]: dispatch 2024-03-30T13:56:23.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:23 smithi026 bash[21443]: audit 2024-03-30T13:56:22.248813+0000 mon.a (mon.0) 429 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:56:23.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:23 smithi026 bash[21443]: audit 2024-03-30T13:56:22.250722+0000 mon.a (mon.0) 430 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:56:23.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:23 smithi026 bash[21443]: audit 2024-03-30T13:56:22.260060+0000 mon.a (mon.0) 431 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:23.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:23 smithi026 bash[21443]: cluster 2024-03-30T13:56:22.469799+0000 mon.a (mon.0) 432 : cluster 1 osd.0 [v2:172.21.15.26:6802/3101378251,v1:172.21.15.26:6803/3101378251] boot 2024-03-30T13:56:23.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:23 smithi026 bash[21443]: cluster 2024-03-30T13:56:22.469890+0000 mon.a (mon.0) 433 : cluster 0 osdmap e8: 1 total, 1 up, 1 in 2024-03-30T13:56:23.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:23 smithi026 bash[21443]: audit 2024-03-30T13:56:22.470241+0000 mon.a (mon.0) 434 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-30T13:56:23.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:23 smithi026 bash[21443]: audit 2024-03-30T13:56:23.034822+0000 mon.a (mon.0) 435 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:23.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:23 smithi026 bash[21443]: audit 2024-03-30T13:56:23.039375+0000 mon.a (mon.0) 436 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:23.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:23 smithi026 bash[21443]: audit 2024-03-30T13:56:23.044349+0000 mon.a (mon.0) 437 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:23.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:23 smithi026 bash[21443]: audit 2024-03-30T13:56:23.081357+0000 mon.a (mon.0) 438 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:56:23.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:23 smithi026 bash[21443]: audit 2024-03-30T13:56:23.085908+0000 mon.a (mon.0) 439 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:56:23.612 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:23 smithi026 bash[21443]: audit 2024-03-30T13:56:23.087308+0000 mon.a (mon.0) 440 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:56:23.612 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:23 smithi026 bash[21443]: audit 2024-03-30T13:56:23.092593+0000 mon.a (mon.0) 441 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:23.658 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:23 smithi050 bash[22081]: cluster 2024-03-30T13:56:20.900638+0000 osd.0 (osd.0) 1 : cluster 0 purged_snaps scrub starts 2024-03-30T13:56:23.658 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:23 smithi050 bash[22081]: cluster 2024-03-30T13:56:20.900807+0000 osd.0 (osd.0) 2 : cluster 0 purged_snaps scrub ok 2024-03-30T13:56:23.658 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:23 smithi050 bash[22081]: audit 2024-03-30T13:56:22.201695+0000 mon.a (mon.0) 425 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-30T13:56:23.658 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:23 smithi050 bash[22081]: audit 2024-03-30T13:56:22.211341+0000 mon.a (mon.0) 426 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:23.659 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:23 smithi050 bash[22081]: audit 2024-03-30T13:56:22.240003+0000 mon.a (mon.0) 427 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:56:23.659 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:23 smithi050 bash[22081]: audit 2024-03-30T13:56:22.246527+0000 mon.a (mon.0) 428 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi026", "name": "osd_memory_target"}]: dispatch 2024-03-30T13:56:23.659 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:23 smithi050 bash[22081]: audit 2024-03-30T13:56:22.248813+0000 mon.a (mon.0) 429 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:56:23.659 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:23 smithi050 bash[22081]: audit 2024-03-30T13:56:22.250722+0000 mon.a (mon.0) 430 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:56:23.659 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:23 smithi050 bash[22081]: audit 2024-03-30T13:56:22.260060+0000 mon.a (mon.0) 431 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:23.659 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:23 smithi050 bash[22081]: cluster 2024-03-30T13:56:22.469799+0000 mon.a (mon.0) 432 : cluster 1 osd.0 [v2:172.21.15.26:6802/3101378251,v1:172.21.15.26:6803/3101378251] boot 2024-03-30T13:56:23.659 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:23 smithi050 bash[22081]: cluster 2024-03-30T13:56:22.469890+0000 mon.a (mon.0) 433 : cluster 0 osdmap e8: 1 total, 1 up, 1 in 2024-03-30T13:56:23.659 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:23 smithi050 bash[22081]: audit 2024-03-30T13:56:22.470241+0000 mon.a (mon.0) 434 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-30T13:56:23.659 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:23 smithi050 bash[22081]: audit 2024-03-30T13:56:23.034822+0000 mon.a (mon.0) 435 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:23.659 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:23 smithi050 bash[22081]: audit 2024-03-30T13:56:23.039375+0000 mon.a (mon.0) 436 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:23.659 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:23 smithi050 bash[22081]: audit 2024-03-30T13:56:23.044349+0000 mon.a (mon.0) 437 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:23.659 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:23 smithi050 bash[22081]: audit 2024-03-30T13:56:23.081357+0000 mon.a (mon.0) 438 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:56:23.659 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:23 smithi050 bash[22081]: audit 2024-03-30T13:56:23.085908+0000 mon.a (mon.0) 439 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:56:23.659 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:23 smithi050 bash[22081]: audit 2024-03-30T13:56:23.087308+0000 mon.a (mon.0) 440 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:56:23.660 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:23 smithi050 bash[22081]: audit 2024-03-30T13:56:23.092593+0000 mon.a (mon.0) 441 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:24.733 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:24 smithi136 bash[22230]: cluster 2024-03-30T13:56:23.472122+0000 mon.a (mon.0) 442 : cluster 0 osdmap e9: 1 total, 1 up, 1 in 2024-03-30T13:56:24.733 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:24 smithi136 bash[22230]: cluster 2024-03-30T13:56:23.497884+0000 mgr.a (mgr.14152) 148 : cluster 0 pgmap v91: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:24.859 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:24 smithi026 bash[21443]: cluster 2024-03-30T13:56:23.472122+0000 mon.a (mon.0) 442 : cluster 0 osdmap e9: 1 total, 1 up, 1 in 2024-03-30T13:56:24.859 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:24 smithi026 bash[21443]: cluster 2024-03-30T13:56:23.497884+0000 mgr.a (mgr.14152) 148 : cluster 0 pgmap v91: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:24.907 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:24 smithi050 bash[22081]: cluster 2024-03-30T13:56:23.472122+0000 mon.a (mon.0) 442 : cluster 0 osdmap e9: 1 total, 1 up, 1 in 2024-03-30T13:56:24.907 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:24 smithi050 bash[22081]: cluster 2024-03-30T13:56:23.497884+0000 mgr.a (mgr.14152) 148 : cluster 0 pgmap v91: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:26.670 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T13:56:26.858 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:26 smithi026 bash[21443]: cluster 2024-03-30T13:56:25.498357+0000 mgr.a (mgr.14152) 149 : cluster 0 pgmap v92: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:26.867 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:26 smithi136 bash[22230]: cluster 2024-03-30T13:56:25.498357+0000 mgr.a (mgr.14152) 149 : cluster 0 pgmap v92: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:26.907 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:26 smithi050 bash[22081]: cluster 2024-03-30T13:56:25.498357+0000 mgr.a (mgr.14152) 149 : cluster 0 pgmap v92: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:28.859 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:28 smithi026 bash[21443]: cluster 2024-03-30T13:56:27.498832+0000 mgr.a (mgr.14152) 150 : cluster 0 pgmap v93: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:28.907 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:28 smithi050 bash[22081]: cluster 2024-03-30T13:56:27.498832+0000 mgr.a (mgr.14152) 150 : cluster 0 pgmap v93: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:28.983 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:28 smithi136 bash[22230]: cluster 2024-03-30T13:56:27.498832+0000 mgr.a (mgr.14152) 150 : cluster 0 pgmap v93: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:30.054 INFO:teuthology.orchestra.run.smithi026.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-03-30T13:56:30.054 INFO:teuthology.orchestra.run.smithi026.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-03-30T13:56:30.054 INFO:teuthology.orchestra.run.smithi026.stderr: stderr: 10+0 records in 2024-03-30T13:56:30.054 INFO:teuthology.orchestra.run.smithi026.stderr:10+0 records out 2024-03-30T13:56:30.054 INFO:teuthology.orchestra.run.smithi026.stderr:10485760 bytes (10 MB, 10 MiB) copied, 0.0118363 s, 886 MB/s 2024-03-30T13:56:30.054 INFO:teuthology.orchestra.run.smithi026.stderr:--> Zapping successful for: 2024-03-30T13:56:30.775 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph orch daemon add osd smithi026:vg_nvme/lv_3 2024-03-30T13:56:30.859 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:30 smithi026 bash[21443]: cluster 2024-03-30T13:56:29.499184+0000 mgr.a (mgr.14152) 151 : cluster 0 pgmap v94: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:30.907 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:30 smithi050 bash[22081]: cluster 2024-03-30T13:56:29.499184+0000 mgr.a (mgr.14152) 151 : cluster 0 pgmap v94: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:30.983 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:30 smithi136 bash[22230]: cluster 2024-03-30T13:56:29.499184+0000 mgr.a (mgr.14152) 151 : cluster 0 pgmap v94: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:32.733 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:32 smithi136 bash[22230]: cluster 2024-03-30T13:56:31.499617+0000 mgr.a (mgr.14152) 152 : cluster 0 pgmap v95: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:32.734 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:32 smithi136 bash[22230]: audit 2024-03-30T13:56:32.380423+0000 mon.a (mon.0) 443 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:32.734 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:32 smithi136 bash[22230]: audit 2024-03-30T13:56:32.388693+0000 mon.a (mon.0) 444 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:32.734 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:32 smithi136 bash[22230]: audit 2024-03-30T13:56:32.398696+0000 mon.a (mon.0) 445 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:32.859 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:32 smithi026 bash[21443]: cluster 2024-03-30T13:56:31.499617+0000 mgr.a (mgr.14152) 152 : cluster 0 pgmap v95: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:32.859 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:32 smithi026 bash[21443]: audit 2024-03-30T13:56:32.380423+0000 mon.a (mon.0) 443 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:32.859 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:32 smithi026 bash[21443]: audit 2024-03-30T13:56:32.388693+0000 mon.a (mon.0) 444 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:32.859 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:32 smithi026 bash[21443]: audit 2024-03-30T13:56:32.398696+0000 mon.a (mon.0) 445 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:32.891 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:32 smithi050 bash[22081]: cluster 2024-03-30T13:56:31.499617+0000 mgr.a (mgr.14152) 152 : cluster 0 pgmap v95: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:32.892 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:32 smithi050 bash[22081]: audit 2024-03-30T13:56:32.380423+0000 mon.a (mon.0) 443 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:32.892 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:32 smithi050 bash[22081]: audit 2024-03-30T13:56:32.388693+0000 mon.a (mon.0) 444 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:32.892 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:32 smithi050 bash[22081]: audit 2024-03-30T13:56:32.398696+0000 mon.a (mon.0) 445 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:34.858 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:34 smithi026 bash[21443]: cluster 2024-03-30T13:56:33.499974+0000 mgr.a (mgr.14152) 153 : cluster 0 pgmap v96: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:34.907 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:34 smithi050 bash[22081]: cluster 2024-03-30T13:56:33.499974+0000 mgr.a (mgr.14152) 153 : cluster 0 pgmap v96: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:34.983 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:34 smithi136 bash[22230]: cluster 2024-03-30T13:56:33.499974+0000 mgr.a (mgr.14152) 153 : cluster 0 pgmap v96: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:36.109 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T13:56:36.858 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:36 smithi026 bash[21443]: cluster 2024-03-30T13:56:35.500389+0000 mgr.a (mgr.14152) 154 : cluster 0 pgmap v97: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:36.861 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:36 smithi050 bash[22081]: cluster 2024-03-30T13:56:35.500389+0000 mgr.a (mgr.14152) 154 : cluster 0 pgmap v97: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:36.983 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:36 smithi136 bash[22230]: cluster 2024-03-30T13:56:35.500389+0000 mgr.a (mgr.14152) 154 : cluster 0 pgmap v97: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:38.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:37 smithi026 bash[21443]: audit 2024-03-30T13:56:36.851161+0000 mon.a (mon.0) 446 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:38.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:37 smithi026 bash[21443]: audit 2024-03-30T13:56:36.857294+0000 mon.a (mon.0) 447 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:38.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:37 smithi026 bash[21443]: audit 2024-03-30T13:56:36.865118+0000 mon.a (mon.0) 448 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:38.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:37 smithi050 bash[22081]: audit 2024-03-30T13:56:36.851161+0000 mon.a (mon.0) 446 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:38.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:37 smithi050 bash[22081]: audit 2024-03-30T13:56:36.857294+0000 mon.a (mon.0) 447 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:38.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:37 smithi050 bash[22081]: audit 2024-03-30T13:56:36.865118+0000 mon.a (mon.0) 448 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:38.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:37 smithi136 bash[22230]: audit 2024-03-30T13:56:36.851161+0000 mon.a (mon.0) 446 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:38.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:37 smithi136 bash[22230]: audit 2024-03-30T13:56:36.857294+0000 mon.a (mon.0) 447 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:38.234 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:37 smithi136 bash[22230]: audit 2024-03-30T13:56:36.865118+0000 mon.a (mon.0) 448 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:39.108 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:38 smithi026 bash[21443]: cluster 2024-03-30T13:56:37.500688+0000 mgr.a (mgr.14152) 155 : cluster 0 pgmap v98: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:39.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:38 smithi050 bash[22081]: cluster 2024-03-30T13:56:37.500688+0000 mgr.a (mgr.14152) 155 : cluster 0 pgmap v98: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:39.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:38 smithi136 bash[22230]: cluster 2024-03-30T13:56:37.500688+0000 mgr.a (mgr.14152) 155 : cluster 0 pgmap v98: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:40.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:39 smithi050 bash[22081]: audit 2024-03-30T13:56:39.026581+0000 mgr.a (mgr.14152) 156 : audit 0 from='client.14238 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi026:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:56:40.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:39 smithi050 bash[22081]: audit 2024-03-30T13:56:39.033274+0000 mon.a (mon.0) 449 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-30T13:56:40.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:39 smithi050 bash[22081]: audit 2024-03-30T13:56:39.036798+0000 mon.a (mon.0) 450 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-30T13:56:40.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:39 smithi050 bash[22081]: audit 2024-03-30T13:56:39.037655+0000 mon.a (mon.0) 451 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:56:40.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:39 smithi136 bash[22230]: audit 2024-03-30T13:56:39.026581+0000 mgr.a (mgr.14152) 156 : audit 0 from='client.14238 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi026:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:56:40.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:39 smithi136 bash[22230]: audit 2024-03-30T13:56:39.033274+0000 mon.a (mon.0) 449 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-30T13:56:40.234 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:39 smithi136 bash[22230]: audit 2024-03-30T13:56:39.036798+0000 mon.a (mon.0) 450 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-30T13:56:40.234 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:39 smithi136 bash[22230]: audit 2024-03-30T13:56:39.037655+0000 mon.a (mon.0) 451 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:56:40.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:39 smithi026 bash[21443]: audit 2024-03-30T13:56:39.026581+0000 mgr.a (mgr.14152) 156 : audit 0 from='client.14238 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi026:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:56:40.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:39 smithi026 bash[21443]: audit 2024-03-30T13:56:39.033274+0000 mon.a (mon.0) 449 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-30T13:56:40.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:39 smithi026 bash[21443]: audit 2024-03-30T13:56:39.036798+0000 mon.a (mon.0) 450 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-30T13:56:40.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:39 smithi026 bash[21443]: audit 2024-03-30T13:56:39.037655+0000 mon.a (mon.0) 451 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:56:41.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:40 smithi050 bash[22081]: cluster 2024-03-30T13:56:39.501084+0000 mgr.a (mgr.14152) 157 : cluster 0 pgmap v99: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:41.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:40 smithi136 bash[22230]: cluster 2024-03-30T13:56:39.501084+0000 mgr.a (mgr.14152) 157 : cluster 0 pgmap v99: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:41.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:40 smithi026 bash[21443]: cluster 2024-03-30T13:56:39.501084+0000 mgr.a (mgr.14152) 157 : cluster 0 pgmap v99: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:42.907 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:42 smithi050 bash[22081]: cluster 2024-03-30T13:56:41.501403+0000 mgr.a (mgr.14152) 158 : cluster 0 pgmap v100: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:42.907 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:42 smithi050 bash[22081]: audit 2024-03-30T13:56:41.636514+0000 mon.a (mon.0) 452 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:42.907 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:42 smithi050 bash[22081]: audit 2024-03-30T13:56:41.641246+0000 mon.a (mon.0) 453 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:42.907 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:42 smithi050 bash[22081]: audit 2024-03-30T13:56:41.646426+0000 mon.a (mon.0) 454 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:42.983 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:42 smithi136 bash[22230]: cluster 2024-03-30T13:56:41.501403+0000 mgr.a (mgr.14152) 158 : cluster 0 pgmap v100: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:42.983 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:42 smithi136 bash[22230]: audit 2024-03-30T13:56:41.636514+0000 mon.a (mon.0) 452 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:42.983 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:42 smithi136 bash[22230]: audit 2024-03-30T13:56:41.641246+0000 mon.a (mon.0) 453 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:42.983 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:42 smithi136 bash[22230]: audit 2024-03-30T13:56:41.646426+0000 mon.a (mon.0) 454 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:43.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:42 smithi026 bash[21443]: cluster 2024-03-30T13:56:41.501403+0000 mgr.a (mgr.14152) 158 : cluster 0 pgmap v100: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:43.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:42 smithi026 bash[21443]: audit 2024-03-30T13:56:41.636514+0000 mon.a (mon.0) 452 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:43.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:42 smithi026 bash[21443]: audit 2024-03-30T13:56:41.641246+0000 mon.a (mon.0) 453 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:43.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:42 smithi026 bash[21443]: audit 2024-03-30T13:56:41.646426+0000 mon.a (mon.0) 454 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:44.733 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:44 smithi136 bash[22230]: cluster 2024-03-30T13:56:43.501759+0000 mgr.a (mgr.14152) 159 : cluster 0 pgmap v101: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:44.793 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:44 smithi026 bash[21443]: cluster 2024-03-30T13:56:43.501759+0000 mgr.a (mgr.14152) 159 : cluster 0 pgmap v101: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:44.907 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:44 smithi050 bash[22081]: cluster 2024-03-30T13:56:43.501759+0000 mgr.a (mgr.14152) 159 : cluster 0 pgmap v101: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:46.907 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:46 smithi050 bash[22081]: cluster 2024-03-30T13:56:45.502217+0000 mgr.a (mgr.14152) 160 : cluster 0 pgmap v102: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:46.983 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:46 smithi136 bash[22230]: cluster 2024-03-30T13:56:45.502217+0000 mgr.a (mgr.14152) 160 : cluster 0 pgmap v102: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:47.108 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:46 smithi026 bash[21443]: cluster 2024-03-30T13:56:45.502217+0000 mgr.a (mgr.14152) 160 : cluster 0 pgmap v102: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:47.907 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:47 smithi050 bash[22081]: audit 2024-03-30T13:56:46.992714+0000 mon.c (mon.1) 3 : audit 1 from='client.? 172.21.15.26:0/2785959535' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "71003761-3357-440b-87be-d0ffd7c44fec"}]: dispatch 2024-03-30T13:56:47.907 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:47 smithi050 bash[22081]: audit 2024-03-30T13:56:46.993319+0000 mon.a (mon.0) 455 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "71003761-3357-440b-87be-d0ffd7c44fec"}]: dispatch 2024-03-30T13:56:47.907 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:47 smithi050 bash[22081]: audit 2024-03-30T13:56:46.995911+0000 mon.a (mon.0) 456 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "71003761-3357-440b-87be-d0ffd7c44fec"}]': finished 2024-03-30T13:56:47.907 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:47 smithi050 bash[22081]: cluster 2024-03-30T13:56:47.000891+0000 mon.a (mon.0) 457 : cluster 0 osdmap e10: 2 total, 1 up, 2 in 2024-03-30T13:56:47.907 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:47 smithi050 bash[22081]: audit 2024-03-30T13:56:47.001193+0000 mon.a (mon.0) 458 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-30T13:56:47.983 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:47 smithi136 bash[22230]: audit 2024-03-30T13:56:46.992714+0000 mon.c (mon.1) 3 : audit 1 from='client.? 172.21.15.26:0/2785959535' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "71003761-3357-440b-87be-d0ffd7c44fec"}]: dispatch 2024-03-30T13:56:47.983 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:47 smithi136 bash[22230]: audit 2024-03-30T13:56:46.993319+0000 mon.a (mon.0) 455 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "71003761-3357-440b-87be-d0ffd7c44fec"}]: dispatch 2024-03-30T13:56:47.983 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:47 smithi136 bash[22230]: audit 2024-03-30T13:56:46.995911+0000 mon.a (mon.0) 456 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "71003761-3357-440b-87be-d0ffd7c44fec"}]': finished 2024-03-30T13:56:47.984 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:47 smithi136 bash[22230]: cluster 2024-03-30T13:56:47.000891+0000 mon.a (mon.0) 457 : cluster 0 osdmap e10: 2 total, 1 up, 2 in 2024-03-30T13:56:47.984 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:47 smithi136 bash[22230]: audit 2024-03-30T13:56:47.001193+0000 mon.a (mon.0) 458 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-30T13:56:48.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:47 smithi026 bash[21443]: audit 2024-03-30T13:56:46.992714+0000 mon.c (mon.1) 3 : audit 1 from='client.? 172.21.15.26:0/2785959535' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "71003761-3357-440b-87be-d0ffd7c44fec"}]: dispatch 2024-03-30T13:56:48.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:47 smithi026 bash[21443]: audit 2024-03-30T13:56:46.993319+0000 mon.a (mon.0) 455 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "71003761-3357-440b-87be-d0ffd7c44fec"}]: dispatch 2024-03-30T13:56:48.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:47 smithi026 bash[21443]: audit 2024-03-30T13:56:46.995911+0000 mon.a (mon.0) 456 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "71003761-3357-440b-87be-d0ffd7c44fec"}]': finished 2024-03-30T13:56:48.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:47 smithi026 bash[21443]: cluster 2024-03-30T13:56:47.000891+0000 mon.a (mon.0) 457 : cluster 0 osdmap e10: 2 total, 1 up, 2 in 2024-03-30T13:56:48.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:47 smithi026 bash[21443]: audit 2024-03-30T13:56:47.001193+0000 mon.a (mon.0) 458 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-30T13:56:48.907 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:48 smithi050 bash[22081]: cluster 2024-03-30T13:56:47.502614+0000 mgr.a (mgr.14152) 161 : cluster 0 pgmap v104: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:48.907 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:48 smithi050 bash[22081]: audit 2024-03-30T13:56:47.755750+0000 mon.a (mon.0) 459 : audit 0 from='client.? 172.21.15.26:0/1382493825' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-30T13:56:48.983 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:48 smithi136 bash[22230]: cluster 2024-03-30T13:56:47.502614+0000 mgr.a (mgr.14152) 161 : cluster 0 pgmap v104: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:48.983 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:48 smithi136 bash[22230]: audit 2024-03-30T13:56:47.755750+0000 mon.a (mon.0) 459 : audit 0 from='client.? 172.21.15.26:0/1382493825' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-30T13:56:49.108 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:48 smithi026 bash[21443]: cluster 2024-03-30T13:56:47.502614+0000 mgr.a (mgr.14152) 161 : cluster 0 pgmap v104: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:49.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:48 smithi026 bash[21443]: audit 2024-03-30T13:56:47.755750+0000 mon.a (mon.0) 459 : audit 0 from='client.? 172.21.15.26:0/1382493825' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-30T13:56:50.907 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:50 smithi050 bash[22081]: cluster 2024-03-30T13:56:49.503096+0000 mgr.a (mgr.14152) 162 : cluster 0 pgmap v105: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:50.983 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:50 smithi136 bash[22230]: cluster 2024-03-30T13:56:49.503096+0000 mgr.a (mgr.14152) 162 : cluster 0 pgmap v105: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:51.108 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:50 smithi026 bash[21443]: cluster 2024-03-30T13:56:49.503096+0000 mgr.a (mgr.14152) 162 : cluster 0 pgmap v105: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:52.817 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:52 smithi026 bash[21443]: cluster 2024-03-30T13:56:51.503429+0000 mgr.a (mgr.14152) 163 : cluster 0 pgmap v106: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:52.817 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:52 smithi026 bash[21443]: audit 2024-03-30T13:56:52.588426+0000 mon.a (mon.0) 460 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:52.817 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:52 smithi026 bash[21443]: audit 2024-03-30T13:56:52.593313+0000 mon.a (mon.0) 461 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:52.817 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:52 smithi026 bash[21443]: audit 2024-03-30T13:56:52.598177+0000 mon.a (mon.0) 462 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:52.907 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:52 smithi050 bash[22081]: cluster 2024-03-30T13:56:51.503429+0000 mgr.a (mgr.14152) 163 : cluster 0 pgmap v106: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:52.907 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:52 smithi050 bash[22081]: audit 2024-03-30T13:56:52.588426+0000 mon.a (mon.0) 460 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:52.907 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:52 smithi050 bash[22081]: audit 2024-03-30T13:56:52.593313+0000 mon.a (mon.0) 461 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:52.907 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:52 smithi050 bash[22081]: audit 2024-03-30T13:56:52.598177+0000 mon.a (mon.0) 462 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:52.983 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:52 smithi136 bash[22230]: cluster 2024-03-30T13:56:51.503429+0000 mgr.a (mgr.14152) 163 : cluster 0 pgmap v106: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:52.983 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:52 smithi136 bash[22230]: audit 2024-03-30T13:56:52.588426+0000 mon.a (mon.0) 460 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:52.983 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:52 smithi136 bash[22230]: audit 2024-03-30T13:56:52.593313+0000 mon.a (mon.0) 461 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:52.983 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:52 smithi136 bash[22230]: audit 2024-03-30T13:56:52.598177+0000 mon.a (mon.0) 462 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:54.906 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:54 smithi050 bash[22081]: cluster 2024-03-30T13:56:53.503866+0000 mgr.a (mgr.14152) 164 : cluster 0 pgmap v107: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:54.928 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:54 smithi026 bash[21443]: cluster 2024-03-30T13:56:53.503866+0000 mgr.a (mgr.14152) 164 : cluster 0 pgmap v107: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:54.983 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:54 smithi136 bash[22230]: cluster 2024-03-30T13:56:53.503866+0000 mgr.a (mgr.14152) 164 : cluster 0 pgmap v107: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:56.906 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:56 smithi050 bash[22081]: cluster 2024-03-30T13:56:55.504335+0000 mgr.a (mgr.14152) 165 : cluster 0 pgmap v108: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:56.975 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:56 smithi026 bash[21443]: cluster 2024-03-30T13:56:55.504335+0000 mgr.a (mgr.14152) 165 : cluster 0 pgmap v108: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:56.983 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:56 smithi136 bash[22230]: cluster 2024-03-30T13:56:55.504335+0000 mgr.a (mgr.14152) 165 : cluster 0 pgmap v108: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:58.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:58 smithi026 bash[21443]: audit 2024-03-30T13:56:57.036589+0000 mon.a (mon.0) 463 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:58.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:58 smithi026 bash[21443]: audit 2024-03-30T13:56:57.040676+0000 mon.a (mon.0) 464 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:58.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:58 smithi026 bash[21443]: audit 2024-03-30T13:56:57.045744+0000 mon.a (mon.0) 465 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:58.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:58 smithi050 bash[22081]: audit 2024-03-30T13:56:57.036589+0000 mon.a (mon.0) 463 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:58.407 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:58 smithi050 bash[22081]: audit 2024-03-30T13:56:57.040676+0000 mon.a (mon.0) 464 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:58.407 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:58 smithi050 bash[22081]: audit 2024-03-30T13:56:57.045744+0000 mon.a (mon.0) 465 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:58.483 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:58 smithi136 bash[22230]: audit 2024-03-30T13:56:57.036589+0000 mon.a (mon.0) 463 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:58.483 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:58 smithi136 bash[22230]: audit 2024-03-30T13:56:57.040676+0000 mon.a (mon.0) 464 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:58.483 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:58 smithi136 bash[22230]: audit 2024-03-30T13:56:57.045744+0000 mon.a (mon.0) 465 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:56:59.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:56:59 smithi026 bash[21443]: cluster 2024-03-30T13:56:57.504736+0000 mgr.a (mgr.14152) 166 : cluster 0 pgmap v109: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:59.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:56:59 smithi050 bash[22081]: cluster 2024-03-30T13:56:57.504736+0000 mgr.a (mgr.14152) 166 : cluster 0 pgmap v109: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:56:59.483 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:56:59 smithi136 bash[22230]: cluster 2024-03-30T13:56:57.504736+0000 mgr.a (mgr.14152) 166 : cluster 0 pgmap v109: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:57:00.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:00 smithi026 bash[21443]: audit 2024-03-30T13:56:59.565677+0000 mon.a (mon.0) 466 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-03-30T13:57:00.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:00 smithi026 bash[21443]: audit 2024-03-30T13:56:59.566734+0000 mon.a (mon.0) 467 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:57:00.407 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:00 smithi050 bash[22081]: audit 2024-03-30T13:56:59.565677+0000 mon.a (mon.0) 466 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-03-30T13:57:00.407 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:00 smithi050 bash[22081]: audit 2024-03-30T13:56:59.566734+0000 mon.a (mon.0) 467 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:57:00.483 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:00 smithi136 bash[22230]: audit 2024-03-30T13:56:59.565677+0000 mon.a (mon.0) 466 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-03-30T13:57:00.483 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:00 smithi136 bash[22230]: audit 2024-03-30T13:56:59.566734+0000 mon.a (mon.0) 467 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:57:01.232 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:01 smithi026 bash[21443]: cluster 2024-03-30T13:56:59.505225+0000 mgr.a (mgr.14152) 167 : cluster 0 pgmap v110: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:57:01.232 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:01 smithi026 bash[21443]: cephadm 2024-03-30T13:56:59.567661+0000 mgr.a (mgr.14152) 168 : cephadm 1 Deploying daemon osd.1 on smithi026 2024-03-30T13:57:01.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:01 smithi050 bash[22081]: cluster 2024-03-30T13:56:59.505225+0000 mgr.a (mgr.14152) 167 : cluster 0 pgmap v110: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:57:01.407 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:01 smithi050 bash[22081]: cephadm 2024-03-30T13:56:59.567661+0000 mgr.a (mgr.14152) 168 : cephadm 1 Deploying daemon osd.1 on smithi026 2024-03-30T13:57:01.483 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:01 smithi136 bash[22230]: cluster 2024-03-30T13:56:59.505225+0000 mgr.a (mgr.14152) 167 : cluster 0 pgmap v110: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:57:01.483 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:01 smithi136 bash[22230]: cephadm 2024-03-30T13:56:59.567661+0000 mgr.a (mgr.14152) 168 : cephadm 1 Deploying daemon osd.1 on smithi026 2024-03-30T13:57:03.108 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:02 smithi026 bash[21443]: cluster 2024-03-30T13:57:01.505638+0000 mgr.a (mgr.14152) 169 : cluster 0 pgmap v111: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:57:03.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:02 smithi026 bash[21443]: audit 2024-03-30T13:57:01.791755+0000 mon.a (mon.0) 468 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:03.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:02 smithi026 bash[21443]: audit 2024-03-30T13:57:01.796066+0000 mon.a (mon.0) 469 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:03.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:02 smithi026 bash[21443]: cephadm 2024-03-30T13:57:01.797445+0000 mgr.a (mgr.14152) 170 : cephadm 1 Detected new or changed devices on smithi026 2024-03-30T13:57:03.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:02 smithi026 bash[21443]: audit 2024-03-30T13:57:01.801150+0000 mon.a (mon.0) 470 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:03.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:02 smithi050 bash[22081]: cluster 2024-03-30T13:57:01.505638+0000 mgr.a (mgr.14152) 169 : cluster 0 pgmap v111: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:57:03.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:02 smithi050 bash[22081]: audit 2024-03-30T13:57:01.791755+0000 mon.a (mon.0) 468 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:03.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:02 smithi050 bash[22081]: audit 2024-03-30T13:57:01.796066+0000 mon.a (mon.0) 469 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:03.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:02 smithi050 bash[22081]: cephadm 2024-03-30T13:57:01.797445+0000 mgr.a (mgr.14152) 170 : cephadm 1 Detected new or changed devices on smithi026 2024-03-30T13:57:03.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:02 smithi050 bash[22081]: audit 2024-03-30T13:57:01.801150+0000 mon.a (mon.0) 470 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:03.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:02 smithi136 bash[22230]: cluster 2024-03-30T13:57:01.505638+0000 mgr.a (mgr.14152) 169 : cluster 0 pgmap v111: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:57:03.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:02 smithi136 bash[22230]: audit 2024-03-30T13:57:01.791755+0000 mon.a (mon.0) 468 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:03.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:02 smithi136 bash[22230]: audit 2024-03-30T13:57:01.796066+0000 mon.a (mon.0) 469 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:03.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:02 smithi136 bash[22230]: cephadm 2024-03-30T13:57:01.797445+0000 mgr.a (mgr.14152) 170 : cephadm 1 Detected new or changed devices on smithi026 2024-03-30T13:57:03.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:02 smithi136 bash[22230]: audit 2024-03-30T13:57:01.801150+0000 mon.a (mon.0) 470 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:04.081 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:03 smithi026 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:57:04.081 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:57:03 smithi026 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:57:04.081 INFO:journalctl@ceph.osd.0.smithi026.stdout:Mar 30 13:57:03 smithi026 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:57:04.358 INFO:journalctl@ceph.osd.0.smithi026.stdout:Mar 30 13:57:04 smithi026 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:57:04.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:04 smithi026 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:57:04.359 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 13:57:04 smithi026 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:57:05.108 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:04 smithi026 bash[21443]: cluster 2024-03-30T13:57:03.506187+0000 mgr.a (mgr.14152) 171 : cluster 0 pgmap v112: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:57:05.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:04 smithi026 bash[21443]: audit 2024-03-30T13:57:04.232301+0000 mon.a (mon.0) 471 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:05.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:04 smithi026 bash[21443]: audit 2024-03-30T13:57:04.236693+0000 mon.a (mon.0) 472 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:05.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:04 smithi026 bash[21443]: audit 2024-03-30T13:57:04.246551+0000 mon.a (mon.0) 473 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:57:05.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:04 smithi026 bash[21443]: audit 2024-03-30T13:57:04.250714+0000 mon.a (mon.0) 474 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:57:05.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:04 smithi026 bash[21443]: audit 2024-03-30T13:57:04.252011+0000 mon.a (mon.0) 475 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:57:05.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:04 smithi026 bash[21443]: audit 2024-03-30T13:57:04.258267+0000 mon.a (mon.0) 476 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:05.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:04 smithi050 bash[22081]: cluster 2024-03-30T13:57:03.506187+0000 mgr.a (mgr.14152) 171 : cluster 0 pgmap v112: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:57:05.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:04 smithi050 bash[22081]: audit 2024-03-30T13:57:04.232301+0000 mon.a (mon.0) 471 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:05.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:04 smithi050 bash[22081]: audit 2024-03-30T13:57:04.236693+0000 mon.a (mon.0) 472 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:05.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:04 smithi050 bash[22081]: audit 2024-03-30T13:57:04.246551+0000 mon.a (mon.0) 473 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:57:05.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:04 smithi050 bash[22081]: audit 2024-03-30T13:57:04.250714+0000 mon.a (mon.0) 474 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:57:05.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:04 smithi050 bash[22081]: audit 2024-03-30T13:57:04.252011+0000 mon.a (mon.0) 475 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:57:05.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:04 smithi050 bash[22081]: audit 2024-03-30T13:57:04.258267+0000 mon.a (mon.0) 476 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:05.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:04 smithi136 bash[22230]: cluster 2024-03-30T13:57:03.506187+0000 mgr.a (mgr.14152) 171 : cluster 0 pgmap v112: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:57:05.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:04 smithi136 bash[22230]: audit 2024-03-30T13:57:04.232301+0000 mon.a (mon.0) 471 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:05.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:04 smithi136 bash[22230]: audit 2024-03-30T13:57:04.236693+0000 mon.a (mon.0) 472 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:05.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:04 smithi136 bash[22230]: audit 2024-03-30T13:57:04.246551+0000 mon.a (mon.0) 473 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:57:05.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:04 smithi136 bash[22230]: audit 2024-03-30T13:57:04.250714+0000 mon.a (mon.0) 474 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:57:05.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:04 smithi136 bash[22230]: audit 2024-03-30T13:57:04.252011+0000 mon.a (mon.0) 475 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:57:05.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:04 smithi136 bash[22230]: audit 2024-03-30T13:57:04.258267+0000 mon.a (mon.0) 476 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:06.858 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:06 smithi026 bash[21443]: cluster 2024-03-30T13:57:05.506507+0000 mgr.a (mgr.14152) 172 : cluster 0 pgmap v113: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:57:07.156 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:06 smithi050 bash[22081]: cluster 2024-03-30T13:57:05.506507+0000 mgr.a (mgr.14152) 172 : cluster 0 pgmap v113: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:57:07.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:06 smithi136 bash[22230]: cluster 2024-03-30T13:57:05.506507+0000 mgr.a (mgr.14152) 172 : cluster 0 pgmap v113: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:57:09.108 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:08 smithi026 bash[21443]: cluster 2024-03-30T13:57:07.506921+0000 mgr.a (mgr.14152) 173 : cluster 0 pgmap v114: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:57:09.156 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:08 smithi050 bash[22081]: cluster 2024-03-30T13:57:07.506921+0000 mgr.a (mgr.14152) 173 : cluster 0 pgmap v114: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:57:09.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:08 smithi136 bash[22230]: cluster 2024-03-30T13:57:07.506921+0000 mgr.a (mgr.14152) 173 : cluster 0 pgmap v114: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:57:11.108 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:10 smithi026 bash[21443]: cluster 2024-03-30T13:57:09.507384+0000 mgr.a (mgr.14152) 174 : cluster 0 pgmap v115: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:57:11.156 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:10 smithi050 bash[22081]: cluster 2024-03-30T13:57:09.507384+0000 mgr.a (mgr.14152) 174 : cluster 0 pgmap v115: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:57:11.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:10 smithi136 bash[22230]: cluster 2024-03-30T13:57:09.507384+0000 mgr.a (mgr.14152) 174 : cluster 0 pgmap v115: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:57:11.858 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:11 smithi026 bash[21443]: audit 2024-03-30T13:57:10.848181+0000 mon.a (mon.0) 477 : audit 1 from='osd.1 [v2:172.21.15.26:6810/257573934,v1:172.21.15.26:6811/257573934]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-03-30T13:57:12.156 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:11 smithi050 bash[22081]: audit 2024-03-30T13:57:10.848181+0000 mon.a (mon.0) 477 : audit 1 from='osd.1 [v2:172.21.15.26:6810/257573934,v1:172.21.15.26:6811/257573934]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-03-30T13:57:12.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:11 smithi136 bash[22230]: audit 2024-03-30T13:57:10.848181+0000 mon.a (mon.0) 477 : audit 1 from='osd.1 [v2:172.21.15.26:6810/257573934,v1:172.21.15.26:6811/257573934]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-03-30T13:57:12.876 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:12 smithi026 bash[21443]: cluster 2024-03-30T13:57:11.507923+0000 mgr.a (mgr.14152) 175 : cluster 0 pgmap v116: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:57:12.876 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:12 smithi026 bash[21443]: audit 2024-03-30T13:57:11.818554+0000 mon.a (mon.0) 478 : audit 1 from='osd.1 [v2:172.21.15.26:6810/257573934,v1:172.21.15.26:6811/257573934]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-03-30T13:57:12.876 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:12 smithi026 bash[21443]: cluster 2024-03-30T13:57:11.824320+0000 mon.a (mon.0) 479 : cluster 0 osdmap e11: 2 total, 1 up, 2 in 2024-03-30T13:57:12.876 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:12 smithi026 bash[21443]: audit 2024-03-30T13:57:11.825025+0000 mon.a (mon.0) 480 : audit 1 from='osd.1 [v2:172.21.15.26:6810/257573934,v1:172.21.15.26:6811/257573934]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi026", "root=default"]}]: dispatch 2024-03-30T13:57:12.876 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:12 smithi026 bash[21443]: audit 2024-03-30T13:57:11.825737+0000 mon.a (mon.0) 481 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-30T13:57:12.876 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:12 smithi026 bash[21443]: audit 2024-03-30T13:57:12.780820+0000 mon.a (mon.0) 482 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:12.876 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:12 smithi026 bash[21443]: audit 2024-03-30T13:57:12.785534+0000 mon.a (mon.0) 483 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:12.876 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:12 smithi026 bash[21443]: audit 2024-03-30T13:57:12.791096+0000 mon.a (mon.0) 484 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:13.156 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:12 smithi050 bash[22081]: cluster 2024-03-30T13:57:11.507923+0000 mgr.a (mgr.14152) 175 : cluster 0 pgmap v116: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:57:13.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:12 smithi050 bash[22081]: audit 2024-03-30T13:57:11.818554+0000 mon.a (mon.0) 478 : audit 1 from='osd.1 [v2:172.21.15.26:6810/257573934,v1:172.21.15.26:6811/257573934]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-03-30T13:57:13.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:12 smithi050 bash[22081]: cluster 2024-03-30T13:57:11.824320+0000 mon.a (mon.0) 479 : cluster 0 osdmap e11: 2 total, 1 up, 2 in 2024-03-30T13:57:13.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:12 smithi050 bash[22081]: audit 2024-03-30T13:57:11.825025+0000 mon.a (mon.0) 480 : audit 1 from='osd.1 [v2:172.21.15.26:6810/257573934,v1:172.21.15.26:6811/257573934]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi026", "root=default"]}]: dispatch 2024-03-30T13:57:13.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:12 smithi050 bash[22081]: audit 2024-03-30T13:57:11.825737+0000 mon.a (mon.0) 481 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-30T13:57:13.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:12 smithi050 bash[22081]: audit 2024-03-30T13:57:12.780820+0000 mon.a (mon.0) 482 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:13.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:12 smithi050 bash[22081]: audit 2024-03-30T13:57:12.785534+0000 mon.a (mon.0) 483 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:13.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:12 smithi050 bash[22081]: audit 2024-03-30T13:57:12.791096+0000 mon.a (mon.0) 484 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:13.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:12 smithi136 bash[22230]: cluster 2024-03-30T13:57:11.507923+0000 mgr.a (mgr.14152) 175 : cluster 0 pgmap v116: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:57:13.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:12 smithi136 bash[22230]: audit 2024-03-30T13:57:11.818554+0000 mon.a (mon.0) 478 : audit 1 from='osd.1 [v2:172.21.15.26:6810/257573934,v1:172.21.15.26:6811/257573934]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-03-30T13:57:13.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:12 smithi136 bash[22230]: cluster 2024-03-30T13:57:11.824320+0000 mon.a (mon.0) 479 : cluster 0 osdmap e11: 2 total, 1 up, 2 in 2024-03-30T13:57:13.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:12 smithi136 bash[22230]: audit 2024-03-30T13:57:11.825025+0000 mon.a (mon.0) 480 : audit 1 from='osd.1 [v2:172.21.15.26:6810/257573934,v1:172.21.15.26:6811/257573934]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi026", "root=default"]}]: dispatch 2024-03-30T13:57:13.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:12 smithi136 bash[22230]: audit 2024-03-30T13:57:11.825737+0000 mon.a (mon.0) 481 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-30T13:57:13.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:12 smithi136 bash[22230]: audit 2024-03-30T13:57:12.780820+0000 mon.a (mon.0) 482 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:13.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:12 smithi136 bash[22230]: audit 2024-03-30T13:57:12.785534+0000 mon.a (mon.0) 483 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:13.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:12 smithi136 bash[22230]: audit 2024-03-30T13:57:12.791096+0000 mon.a (mon.0) 484 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:14.031 INFO:teuthology.orchestra.run.smithi026.stdout:Created osd(s) 1 on host 'smithi026' 2024-03-30T13:57:14.082 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:13 smithi026 bash[21443]: audit 2024-03-30T13:57:12.819955+0000 mon.a (mon.0) 485 : audit 1 from='osd.1 [v2:172.21.15.26:6810/257573934,v1:172.21.15.26:6811/257573934]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi026", "root=default"]}]': finished 2024-03-30T13:57:14.082 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:13 smithi026 bash[21443]: cluster 2024-03-30T13:57:12.822406+0000 mon.a (mon.0) 486 : cluster 0 osdmap e12: 2 total, 1 up, 2 in 2024-03-30T13:57:14.082 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:13 smithi026 bash[21443]: audit 2024-03-30T13:57:12.823087+0000 mon.a (mon.0) 487 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-30T13:57:14.082 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:13 smithi026 bash[21443]: audit 2024-03-30T13:57:12.826259+0000 mon.a (mon.0) 488 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-30T13:57:14.082 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:13 smithi026 bash[21443]: audit 2024-03-30T13:57:13.827380+0000 mon.a (mon.0) 489 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-30T13:57:14.104 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:13 smithi050 bash[22081]: audit 2024-03-30T13:57:12.819955+0000 mon.a (mon.0) 485 : audit 1 from='osd.1 [v2:172.21.15.26:6810/257573934,v1:172.21.15.26:6811/257573934]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi026", "root=default"]}]': finished 2024-03-30T13:57:14.105 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:13 smithi050 bash[22081]: cluster 2024-03-30T13:57:12.822406+0000 mon.a (mon.0) 486 : cluster 0 osdmap e12: 2 total, 1 up, 2 in 2024-03-30T13:57:14.105 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:13 smithi050 bash[22081]: audit 2024-03-30T13:57:12.823087+0000 mon.a (mon.0) 487 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-30T13:57:14.105 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:13 smithi050 bash[22081]: audit 2024-03-30T13:57:12.826259+0000 mon.a (mon.0) 488 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-30T13:57:14.105 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:13 smithi050 bash[22081]: audit 2024-03-30T13:57:13.827380+0000 mon.a (mon.0) 489 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-30T13:57:14.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:13 smithi136 bash[22230]: audit 2024-03-30T13:57:12.819955+0000 mon.a (mon.0) 485 : audit 1 from='osd.1 [v2:172.21.15.26:6810/257573934,v1:172.21.15.26:6811/257573934]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi026", "root=default"]}]': finished 2024-03-30T13:57:14.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:13 smithi136 bash[22230]: cluster 2024-03-30T13:57:12.822406+0000 mon.a (mon.0) 486 : cluster 0 osdmap e12: 2 total, 1 up, 2 in 2024-03-30T13:57:14.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:13 smithi136 bash[22230]: audit 2024-03-30T13:57:12.823087+0000 mon.a (mon.0) 487 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-30T13:57:14.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:13 smithi136 bash[22230]: audit 2024-03-30T13:57:12.826259+0000 mon.a (mon.0) 488 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-30T13:57:14.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:13 smithi136 bash[22230]: audit 2024-03-30T13:57:13.827380+0000 mon.a (mon.0) 489 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-30T13:57:15.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:14 smithi026 bash[21443]: cluster 2024-03-30T13:57:11.868818+0000 osd.1 (osd.1) 1 : cluster 0 purged_snaps scrub starts 2024-03-30T13:57:15.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:14 smithi026 bash[21443]: cluster 2024-03-30T13:57:11.869013+0000 osd.1 (osd.1) 2 : cluster 0 purged_snaps scrub ok 2024-03-30T13:57:15.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:14 smithi026 bash[21443]: cluster 2024-03-30T13:57:13.508458+0000 mgr.a (mgr.14152) 176 : cluster 0 pgmap v119: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:57:15.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:14 smithi026 bash[21443]: cluster 2024-03-30T13:57:13.843158+0000 mon.a (mon.0) 490 : cluster 1 osd.1 [v2:172.21.15.26:6810/257573934,v1:172.21.15.26:6811/257573934] boot 2024-03-30T13:57:15.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:14 smithi026 bash[21443]: cluster 2024-03-30T13:57:13.843250+0000 mon.a (mon.0) 491 : cluster 0 osdmap e13: 2 total, 2 up, 2 in 2024-03-30T13:57:15.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:14 smithi026 bash[21443]: audit 2024-03-30T13:57:13.843875+0000 mon.a (mon.0) 492 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-30T13:57:15.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:14 smithi026 bash[21443]: audit 2024-03-30T13:57:13.981706+0000 mon.a (mon.0) 493 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:57:15.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:14 smithi026 bash[21443]: audit 2024-03-30T13:57:13.988699+0000 mon.a (mon.0) 494 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:15.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:14 smithi026 bash[21443]: audit 2024-03-30T13:57:13.989459+0000 mon.a (mon.0) 495 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-03-30T13:57:15.109 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:14 smithi026 bash[21443]: audit 2024-03-30T13:57:13.993567+0000 mon.a (mon.0) 496 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-03-30T13:57:15.110 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:14 smithi026 bash[21443]: audit 2024-03-30T13:57:13.995962+0000 mon.a (mon.0) 497 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:15.110 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:14 smithi026 bash[21443]: cephadm 2024-03-30T13:57:13.997412+0000 mgr.a (mgr.14152) 177 : cephadm 1 Adjusting osd_memory_target on smithi026 to 8122M 2024-03-30T13:57:15.110 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:14 smithi026 bash[21443]: audit 2024-03-30T13:57:14.001474+0000 mon.a (mon.0) 498 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:15.110 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:14 smithi026 bash[21443]: audit 2024-03-30T13:57:14.004924+0000 mon.a (mon.0) 499 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:57:15.110 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:14 smithi026 bash[21443]: audit 2024-03-30T13:57:14.006656+0000 mon.a (mon.0) 500 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:57:15.110 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:14 smithi026 bash[21443]: audit 2024-03-30T13:57:14.013636+0000 mon.a (mon.0) 501 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:15.156 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:14 smithi050 bash[22081]: cluster 2024-03-30T13:57:11.868818+0000 osd.1 (osd.1) 1 : cluster 0 purged_snaps scrub starts 2024-03-30T13:57:15.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:14 smithi050 bash[22081]: cluster 2024-03-30T13:57:11.869013+0000 osd.1 (osd.1) 2 : cluster 0 purged_snaps scrub ok 2024-03-30T13:57:15.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:14 smithi050 bash[22081]: cluster 2024-03-30T13:57:13.508458+0000 mgr.a (mgr.14152) 176 : cluster 0 pgmap v119: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:57:15.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:14 smithi050 bash[22081]: cluster 2024-03-30T13:57:13.843158+0000 mon.a (mon.0) 490 : cluster 1 osd.1 [v2:172.21.15.26:6810/257573934,v1:172.21.15.26:6811/257573934] boot 2024-03-30T13:57:15.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:14 smithi050 bash[22081]: cluster 2024-03-30T13:57:13.843250+0000 mon.a (mon.0) 491 : cluster 0 osdmap e13: 2 total, 2 up, 2 in 2024-03-30T13:57:15.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:14 smithi050 bash[22081]: audit 2024-03-30T13:57:13.843875+0000 mon.a (mon.0) 492 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-30T13:57:15.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:14 smithi050 bash[22081]: audit 2024-03-30T13:57:13.981706+0000 mon.a (mon.0) 493 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:57:15.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:14 smithi050 bash[22081]: audit 2024-03-30T13:57:13.988699+0000 mon.a (mon.0) 494 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:15.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:14 smithi050 bash[22081]: audit 2024-03-30T13:57:13.989459+0000 mon.a (mon.0) 495 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-03-30T13:57:15.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:14 smithi050 bash[22081]: audit 2024-03-30T13:57:13.993567+0000 mon.a (mon.0) 496 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-03-30T13:57:15.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:14 smithi050 bash[22081]: audit 2024-03-30T13:57:13.995962+0000 mon.a (mon.0) 497 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:15.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:14 smithi050 bash[22081]: cephadm 2024-03-30T13:57:13.997412+0000 mgr.a (mgr.14152) 177 : cephadm 1 Adjusting osd_memory_target on smithi026 to 8122M 2024-03-30T13:57:15.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:14 smithi050 bash[22081]: audit 2024-03-30T13:57:14.001474+0000 mon.a (mon.0) 498 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:15.157 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:14 smithi050 bash[22081]: audit 2024-03-30T13:57:14.004924+0000 mon.a (mon.0) 499 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:57:15.158 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:14 smithi050 bash[22081]: audit 2024-03-30T13:57:14.006656+0000 mon.a (mon.0) 500 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:57:15.158 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:14 smithi050 bash[22081]: audit 2024-03-30T13:57:14.013636+0000 mon.a (mon.0) 501 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:15.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:14 smithi136 bash[22230]: cluster 2024-03-30T13:57:11.868818+0000 osd.1 (osd.1) 1 : cluster 0 purged_snaps scrub starts 2024-03-30T13:57:15.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:14 smithi136 bash[22230]: cluster 2024-03-30T13:57:11.869013+0000 osd.1 (osd.1) 2 : cluster 0 purged_snaps scrub ok 2024-03-30T13:57:15.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:14 smithi136 bash[22230]: cluster 2024-03-30T13:57:13.508458+0000 mgr.a (mgr.14152) 176 : cluster 0 pgmap v119: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-03-30T13:57:15.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:14 smithi136 bash[22230]: cluster 2024-03-30T13:57:13.843158+0000 mon.a (mon.0) 490 : cluster 1 osd.1 [v2:172.21.15.26:6810/257573934,v1:172.21.15.26:6811/257573934] boot 2024-03-30T13:57:15.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:14 smithi136 bash[22230]: cluster 2024-03-30T13:57:13.843250+0000 mon.a (mon.0) 491 : cluster 0 osdmap e13: 2 total, 2 up, 2 in 2024-03-30T13:57:15.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:14 smithi136 bash[22230]: audit 2024-03-30T13:57:13.843875+0000 mon.a (mon.0) 492 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-30T13:57:15.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:14 smithi136 bash[22230]: audit 2024-03-30T13:57:13.981706+0000 mon.a (mon.0) 493 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:57:15.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:14 smithi136 bash[22230]: audit 2024-03-30T13:57:13.988699+0000 mon.a (mon.0) 494 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:15.233 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:14 smithi136 bash[22230]: audit 2024-03-30T13:57:13.989459+0000 mon.a (mon.0) 495 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-03-30T13:57:15.234 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:14 smithi136 bash[22230]: audit 2024-03-30T13:57:13.993567+0000 mon.a (mon.0) 496 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-03-30T13:57:15.234 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:14 smithi136 bash[22230]: audit 2024-03-30T13:57:13.995962+0000 mon.a (mon.0) 497 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:15.234 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:14 smithi136 bash[22230]: cephadm 2024-03-30T13:57:13.997412+0000 mgr.a (mgr.14152) 177 : cephadm 1 Adjusting osd_memory_target on smithi026 to 8122M 2024-03-30T13:57:15.234 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:14 smithi136 bash[22230]: audit 2024-03-30T13:57:14.001474+0000 mon.a (mon.0) 498 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:15.234 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:14 smithi136 bash[22230]: audit 2024-03-30T13:57:14.004924+0000 mon.a (mon.0) 499 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:57:15.234 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:14 smithi136 bash[22230]: audit 2024-03-30T13:57:14.006656+0000 mon.a (mon.0) 500 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:57:15.234 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:14 smithi136 bash[22230]: audit 2024-03-30T13:57:14.013636+0000 mon.a (mon.0) 501 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:15.246 DEBUG:teuthology.orchestra.run.smithi026:osd.1> sudo journalctl -f -n 0 -u ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@osd.1.service 2024-03-30T13:57:15.248 INFO:tasks.cephadm:Deploying osd.2 on smithi050 with /dev/vg_nvme/lv_4... 2024-03-30T13:57:15.249 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-03-30T13:57:15.906 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:15 smithi050 bash[22081]: cluster 2024-03-30T13:57:14.854784+0000 mon.a (mon.0) 502 : cluster 0 osdmap e14: 2 total, 2 up, 2 in 2024-03-30T13:57:16.108 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:15 smithi026 bash[21443]: cluster 2024-03-30T13:57:14.854784+0000 mon.a (mon.0) 502 : cluster 0 osdmap e14: 2 total, 2 up, 2 in 2024-03-30T13:57:16.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:15 smithi136 bash[22230]: cluster 2024-03-30T13:57:14.854784+0000 mon.a (mon.0) 502 : cluster 0 osdmap e14: 2 total, 2 up, 2 in 2024-03-30T13:57:17.108 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:16 smithi026 bash[21443]: cluster 2024-03-30T13:57:15.508810+0000 mgr.a (mgr.14152) 178 : cluster 0 pgmap v122: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:17.156 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:16 smithi050 bash[22081]: cluster 2024-03-30T13:57:15.508810+0000 mgr.a (mgr.14152) 178 : cluster 0 pgmap v122: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:17.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:16 smithi136 bash[22230]: cluster 2024-03-30T13:57:15.508810+0000 mgr.a (mgr.14152) 178 : cluster 0 pgmap v122: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:18.482 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:18 smithi136 bash[22230]: audit 2024-03-30T13:57:17.201733+0000 mon.a (mon.0) 503 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:18.483 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:18 smithi136 bash[22230]: audit 2024-03-30T13:57:17.210132+0000 mon.a (mon.0) 504 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:18.483 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:18 smithi136 bash[22230]: audit 2024-03-30T13:57:17.220562+0000 mon.a (mon.0) 505 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:18.483 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:18 smithi136 bash[22230]: cluster 2024-03-30T13:57:17.509227+0000 mgr.a (mgr.14152) 179 : cluster 0 pgmap v123: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:18.608 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:18 smithi026 bash[21443]: audit 2024-03-30T13:57:17.201733+0000 mon.a (mon.0) 503 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:18.608 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:18 smithi026 bash[21443]: audit 2024-03-30T13:57:17.210132+0000 mon.a (mon.0) 504 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:18.608 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:18 smithi026 bash[21443]: audit 2024-03-30T13:57:17.220562+0000 mon.a (mon.0) 505 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:18.608 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:18 smithi026 bash[21443]: cluster 2024-03-30T13:57:17.509227+0000 mgr.a (mgr.14152) 179 : cluster 0 pgmap v123: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:18.658 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:18 smithi050 bash[22081]: audit 2024-03-30T13:57:17.201733+0000 mon.a (mon.0) 503 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:18.658 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:18 smithi050 bash[22081]: audit 2024-03-30T13:57:17.210132+0000 mon.a (mon.0) 504 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:18.658 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:18 smithi050 bash[22081]: audit 2024-03-30T13:57:17.220562+0000 mon.a (mon.0) 505 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:18.658 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:18 smithi050 bash[22081]: cluster 2024-03-30T13:57:17.509227+0000 mgr.a (mgr.14152) 179 : cluster 0 pgmap v123: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:20.377 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.b/config 2024-03-30T13:57:20.656 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:20 smithi050 bash[22081]: cluster 2024-03-30T13:57:19.509677+0000 mgr.a (mgr.14152) 180 : cluster 0 pgmap v124: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:20.858 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:20 smithi026 bash[21443]: cluster 2024-03-30T13:57:19.509677+0000 mgr.a (mgr.14152) 180 : cluster 0 pgmap v124: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:20.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:20 smithi136 bash[22230]: cluster 2024-03-30T13:57:19.509677+0000 mgr.a (mgr.14152) 180 : cluster 0 pgmap v124: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:23.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:23 smithi026 bash[21443]: cluster 2024-03-30T13:57:21.510140+0000 mgr.a (mgr.14152) 181 : cluster 0 pgmap v125: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:23.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:23 smithi026 bash[21443]: audit 2024-03-30T13:57:22.016095+0000 mon.a (mon.0) 506 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:23.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:23 smithi026 bash[21443]: audit 2024-03-30T13:57:22.024573+0000 mon.a (mon.0) 507 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:23.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:23 smithi026 bash[21443]: audit 2024-03-30T13:57:22.034174+0000 mon.a (mon.0) 508 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:23.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:23 smithi026 bash[21443]: audit 2024-03-30T13:57:22.048419+0000 mon.a (mon.0) 509 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:57:23.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:23 smithi026 bash[21443]: audit 2024-03-30T13:57:22.054359+0000 mon.a (mon.0) 510 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:57:23.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:23 smithi026 bash[21443]: audit 2024-03-30T13:57:22.056340+0000 mon.a (mon.0) 511 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:57:23.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:23 smithi026 bash[21443]: cluster 2024-03-30T13:57:22.060228+0000 mgr.a (mgr.14152) 182 : cluster 0 pgmap v126: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:23.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:23 smithi026 bash[21443]: audit 2024-03-30T13:57:22.067349+0000 mon.a (mon.0) 512 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:23.362 INFO:teuthology.orchestra.run.smithi050.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-03-30T13:57:23.362 INFO:teuthology.orchestra.run.smithi050.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-03-30T13:57:23.362 INFO:teuthology.orchestra.run.smithi050.stderr: stderr: 10+0 records in 2024-03-30T13:57:23.362 INFO:teuthology.orchestra.run.smithi050.stderr:10+0 records out 2024-03-30T13:57:23.362 INFO:teuthology.orchestra.run.smithi050.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0109195 s, 960 MB/s 2024-03-30T13:57:23.362 INFO:teuthology.orchestra.run.smithi050.stderr:--> Zapping successful for: 2024-03-30T13:57:23.391 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:23 smithi050 bash[22081]: cluster 2024-03-30T13:57:21.510140+0000 mgr.a (mgr.14152) 181 : cluster 0 pgmap v125: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:23.391 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:23 smithi050 bash[22081]: audit 2024-03-30T13:57:22.016095+0000 mon.a (mon.0) 506 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:23.391 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:23 smithi050 bash[22081]: audit 2024-03-30T13:57:22.024573+0000 mon.a (mon.0) 507 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:23.391 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:23 smithi050 bash[22081]: audit 2024-03-30T13:57:22.034174+0000 mon.a (mon.0) 508 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:23.391 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:23 smithi050 bash[22081]: audit 2024-03-30T13:57:22.048419+0000 mon.a (mon.0) 509 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:57:23.391 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:23 smithi050 bash[22081]: audit 2024-03-30T13:57:22.054359+0000 mon.a (mon.0) 510 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:57:23.391 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:23 smithi050 bash[22081]: audit 2024-03-30T13:57:22.056340+0000 mon.a (mon.0) 511 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:57:23.391 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:23 smithi050 bash[22081]: cluster 2024-03-30T13:57:22.060228+0000 mgr.a (mgr.14152) 182 : cluster 0 pgmap v126: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:23.391 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:23 smithi050 bash[22081]: audit 2024-03-30T13:57:22.067349+0000 mon.a (mon.0) 512 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:23.482 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:23 smithi136 bash[22230]: cluster 2024-03-30T13:57:21.510140+0000 mgr.a (mgr.14152) 181 : cluster 0 pgmap v125: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:23.483 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:23 smithi136 bash[22230]: audit 2024-03-30T13:57:22.016095+0000 mon.a (mon.0) 506 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:23.483 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:23 smithi136 bash[22230]: audit 2024-03-30T13:57:22.024573+0000 mon.a (mon.0) 507 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:23.483 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:23 smithi136 bash[22230]: audit 2024-03-30T13:57:22.034174+0000 mon.a (mon.0) 508 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:23.483 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:23 smithi136 bash[22230]: audit 2024-03-30T13:57:22.048419+0000 mon.a (mon.0) 509 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:57:23.483 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:23 smithi136 bash[22230]: audit 2024-03-30T13:57:22.054359+0000 mon.a (mon.0) 510 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:57:23.483 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:23 smithi136 bash[22230]: audit 2024-03-30T13:57:22.056340+0000 mon.a (mon.0) 511 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:57:23.483 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:23 smithi136 bash[22230]: cluster 2024-03-30T13:57:22.060228+0000 mgr.a (mgr.14152) 182 : cluster 0 pgmap v126: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:23.483 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:23 smithi136 bash[22230]: audit 2024-03-30T13:57:22.067349+0000 mon.a (mon.0) 512 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:24.044 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph orch daemon add osd smithi050:vg_nvme/lv_4 2024-03-30T13:57:24.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:24 smithi026 bash[21443]: cluster 2024-03-30T13:57:23.030473+0000 mon.a (mon.0) 513 : cluster 3 Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-03-30T13:57:24.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:24 smithi026 bash[21443]: audit 2024-03-30T13:57:23.142101+0000 mon.a (mon.0) 514 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:24.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:24 smithi026 bash[21443]: audit 2024-03-30T13:57:23.148974+0000 mon.a (mon.0) 515 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:24.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:24 smithi026 bash[21443]: audit 2024-03-30T13:57:23.157819+0000 mon.a (mon.0) 516 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:24.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:24 smithi026 bash[21443]: audit 2024-03-30T13:57:23.192378+0000 mon.a (mon.0) 517 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:57:24.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:24 smithi026 bash[21443]: audit 2024-03-30T13:57:23.197362+0000 mon.a (mon.0) 518 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:57:24.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:24 smithi026 bash[21443]: audit 2024-03-30T13:57:23.198990+0000 mon.a (mon.0) 519 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:57:24.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:24 smithi026 bash[21443]: audit 2024-03-30T13:57:23.208696+0000 mon.a (mon.0) 520 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:24.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:24 smithi050 bash[22081]: cluster 2024-03-30T13:57:23.030473+0000 mon.a (mon.0) 513 : cluster 3 Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-03-30T13:57:24.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:24 smithi050 bash[22081]: audit 2024-03-30T13:57:23.142101+0000 mon.a (mon.0) 514 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:24.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:24 smithi050 bash[22081]: audit 2024-03-30T13:57:23.148974+0000 mon.a (mon.0) 515 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:24.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:24 smithi050 bash[22081]: audit 2024-03-30T13:57:23.157819+0000 mon.a (mon.0) 516 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:24.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:24 smithi050 bash[22081]: audit 2024-03-30T13:57:23.192378+0000 mon.a (mon.0) 517 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:57:24.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:24 smithi050 bash[22081]: audit 2024-03-30T13:57:23.197362+0000 mon.a (mon.0) 518 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:57:24.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:24 smithi050 bash[22081]: audit 2024-03-30T13:57:23.198990+0000 mon.a (mon.0) 519 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:57:24.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:24 smithi050 bash[22081]: audit 2024-03-30T13:57:23.208696+0000 mon.a (mon.0) 520 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:24.482 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:24 smithi136 bash[22230]: cluster 2024-03-30T13:57:23.030473+0000 mon.a (mon.0) 513 : cluster 3 Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-03-30T13:57:24.483 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:24 smithi136 bash[22230]: audit 2024-03-30T13:57:23.142101+0000 mon.a (mon.0) 514 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:24.483 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:24 smithi136 bash[22230]: audit 2024-03-30T13:57:23.148974+0000 mon.a (mon.0) 515 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:24.483 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:24 smithi136 bash[22230]: audit 2024-03-30T13:57:23.157819+0000 mon.a (mon.0) 516 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:24.483 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:24 smithi136 bash[22230]: audit 2024-03-30T13:57:23.192378+0000 mon.a (mon.0) 517 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:57:24.483 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:24 smithi136 bash[22230]: audit 2024-03-30T13:57:23.197362+0000 mon.a (mon.0) 518 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:57:24.483 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:24 smithi136 bash[22230]: audit 2024-03-30T13:57:23.198990+0000 mon.a (mon.0) 519 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:57:24.483 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:24 smithi136 bash[22230]: audit 2024-03-30T13:57:23.208696+0000 mon.a (mon.0) 520 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:25.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:25 smithi026 bash[21443]: cluster 2024-03-30T13:57:23.202196+0000 mgr.a (mgr.14152) 183 : cluster 0 pgmap v127: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:25.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:25 smithi026 bash[21443]: cluster 2024-03-30T13:57:24.155163+0000 mon.a (mon.0) 521 : cluster 1 Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-03-30T13:57:25.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:25 smithi026 bash[21443]: cluster 2024-03-30T13:57:24.155220+0000 mon.a (mon.0) 522 : cluster 1 Cluster is now healthy 2024-03-30T13:57:25.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:25 smithi050 bash[22081]: cluster 2024-03-30T13:57:23.202196+0000 mgr.a (mgr.14152) 183 : cluster 0 pgmap v127: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:25.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:25 smithi050 bash[22081]: cluster 2024-03-30T13:57:24.155163+0000 mon.a (mon.0) 521 : cluster 1 Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-03-30T13:57:25.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:25 smithi050 bash[22081]: cluster 2024-03-30T13:57:24.155220+0000 mon.a (mon.0) 522 : cluster 1 Cluster is now healthy 2024-03-30T13:57:25.482 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:25 smithi136 bash[22230]: cluster 2024-03-30T13:57:23.202196+0000 mgr.a (mgr.14152) 183 : cluster 0 pgmap v127: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:25.482 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:25 smithi136 bash[22230]: cluster 2024-03-30T13:57:24.155163+0000 mon.a (mon.0) 521 : cluster 1 Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-03-30T13:57:25.482 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:25 smithi136 bash[22230]: cluster 2024-03-30T13:57:24.155220+0000 mon.a (mon.0) 522 : cluster 1 Cluster is now healthy 2024-03-30T13:57:27.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:27 smithi026 bash[21443]: cluster 2024-03-30T13:57:25.202673+0000 mgr.a (mgr.14152) 184 : cluster 0 pgmap v128: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:27.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:27 smithi050 bash[22081]: cluster 2024-03-30T13:57:25.202673+0000 mgr.a (mgr.14152) 184 : cluster 0 pgmap v128: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:27.482 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:27 smithi136 bash[22230]: cluster 2024-03-30T13:57:25.202673+0000 mgr.a (mgr.14152) 184 : cluster 0 pgmap v128: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:28.758 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.b/config 2024-03-30T13:57:29.156 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:29 smithi050 bash[22081]: cluster 2024-03-30T13:57:27.203131+0000 mgr.a (mgr.14152) 185 : cluster 0 pgmap v129: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:29.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:29 smithi026 bash[21443]: cluster 2024-03-30T13:57:27.203131+0000 mgr.a (mgr.14152) 185 : cluster 0 pgmap v129: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:29.482 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:29 smithi136 bash[22230]: cluster 2024-03-30T13:57:27.203131+0000 mgr.a (mgr.14152) 185 : cluster 0 pgmap v129: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:31.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:31 smithi136 bash[22230]: cluster 2024-03-30T13:57:29.203596+0000 mgr.a (mgr.14152) 186 : cluster 0 pgmap v130: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:31.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:31 smithi026 bash[21443]: cluster 2024-03-30T13:57:29.203596+0000 mgr.a (mgr.14152) 186 : cluster 0 pgmap v130: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:31.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:31 smithi050 bash[22081]: cluster 2024-03-30T13:57:29.203596+0000 mgr.a (mgr.14152) 186 : cluster 0 pgmap v130: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:32.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:32 smithi026 bash[21443]: audit 2024-03-30T13:57:31.337525+0000 mon.a (mon.0) 523 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-30T13:57:32.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:32 smithi026 bash[21443]: audit 2024-03-30T13:57:31.344213+0000 mon.a (mon.0) 524 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-30T13:57:32.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:32 smithi026 bash[21443]: audit 2024-03-30T13:57:31.346099+0000 mon.a (mon.0) 525 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:57:32.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:32 smithi050 bash[22081]: audit 2024-03-30T13:57:31.337525+0000 mon.a (mon.0) 523 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-30T13:57:32.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:32 smithi050 bash[22081]: audit 2024-03-30T13:57:31.344213+0000 mon.a (mon.0) 524 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-30T13:57:32.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:32 smithi050 bash[22081]: audit 2024-03-30T13:57:31.346099+0000 mon.a (mon.0) 525 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:57:32.482 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:32 smithi136 bash[22230]: audit 2024-03-30T13:57:31.337525+0000 mon.a (mon.0) 523 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-30T13:57:32.482 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:32 smithi136 bash[22230]: audit 2024-03-30T13:57:31.344213+0000 mon.a (mon.0) 524 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-30T13:57:32.482 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:32 smithi136 bash[22230]: audit 2024-03-30T13:57:31.346099+0000 mon.a (mon.0) 525 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:57:33.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:33 smithi026 bash[21443]: cluster 2024-03-30T13:57:31.204052+0000 mgr.a (mgr.14152) 187 : cluster 0 pgmap v131: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:33.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:33 smithi026 bash[21443]: audit 2024-03-30T13:57:31.329861+0000 mgr.a (mgr.14152) 188 : audit 0 from='client.24158 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi050:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:57:33.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:33 smithi026 bash[21443]: audit 2024-03-30T13:57:32.994768+0000 mon.a (mon.0) 526 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:33.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:33 smithi026 bash[21443]: audit 2024-03-30T13:57:33.002802+0000 mon.a (mon.0) 527 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:33.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:33 smithi026 bash[21443]: audit 2024-03-30T13:57:33.012854+0000 mon.a (mon.0) 528 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:33.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:33 smithi050 bash[22081]: cluster 2024-03-30T13:57:31.204052+0000 mgr.a (mgr.14152) 187 : cluster 0 pgmap v131: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:33.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:33 smithi050 bash[22081]: audit 2024-03-30T13:57:31.329861+0000 mgr.a (mgr.14152) 188 : audit 0 from='client.24158 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi050:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:57:33.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:33 smithi050 bash[22081]: audit 2024-03-30T13:57:32.994768+0000 mon.a (mon.0) 526 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:33.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:33 smithi050 bash[22081]: audit 2024-03-30T13:57:33.002802+0000 mon.a (mon.0) 527 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:33.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:33 smithi050 bash[22081]: audit 2024-03-30T13:57:33.012854+0000 mon.a (mon.0) 528 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:33.482 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:33 smithi136 bash[22230]: cluster 2024-03-30T13:57:31.204052+0000 mgr.a (mgr.14152) 187 : cluster 0 pgmap v131: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:33.482 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:33 smithi136 bash[22230]: audit 2024-03-30T13:57:31.329861+0000 mgr.a (mgr.14152) 188 : audit 0 from='client.24158 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi050:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:57:33.482 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:33 smithi136 bash[22230]: audit 2024-03-30T13:57:32.994768+0000 mon.a (mon.0) 526 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:33.482 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:33 smithi136 bash[22230]: audit 2024-03-30T13:57:33.002802+0000 mon.a (mon.0) 527 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:33.482 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:33 smithi136 bash[22230]: audit 2024-03-30T13:57:33.012854+0000 mon.a (mon.0) 528 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:35.108 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:35 smithi026 bash[21443]: cluster 2024-03-30T13:57:33.204556+0000 mgr.a (mgr.14152) 189 : cluster 0 pgmap v132: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:35.156 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:35 smithi050 bash[22081]: cluster 2024-03-30T13:57:33.204556+0000 mgr.a (mgr.14152) 189 : cluster 0 pgmap v132: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:35.482 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:35 smithi136 bash[22230]: cluster 2024-03-30T13:57:33.204556+0000 mgr.a (mgr.14152) 189 : cluster 0 pgmap v132: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:37.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:37 smithi026 bash[21443]: cluster 2024-03-30T13:57:35.205031+0000 mgr.a (mgr.14152) 190 : cluster 0 pgmap v133: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:37.395 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:37 smithi050 bash[22081]: cluster 2024-03-30T13:57:35.205031+0000 mgr.a (mgr.14152) 190 : cluster 0 pgmap v133: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:37.482 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:37 smithi136 bash[22230]: cluster 2024-03-30T13:57:35.205031+0000 mgr.a (mgr.14152) 190 : cluster 0 pgmap v133: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:38.656 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:38 smithi050 bash[22081]: cluster 2024-03-30T13:57:37.205497+0000 mgr.a (mgr.14152) 191 : cluster 0 pgmap v134: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:38.656 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:38 smithi050 bash[22081]: audit 2024-03-30T13:57:37.413294+0000 mon.a (mon.0) 529 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:38.656 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:38 smithi050 bash[22081]: audit 2024-03-30T13:57:37.421835+0000 mon.a (mon.0) 530 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:38.656 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:38 smithi050 bash[22081]: audit 2024-03-30T13:57:37.431771+0000 mon.a (mon.0) 531 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:38.732 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:38 smithi136 bash[22230]: cluster 2024-03-30T13:57:37.205497+0000 mgr.a (mgr.14152) 191 : cluster 0 pgmap v134: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:38.732 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:38 smithi136 bash[22230]: audit 2024-03-30T13:57:37.413294+0000 mon.a (mon.0) 529 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:38.732 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:38 smithi136 bash[22230]: audit 2024-03-30T13:57:37.421835+0000 mon.a (mon.0) 530 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:38.732 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:38 smithi136 bash[22230]: audit 2024-03-30T13:57:37.431771+0000 mon.a (mon.0) 531 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:38.858 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:38 smithi026 bash[21443]: cluster 2024-03-30T13:57:37.205497+0000 mgr.a (mgr.14152) 191 : cluster 0 pgmap v134: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:38.858 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:38 smithi026 bash[21443]: audit 2024-03-30T13:57:37.413294+0000 mon.a (mon.0) 529 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:38.858 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:38 smithi026 bash[21443]: audit 2024-03-30T13:57:37.421835+0000 mon.a (mon.0) 530 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:38.858 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:38 smithi026 bash[21443]: audit 2024-03-30T13:57:37.431771+0000 mon.a (mon.0) 531 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:40.732 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:40 smithi136 bash[22230]: cluster 2024-03-30T13:57:39.206076+0000 mgr.a (mgr.14152) 192 : cluster 0 pgmap v135: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:40.858 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:40 smithi026 bash[21443]: cluster 2024-03-30T13:57:39.206076+0000 mgr.a (mgr.14152) 192 : cluster 0 pgmap v135: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:40.905 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:40 smithi050 bash[22081]: cluster 2024-03-30T13:57:39.206076+0000 mgr.a (mgr.14152) 192 : cluster 0 pgmap v135: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:41.732 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:41 smithi136 bash[22230]: audit 2024-03-30T13:57:40.462664+0000 mon.a (mon.0) 532 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cdfd83e3-c472-4bb5-a422-d82548a4adf7"}]: dispatch 2024-03-30T13:57:41.732 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:41 smithi136 bash[22230]: audit 2024-03-30T13:57:40.463123+0000 mon.b (mon.2) 6 : audit 1 from='client.? 172.21.15.50:0/1856429907' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cdfd83e3-c472-4bb5-a422-d82548a4adf7"}]: dispatch 2024-03-30T13:57:41.732 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:41 smithi136 bash[22230]: audit 2024-03-30T13:57:40.465867+0000 mon.a (mon.0) 533 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cdfd83e3-c472-4bb5-a422-d82548a4adf7"}]': finished 2024-03-30T13:57:41.732 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:41 smithi136 bash[22230]: cluster 2024-03-30T13:57:40.470515+0000 mon.a (mon.0) 534 : cluster 0 osdmap e15: 3 total, 2 up, 3 in 2024-03-30T13:57:41.732 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:41 smithi136 bash[22230]: audit 2024-03-30T13:57:40.471037+0000 mon.a (mon.0) 535 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-30T13:57:41.732 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:41 smithi136 bash[22230]: audit 2024-03-30T13:57:41.143842+0000 mon.b (mon.2) 7 : audit 0 from='client.? 172.21.15.50:0/2111320733' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-30T13:57:41.756 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:41 smithi026 bash[21443]: audit 2024-03-30T13:57:40.462664+0000 mon.a (mon.0) 532 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cdfd83e3-c472-4bb5-a422-d82548a4adf7"}]: dispatch 2024-03-30T13:57:41.756 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:41 smithi026 bash[21443]: audit 2024-03-30T13:57:40.463123+0000 mon.b (mon.2) 6 : audit 1 from='client.? 172.21.15.50:0/1856429907' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cdfd83e3-c472-4bb5-a422-d82548a4adf7"}]: dispatch 2024-03-30T13:57:41.757 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:41 smithi026 bash[21443]: audit 2024-03-30T13:57:40.465867+0000 mon.a (mon.0) 533 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cdfd83e3-c472-4bb5-a422-d82548a4adf7"}]': finished 2024-03-30T13:57:41.757 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:41 smithi026 bash[21443]: cluster 2024-03-30T13:57:40.470515+0000 mon.a (mon.0) 534 : cluster 0 osdmap e15: 3 total, 2 up, 3 in 2024-03-30T13:57:41.757 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:41 smithi026 bash[21443]: audit 2024-03-30T13:57:40.471037+0000 mon.a (mon.0) 535 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-30T13:57:41.757 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:41 smithi026 bash[21443]: audit 2024-03-30T13:57:41.143842+0000 mon.b (mon.2) 7 : audit 0 from='client.? 172.21.15.50:0/2111320733' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-30T13:57:41.906 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:41 smithi050 bash[22081]: audit 2024-03-30T13:57:40.462664+0000 mon.a (mon.0) 532 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cdfd83e3-c472-4bb5-a422-d82548a4adf7"}]: dispatch 2024-03-30T13:57:41.906 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:41 smithi050 bash[22081]: audit 2024-03-30T13:57:40.463123+0000 mon.b (mon.2) 6 : audit 1 from='client.? 172.21.15.50:0/1856429907' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cdfd83e3-c472-4bb5-a422-d82548a4adf7"}]: dispatch 2024-03-30T13:57:41.906 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:41 smithi050 bash[22081]: audit 2024-03-30T13:57:40.465867+0000 mon.a (mon.0) 533 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cdfd83e3-c472-4bb5-a422-d82548a4adf7"}]': finished 2024-03-30T13:57:41.906 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:41 smithi050 bash[22081]: cluster 2024-03-30T13:57:40.470515+0000 mon.a (mon.0) 534 : cluster 0 osdmap e15: 3 total, 2 up, 3 in 2024-03-30T13:57:41.906 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:41 smithi050 bash[22081]: audit 2024-03-30T13:57:40.471037+0000 mon.a (mon.0) 535 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-30T13:57:41.906 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:41 smithi050 bash[22081]: audit 2024-03-30T13:57:41.143842+0000 mon.b (mon.2) 7 : audit 0 from='client.? 172.21.15.50:0/2111320733' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-30T13:57:43.108 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:42 smithi026 bash[21443]: cluster 2024-03-30T13:57:41.206555+0000 mgr.a (mgr.14152) 193 : cluster 0 pgmap v137: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:43.108 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:42 smithi026 bash[21443]: audit 2024-03-30T13:57:41.740859+0000 mon.a (mon.0) 536 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:43.108 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:42 smithi026 bash[21443]: audit 2024-03-30T13:57:41.750139+0000 mon.a (mon.0) 537 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:43.108 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:42 smithi026 bash[21443]: audit 2024-03-30T13:57:41.760608+0000 mon.a (mon.0) 538 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:43.155 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:42 smithi050 bash[22081]: cluster 2024-03-30T13:57:41.206555+0000 mgr.a (mgr.14152) 193 : cluster 0 pgmap v137: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:43.155 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:42 smithi050 bash[22081]: audit 2024-03-30T13:57:41.740859+0000 mon.a (mon.0) 536 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:43.156 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:42 smithi050 bash[22081]: audit 2024-03-30T13:57:41.750139+0000 mon.a (mon.0) 537 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:43.156 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:42 smithi050 bash[22081]: audit 2024-03-30T13:57:41.760608+0000 mon.a (mon.0) 538 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:43.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:42 smithi136 bash[22230]: cluster 2024-03-30T13:57:41.206555+0000 mgr.a (mgr.14152) 193 : cluster 0 pgmap v137: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:43.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:42 smithi136 bash[22230]: audit 2024-03-30T13:57:41.740859+0000 mon.a (mon.0) 536 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:43.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:42 smithi136 bash[22230]: audit 2024-03-30T13:57:41.750139+0000 mon.a (mon.0) 537 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:43.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:42 smithi136 bash[22230]: audit 2024-03-30T13:57:41.760608+0000 mon.a (mon.0) 538 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:45.108 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:44 smithi026 bash[21443]: cluster 2024-03-30T13:57:43.207021+0000 mgr.a (mgr.14152) 194 : cluster 0 pgmap v138: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:45.155 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:44 smithi050 bash[22081]: cluster 2024-03-30T13:57:43.207021+0000 mgr.a (mgr.14152) 194 : cluster 0 pgmap v138: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:45.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:44 smithi136 bash[22230]: cluster 2024-03-30T13:57:43.207021+0000 mgr.a (mgr.14152) 194 : cluster 0 pgmap v138: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:46.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:46 smithi136 bash[22230]: cluster 2024-03-30T13:57:45.207512+0000 mgr.a (mgr.14152) 195 : cluster 0 pgmap v139: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:47.107 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:46 smithi026 bash[21443]: cluster 2024-03-30T13:57:45.207512+0000 mgr.a (mgr.14152) 195 : cluster 0 pgmap v139: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:47.155 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:46 smithi050 bash[22081]: cluster 2024-03-30T13:57:45.207512+0000 mgr.a (mgr.14152) 195 : cluster 0 pgmap v139: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:48.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:48 smithi136 bash[22230]: cluster 2024-03-30T13:57:47.207955+0000 mgr.a (mgr.14152) 196 : cluster 0 pgmap v140: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:49.108 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:48 smithi026 bash[21443]: cluster 2024-03-30T13:57:47.207955+0000 mgr.a (mgr.14152) 196 : cluster 0 pgmap v140: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:49.155 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:48 smithi050 bash[22081]: cluster 2024-03-30T13:57:47.207955+0000 mgr.a (mgr.14152) 196 : cluster 0 pgmap v140: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:51.108 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:50 smithi026 bash[21443]: cluster 2024-03-30T13:57:49.208436+0000 mgr.a (mgr.14152) 197 : cluster 0 pgmap v141: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:51.155 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:50 smithi050 bash[22081]: cluster 2024-03-30T13:57:49.208436+0000 mgr.a (mgr.14152) 197 : cluster 0 pgmap v141: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:51.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:50 smithi136 bash[22230]: cluster 2024-03-30T13:57:49.208436+0000 mgr.a (mgr.14152) 197 : cluster 0 pgmap v141: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:53.079 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:52 smithi026 bash[21443]: cluster 2024-03-30T13:57:51.208923+0000 mgr.a (mgr.14152) 198 : cluster 0 pgmap v142: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:53.155 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:52 smithi050 bash[22081]: cluster 2024-03-30T13:57:51.208923+0000 mgr.a (mgr.14152) 198 : cluster 0 pgmap v142: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:53.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:52 smithi136 bash[22230]: cluster 2024-03-30T13:57:51.208923+0000 mgr.a (mgr.14152) 198 : cluster 0 pgmap v142: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:54.050 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:53 smithi026 bash[21443]: audit 2024-03-30T13:57:52.927826+0000 mon.a (mon.0) 539 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-03-30T13:57:54.050 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:53 smithi026 bash[21443]: audit 2024-03-30T13:57:52.929545+0000 mon.a (mon.0) 540 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:57:54.050 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:53 smithi026 bash[21443]: cephadm 2024-03-30T13:57:52.931264+0000 mgr.a (mgr.14152) 199 : cephadm 1 Deploying daemon osd.2 on smithi050 2024-03-30T13:57:54.050 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:53 smithi026 bash[21443]: audit 2024-03-30T13:57:53.219967+0000 mon.a (mon.0) 541 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:54.050 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:53 smithi026 bash[21443]: audit 2024-03-30T13:57:53.228151+0000 mon.a (mon.0) 542 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:54.050 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:53 smithi026 bash[21443]: audit 2024-03-30T13:57:53.238045+0000 mon.a (mon.0) 543 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:54.134 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:53 smithi050 bash[22081]: audit 2024-03-30T13:57:52.927826+0000 mon.a (mon.0) 539 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-03-30T13:57:54.134 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:53 smithi050 bash[22081]: audit 2024-03-30T13:57:52.929545+0000 mon.a (mon.0) 540 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:57:54.134 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:53 smithi050 bash[22081]: cephadm 2024-03-30T13:57:52.931264+0000 mgr.a (mgr.14152) 199 : cephadm 1 Deploying daemon osd.2 on smithi050 2024-03-30T13:57:54.134 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:53 smithi050 bash[22081]: audit 2024-03-30T13:57:53.219967+0000 mon.a (mon.0) 541 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:54.134 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:53 smithi050 bash[22081]: audit 2024-03-30T13:57:53.228151+0000 mon.a (mon.0) 542 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:54.134 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:53 smithi050 bash[22081]: audit 2024-03-30T13:57:53.238045+0000 mon.a (mon.0) 543 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:54.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:53 smithi136 bash[22230]: audit 2024-03-30T13:57:52.927826+0000 mon.a (mon.0) 539 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-03-30T13:57:54.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:53 smithi136 bash[22230]: audit 2024-03-30T13:57:52.929545+0000 mon.a (mon.0) 540 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:57:54.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:53 smithi136 bash[22230]: cephadm 2024-03-30T13:57:52.931264+0000 mgr.a (mgr.14152) 199 : cephadm 1 Deploying daemon osd.2 on smithi050 2024-03-30T13:57:54.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:53 smithi136 bash[22230]: audit 2024-03-30T13:57:53.219967+0000 mon.a (mon.0) 541 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:54.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:53 smithi136 bash[22230]: audit 2024-03-30T13:57:53.228151+0000 mon.a (mon.0) 542 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:54.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:53 smithi136 bash[22230]: audit 2024-03-30T13:57:53.238045+0000 mon.a (mon.0) 543 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:54.905 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:54 smithi050 bash[22081]: cluster 2024-03-30T13:57:53.209391+0000 mgr.a (mgr.14152) 200 : cluster 0 pgmap v143: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:55.107 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:54 smithi026 bash[21443]: cluster 2024-03-30T13:57:53.209391+0000 mgr.a (mgr.14152) 200 : cluster 0 pgmap v143: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:55.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:54 smithi136 bash[22230]: cluster 2024-03-30T13:57:53.209391+0000 mgr.a (mgr.14152) 200 : cluster 0 pgmap v143: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:56.905 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:56 smithi050 bash[22081]: cluster 2024-03-30T13:57:55.209868+0000 mgr.a (mgr.14152) 201 : cluster 0 pgmap v144: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:57.107 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:56 smithi026 bash[21443]: cluster 2024-03-30T13:57:55.209868+0000 mgr.a (mgr.14152) 201 : cluster 0 pgmap v144: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:57.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:56 smithi136 bash[22230]: cluster 2024-03-30T13:57:55.209868+0000 mgr.a (mgr.14152) 201 : cluster 0 pgmap v144: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:57.841 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:57 smithi050 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:57:57.841 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:57 smithi050 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:57:57.842 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:57:57 smithi050 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:57:57.842 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:57:57 smithi050 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:57:58.858 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:58 smithi026 bash[21443]: cluster 2024-03-30T13:57:57.210384+0000 mgr.a (mgr.14152) 202 : cluster 0 pgmap v145: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:58.858 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:58 smithi026 bash[21443]: audit 2024-03-30T13:57:57.577932+0000 mon.a (mon.0) 544 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:58.858 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:58 smithi026 bash[21443]: audit 2024-03-30T13:57:57.586340+0000 mon.a (mon.0) 545 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:58.858 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:58 smithi026 bash[21443]: audit 2024-03-30T13:57:57.596487+0000 mon.a (mon.0) 546 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:58.858 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:58 smithi026 bash[21443]: audit 2024-03-30T13:57:57.897553+0000 mon.a (mon.0) 547 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:58.858 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:58 smithi026 bash[21443]: audit 2024-03-30T13:57:57.905898+0000 mon.a (mon.0) 548 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:58.858 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:58 smithi026 bash[21443]: audit 2024-03-30T13:57:57.924764+0000 mon.a (mon.0) 549 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:57:58.858 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:58 smithi026 bash[21443]: audit 2024-03-30T13:57:57.933719+0000 mon.a (mon.0) 550 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:57:58.858 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:58 smithi026 bash[21443]: audit 2024-03-30T13:57:57.936599+0000 mon.a (mon.0) 551 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:57:58.858 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:57:58 smithi026 bash[21443]: audit 2024-03-30T13:57:57.950458+0000 mon.a (mon.0) 552 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:58.905 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:58 smithi050 bash[22081]: cluster 2024-03-30T13:57:57.210384+0000 mgr.a (mgr.14152) 202 : cluster 0 pgmap v145: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:58.906 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:58 smithi050 bash[22081]: audit 2024-03-30T13:57:57.577932+0000 mon.a (mon.0) 544 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:58.906 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:58 smithi050 bash[22081]: audit 2024-03-30T13:57:57.586340+0000 mon.a (mon.0) 545 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:58.906 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:58 smithi050 bash[22081]: audit 2024-03-30T13:57:57.596487+0000 mon.a (mon.0) 546 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:58.906 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:58 smithi050 bash[22081]: audit 2024-03-30T13:57:57.897553+0000 mon.a (mon.0) 547 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:58.906 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:58 smithi050 bash[22081]: audit 2024-03-30T13:57:57.905898+0000 mon.a (mon.0) 548 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:58.906 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:58 smithi050 bash[22081]: audit 2024-03-30T13:57:57.924764+0000 mon.a (mon.0) 549 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:57:58.906 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:58 smithi050 bash[22081]: audit 2024-03-30T13:57:57.933719+0000 mon.a (mon.0) 550 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:57:58.906 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:58 smithi050 bash[22081]: audit 2024-03-30T13:57:57.936599+0000 mon.a (mon.0) 551 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:57:58.906 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:57:58 smithi050 bash[22081]: audit 2024-03-30T13:57:57.950458+0000 mon.a (mon.0) 552 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:58.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:58 smithi136 bash[22230]: cluster 2024-03-30T13:57:57.210384+0000 mgr.a (mgr.14152) 202 : cluster 0 pgmap v145: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:57:58.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:58 smithi136 bash[22230]: audit 2024-03-30T13:57:57.577932+0000 mon.a (mon.0) 544 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:58.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:58 smithi136 bash[22230]: audit 2024-03-30T13:57:57.586340+0000 mon.a (mon.0) 545 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:58.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:58 smithi136 bash[22230]: audit 2024-03-30T13:57:57.596487+0000 mon.a (mon.0) 546 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:58.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:58 smithi136 bash[22230]: audit 2024-03-30T13:57:57.897553+0000 mon.a (mon.0) 547 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:58.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:58 smithi136 bash[22230]: audit 2024-03-30T13:57:57.905898+0000 mon.a (mon.0) 548 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:57:58.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:58 smithi136 bash[22230]: audit 2024-03-30T13:57:57.924764+0000 mon.a (mon.0) 549 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:57:58.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:58 smithi136 bash[22230]: audit 2024-03-30T13:57:57.933719+0000 mon.a (mon.0) 550 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:57:58.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:58 smithi136 bash[22230]: audit 2024-03-30T13:57:57.936599+0000 mon.a (mon.0) 551 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:57:58.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:57:58 smithi136 bash[22230]: audit 2024-03-30T13:57:57.950458+0000 mon.a (mon.0) 552 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:00.857 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:00 smithi026 bash[21443]: cluster 2024-03-30T13:57:59.210873+0000 mgr.a (mgr.14152) 203 : cluster 0 pgmap v146: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:58:00.905 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:00 smithi050 bash[22081]: cluster 2024-03-30T13:57:59.210873+0000 mgr.a (mgr.14152) 203 : cluster 0 pgmap v146: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:58:00.981 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:00 smithi136 bash[22230]: cluster 2024-03-30T13:57:59.210873+0000 mgr.a (mgr.14152) 203 : cluster 0 pgmap v146: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:58:03.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:02 smithi136 bash[22230]: cluster 2024-03-30T13:58:01.211454+0000 mgr.a (mgr.14152) 204 : cluster 0 pgmap v147: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:58:03.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:02 smithi136 bash[22230]: audit 2024-03-30T13:58:01.934017+0000 mon.a (mon.0) 553 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:03.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:02 smithi136 bash[22230]: audit 2024-03-30T13:58:01.943225+0000 mon.a (mon.0) 554 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:03.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:02 smithi136 bash[22230]: audit 2024-03-30T13:58:01.953297+0000 mon.a (mon.0) 555 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:03.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:02 smithi136 bash[22230]: audit 2024-03-30T13:58:02.038353+0000 mon.a (mon.0) 556 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:03.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:02 smithi136 bash[22230]: audit 2024-03-30T13:58:02.046914+0000 mon.a (mon.0) 557 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:03.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:02 smithi136 bash[22230]: cephadm 2024-03-30T13:58:02.050151+0000 mgr.a (mgr.14152) 205 : cephadm 1 Detected new or changed devices on smithi050 2024-03-30T13:58:03.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:02 smithi136 bash[22230]: audit 2024-03-30T13:58:02.057289+0000 mon.a (mon.0) 558 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:03.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:02 smithi026 bash[21443]: cluster 2024-03-30T13:58:01.211454+0000 mgr.a (mgr.14152) 204 : cluster 0 pgmap v147: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:58:03.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:02 smithi026 bash[21443]: audit 2024-03-30T13:58:01.934017+0000 mon.a (mon.0) 553 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:03.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:02 smithi026 bash[21443]: audit 2024-03-30T13:58:01.943225+0000 mon.a (mon.0) 554 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:03.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:02 smithi026 bash[21443]: audit 2024-03-30T13:58:01.953297+0000 mon.a (mon.0) 555 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:03.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:02 smithi026 bash[21443]: audit 2024-03-30T13:58:02.038353+0000 mon.a (mon.0) 556 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:03.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:02 smithi026 bash[21443]: audit 2024-03-30T13:58:02.046914+0000 mon.a (mon.0) 557 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:03.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:02 smithi026 bash[21443]: cephadm 2024-03-30T13:58:02.050151+0000 mgr.a (mgr.14152) 205 : cephadm 1 Detected new or changed devices on smithi050 2024-03-30T13:58:03.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:02 smithi026 bash[21443]: audit 2024-03-30T13:58:02.057289+0000 mon.a (mon.0) 558 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:03.405 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:02 smithi050 bash[22081]: cluster 2024-03-30T13:58:01.211454+0000 mgr.a (mgr.14152) 204 : cluster 0 pgmap v147: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:58:03.405 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:02 smithi050 bash[22081]: audit 2024-03-30T13:58:01.934017+0000 mon.a (mon.0) 553 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:03.405 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:02 smithi050 bash[22081]: audit 2024-03-30T13:58:01.943225+0000 mon.a (mon.0) 554 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:03.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:02 smithi050 bash[22081]: audit 2024-03-30T13:58:01.953297+0000 mon.a (mon.0) 555 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:03.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:02 smithi050 bash[22081]: audit 2024-03-30T13:58:02.038353+0000 mon.a (mon.0) 556 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:03.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:02 smithi050 bash[22081]: audit 2024-03-30T13:58:02.046914+0000 mon.a (mon.0) 557 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:03.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:02 smithi050 bash[22081]: cephadm 2024-03-30T13:58:02.050151+0000 mgr.a (mgr.14152) 205 : cephadm 1 Detected new or changed devices on smithi050 2024-03-30T13:58:03.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:02 smithi050 bash[22081]: audit 2024-03-30T13:58:02.057289+0000 mon.a (mon.0) 558 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:04.989 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:04 smithi050 bash[22081]: cluster 2024-03-30T13:58:03.211942+0000 mgr.a (mgr.14152) 206 : cluster 0 pgmap v148: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:58:05.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:04 smithi136 bash[22230]: cluster 2024-03-30T13:58:03.211942+0000 mgr.a (mgr.14152) 206 : cluster 0 pgmap v148: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:58:05.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:04 smithi026 bash[21443]: cluster 2024-03-30T13:58:03.211942+0000 mgr.a (mgr.14152) 206 : cluster 0 pgmap v148: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:58:06.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:05 smithi136 bash[22230]: audit 2024-03-30T13:58:05.029143+0000 mon.a (mon.0) 559 : audit 1 from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-03-30T13:58:06.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:05 smithi136 bash[22230]: audit 2024-03-30T13:58:05.029802+0000 mon.b (mon.2) 8 : audit 1 from='osd.2 [v2:172.21.15.50:6800/1606595991,v1:172.21.15.50:6801/1606595991]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-03-30T13:58:06.267 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:05 smithi050 bash[22081]: audit 2024-03-30T13:58:05.029143+0000 mon.a (mon.0) 559 : audit 1 from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-03-30T13:58:06.267 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:05 smithi050 bash[22081]: audit 2024-03-30T13:58:05.029802+0000 mon.b (mon.2) 8 : audit 1 from='osd.2 [v2:172.21.15.50:6800/1606595991,v1:172.21.15.50:6801/1606595991]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-03-30T13:58:06.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:05 smithi026 bash[21443]: audit 2024-03-30T13:58:05.029143+0000 mon.a (mon.0) 559 : audit 1 from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-03-30T13:58:06.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:05 smithi026 bash[21443]: audit 2024-03-30T13:58:05.029802+0000 mon.b (mon.2) 8 : audit 1 from='osd.2 [v2:172.21.15.50:6800/1606595991,v1:172.21.15.50:6801/1606595991]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-03-30T13:58:07.155 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:06 smithi050 bash[22081]: cluster 2024-03-30T13:58:05.212432+0000 mgr.a (mgr.14152) 207 : cluster 0 pgmap v149: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:58:07.155 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:06 smithi050 bash[22081]: audit 2024-03-30T13:58:05.944691+0000 mon.a (mon.0) 560 : audit 1 from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-03-30T13:58:07.156 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:06 smithi050 bash[22081]: cluster 2024-03-30T13:58:05.950390+0000 mon.a (mon.0) 561 : cluster 0 osdmap e16: 3 total, 2 up, 3 in 2024-03-30T13:58:07.156 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:06 smithi050 bash[22081]: audit 2024-03-30T13:58:05.951246+0000 mon.a (mon.0) 562 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-30T13:58:07.156 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:06 smithi050 bash[22081]: audit 2024-03-30T13:58:05.952386+0000 mon.a (mon.0) 563 : audit 1 from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-03-30T13:58:07.156 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:06 smithi050 bash[22081]: audit 2024-03-30T13:58:05.952893+0000 mon.b (mon.2) 9 : audit 1 from='osd.2 [v2:172.21.15.50:6800/1606595991,v1:172.21.15.50:6801/1606595991]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-03-30T13:58:07.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:06 smithi136 bash[22230]: cluster 2024-03-30T13:58:05.212432+0000 mgr.a (mgr.14152) 207 : cluster 0 pgmap v149: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:58:07.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:06 smithi136 bash[22230]: audit 2024-03-30T13:58:05.944691+0000 mon.a (mon.0) 560 : audit 1 from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-03-30T13:58:07.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:06 smithi136 bash[22230]: cluster 2024-03-30T13:58:05.950390+0000 mon.a (mon.0) 561 : cluster 0 osdmap e16: 3 total, 2 up, 3 in 2024-03-30T13:58:07.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:06 smithi136 bash[22230]: audit 2024-03-30T13:58:05.951246+0000 mon.a (mon.0) 562 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-30T13:58:07.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:06 smithi136 bash[22230]: audit 2024-03-30T13:58:05.952386+0000 mon.a (mon.0) 563 : audit 1 from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-03-30T13:58:07.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:06 smithi136 bash[22230]: audit 2024-03-30T13:58:05.952893+0000 mon.b (mon.2) 9 : audit 1 from='osd.2 [v2:172.21.15.50:6800/1606595991,v1:172.21.15.50:6801/1606595991]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-03-30T13:58:07.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:06 smithi026 bash[21443]: cluster 2024-03-30T13:58:05.212432+0000 mgr.a (mgr.14152) 207 : cluster 0 pgmap v149: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:58:07.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:06 smithi026 bash[21443]: audit 2024-03-30T13:58:05.944691+0000 mon.a (mon.0) 560 : audit 1 from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-03-30T13:58:07.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:06 smithi026 bash[21443]: cluster 2024-03-30T13:58:05.950390+0000 mon.a (mon.0) 561 : cluster 0 osdmap e16: 3 total, 2 up, 3 in 2024-03-30T13:58:07.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:06 smithi026 bash[21443]: audit 2024-03-30T13:58:05.951246+0000 mon.a (mon.0) 562 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-30T13:58:07.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:06 smithi026 bash[21443]: audit 2024-03-30T13:58:05.952386+0000 mon.a (mon.0) 563 : audit 1 from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-03-30T13:58:07.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:06 smithi026 bash[21443]: audit 2024-03-30T13:58:05.952893+0000 mon.b (mon.2) 9 : audit 1 from='osd.2 [v2:172.21.15.50:6800/1606595991,v1:172.21.15.50:6801/1606595991]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-03-30T13:58:07.599 INFO:teuthology.orchestra.run.smithi050.stdout:Created osd(s) 2 on host 'smithi050' 2024-03-30T13:58:07.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:07 smithi136 bash[22230]: audit 2024-03-30T13:58:06.946716+0000 mon.a (mon.0) 564 : audit 1 from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-03-30T13:58:07.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:07 smithi136 bash[22230]: cluster 2024-03-30T13:58:06.951776+0000 mon.a (mon.0) 565 : cluster 0 osdmap e17: 3 total, 2 up, 3 in 2024-03-30T13:58:07.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:07 smithi136 bash[22230]: audit 2024-03-30T13:58:06.952656+0000 mon.a (mon.0) 566 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-30T13:58:07.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:07 smithi136 bash[22230]: audit 2024-03-30T13:58:06.959877+0000 mon.a (mon.0) 567 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-30T13:58:07.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:07 smithi136 bash[22230]: audit 2024-03-30T13:58:07.298519+0000 mon.a (mon.0) 568 : audit 1 from='osd.2 ' entity='osd.2' 2024-03-30T13:58:07.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:07 smithi136 bash[22230]: audit 2024-03-30T13:58:07.581708+0000 mon.a (mon.0) 569 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:07.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:07 smithi136 bash[22230]: audit 2024-03-30T13:58:07.582770+0000 mon.a (mon.0) 570 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:58:07.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:07 smithi136 bash[22230]: audit 2024-03-30T13:58:07.590766+0000 mon.a (mon.0) 571 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:07.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:07 smithi136 bash[22230]: audit 2024-03-30T13:58:07.591670+0000 mon.a (mon.0) 572 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-03-30T13:58:07.982 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:07 smithi136 bash[22230]: audit 2024-03-30T13:58:07.598951+0000 mon.a (mon.0) 573 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:07.983 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:07 smithi136 bash[22230]: audit 2024-03-30T13:58:07.602923+0000 mon.a (mon.0) 574 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:58:07.983 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:07 smithi136 bash[22230]: audit 2024-03-30T13:58:07.604831+0000 mon.a (mon.0) 575 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:58:07.983 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:07 smithi136 bash[22230]: audit 2024-03-30T13:58:07.614502+0000 mon.a (mon.0) 576 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:08.258 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:07 smithi050 bash[22081]: audit 2024-03-30T13:58:06.946716+0000 mon.a (mon.0) 564 : audit 1 from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-03-30T13:58:08.258 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:07 smithi050 bash[22081]: cluster 2024-03-30T13:58:06.951776+0000 mon.a (mon.0) 565 : cluster 0 osdmap e17: 3 total, 2 up, 3 in 2024-03-30T13:58:08.258 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:07 smithi050 bash[22081]: audit 2024-03-30T13:58:06.952656+0000 mon.a (mon.0) 566 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-30T13:58:08.258 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:07 smithi050 bash[22081]: audit 2024-03-30T13:58:06.959877+0000 mon.a (mon.0) 567 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-30T13:58:08.258 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:07 smithi050 bash[22081]: audit 2024-03-30T13:58:07.298519+0000 mon.a (mon.0) 568 : audit 1 from='osd.2 ' entity='osd.2' 2024-03-30T13:58:08.258 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:07 smithi050 bash[22081]: audit 2024-03-30T13:58:07.581708+0000 mon.a (mon.0) 569 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:08.258 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:07 smithi050 bash[22081]: audit 2024-03-30T13:58:07.582770+0000 mon.a (mon.0) 570 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:58:08.258 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:07 smithi050 bash[22081]: audit 2024-03-30T13:58:07.590766+0000 mon.a (mon.0) 571 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:08.259 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:07 smithi050 bash[22081]: audit 2024-03-30T13:58:07.591670+0000 mon.a (mon.0) 572 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-03-30T13:58:08.259 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:07 smithi050 bash[22081]: audit 2024-03-30T13:58:07.598951+0000 mon.a (mon.0) 573 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:08.259 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:07 smithi050 bash[22081]: audit 2024-03-30T13:58:07.602923+0000 mon.a (mon.0) 574 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:58:08.259 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:07 smithi050 bash[22081]: audit 2024-03-30T13:58:07.604831+0000 mon.a (mon.0) 575 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:58:08.259 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:07 smithi050 bash[22081]: audit 2024-03-30T13:58:07.614502+0000 mon.a (mon.0) 576 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:08.260 DEBUG:teuthology.orchestra.run.smithi050:osd.2> sudo journalctl -f -n 0 -u ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@osd.2.service 2024-03-30T13:58:08.263 INFO:tasks.cephadm:Deploying osd.3 on smithi050 with /dev/vg_nvme/lv_3... 2024-03-30T13:58:08.263 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-03-30T13:58:08.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:07 smithi026 bash[21443]: audit 2024-03-30T13:58:06.946716+0000 mon.a (mon.0) 564 : audit 1 from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-03-30T13:58:08.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:07 smithi026 bash[21443]: cluster 2024-03-30T13:58:06.951776+0000 mon.a (mon.0) 565 : cluster 0 osdmap e17: 3 total, 2 up, 3 in 2024-03-30T13:58:08.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:07 smithi026 bash[21443]: audit 2024-03-30T13:58:06.952656+0000 mon.a (mon.0) 566 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-30T13:58:08.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:07 smithi026 bash[21443]: audit 2024-03-30T13:58:06.959877+0000 mon.a (mon.0) 567 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-30T13:58:08.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:07 smithi026 bash[21443]: audit 2024-03-30T13:58:07.298519+0000 mon.a (mon.0) 568 : audit 1 from='osd.2 ' entity='osd.2' 2024-03-30T13:58:08.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:07 smithi026 bash[21443]: audit 2024-03-30T13:58:07.581708+0000 mon.a (mon.0) 569 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:08.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:07 smithi026 bash[21443]: audit 2024-03-30T13:58:07.582770+0000 mon.a (mon.0) 570 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:58:08.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:07 smithi026 bash[21443]: audit 2024-03-30T13:58:07.590766+0000 mon.a (mon.0) 571 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:08.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:07 smithi026 bash[21443]: audit 2024-03-30T13:58:07.591670+0000 mon.a (mon.0) 572 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-03-30T13:58:08.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:07 smithi026 bash[21443]: audit 2024-03-30T13:58:07.598951+0000 mon.a (mon.0) 573 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:08.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:07 smithi026 bash[21443]: audit 2024-03-30T13:58:07.602923+0000 mon.a (mon.0) 574 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:58:08.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:07 smithi026 bash[21443]: audit 2024-03-30T13:58:07.604831+0000 mon.a (mon.0) 575 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:58:08.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:07 smithi026 bash[21443]: audit 2024-03-30T13:58:07.614502+0000 mon.a (mon.0) 576 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:09.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:08 smithi136 bash[22230]: cluster 2024-03-30T13:58:06.044367+0000 osd.2 (osd.2) 1 : cluster 0 purged_snaps scrub starts 2024-03-30T13:58:09.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:08 smithi136 bash[22230]: cluster 2024-03-30T13:58:06.044456+0000 osd.2 (osd.2) 2 : cluster 0 purged_snaps scrub ok 2024-03-30T13:58:09.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:08 smithi136 bash[22230]: cluster 2024-03-30T13:58:07.212885+0000 mgr.a (mgr.14152) 208 : cluster 0 pgmap v152: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:58:09.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:08 smithi136 bash[22230]: cephadm 2024-03-30T13:58:07.593089+0000 mgr.a (mgr.14152) 209 : cephadm 1 Adjusting osd_memory_target on smithi050 to 16245M 2024-03-30T13:58:09.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:08 smithi136 bash[22230]: audit 2024-03-30T13:58:07.961004+0000 mon.a (mon.0) 577 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-30T13:58:09.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:08 smithi136 bash[22230]: cluster 2024-03-30T13:58:08.302597+0000 mon.a (mon.0) 578 : cluster 1 osd.2 [v2:172.21.15.50:6800/1606595991,v1:172.21.15.50:6801/1606595991] boot 2024-03-30T13:58:09.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:08 smithi136 bash[22230]: cluster 2024-03-30T13:58:08.302686+0000 mon.a (mon.0) 579 : cluster 0 osdmap e18: 3 total, 3 up, 3 in 2024-03-30T13:58:09.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:08 smithi136 bash[22230]: audit 2024-03-30T13:58:08.302921+0000 mon.a (mon.0) 580 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-30T13:58:09.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:08 smithi026 bash[21443]: cluster 2024-03-30T13:58:06.044367+0000 osd.2 (osd.2) 1 : cluster 0 purged_snaps scrub starts 2024-03-30T13:58:09.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:08 smithi026 bash[21443]: cluster 2024-03-30T13:58:06.044456+0000 osd.2 (osd.2) 2 : cluster 0 purged_snaps scrub ok 2024-03-30T13:58:09.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:08 smithi026 bash[21443]: cluster 2024-03-30T13:58:07.212885+0000 mgr.a (mgr.14152) 208 : cluster 0 pgmap v152: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:58:09.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:08 smithi026 bash[21443]: cephadm 2024-03-30T13:58:07.593089+0000 mgr.a (mgr.14152) 209 : cephadm 1 Adjusting osd_memory_target on smithi050 to 16245M 2024-03-30T13:58:09.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:08 smithi026 bash[21443]: audit 2024-03-30T13:58:07.961004+0000 mon.a (mon.0) 577 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-30T13:58:09.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:08 smithi026 bash[21443]: cluster 2024-03-30T13:58:08.302597+0000 mon.a (mon.0) 578 : cluster 1 osd.2 [v2:172.21.15.50:6800/1606595991,v1:172.21.15.50:6801/1606595991] boot 2024-03-30T13:58:09.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:08 smithi026 bash[21443]: cluster 2024-03-30T13:58:08.302686+0000 mon.a (mon.0) 579 : cluster 0 osdmap e18: 3 total, 3 up, 3 in 2024-03-30T13:58:09.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:08 smithi026 bash[21443]: audit 2024-03-30T13:58:08.302921+0000 mon.a (mon.0) 580 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-30T13:58:09.405 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:08 smithi050 bash[22081]: cluster 2024-03-30T13:58:06.044367+0000 osd.2 (osd.2) 1 : cluster 0 purged_snaps scrub starts 2024-03-30T13:58:09.405 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:08 smithi050 bash[22081]: cluster 2024-03-30T13:58:06.044456+0000 osd.2 (osd.2) 2 : cluster 0 purged_snaps scrub ok 2024-03-30T13:58:09.405 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:08 smithi050 bash[22081]: cluster 2024-03-30T13:58:07.212885+0000 mgr.a (mgr.14152) 208 : cluster 0 pgmap v152: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-30T13:58:09.405 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:08 smithi050 bash[22081]: cephadm 2024-03-30T13:58:07.593089+0000 mgr.a (mgr.14152) 209 : cephadm 1 Adjusting osd_memory_target on smithi050 to 16245M 2024-03-30T13:58:09.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:08 smithi050 bash[22081]: audit 2024-03-30T13:58:07.961004+0000 mon.a (mon.0) 577 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-30T13:58:09.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:08 smithi050 bash[22081]: cluster 2024-03-30T13:58:08.302597+0000 mon.a (mon.0) 578 : cluster 1 osd.2 [v2:172.21.15.50:6800/1606595991,v1:172.21.15.50:6801/1606595991] boot 2024-03-30T13:58:09.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:08 smithi050 bash[22081]: cluster 2024-03-30T13:58:08.302686+0000 mon.a (mon.0) 579 : cluster 0 osdmap e18: 3 total, 3 up, 3 in 2024-03-30T13:58:09.406 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:08 smithi050 bash[22081]: audit 2024-03-30T13:58:08.302921+0000 mon.a (mon.0) 580 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-30T13:58:10.481 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:10 smithi136 bash[22230]: audit 2024-03-30T13:58:09.683260+0000 mon.a (mon.0) 581 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' 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-03-30T13:58:10.481 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:10 smithi136 bash[22230]: audit 2024-03-30T13:58:10.145412+0000 mon.a (mon.0) 582 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' 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-03-30T13:58:10.482 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:10 smithi136 bash[22230]: cluster 2024-03-30T13:58:10.147751+0000 mon.a (mon.0) 583 : cluster 0 osdmap e19: 3 total, 3 up, 3 in 2024-03-30T13:58:10.482 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:10 smithi136 bash[22230]: audit 2024-03-30T13:58:10.148840+0000 mon.a (mon.0) 584 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-03-30T13:58:10.607 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:10 smithi026 bash[21443]: audit 2024-03-30T13:58:09.683260+0000 mon.a (mon.0) 581 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' 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-03-30T13:58:10.608 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:10 smithi026 bash[21443]: audit 2024-03-30T13:58:10.145412+0000 mon.a (mon.0) 582 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' 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-03-30T13:58:10.608 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:10 smithi026 bash[21443]: cluster 2024-03-30T13:58:10.147751+0000 mon.a (mon.0) 583 : cluster 0 osdmap e19: 3 total, 3 up, 3 in 2024-03-30T13:58:10.608 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:10 smithi026 bash[21443]: audit 2024-03-30T13:58:10.148840+0000 mon.a (mon.0) 584 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-03-30T13:58:10.655 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:10 smithi050 bash[22081]: audit 2024-03-30T13:58:09.683260+0000 mon.a (mon.0) 581 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' 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-03-30T13:58:10.655 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:10 smithi050 bash[22081]: audit 2024-03-30T13:58:10.145412+0000 mon.a (mon.0) 582 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' 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-03-30T13:58:10.655 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:10 smithi050 bash[22081]: cluster 2024-03-30T13:58:10.147751+0000 mon.a (mon.0) 583 : cluster 0 osdmap e19: 3 total, 3 up, 3 in 2024-03-30T13:58:10.655 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:10 smithi050 bash[22081]: audit 2024-03-30T13:58:10.148840+0000 mon.a (mon.0) 584 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-03-30T13:58:11.481 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:11 smithi136 bash[22230]: cluster 2024-03-30T13:58:09.213331+0000 mgr.a (mgr.14152) 210 : cluster 0 pgmap v154: 0 pgs: ; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:11.481 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:11 smithi136 bash[22230]: audit 2024-03-30T13:58:11.147958+0000 mon.a (mon.0) 585 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-03-30T13:58:11.481 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:11 smithi136 bash[22230]: cluster 2024-03-30T13:58:11.153933+0000 mon.a (mon.0) 586 : cluster 0 osdmap e20: 3 total, 3 up, 3 in 2024-03-30T13:58:11.607 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:11 smithi026 bash[21443]: cluster 2024-03-30T13:58:09.213331+0000 mgr.a (mgr.14152) 210 : cluster 0 pgmap v154: 0 pgs: ; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:11.608 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:11 smithi026 bash[21443]: audit 2024-03-30T13:58:11.147958+0000 mon.a (mon.0) 585 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-03-30T13:58:11.608 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:11 smithi026 bash[21443]: cluster 2024-03-30T13:58:11.153933+0000 mon.a (mon.0) 586 : cluster 0 osdmap e20: 3 total, 3 up, 3 in 2024-03-30T13:58:11.655 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:11 smithi050 bash[22081]: cluster 2024-03-30T13:58:09.213331+0000 mgr.a (mgr.14152) 210 : cluster 0 pgmap v154: 0 pgs: ; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:11.655 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:11 smithi050 bash[22081]: audit 2024-03-30T13:58:11.147958+0000 mon.a (mon.0) 585 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-03-30T13:58:11.655 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:11 smithi050 bash[22081]: cluster 2024-03-30T13:58:11.153933+0000 mon.a (mon.0) 586 : cluster 0 osdmap e20: 3 total, 3 up, 3 in 2024-03-30T13:58:12.481 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:12 smithi136 bash[22230]: cluster 2024-03-30T13:58:11.213815+0000 mgr.a (mgr.14152) 211 : cluster 0 pgmap v157: 1 pgs: 1 unknown; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:12.607 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:12 smithi026 bash[21443]: cluster 2024-03-30T13:58:11.213815+0000 mgr.a (mgr.14152) 211 : cluster 0 pgmap v157: 1 pgs: 1 unknown; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:12.655 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:12 smithi050 bash[22081]: cluster 2024-03-30T13:58:11.213815+0000 mgr.a (mgr.14152) 211 : cluster 0 pgmap v157: 1 pgs: 1 unknown; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:13.031 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.b/config 2024-03-30T13:58:13.405 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:13 smithi050 bash[22081]: cluster 2024-03-30T13:58:12.215598+0000 mon.a (mon.0) 587 : cluster 0 mgrmap e15: a(active, since 4m), standbys: b 2024-03-30T13:58:13.405 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:13 smithi050 bash[22081]: cluster 2024-03-30T13:58:12.215718+0000 mon.a (mon.0) 588 : cluster 0 osdmap e21: 3 total, 3 up, 3 in 2024-03-30T13:58:13.405 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:13 smithi050 bash[22081]: audit 2024-03-30T13:58:12.611854+0000 mon.a (mon.0) 589 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:13.457 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:13 smithi136 bash[22230]: cluster 2024-03-30T13:58:12.215598+0000 mon.a (mon.0) 587 : cluster 0 mgrmap e15: a(active, since 4m), standbys: b 2024-03-30T13:58:13.458 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:13 smithi136 bash[22230]: cluster 2024-03-30T13:58:12.215718+0000 mon.a (mon.0) 588 : cluster 0 osdmap e21: 3 total, 3 up, 3 in 2024-03-30T13:58:13.458 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:13 smithi136 bash[22230]: audit 2024-03-30T13:58:12.611854+0000 mon.a (mon.0) 589 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:13.611 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:13 smithi026 bash[21443]: cluster 2024-03-30T13:58:12.215598+0000 mon.a (mon.0) 587 : cluster 0 mgrmap e15: a(active, since 4m), standbys: b 2024-03-30T13:58:13.612 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:13 smithi026 bash[21443]: cluster 2024-03-30T13:58:12.215718+0000 mon.a (mon.0) 588 : cluster 0 osdmap e21: 3 total, 3 up, 3 in 2024-03-30T13:58:13.612 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:13 smithi026 bash[21443]: audit 2024-03-30T13:58:12.611854+0000 mon.a (mon.0) 589 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:14.655 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:14 smithi050 bash[22081]: cluster 2024-03-30T13:58:13.214250+0000 mgr.a (mgr.14152) 212 : cluster 0 pgmap v159: 1 pgs: 1 unknown; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:14.655 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:14 smithi050 bash[22081]: audit 2024-03-30T13:58:13.445477+0000 mon.a (mon.0) 590 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:14.655 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:14 smithi050 bash[22081]: audit 2024-03-30T13:58:13.452959+0000 mon.a (mon.0) 591 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:14.655 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:14 smithi050 bash[22081]: audit 2024-03-30T13:58:13.462095+0000 mon.a (mon.0) 592 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:14.731 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:14 smithi136 bash[22230]: cluster 2024-03-30T13:58:13.214250+0000 mgr.a (mgr.14152) 212 : cluster 0 pgmap v159: 1 pgs: 1 unknown; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:14.731 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:14 smithi136 bash[22230]: audit 2024-03-30T13:58:13.445477+0000 mon.a (mon.0) 590 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:14.731 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:14 smithi136 bash[22230]: audit 2024-03-30T13:58:13.452959+0000 mon.a (mon.0) 591 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:14.732 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:14 smithi136 bash[22230]: audit 2024-03-30T13:58:13.462095+0000 mon.a (mon.0) 592 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:14.857 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:14 smithi026 bash[21443]: cluster 2024-03-30T13:58:13.214250+0000 mgr.a (mgr.14152) 212 : cluster 0 pgmap v159: 1 pgs: 1 unknown; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:14.857 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:14 smithi026 bash[21443]: audit 2024-03-30T13:58:13.445477+0000 mon.a (mon.0) 590 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:14.857 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:14 smithi026 bash[21443]: audit 2024-03-30T13:58:13.452959+0000 mon.a (mon.0) 591 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:14.857 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:14 smithi026 bash[21443]: audit 2024-03-30T13:58:13.462095+0000 mon.a (mon.0) 592 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:16.240 INFO:teuthology.orchestra.run.smithi050.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-03-30T13:58:16.240 INFO:teuthology.orchestra.run.smithi050.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-03-30T13:58:16.240 INFO:teuthology.orchestra.run.smithi050.stderr: stderr: 10+0 records in 2024-03-30T13:58:16.240 INFO:teuthology.orchestra.run.smithi050.stderr:10+0 records out 2024-03-30T13:58:16.240 INFO:teuthology.orchestra.run.smithi050.stderr:10485760 bytes (10 MB, 10 MiB) copied, 0.0114406 s, 917 MB/s 2024-03-30T13:58:16.240 INFO:teuthology.orchestra.run.smithi050.stderr:--> Zapping successful for: 2024-03-30T13:58:16.607 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:16 smithi026 bash[21443]: audit 2024-03-30T13:58:14.484543+0000 mon.a (mon.0) 593 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:16.607 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:16 smithi026 bash[21443]: audit 2024-03-30T13:58:14.487220+0000 mon.a (mon.0) 594 : audit 1 from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-03-30T13:58:16.607 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:16 smithi026 bash[21443]: audit 2024-03-30T13:58:15.434320+0000 mon.a (mon.0) 595 : audit 1 from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-03-30T13:58:16.608 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:16 smithi026 bash[21443]: audit 2024-03-30T13:58:15.435933+0000 mon.a (mon.0) 596 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-03-30T13:58:16.608 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:16 smithi026 bash[21443]: audit 2024-03-30T13:58:15.436380+0000 mon.a (mon.0) 597 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:58:16.608 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:16 smithi026 bash[21443]: audit 2024-03-30T13:58:15.436741+0000 mon.a (mon.0) 598 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:58:16.608 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:16 smithi026 bash[21443]: audit 2024-03-30T13:58:15.441003+0000 mon.a (mon.0) 599 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-03-30T13:58:16.608 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:16 smithi026 bash[21443]: audit 2024-03-30T13:58:15.441546+0000 mon.a (mon.0) 600 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:58:16.608 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:16 smithi026 bash[21443]: audit 2024-03-30T13:58:15.441905+0000 mon.a (mon.0) 601 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:58:16.655 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:16 smithi050 bash[22081]: audit 2024-03-30T13:58:14.484543+0000 mon.a (mon.0) 593 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:16.655 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:16 smithi050 bash[22081]: audit 2024-03-30T13:58:14.487220+0000 mon.a (mon.0) 594 : audit 1 from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-03-30T13:58:16.655 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:16 smithi050 bash[22081]: audit 2024-03-30T13:58:15.434320+0000 mon.a (mon.0) 595 : audit 1 from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-03-30T13:58:16.655 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:16 smithi050 bash[22081]: audit 2024-03-30T13:58:15.435933+0000 mon.a (mon.0) 596 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-03-30T13:58:16.655 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:16 smithi050 bash[22081]: audit 2024-03-30T13:58:15.436380+0000 mon.a (mon.0) 597 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:58:16.655 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:16 smithi050 bash[22081]: audit 2024-03-30T13:58:15.436741+0000 mon.a (mon.0) 598 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:58:16.655 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:16 smithi050 bash[22081]: audit 2024-03-30T13:58:15.441003+0000 mon.a (mon.0) 599 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-03-30T13:58:16.655 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:16 smithi050 bash[22081]: audit 2024-03-30T13:58:15.441546+0000 mon.a (mon.0) 600 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:58:16.655 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:16 smithi050 bash[22081]: audit 2024-03-30T13:58:15.441905+0000 mon.a (mon.0) 601 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:58:16.731 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:16 smithi136 bash[22230]: audit 2024-03-30T13:58:14.484543+0000 mon.a (mon.0) 593 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:16.731 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:16 smithi136 bash[22230]: audit 2024-03-30T13:58:14.487220+0000 mon.a (mon.0) 594 : audit 1 from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-03-30T13:58:16.731 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:16 smithi136 bash[22230]: audit 2024-03-30T13:58:15.434320+0000 mon.a (mon.0) 595 : audit 1 from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-03-30T13:58:16.731 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:16 smithi136 bash[22230]: audit 2024-03-30T13:58:15.435933+0000 mon.a (mon.0) 596 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-03-30T13:58:16.732 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:16 smithi136 bash[22230]: audit 2024-03-30T13:58:15.436380+0000 mon.a (mon.0) 597 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:58:16.732 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:16 smithi136 bash[22230]: audit 2024-03-30T13:58:15.436741+0000 mon.a (mon.0) 598 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:58:16.732 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:16 smithi136 bash[22230]: audit 2024-03-30T13:58:15.441003+0000 mon.a (mon.0) 599 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-03-30T13:58:16.732 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:16 smithi136 bash[22230]: audit 2024-03-30T13:58:15.441546+0000 mon.a (mon.0) 600 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:58:16.732 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:16 smithi136 bash[22230]: audit 2024-03-30T13:58:15.441905+0000 mon.a (mon.0) 601 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:58:16.917 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph orch daemon add osd smithi050:vg_nvme/lv_3 2024-03-30T13:58:17.655 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:17 smithi050 bash[22081]: cluster 2024-03-30T13:58:15.214784+0000 mgr.a (mgr.14152) 213 : cluster 0 pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:17.655 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:17 smithi050 bash[22081]: audit 2024-03-30T13:58:15.441510+0000 mon.c (mon.1) 4 : audit 1 from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-03-30T13:58:17.656 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:17 smithi050 bash[22081]: audit 2024-03-30T13:58:16.350412+0000 mon.c (mon.1) 5 : audit 1 from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-03-30T13:58:17.656 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:17 smithi050 bash[22081]: audit 2024-03-30T13:58:16.380910+0000 mon.a (mon.0) 602 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:17.656 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:17 smithi050 bash[22081]: audit 2024-03-30T13:58:16.383988+0000 mon.a (mon.0) 603 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-03-30T13:58:17.656 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:17 smithi050 bash[22081]: audit 2024-03-30T13:58:16.384575+0000 mon.a (mon.0) 604 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:58:17.656 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:17 smithi050 bash[22081]: audit 2024-03-30T13:58:16.385113+0000 mon.a (mon.0) 605 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:58:17.656 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:17 smithi050 bash[22081]: audit 2024-03-30T13:58:16.385266+0000 mon.b (mon.2) 10 : audit 1 from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-03-30T13:58:17.657 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:17 smithi050 bash[22081]: audit 2024-03-30T13:58:17.294812+0000 mon.b (mon.2) 11 : audit 1 from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-03-30T13:58:17.731 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:17 smithi136 bash[22230]: cluster 2024-03-30T13:58:15.214784+0000 mgr.a (mgr.14152) 213 : cluster 0 pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:17.732 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:17 smithi136 bash[22230]: audit 2024-03-30T13:58:15.441510+0000 mon.c (mon.1) 4 : audit 1 from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-03-30T13:58:17.732 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:17 smithi136 bash[22230]: audit 2024-03-30T13:58:16.350412+0000 mon.c (mon.1) 5 : audit 1 from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-03-30T13:58:17.732 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:17 smithi136 bash[22230]: audit 2024-03-30T13:58:16.380910+0000 mon.a (mon.0) 602 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:17.732 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:17 smithi136 bash[22230]: audit 2024-03-30T13:58:16.383988+0000 mon.a (mon.0) 603 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-03-30T13:58:17.732 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:17 smithi136 bash[22230]: audit 2024-03-30T13:58:16.384575+0000 mon.a (mon.0) 604 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:58:17.732 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:17 smithi136 bash[22230]: audit 2024-03-30T13:58:16.385113+0000 mon.a (mon.0) 605 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:58:17.733 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:17 smithi136 bash[22230]: audit 2024-03-30T13:58:16.385266+0000 mon.b (mon.2) 10 : audit 1 from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-03-30T13:58:17.733 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:17 smithi136 bash[22230]: audit 2024-03-30T13:58:17.294812+0000 mon.b (mon.2) 11 : audit 1 from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-03-30T13:58:17.857 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:17 smithi026 bash[21443]: cluster 2024-03-30T13:58:15.214784+0000 mgr.a (mgr.14152) 213 : cluster 0 pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:17.858 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:17 smithi026 bash[21443]: audit 2024-03-30T13:58:15.441510+0000 mon.c (mon.1) 4 : audit 1 from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-03-30T13:58:17.858 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:17 smithi026 bash[21443]: audit 2024-03-30T13:58:16.350412+0000 mon.c (mon.1) 5 : audit 1 from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-03-30T13:58:17.858 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:17 smithi026 bash[21443]: audit 2024-03-30T13:58:16.380910+0000 mon.a (mon.0) 602 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:17.858 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:17 smithi026 bash[21443]: audit 2024-03-30T13:58:16.383988+0000 mon.a (mon.0) 603 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-03-30T13:58:17.858 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:17 smithi026 bash[21443]: audit 2024-03-30T13:58:16.384575+0000 mon.a (mon.0) 604 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T13:58:17.858 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:17 smithi026 bash[21443]: audit 2024-03-30T13:58:16.385113+0000 mon.a (mon.0) 605 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-03-30T13:58:17.858 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:17 smithi026 bash[21443]: audit 2024-03-30T13:58:16.385266+0000 mon.b (mon.2) 10 : audit 1 from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-03-30T13:58:17.858 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:17 smithi026 bash[21443]: audit 2024-03-30T13:58:17.294812+0000 mon.b (mon.2) 11 : audit 1 from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-03-30T13:58:18.654 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:18 smithi050 bash[22081]: cluster 2024-03-30T13:58:17.215416+0000 mgr.a (mgr.14152) 214 : cluster 0 pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:18.731 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:18 smithi136 bash[22230]: cluster 2024-03-30T13:58:17.215416+0000 mgr.a (mgr.14152) 214 : cluster 0 pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:18.818 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:18 smithi026 bash[21443]: cluster 2024-03-30T13:58:17.215416+0000 mgr.a (mgr.14152) 214 : cluster 0 pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:21.107 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:20 smithi026 bash[21443]: cluster 2024-03-30T13:58:19.216066+0000 mgr.a (mgr.14152) 215 : cluster 0 pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 6.7 KiB/s rd, 326 KiB/s wr, 21 op/s 2024-03-30T13:58:21.107 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:20 smithi026 bash[21443]: audit 2024-03-30T13:58:19.808755+0000 mon.a (mon.0) 606 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:21.108 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:20 smithi026 bash[21443]: audit 2024-03-30T13:58:19.817580+0000 mon.a (mon.0) 607 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:21.108 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:20 smithi026 bash[21443]: audit 2024-03-30T13:58:19.828127+0000 mon.a (mon.0) 608 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:21.155 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:20 smithi050 bash[22081]: cluster 2024-03-30T13:58:19.216066+0000 mgr.a (mgr.14152) 215 : cluster 0 pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 6.7 KiB/s rd, 326 KiB/s wr, 21 op/s 2024-03-30T13:58:21.155 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:20 smithi050 bash[22081]: audit 2024-03-30T13:58:19.808755+0000 mon.a (mon.0) 606 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:21.155 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:20 smithi050 bash[22081]: audit 2024-03-30T13:58:19.817580+0000 mon.a (mon.0) 607 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:21.155 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:20 smithi050 bash[22081]: audit 2024-03-30T13:58:19.828127+0000 mon.a (mon.0) 608 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:21.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:20 smithi136 bash[22230]: cluster 2024-03-30T13:58:19.216066+0000 mgr.a (mgr.14152) 215 : cluster 0 pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 6.7 KiB/s rd, 326 KiB/s wr, 21 op/s 2024-03-30T13:58:21.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:20 smithi136 bash[22230]: audit 2024-03-30T13:58:19.808755+0000 mon.a (mon.0) 606 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:21.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:20 smithi136 bash[22230]: audit 2024-03-30T13:58:19.817580+0000 mon.a (mon.0) 607 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:21.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:20 smithi136 bash[22230]: audit 2024-03-30T13:58:19.828127+0000 mon.a (mon.0) 608 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:21.627 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.b/config 2024-03-30T13:58:23.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:23 smithi050 bash[22081]: cluster 2024-03-30T13:58:21.216718+0000 mgr.a (mgr.14152) 216 : cluster 0 pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 4.5 KiB/s rd, 218 KiB/s wr, 14 op/s 2024-03-30T13:58:23.405 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:23 smithi050 bash[22081]: audit 2024-03-30T13:58:22.130630+0000 mon.a (mon.0) 609 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:23.405 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:23 smithi050 bash[22081]: audit 2024-03-30T13:58:22.136552+0000 mon.a (mon.0) 610 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:23.405 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:23 smithi050 bash[22081]: audit 2024-03-30T13:58:22.143648+0000 mon.a (mon.0) 611 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:23.481 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:23 smithi136 bash[22230]: cluster 2024-03-30T13:58:21.216718+0000 mgr.a (mgr.14152) 216 : cluster 0 pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 4.5 KiB/s rd, 218 KiB/s wr, 14 op/s 2024-03-30T13:58:23.481 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:23 smithi136 bash[22230]: audit 2024-03-30T13:58:22.130630+0000 mon.a (mon.0) 609 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:23.481 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:23 smithi136 bash[22230]: audit 2024-03-30T13:58:22.136552+0000 mon.a (mon.0) 610 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:23.481 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:23 smithi136 bash[22230]: audit 2024-03-30T13:58:22.143648+0000 mon.a (mon.0) 611 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:23.607 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:23 smithi026 bash[21443]: cluster 2024-03-30T13:58:21.216718+0000 mgr.a (mgr.14152) 216 : cluster 0 pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 4.5 KiB/s rd, 218 KiB/s wr, 14 op/s 2024-03-30T13:58:23.607 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:23 smithi026 bash[21443]: audit 2024-03-30T13:58:22.130630+0000 mon.a (mon.0) 609 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:23.607 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:23 smithi026 bash[21443]: audit 2024-03-30T13:58:22.136552+0000 mon.a (mon.0) 610 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:23.607 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:23 smithi026 bash[21443]: audit 2024-03-30T13:58:22.143648+0000 mon.a (mon.0) 611 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:25.405 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:25 smithi050 bash[22081]: cluster 2024-03-30T13:58:23.217388+0000 mgr.a (mgr.14152) 217 : cluster 0 pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 3.4 KiB/s rd, 163 KiB/s wr, 10 op/s 2024-03-30T13:58:25.405 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:25 smithi050 bash[22081]: audit 2024-03-30T13:58:24.465013+0000 mon.a (mon.0) 612 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-30T13:58:25.405 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:25 smithi050 bash[22081]: audit 2024-03-30T13:58:24.471536+0000 mon.a (mon.0) 613 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-30T13:58:25.405 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:25 smithi050 bash[22081]: audit 2024-03-30T13:58:24.473280+0000 mon.a (mon.0) 614 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:58:25.481 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:25 smithi136 bash[22230]: cluster 2024-03-30T13:58:23.217388+0000 mgr.a (mgr.14152) 217 : cluster 0 pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 3.4 KiB/s rd, 163 KiB/s wr, 10 op/s 2024-03-30T13:58:25.481 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:25 smithi136 bash[22230]: audit 2024-03-30T13:58:24.465013+0000 mon.a (mon.0) 612 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-30T13:58:25.481 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:25 smithi136 bash[22230]: audit 2024-03-30T13:58:24.471536+0000 mon.a (mon.0) 613 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-30T13:58:25.481 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:25 smithi136 bash[22230]: audit 2024-03-30T13:58:24.473280+0000 mon.a (mon.0) 614 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:58:25.607 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:25 smithi026 bash[21443]: cluster 2024-03-30T13:58:23.217388+0000 mgr.a (mgr.14152) 217 : cluster 0 pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 3.4 KiB/s rd, 163 KiB/s wr, 10 op/s 2024-03-30T13:58:25.607 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:25 smithi026 bash[21443]: audit 2024-03-30T13:58:24.465013+0000 mon.a (mon.0) 612 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-30T13:58:25.608 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:25 smithi026 bash[21443]: audit 2024-03-30T13:58:24.471536+0000 mon.a (mon.0) 613 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-30T13:58:25.608 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:25 smithi026 bash[21443]: audit 2024-03-30T13:58:24.473280+0000 mon.a (mon.0) 614 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:58:26.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:26 smithi050 bash[22081]: audit 2024-03-30T13:58:24.457935+0000 mgr.a (mgr.14152) 218 : audit 0 from='client.24194 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi050:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:58:26.481 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:26 smithi136 bash[22230]: audit 2024-03-30T13:58:24.457935+0000 mgr.a (mgr.14152) 218 : audit 0 from='client.24194 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi050:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:58:26.607 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:26 smithi026 bash[21443]: audit 2024-03-30T13:58:24.457935+0000 mgr.a (mgr.14152) 218 : audit 0 from='client.24194 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi050:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:58:27.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:27 smithi050 bash[22081]: cluster 2024-03-30T13:58:25.217982+0000 mgr.a (mgr.14152) 219 : cluster 0 pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 2.7 KiB/s rd, 131 KiB/s wr, 8 op/s 2024-03-30T13:58:27.465 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:27 smithi136 bash[22230]: cluster 2024-03-30T13:58:25.217982+0000 mgr.a (mgr.14152) 219 : cluster 0 pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 2.7 KiB/s rd, 131 KiB/s wr, 8 op/s 2024-03-30T13:58:27.607 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:27 smithi026 bash[21443]: cluster 2024-03-30T13:58:25.217982+0000 mgr.a (mgr.14152) 219 : cluster 0 pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 2.7 KiB/s rd, 131 KiB/s wr, 8 op/s 2024-03-30T13:58:29.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:29 smithi136 bash[22230]: cluster 2024-03-30T13:58:27.218525+0000 mgr.a (mgr.14152) 220 : cluster 0 pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-03-30T13:58:29.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:29 smithi050 bash[22081]: cluster 2024-03-30T13:58:27.218525+0000 mgr.a (mgr.14152) 220 : cluster 0 pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-03-30T13:58:29.607 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:29 smithi026 bash[21443]: cluster 2024-03-30T13:58:27.218525+0000 mgr.a (mgr.14152) 220 : cluster 0 pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-03-30T13:58:31.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:31 smithi050 bash[22081]: cluster 2024-03-30T13:58:29.219088+0000 mgr.a (mgr.14152) 221 : cluster 0 pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-03-30T13:58:31.481 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:31 smithi136 bash[22230]: cluster 2024-03-30T13:58:29.219088+0000 mgr.a (mgr.14152) 221 : cluster 0 pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-03-30T13:58:31.607 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:31 smithi026 bash[21443]: cluster 2024-03-30T13:58:29.219088+0000 mgr.a (mgr.14152) 221 : cluster 0 pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-03-30T13:58:33.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:33 smithi050 bash[22081]: cluster 2024-03-30T13:58:31.219599+0000 mgr.a (mgr.14152) 222 : cluster 0 pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:33.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:33 smithi050 bash[22081]: audit 2024-03-30T13:58:32.952730+0000 mon.a (mon.0) 615 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ddffc97e-d3cc-4703-8822-9432ca414ac7"}]: dispatch 2024-03-30T13:58:33.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:33 smithi050 bash[22081]: audit 2024-03-30T13:58:32.953543+0000 mon.b (mon.2) 12 : audit 1 from='client.? 172.21.15.50:0/3257247351' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ddffc97e-d3cc-4703-8822-9432ca414ac7"}]: dispatch 2024-03-30T13:58:33.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:33 smithi050 bash[22081]: audit 2024-03-30T13:58:32.956303+0000 mon.a (mon.0) 616 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ddffc97e-d3cc-4703-8822-9432ca414ac7"}]': finished 2024-03-30T13:58:33.405 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:33 smithi050 bash[22081]: cluster 2024-03-30T13:58:32.961787+0000 mon.a (mon.0) 617 : cluster 0 osdmap e22: 4 total, 3 up, 4 in 2024-03-30T13:58:33.405 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:33 smithi050 bash[22081]: audit 2024-03-30T13:58:32.962192+0000 mon.a (mon.0) 618 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-30T13:58:33.481 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:33 smithi136 bash[22230]: cluster 2024-03-30T13:58:31.219599+0000 mgr.a (mgr.14152) 222 : cluster 0 pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:33.481 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:33 smithi136 bash[22230]: audit 2024-03-30T13:58:32.952730+0000 mon.a (mon.0) 615 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ddffc97e-d3cc-4703-8822-9432ca414ac7"}]: dispatch 2024-03-30T13:58:33.481 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:33 smithi136 bash[22230]: audit 2024-03-30T13:58:32.953543+0000 mon.b (mon.2) 12 : audit 1 from='client.? 172.21.15.50:0/3257247351' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ddffc97e-d3cc-4703-8822-9432ca414ac7"}]: dispatch 2024-03-30T13:58:33.481 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:33 smithi136 bash[22230]: audit 2024-03-30T13:58:32.956303+0000 mon.a (mon.0) 616 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ddffc97e-d3cc-4703-8822-9432ca414ac7"}]': finished 2024-03-30T13:58:33.481 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:33 smithi136 bash[22230]: cluster 2024-03-30T13:58:32.961787+0000 mon.a (mon.0) 617 : cluster 0 osdmap e22: 4 total, 3 up, 4 in 2024-03-30T13:58:33.481 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:33 smithi136 bash[22230]: audit 2024-03-30T13:58:32.962192+0000 mon.a (mon.0) 618 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-30T13:58:33.607 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:33 smithi026 bash[21443]: cluster 2024-03-30T13:58:31.219599+0000 mgr.a (mgr.14152) 222 : cluster 0 pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:33.607 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:33 smithi026 bash[21443]: audit 2024-03-30T13:58:32.952730+0000 mon.a (mon.0) 615 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ddffc97e-d3cc-4703-8822-9432ca414ac7"}]: dispatch 2024-03-30T13:58:33.607 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:33 smithi026 bash[21443]: audit 2024-03-30T13:58:32.953543+0000 mon.b (mon.2) 12 : audit 1 from='client.? 172.21.15.50:0/3257247351' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ddffc97e-d3cc-4703-8822-9432ca414ac7"}]: dispatch 2024-03-30T13:58:33.607 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:33 smithi026 bash[21443]: audit 2024-03-30T13:58:32.956303+0000 mon.a (mon.0) 616 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ddffc97e-d3cc-4703-8822-9432ca414ac7"}]': finished 2024-03-30T13:58:33.607 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:33 smithi026 bash[21443]: cluster 2024-03-30T13:58:32.961787+0000 mon.a (mon.0) 617 : cluster 0 osdmap e22: 4 total, 3 up, 4 in 2024-03-30T13:58:33.608 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:33 smithi026 bash[21443]: audit 2024-03-30T13:58:32.962192+0000 mon.a (mon.0) 618 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-30T13:58:34.857 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:34 smithi026 bash[21443]: cluster 2024-03-30T13:58:33.220109+0000 mgr.a (mgr.14152) 223 : cluster 0 pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:34.857 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:34 smithi026 bash[21443]: audit 2024-03-30T13:58:33.671042+0000 mon.a (mon.0) 619 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:34.857 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:34 smithi026 bash[21443]: audit 2024-03-30T13:58:33.679265+0000 mon.a (mon.0) 620 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:34.857 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:34 smithi026 bash[21443]: audit 2024-03-30T13:58:33.689394+0000 mon.a (mon.0) 621 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:34.857 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:34 smithi026 bash[21443]: audit 2024-03-30T13:58:33.702233+0000 mon.b (mon.2) 13 : audit 0 from='client.? 172.21.15.50:0/1279410140' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-30T13:58:34.981 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:34 smithi136 bash[22230]: cluster 2024-03-30T13:58:33.220109+0000 mgr.a (mgr.14152) 223 : cluster 0 pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:34.981 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:34 smithi136 bash[22230]: audit 2024-03-30T13:58:33.671042+0000 mon.a (mon.0) 619 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:34.981 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:34 smithi136 bash[22230]: audit 2024-03-30T13:58:33.679265+0000 mon.a (mon.0) 620 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:34.981 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:34 smithi136 bash[22230]: audit 2024-03-30T13:58:33.689394+0000 mon.a (mon.0) 621 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:34.981 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:34 smithi136 bash[22230]: audit 2024-03-30T13:58:33.702233+0000 mon.b (mon.2) 13 : audit 0 from='client.? 172.21.15.50:0/1279410140' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-30T13:58:35.154 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:34 smithi050 bash[22081]: cluster 2024-03-30T13:58:33.220109+0000 mgr.a (mgr.14152) 223 : cluster 0 pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 91 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:35.154 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:34 smithi050 bash[22081]: audit 2024-03-30T13:58:33.671042+0000 mon.a (mon.0) 619 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:35.154 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:34 smithi050 bash[22081]: audit 2024-03-30T13:58:33.679265+0000 mon.a (mon.0) 620 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:35.154 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:34 smithi050 bash[22081]: audit 2024-03-30T13:58:33.689394+0000 mon.a (mon.0) 621 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:35.154 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:34 smithi050 bash[22081]: audit 2024-03-30T13:58:33.702233+0000 mon.b (mon.2) 13 : audit 0 from='client.? 172.21.15.50:0/1279410140' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-30T13:58:36.980 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:36 smithi136 bash[22230]: cluster 2024-03-30T13:58:35.220782+0000 mgr.a (mgr.14152) 224 : cluster 0 pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:37.065 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:36 smithi026 bash[21443]: cluster 2024-03-30T13:58:35.220782+0000 mgr.a (mgr.14152) 224 : cluster 0 pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:37.154 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:36 smithi050 bash[22081]: cluster 2024-03-30T13:58:35.220782+0000 mgr.a (mgr.14152) 224 : cluster 0 pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:38.980 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:38 smithi136 bash[22230]: cluster 2024-03-30T13:58:37.221349+0000 mgr.a (mgr.14152) 225 : cluster 0 pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:39.107 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:38 smithi026 bash[21443]: cluster 2024-03-30T13:58:37.221349+0000 mgr.a (mgr.14152) 225 : cluster 0 pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:39.154 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:38 smithi050 bash[22081]: cluster 2024-03-30T13:58:37.221349+0000 mgr.a (mgr.14152) 225 : cluster 0 pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:41.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:41 smithi026 bash[21443]: cluster 2024-03-30T13:58:39.221902+0000 mgr.a (mgr.14152) 226 : cluster 0 pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:41.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:41 smithi026 bash[21443]: audit 2024-03-30T13:58:40.020973+0000 mon.a (mon.0) 622 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:41.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:41 smithi026 bash[21443]: audit 2024-03-30T13:58:40.029789+0000 mon.a (mon.0) 623 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:41.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:41 smithi026 bash[21443]: audit 2024-03-30T13:58:40.040550+0000 mon.a (mon.0) 624 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:41.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:41 smithi050 bash[22081]: cluster 2024-03-30T13:58:39.221902+0000 mgr.a (mgr.14152) 226 : cluster 0 pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:41.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:41 smithi050 bash[22081]: audit 2024-03-30T13:58:40.020973+0000 mon.a (mon.0) 622 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:41.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:41 smithi050 bash[22081]: audit 2024-03-30T13:58:40.029789+0000 mon.a (mon.0) 623 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:41.405 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:41 smithi050 bash[22081]: audit 2024-03-30T13:58:40.040550+0000 mon.a (mon.0) 624 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:41.480 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:41 smithi136 bash[22230]: cluster 2024-03-30T13:58:39.221902+0000 mgr.a (mgr.14152) 226 : cluster 0 pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:41.481 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:41 smithi136 bash[22230]: audit 2024-03-30T13:58:40.020973+0000 mon.a (mon.0) 622 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:41.481 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:41 smithi136 bash[22230]: audit 2024-03-30T13:58:40.029789+0000 mon.a (mon.0) 623 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:41.481 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:41 smithi136 bash[22230]: audit 2024-03-30T13:58:40.040550+0000 mon.a (mon.0) 624 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:43.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:43 smithi026 bash[21443]: cluster 2024-03-30T13:58:41.222510+0000 mgr.a (mgr.14152) 227 : cluster 0 pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:43.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:43 smithi026 bash[21443]: audit 2024-03-30T13:58:42.336580+0000 mon.a (mon.0) 625 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:43.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:43 smithi026 bash[21443]: audit 2024-03-30T13:58:42.346038+0000 mon.a (mon.0) 626 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:43.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:43 smithi026 bash[21443]: audit 2024-03-30T13:58:42.356364+0000 mon.a (mon.0) 627 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:43.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:43 smithi050 bash[22081]: cluster 2024-03-30T13:58:41.222510+0000 mgr.a (mgr.14152) 227 : cluster 0 pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:43.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:43 smithi050 bash[22081]: audit 2024-03-30T13:58:42.336580+0000 mon.a (mon.0) 625 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:43.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:43 smithi050 bash[22081]: audit 2024-03-30T13:58:42.346038+0000 mon.a (mon.0) 626 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:43.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:43 smithi050 bash[22081]: audit 2024-03-30T13:58:42.356364+0000 mon.a (mon.0) 627 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:43.480 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:43 smithi136 bash[22230]: cluster 2024-03-30T13:58:41.222510+0000 mgr.a (mgr.14152) 227 : cluster 0 pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:43.481 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:43 smithi136 bash[22230]: audit 2024-03-30T13:58:42.336580+0000 mon.a (mon.0) 625 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:43.481 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:43 smithi136 bash[22230]: audit 2024-03-30T13:58:42.346038+0000 mon.a (mon.0) 626 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:43.481 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:43 smithi136 bash[22230]: audit 2024-03-30T13:58:42.356364+0000 mon.a (mon.0) 627 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:45.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:45 smithi026 bash[21443]: cluster 2024-03-30T13:58:43.223039+0000 mgr.a (mgr.14152) 228 : cluster 0 pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:45.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:45 smithi050 bash[22081]: cluster 2024-03-30T13:58:43.223039+0000 mgr.a (mgr.14152) 228 : cluster 0 pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:45.480 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:45 smithi136 bash[22230]: cluster 2024-03-30T13:58:43.223039+0000 mgr.a (mgr.14152) 228 : cluster 0 pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:46.343 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:46 smithi050 bash[22081]: audit 2024-03-30T13:58:45.113284+0000 mon.a (mon.0) 628 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-03-30T13:58:46.343 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:46 smithi050 bash[22081]: audit 2024-03-30T13:58:45.115092+0000 mon.a (mon.0) 629 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:58:46.343 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:46 smithi050 bash[22081]: cephadm 2024-03-30T13:58:45.116773+0000 mgr.a (mgr.14152) 229 : cephadm 1 Deploying daemon osd.3 on smithi050 2024-03-30T13:58:46.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:46 smithi026 bash[21443]: audit 2024-03-30T13:58:45.113284+0000 mon.a (mon.0) 628 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-03-30T13:58:46.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:46 smithi026 bash[21443]: audit 2024-03-30T13:58:45.115092+0000 mon.a (mon.0) 629 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:58:46.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:46 smithi026 bash[21443]: cephadm 2024-03-30T13:58:45.116773+0000 mgr.a (mgr.14152) 229 : cephadm 1 Deploying daemon osd.3 on smithi050 2024-03-30T13:58:46.480 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:46 smithi136 bash[22230]: audit 2024-03-30T13:58:45.113284+0000 mon.a (mon.0) 628 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-03-30T13:58:46.480 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:46 smithi136 bash[22230]: audit 2024-03-30T13:58:45.115092+0000 mon.a (mon.0) 629 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:58:46.481 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:46 smithi136 bash[22230]: cephadm 2024-03-30T13:58:45.116773+0000 mgr.a (mgr.14152) 229 : cephadm 1 Deploying daemon osd.3 on smithi050 2024-03-30T13:58:47.281 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:47 smithi136 bash[22230]: cluster 2024-03-30T13:58:45.223675+0000 mgr.a (mgr.14152) 230 : cluster 0 pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:47.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:47 smithi026 bash[21443]: cluster 2024-03-30T13:58:45.223675+0000 mgr.a (mgr.14152) 230 : cluster 0 pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:47.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:47 smithi050 bash[22081]: cluster 2024-03-30T13:58:45.223675+0000 mgr.a (mgr.14152) 230 : cluster 0 pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:49.303 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:49 smithi136 bash[22230]: cluster 2024-03-30T13:58:47.224220+0000 mgr.a (mgr.14152) 231 : cluster 0 pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:49.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:49 smithi026 bash[21443]: cluster 2024-03-30T13:58:47.224220+0000 mgr.a (mgr.14152) 231 : cluster 0 pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:49.385 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:49 smithi050 bash[22081]: cluster 2024-03-30T13:58:47.224220+0000 mgr.a (mgr.14152) 231 : cluster 0 pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:49.654 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:49 smithi050 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:58:49.654 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:49 smithi050 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:58:49.654 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:58:49 smithi050 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:58:49.654 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 13:58:49 smithi050 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:58:49.654 INFO:journalctl@ceph.osd.2.smithi050.stdout:Mar 30 13:58:49 smithi050 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:58:49.655 INFO:journalctl@ceph.osd.2.smithi050.stdout:Mar 30 13:58:49 smithi050 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:58:50.904 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:50 smithi050 bash[22081]: cluster 2024-03-30T13:58:49.224795+0000 mgr.a (mgr.14152) 232 : cluster 0 pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:50.904 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:50 smithi050 bash[22081]: audit 2024-03-30T13:58:49.779499+0000 mon.a (mon.0) 630 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:50.904 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:50 smithi050 bash[22081]: audit 2024-03-30T13:58:49.788476+0000 mon.a (mon.0) 631 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:50.904 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:50 smithi050 bash[22081]: audit 2024-03-30T13:58:49.799824+0000 mon.a (mon.0) 632 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:58:50.904 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:50 smithi050 bash[22081]: audit 2024-03-30T13:58:49.808436+0000 mon.a (mon.0) 633 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:58:50.904 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:50 smithi050 bash[22081]: audit 2024-03-30T13:58:49.811721+0000 mon.a (mon.0) 634 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:58:50.905 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:50 smithi050 bash[22081]: audit 2024-03-30T13:58:49.823349+0000 mon.a (mon.0) 635 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:51.107 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:50 smithi026 bash[21443]: cluster 2024-03-30T13:58:49.224795+0000 mgr.a (mgr.14152) 232 : cluster 0 pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:51.107 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:50 smithi026 bash[21443]: audit 2024-03-30T13:58:49.779499+0000 mon.a (mon.0) 630 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:51.107 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:50 smithi026 bash[21443]: audit 2024-03-30T13:58:49.788476+0000 mon.a (mon.0) 631 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:51.108 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:50 smithi026 bash[21443]: audit 2024-03-30T13:58:49.799824+0000 mon.a (mon.0) 632 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:58:51.108 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:50 smithi026 bash[21443]: audit 2024-03-30T13:58:49.808436+0000 mon.a (mon.0) 633 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:58:51.108 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:50 smithi026 bash[21443]: audit 2024-03-30T13:58:49.811721+0000 mon.a (mon.0) 634 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:58:51.108 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:50 smithi026 bash[21443]: audit 2024-03-30T13:58:49.823349+0000 mon.a (mon.0) 635 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:51.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:50 smithi136 bash[22230]: cluster 2024-03-30T13:58:49.224795+0000 mgr.a (mgr.14152) 232 : cluster 0 pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:51.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:50 smithi136 bash[22230]: audit 2024-03-30T13:58:49.779499+0000 mon.a (mon.0) 630 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:51.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:50 smithi136 bash[22230]: audit 2024-03-30T13:58:49.788476+0000 mon.a (mon.0) 631 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:51.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:50 smithi136 bash[22230]: audit 2024-03-30T13:58:49.799824+0000 mon.a (mon.0) 632 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:58:51.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:50 smithi136 bash[22230]: audit 2024-03-30T13:58:49.808436+0000 mon.a (mon.0) 633 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:58:51.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:50 smithi136 bash[22230]: audit 2024-03-30T13:58:49.811721+0000 mon.a (mon.0) 634 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:58:51.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:50 smithi136 bash[22230]: audit 2024-03-30T13:58:49.823349+0000 mon.a (mon.0) 635 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:52.904 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:52 smithi050 bash[22081]: cluster 2024-03-30T13:58:51.225324+0000 mgr.a (mgr.14152) 233 : cluster 0 pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:53.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:52 smithi026 bash[21443]: cluster 2024-03-30T13:58:51.225324+0000 mgr.a (mgr.14152) 233 : cluster 0 pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:53.208 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:52 smithi136 bash[22230]: cluster 2024-03-30T13:58:51.225324+0000 mgr.a (mgr.14152) 233 : cluster 0 pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:55.107 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:54 smithi026 bash[21443]: cluster 2024-03-30T13:58:53.225853+0000 mgr.a (mgr.14152) 234 : cluster 0 pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:55.107 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:54 smithi026 bash[21443]: audit 2024-03-30T13:58:53.896651+0000 mon.a (mon.0) 636 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:55.107 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:54 smithi026 bash[21443]: audit 2024-03-30T13:58:53.904619+0000 mon.a (mon.0) 637 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:55.107 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:54 smithi026 bash[21443]: audit 2024-03-30T13:58:53.914547+0000 mon.a (mon.0) 638 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:55.154 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:54 smithi050 bash[22081]: cluster 2024-03-30T13:58:53.225853+0000 mgr.a (mgr.14152) 234 : cluster 0 pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:55.154 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:54 smithi050 bash[22081]: audit 2024-03-30T13:58:53.896651+0000 mon.a (mon.0) 636 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:55.154 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:54 smithi050 bash[22081]: audit 2024-03-30T13:58:53.904619+0000 mon.a (mon.0) 637 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:55.154 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:54 smithi050 bash[22081]: audit 2024-03-30T13:58:53.914547+0000 mon.a (mon.0) 638 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:55.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:54 smithi136 bash[22230]: cluster 2024-03-30T13:58:53.225853+0000 mgr.a (mgr.14152) 234 : cluster 0 pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:55.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:54 smithi136 bash[22230]: audit 2024-03-30T13:58:53.896651+0000 mon.a (mon.0) 636 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:55.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:54 smithi136 bash[22230]: audit 2024-03-30T13:58:53.904619+0000 mon.a (mon.0) 637 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:55.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:54 smithi136 bash[22230]: audit 2024-03-30T13:58:53.914547+0000 mon.a (mon.0) 638 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:58:56.904 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:56 smithi050 bash[22081]: cluster 2024-03-30T13:58:55.226388+0000 mgr.a (mgr.14152) 235 : cluster 0 pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:56.904 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:56 smithi050 bash[22081]: audit 2024-03-30T13:58:56.195917+0000 mon.a (mon.0) 639 : audit 1 from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-03-30T13:58:56.904 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:56 smithi050 bash[22081]: audit 2024-03-30T13:58:56.197281+0000 mon.b (mon.2) 14 : audit 1 from='osd.3 [v2:172.21.15.50:6808/623805305,v1:172.21.15.50:6809/623805305]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-03-30T13:58:57.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:56 smithi136 bash[22230]: cluster 2024-03-30T13:58:55.226388+0000 mgr.a (mgr.14152) 235 : cluster 0 pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:57.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:56 smithi136 bash[22230]: audit 2024-03-30T13:58:56.195917+0000 mon.a (mon.0) 639 : audit 1 from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-03-30T13:58:57.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:56 smithi136 bash[22230]: audit 2024-03-30T13:58:56.197281+0000 mon.b (mon.2) 14 : audit 1 from='osd.3 [v2:172.21.15.50:6808/623805305,v1:172.21.15.50:6809/623805305]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-03-30T13:58:57.345 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:56 smithi026 bash[21443]: cluster 2024-03-30T13:58:55.226388+0000 mgr.a (mgr.14152) 235 : cluster 0 pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:57.346 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:56 smithi026 bash[21443]: audit 2024-03-30T13:58:56.195917+0000 mon.a (mon.0) 639 : audit 1 from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-03-30T13:58:57.346 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:56 smithi026 bash[21443]: audit 2024-03-30T13:58:56.197281+0000 mon.b (mon.2) 14 : audit 1 from='osd.3 [v2:172.21.15.50:6808/623805305,v1:172.21.15.50:6809/623805305]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-03-30T13:58:58.204 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:57 smithi050 bash[22081]: audit 2024-03-30T13:58:56.905494+0000 mon.a (mon.0) 640 : audit 1 from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-03-30T13:58:58.205 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:57 smithi050 bash[22081]: cluster 2024-03-30T13:58:56.908917+0000 mon.a (mon.0) 641 : cluster 0 osdmap e23: 4 total, 3 up, 4 in 2024-03-30T13:58:58.205 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:57 smithi050 bash[22081]: audit 2024-03-30T13:58:56.909278+0000 mon.a (mon.0) 642 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-30T13:58:58.205 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:57 smithi050 bash[22081]: audit 2024-03-30T13:58:56.911748+0000 mon.a (mon.0) 643 : audit 1 from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-03-30T13:58:58.205 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:57 smithi050 bash[22081]: audit 2024-03-30T13:58:56.913201+0000 mon.b (mon.2) 15 : audit 1 from='osd.3 [v2:172.21.15.50:6808/623805305,v1:172.21.15.50:6809/623805305]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-03-30T13:58:58.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:57 smithi136 bash[22230]: audit 2024-03-30T13:58:56.905494+0000 mon.a (mon.0) 640 : audit 1 from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-03-30T13:58:58.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:57 smithi136 bash[22230]: cluster 2024-03-30T13:58:56.908917+0000 mon.a (mon.0) 641 : cluster 0 osdmap e23: 4 total, 3 up, 4 in 2024-03-30T13:58:58.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:57 smithi136 bash[22230]: audit 2024-03-30T13:58:56.909278+0000 mon.a (mon.0) 642 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-30T13:58:58.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:57 smithi136 bash[22230]: audit 2024-03-30T13:58:56.911748+0000 mon.a (mon.0) 643 : audit 1 from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-03-30T13:58:58.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:57 smithi136 bash[22230]: audit 2024-03-30T13:58:56.913201+0000 mon.b (mon.2) 15 : audit 1 from='osd.3 [v2:172.21.15.50:6808/623805305,v1:172.21.15.50:6809/623805305]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-03-30T13:58:58.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:57 smithi026 bash[21443]: audit 2024-03-30T13:58:56.905494+0000 mon.a (mon.0) 640 : audit 1 from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-03-30T13:58:58.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:57 smithi026 bash[21443]: cluster 2024-03-30T13:58:56.908917+0000 mon.a (mon.0) 641 : cluster 0 osdmap e23: 4 total, 3 up, 4 in 2024-03-30T13:58:58.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:57 smithi026 bash[21443]: audit 2024-03-30T13:58:56.909278+0000 mon.a (mon.0) 642 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-30T13:58:58.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:57 smithi026 bash[21443]: audit 2024-03-30T13:58:56.911748+0000 mon.a (mon.0) 643 : audit 1 from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-03-30T13:58:58.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:57 smithi026 bash[21443]: audit 2024-03-30T13:58:56.913201+0000 mon.b (mon.2) 15 : audit 1 from='osd.3 [v2:172.21.15.50:6808/623805305,v1:172.21.15.50:6809/623805305]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-03-30T13:58:59.154 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:58 smithi050 bash[22081]: cluster 2024-03-30T13:58:57.226742+0000 mgr.a (mgr.14152) 236 : cluster 0 pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:59.154 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:58 smithi050 bash[22081]: audit 2024-03-30T13:58:57.913537+0000 mon.a (mon.0) 644 : audit 1 from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-03-30T13:58:59.154 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:58 smithi050 bash[22081]: cluster 2024-03-30T13:58:57.917212+0000 mon.a (mon.0) 645 : cluster 0 osdmap e24: 4 total, 3 up, 4 in 2024-03-30T13:58:59.154 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:58 smithi050 bash[22081]: audit 2024-03-30T13:58:57.917837+0000 mon.a (mon.0) 646 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-30T13:58:59.154 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:58 smithi050 bash[22081]: audit 2024-03-30T13:58:57.928488+0000 mon.a (mon.0) 647 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-30T13:58:59.154 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:58 smithi050 bash[22081]: audit 2024-03-30T13:58:58.252564+0000 mon.a (mon.0) 648 : audit 1 from='osd.3 ' entity='osd.3' 2024-03-30T13:58:59.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:58 smithi136 bash[22230]: cluster 2024-03-30T13:58:57.226742+0000 mgr.a (mgr.14152) 236 : cluster 0 pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:59.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:58 smithi136 bash[22230]: audit 2024-03-30T13:58:57.913537+0000 mon.a (mon.0) 644 : audit 1 from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-03-30T13:58:59.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:58 smithi136 bash[22230]: cluster 2024-03-30T13:58:57.917212+0000 mon.a (mon.0) 645 : cluster 0 osdmap e24: 4 total, 3 up, 4 in 2024-03-30T13:58:59.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:58 smithi136 bash[22230]: audit 2024-03-30T13:58:57.917837+0000 mon.a (mon.0) 646 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-30T13:58:59.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:58 smithi136 bash[22230]: audit 2024-03-30T13:58:57.928488+0000 mon.a (mon.0) 647 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-30T13:58:59.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:58 smithi136 bash[22230]: audit 2024-03-30T13:58:58.252564+0000 mon.a (mon.0) 648 : audit 1 from='osd.3 ' entity='osd.3' 2024-03-30T13:58:59.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:58 smithi026 bash[21443]: cluster 2024-03-30T13:58:57.226742+0000 mgr.a (mgr.14152) 236 : cluster 0 pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:58:59.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:58 smithi026 bash[21443]: audit 2024-03-30T13:58:57.913537+0000 mon.a (mon.0) 644 : audit 1 from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-03-30T13:58:59.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:58 smithi026 bash[21443]: cluster 2024-03-30T13:58:57.917212+0000 mon.a (mon.0) 645 : cluster 0 osdmap e24: 4 total, 3 up, 4 in 2024-03-30T13:58:59.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:58 smithi026 bash[21443]: audit 2024-03-30T13:58:57.917837+0000 mon.a (mon.0) 646 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-30T13:58:59.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:58 smithi026 bash[21443]: audit 2024-03-30T13:58:57.928488+0000 mon.a (mon.0) 647 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-30T13:58:59.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:58 smithi026 bash[21443]: audit 2024-03-30T13:58:58.252564+0000 mon.a (mon.0) 648 : audit 1 from='osd.3 ' entity='osd.3' 2024-03-30T13:59:00.071 INFO:teuthology.orchestra.run.smithi050.stdout:Created osd(s) 3 on host 'smithi050' 2024-03-30T13:59:00.220 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:59 smithi050 bash[22081]: cluster 2024-03-30T13:58:57.170204+0000 osd.3 (osd.3) 1 : cluster 0 purged_snaps scrub starts 2024-03-30T13:59:00.220 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:59 smithi050 bash[22081]: cluster 2024-03-30T13:58:57.170289+0000 osd.3 (osd.3) 2 : cluster 0 purged_snaps scrub ok 2024-03-30T13:59:00.220 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:59 smithi050 bash[22081]: cluster 2024-03-30T13:58:58.929507+0000 mon.a (mon.0) 649 : cluster 1 osd.3 [v2:172.21.15.50:6808/623805305,v1:172.21.15.50:6809/623805305] boot 2024-03-30T13:59:00.220 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:59 smithi050 bash[22081]: cluster 2024-03-30T13:58:58.929602+0000 mon.a (mon.0) 650 : cluster 0 osdmap e25: 4 total, 4 up, 4 in 2024-03-30T13:59:00.221 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:58:59 smithi050 bash[22081]: audit 2024-03-30T13:58:58.930003+0000 mon.a (mon.0) 651 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-30T13:59:00.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:59 smithi136 bash[22230]: cluster 2024-03-30T13:58:57.170204+0000 osd.3 (osd.3) 1 : cluster 0 purged_snaps scrub starts 2024-03-30T13:59:00.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:59 smithi136 bash[22230]: cluster 2024-03-30T13:58:57.170289+0000 osd.3 (osd.3) 2 : cluster 0 purged_snaps scrub ok 2024-03-30T13:59:00.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:59 smithi136 bash[22230]: cluster 2024-03-30T13:58:58.929507+0000 mon.a (mon.0) 649 : cluster 1 osd.3 [v2:172.21.15.50:6808/623805305,v1:172.21.15.50:6809/623805305] boot 2024-03-30T13:59:00.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:59 smithi136 bash[22230]: cluster 2024-03-30T13:58:58.929602+0000 mon.a (mon.0) 650 : cluster 0 osdmap e25: 4 total, 4 up, 4 in 2024-03-30T13:59:00.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:58:59 smithi136 bash[22230]: audit 2024-03-30T13:58:58.930003+0000 mon.a (mon.0) 651 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-30T13:59:00.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:59 smithi026 bash[21443]: cluster 2024-03-30T13:58:57.170204+0000 osd.3 (osd.3) 1 : cluster 0 purged_snaps scrub starts 2024-03-30T13:59:00.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:59 smithi026 bash[21443]: cluster 2024-03-30T13:58:57.170289+0000 osd.3 (osd.3) 2 : cluster 0 purged_snaps scrub ok 2024-03-30T13:59:00.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:59 smithi026 bash[21443]: cluster 2024-03-30T13:58:58.929507+0000 mon.a (mon.0) 649 : cluster 1 osd.3 [v2:172.21.15.50:6808/623805305,v1:172.21.15.50:6809/623805305] boot 2024-03-30T13:59:00.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:59 smithi026 bash[21443]: cluster 2024-03-30T13:58:58.929602+0000 mon.a (mon.0) 650 : cluster 0 osdmap e25: 4 total, 4 up, 4 in 2024-03-30T13:59:00.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:58:59 smithi026 bash[21443]: audit 2024-03-30T13:58:58.930003+0000 mon.a (mon.0) 651 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-30T13:59:01.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:00 smithi136 bash[22230]: cluster 2024-03-30T13:58:59.227232+0000 mgr.a (mgr.14152) 237 : cluster 0 pgmap v186: 1 pgs: 1 unknown; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:59:01.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:00 smithi136 bash[22230]: cluster 2024-03-30T13:58:59.940027+0000 mon.a (mon.0) 652 : cluster 0 osdmap e26: 4 total, 4 up, 4 in 2024-03-30T13:59:01.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:00 smithi136 bash[22230]: audit 2024-03-30T13:59:00.031068+0000 mon.a (mon.0) 653 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:01.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:00 smithi136 bash[22230]: audit 2024-03-30T13:59:00.036870+0000 mon.a (mon.0) 654 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:01.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:00 smithi136 bash[22230]: audit 2024-03-30T13:59:00.057814+0000 mon.a (mon.0) 655 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:59:01.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:00 smithi136 bash[22230]: audit 2024-03-30T13:59:00.060937+0000 mon.a (mon.0) 656 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-03-30T13:59:01.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:00 smithi136 bash[22230]: audit 2024-03-30T13:59:00.061862+0000 mon.a (mon.0) 657 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-03-30T13:59:01.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:00 smithi136 bash[22230]: cephadm 2024-03-30T13:59:00.062589+0000 mgr.a (mgr.14152) 238 : cephadm 1 Adjusting osd_memory_target on smithi050 to 8122M 2024-03-30T13:59:01.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:00 smithi136 bash[22230]: audit 2024-03-30T13:59:00.066790+0000 mon.a (mon.0) 658 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:01.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:00 smithi136 bash[22230]: audit 2024-03-30T13:59:00.069078+0000 mon.a (mon.0) 659 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:59:01.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:00 smithi136 bash[22230]: audit 2024-03-30T13:59:00.069989+0000 mon.a (mon.0) 660 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:59:01.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:00 smithi136 bash[22230]: audit 2024-03-30T13:59:00.075760+0000 mon.a (mon.0) 661 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:01.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:00 smithi136 bash[22230]: audit 2024-03-30T13:59:00.200002+0000 mon.a (mon.0) 662 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:01.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:00 smithi136 bash[22230]: audit 2024-03-30T13:59:00.208889+0000 mon.a (mon.0) 663 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:01.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:00 smithi136 bash[22230]: audit 2024-03-30T13:59:00.225051+0000 mon.a (mon.0) 664 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:01.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:00 smithi136 bash[22230]: audit 2024-03-30T13:59:00.227134+0000 mon.a (mon.0) 665 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:59:01.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:00 smithi136 bash[22230]: audit 2024-03-30T13:59:00.232350+0000 mon.a (mon.0) 666 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:59:01.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:00 smithi136 bash[22230]: audit 2024-03-30T13:59:00.233816+0000 mon.a (mon.0) 667 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:59:01.232 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:00 smithi136 bash[22230]: audit 2024-03-30T13:59:00.241531+0000 mon.a (mon.0) 668 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:01.346 DEBUG:teuthology.orchestra.run.smithi050:osd.3> sudo journalctl -f -n 0 -u ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@osd.3.service 2024-03-30T13:59:01.346 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:00 smithi050 bash[22081]: cluster 2024-03-30T13:58:59.227232+0000 mgr.a (mgr.14152) 237 : cluster 0 pgmap v186: 1 pgs: 1 unknown; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:59:01.346 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:00 smithi050 bash[22081]: cluster 2024-03-30T13:58:59.940027+0000 mon.a (mon.0) 652 : cluster 0 osdmap e26: 4 total, 4 up, 4 in 2024-03-30T13:59:01.346 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:00 smithi050 bash[22081]: audit 2024-03-30T13:59:00.031068+0000 mon.a (mon.0) 653 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:01.346 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:00 smithi050 bash[22081]: audit 2024-03-30T13:59:00.036870+0000 mon.a (mon.0) 654 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:01.346 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:00 smithi050 bash[22081]: audit 2024-03-30T13:59:00.057814+0000 mon.a (mon.0) 655 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:59:01.347 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:00 smithi050 bash[22081]: audit 2024-03-30T13:59:00.060937+0000 mon.a (mon.0) 656 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-03-30T13:59:01.347 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:00 smithi050 bash[22081]: audit 2024-03-30T13:59:00.061862+0000 mon.a (mon.0) 657 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-03-30T13:59:01.347 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:00 smithi050 bash[22081]: cephadm 2024-03-30T13:59:00.062589+0000 mgr.a (mgr.14152) 238 : cephadm 1 Adjusting osd_memory_target on smithi050 to 8122M 2024-03-30T13:59:01.347 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:00 smithi050 bash[22081]: audit 2024-03-30T13:59:00.066790+0000 mon.a (mon.0) 658 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:01.347 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:00 smithi050 bash[22081]: audit 2024-03-30T13:59:00.069078+0000 mon.a (mon.0) 659 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:59:01.347 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:00 smithi050 bash[22081]: audit 2024-03-30T13:59:00.069989+0000 mon.a (mon.0) 660 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:59:01.347 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:00 smithi050 bash[22081]: audit 2024-03-30T13:59:00.075760+0000 mon.a (mon.0) 661 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:01.347 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:00 smithi050 bash[22081]: audit 2024-03-30T13:59:00.200002+0000 mon.a (mon.0) 662 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:01.347 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:00 smithi050 bash[22081]: audit 2024-03-30T13:59:00.208889+0000 mon.a (mon.0) 663 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:01.347 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:00 smithi050 bash[22081]: audit 2024-03-30T13:59:00.225051+0000 mon.a (mon.0) 664 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:01.347 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:00 smithi050 bash[22081]: audit 2024-03-30T13:59:00.227134+0000 mon.a (mon.0) 665 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:59:01.347 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:00 smithi050 bash[22081]: audit 2024-03-30T13:59:00.232350+0000 mon.a (mon.0) 666 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:59:01.347 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:00 smithi050 bash[22081]: audit 2024-03-30T13:59:00.233816+0000 mon.a (mon.0) 667 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:59:01.347 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:00 smithi050 bash[22081]: audit 2024-03-30T13:59:00.241531+0000 mon.a (mon.0) 668 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:01.350 INFO:tasks.cephadm:Deploying osd.4 on smithi136 with /dev/vg_nvme/lv_4... 2024-03-30T13:59:01.350 DEBUG:teuthology.orchestra.run.smithi136:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-03-30T13:59:01.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:00 smithi026 bash[21443]: cluster 2024-03-30T13:58:59.227232+0000 mgr.a (mgr.14152) 237 : cluster 0 pgmap v186: 1 pgs: 1 unknown; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-03-30T13:59:01.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:00 smithi026 bash[21443]: cluster 2024-03-30T13:58:59.940027+0000 mon.a (mon.0) 652 : cluster 0 osdmap e26: 4 total, 4 up, 4 in 2024-03-30T13:59:01.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:00 smithi026 bash[21443]: audit 2024-03-30T13:59:00.031068+0000 mon.a (mon.0) 653 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:01.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:00 smithi026 bash[21443]: audit 2024-03-30T13:59:00.036870+0000 mon.a (mon.0) 654 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:01.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:00 smithi026 bash[21443]: audit 2024-03-30T13:59:00.057814+0000 mon.a (mon.0) 655 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:59:01.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:00 smithi026 bash[21443]: audit 2024-03-30T13:59:00.060937+0000 mon.a (mon.0) 656 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-03-30T13:59:01.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:00 smithi026 bash[21443]: audit 2024-03-30T13:59:00.061862+0000 mon.a (mon.0) 657 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-03-30T13:59:01.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:00 smithi026 bash[21443]: cephadm 2024-03-30T13:59:00.062589+0000 mgr.a (mgr.14152) 238 : cephadm 1 Adjusting osd_memory_target on smithi050 to 8122M 2024-03-30T13:59:01.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:00 smithi026 bash[21443]: audit 2024-03-30T13:59:00.066790+0000 mon.a (mon.0) 658 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:01.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:00 smithi026 bash[21443]: audit 2024-03-30T13:59:00.069078+0000 mon.a (mon.0) 659 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:59:01.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:00 smithi026 bash[21443]: audit 2024-03-30T13:59:00.069989+0000 mon.a (mon.0) 660 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:59:01.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:00 smithi026 bash[21443]: audit 2024-03-30T13:59:00.075760+0000 mon.a (mon.0) 661 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:01.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:00 smithi026 bash[21443]: audit 2024-03-30T13:59:00.200002+0000 mon.a (mon.0) 662 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:01.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:00 smithi026 bash[21443]: audit 2024-03-30T13:59:00.208889+0000 mon.a (mon.0) 663 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:01.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:00 smithi026 bash[21443]: audit 2024-03-30T13:59:00.225051+0000 mon.a (mon.0) 664 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:01.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:00 smithi026 bash[21443]: audit 2024-03-30T13:59:00.227134+0000 mon.a (mon.0) 665 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:59:01.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:00 smithi026 bash[21443]: audit 2024-03-30T13:59:00.232350+0000 mon.a (mon.0) 666 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:59:01.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:00 smithi026 bash[21443]: audit 2024-03-30T13:59:00.233816+0000 mon.a (mon.0) 667 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:59:01.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:00 smithi026 bash[21443]: audit 2024-03-30T13:59:00.241531+0000 mon.a (mon.0) 668 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:02.153 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:01 smithi050 bash[22081]: cephadm 2024-03-30T13:59:00.212164+0000 mgr.a (mgr.14152) 239 : cephadm 1 Detected new or changed devices on smithi050 2024-03-30T13:59:02.154 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:01 smithi050 bash[22081]: cluster 2024-03-30T13:59:00.236651+0000 mgr.a (mgr.14152) 240 : cluster 0 pgmap v188: 1 pgs: 1 unknown; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:02.154 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:01 smithi050 bash[22081]: cluster 2024-03-30T13:59:00.941899+0000 mon.a (mon.0) 669 : cluster 0 osdmap e27: 4 total, 4 up, 4 in 2024-03-30T13:59:02.154 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:01 smithi050 bash[22081]: cluster 2024-03-30T13:59:01.220824+0000 mon.a (mon.0) 670 : cluster 3 Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-03-30T13:59:02.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:01 smithi136 bash[22230]: cephadm 2024-03-30T13:59:00.212164+0000 mgr.a (mgr.14152) 239 : cephadm 1 Detected new or changed devices on smithi050 2024-03-30T13:59:02.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:01 smithi136 bash[22230]: cluster 2024-03-30T13:59:00.236651+0000 mgr.a (mgr.14152) 240 : cluster 0 pgmap v188: 1 pgs: 1 unknown; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:02.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:01 smithi136 bash[22230]: cluster 2024-03-30T13:59:00.941899+0000 mon.a (mon.0) 669 : cluster 0 osdmap e27: 4 total, 4 up, 4 in 2024-03-30T13:59:02.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:01 smithi136 bash[22230]: cluster 2024-03-30T13:59:01.220824+0000 mon.a (mon.0) 670 : cluster 3 Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-03-30T13:59:02.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:01 smithi026 bash[21443]: cephadm 2024-03-30T13:59:00.212164+0000 mgr.a (mgr.14152) 239 : cephadm 1 Detected new or changed devices on smithi050 2024-03-30T13:59:02.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:01 smithi026 bash[21443]: cluster 2024-03-30T13:59:00.236651+0000 mgr.a (mgr.14152) 240 : cluster 0 pgmap v188: 1 pgs: 1 unknown; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:02.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:01 smithi026 bash[21443]: cluster 2024-03-30T13:59:00.941899+0000 mon.a (mon.0) 669 : cluster 0 osdmap e27: 4 total, 4 up, 4 in 2024-03-30T13:59:02.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:01 smithi026 bash[21443]: cluster 2024-03-30T13:59:01.220824+0000 mon.a (mon.0) 670 : cluster 3 Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-03-30T13:59:03.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:03 smithi026 bash[21443]: cluster 2024-03-30T13:59:02.102325+0000 mon.a (mon.0) 671 : cluster 0 osdmap e28: 4 total, 4 up, 4 in 2024-03-30T13:59:03.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:03 smithi026 bash[21443]: audit 2024-03-30T13:59:02.227857+0000 mon.a (mon.0) 672 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:03.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:03 smithi026 bash[21443]: audit 2024-03-30T13:59:02.237474+0000 mon.a (mon.0) 673 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:03.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:03 smithi026 bash[21443]: audit 2024-03-30T13:59:02.248635+0000 mon.a (mon.0) 674 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:03.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:03 smithi026 bash[21443]: audit 2024-03-30T13:59:02.263428+0000 mon.a (mon.0) 675 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:59:03.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:03 smithi026 bash[21443]: audit 2024-03-30T13:59:02.269173+0000 mon.a (mon.0) 676 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:59:03.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:03 smithi026 bash[21443]: audit 2024-03-30T13:59:02.270941+0000 mon.a (mon.0) 677 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:59:03.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:03 smithi026 bash[21443]: audit 2024-03-30T13:59:02.281054+0000 mon.a (mon.0) 678 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:03.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:03 smithi026 bash[21443]: audit 2024-03-30T13:59:02.539103+0000 mon.a (mon.0) 679 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:03.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:03 smithi026 bash[21443]: audit 2024-03-30T13:59:02.548194+0000 mon.a (mon.0) 680 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:03.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:03 smithi026 bash[21443]: audit 2024-03-30T13:59:02.558293+0000 mon.a (mon.0) 681 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:03.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:03 smithi050 bash[22081]: cluster 2024-03-30T13:59:02.102325+0000 mon.a (mon.0) 671 : cluster 0 osdmap e28: 4 total, 4 up, 4 in 2024-03-30T13:59:03.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:03 smithi050 bash[22081]: audit 2024-03-30T13:59:02.227857+0000 mon.a (mon.0) 672 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:03.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:03 smithi050 bash[22081]: audit 2024-03-30T13:59:02.237474+0000 mon.a (mon.0) 673 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:03.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:03 smithi050 bash[22081]: audit 2024-03-30T13:59:02.248635+0000 mon.a (mon.0) 674 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:03.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:03 smithi050 bash[22081]: audit 2024-03-30T13:59:02.263428+0000 mon.a (mon.0) 675 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:59:03.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:03 smithi050 bash[22081]: audit 2024-03-30T13:59:02.269173+0000 mon.a (mon.0) 676 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:59:03.405 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:03 smithi050 bash[22081]: audit 2024-03-30T13:59:02.270941+0000 mon.a (mon.0) 677 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:59:03.405 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:03 smithi050 bash[22081]: audit 2024-03-30T13:59:02.281054+0000 mon.a (mon.0) 678 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:03.405 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:03 smithi050 bash[22081]: audit 2024-03-30T13:59:02.539103+0000 mon.a (mon.0) 679 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:03.405 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:03 smithi050 bash[22081]: audit 2024-03-30T13:59:02.548194+0000 mon.a (mon.0) 680 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:03.405 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:03 smithi050 bash[22081]: audit 2024-03-30T13:59:02.558293+0000 mon.a (mon.0) 681 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:03.481 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:03 smithi136 bash[22230]: cluster 2024-03-30T13:59:02.102325+0000 mon.a (mon.0) 671 : cluster 0 osdmap e28: 4 total, 4 up, 4 in 2024-03-30T13:59:03.481 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:03 smithi136 bash[22230]: audit 2024-03-30T13:59:02.227857+0000 mon.a (mon.0) 672 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:03.482 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:03 smithi136 bash[22230]: audit 2024-03-30T13:59:02.237474+0000 mon.a (mon.0) 673 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:03.482 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:03 smithi136 bash[22230]: audit 2024-03-30T13:59:02.248635+0000 mon.a (mon.0) 674 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:03.482 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:03 smithi136 bash[22230]: audit 2024-03-30T13:59:02.263428+0000 mon.a (mon.0) 675 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:59:03.482 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:03 smithi136 bash[22230]: audit 2024-03-30T13:59:02.269173+0000 mon.a (mon.0) 676 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:59:03.482 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:03 smithi136 bash[22230]: audit 2024-03-30T13:59:02.270941+0000 mon.a (mon.0) 677 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:59:03.482 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:03 smithi136 bash[22230]: audit 2024-03-30T13:59:02.281054+0000 mon.a (mon.0) 678 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:03.482 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:03 smithi136 bash[22230]: audit 2024-03-30T13:59:02.539103+0000 mon.a (mon.0) 679 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:03.482 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:03 smithi136 bash[22230]: audit 2024-03-30T13:59:02.548194+0000 mon.a (mon.0) 680 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:03.482 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:03 smithi136 bash[22230]: audit 2024-03-30T13:59:02.558293+0000 mon.a (mon.0) 681 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:04.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:04 smithi026 bash[21443]: cluster 2024-03-30T13:59:02.237156+0000 mgr.a (mgr.14152) 241 : cluster 0 pgmap v191: 1 pgs: 1 unknown; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:04.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:04 smithi026 bash[21443]: cluster 2024-03-30T13:59:02.274496+0000 mgr.a (mgr.14152) 242 : cluster 0 pgmap v192: 1 pgs: 1 unknown; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:04.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:04 smithi026 bash[21443]: cluster 2024-03-30T13:59:03.105182+0000 mon.a (mon.0) 682 : cluster 0 osdmap e29: 4 total, 4 up, 4 in 2024-03-30T13:59:04.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:04 smithi026 bash[21443]: cluster 2024-03-30T13:59:03.233514+0000 mon.a (mon.0) 683 : cluster 1 Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-03-30T13:59:04.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:04 smithi026 bash[21443]: cluster 2024-03-30T13:59:03.233583+0000 mon.a (mon.0) 684 : cluster 1 Cluster is now healthy 2024-03-30T13:59:04.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:04 smithi050 bash[22081]: cluster 2024-03-30T13:59:02.237156+0000 mgr.a (mgr.14152) 241 : cluster 0 pgmap v191: 1 pgs: 1 unknown; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:04.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:04 smithi050 bash[22081]: cluster 2024-03-30T13:59:02.274496+0000 mgr.a (mgr.14152) 242 : cluster 0 pgmap v192: 1 pgs: 1 unknown; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:04.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:04 smithi050 bash[22081]: cluster 2024-03-30T13:59:03.105182+0000 mon.a (mon.0) 682 : cluster 0 osdmap e29: 4 total, 4 up, 4 in 2024-03-30T13:59:04.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:04 smithi050 bash[22081]: cluster 2024-03-30T13:59:03.233514+0000 mon.a (mon.0) 683 : cluster 1 Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-03-30T13:59:04.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:04 smithi050 bash[22081]: cluster 2024-03-30T13:59:03.233583+0000 mon.a (mon.0) 684 : cluster 1 Cluster is now healthy 2024-03-30T13:59:04.480 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:04 smithi136 bash[22230]: cluster 2024-03-30T13:59:02.237156+0000 mgr.a (mgr.14152) 241 : cluster 0 pgmap v191: 1 pgs: 1 unknown; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:04.480 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:04 smithi136 bash[22230]: cluster 2024-03-30T13:59:02.274496+0000 mgr.a (mgr.14152) 242 : cluster 0 pgmap v192: 1 pgs: 1 unknown; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:04.480 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:04 smithi136 bash[22230]: cluster 2024-03-30T13:59:03.105182+0000 mon.a (mon.0) 682 : cluster 0 osdmap e29: 4 total, 4 up, 4 in 2024-03-30T13:59:04.480 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:04 smithi136 bash[22230]: cluster 2024-03-30T13:59:03.233514+0000 mon.a (mon.0) 683 : cluster 1 Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-03-30T13:59:04.480 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:04 smithi136 bash[22230]: cluster 2024-03-30T13:59:03.233583+0000 mon.a (mon.0) 684 : cluster 1 Cluster is now healthy 2024-03-30T13:59:05.053 INFO:teuthology.orchestra.run.smithi136.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.c/config 2024-03-30T13:59:06.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:06 smithi026 bash[21443]: cluster 2024-03-30T13:59:04.275119+0000 mgr.a (mgr.14152) 243 : cluster 0 pgmap v194: 1 pgs: 1 unknown; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:06.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:06 smithi050 bash[22081]: cluster 2024-03-30T13:59:04.275119+0000 mgr.a (mgr.14152) 243 : cluster 0 pgmap v194: 1 pgs: 1 unknown; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:06.480 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:06 smithi136 bash[22230]: cluster 2024-03-30T13:59:04.275119+0000 mgr.a (mgr.14152) 243 : cluster 0 pgmap v194: 1 pgs: 1 unknown; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:07.845 INFO:teuthology.orchestra.run.smithi136.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-03-30T13:59:07.846 INFO:teuthology.orchestra.run.smithi136.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-03-30T13:59:07.846 INFO:teuthology.orchestra.run.smithi136.stderr: stderr: 10+0 records in 2024-03-30T13:59:07.846 INFO:teuthology.orchestra.run.smithi136.stderr:10+0 records out 2024-03-30T13:59:07.846 INFO:teuthology.orchestra.run.smithi136.stderr:10485760 bytes (10 MB, 10 MiB) copied, 0.00818581 s, 1.3 GB/s 2024-03-30T13:59:07.846 INFO:teuthology.orchestra.run.smithi136.stderr:--> Zapping successful for: 2024-03-30T13:59:08.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:08 smithi136 bash[22230]: cluster 2024-03-30T13:59:06.275722+0000 mgr.a (mgr.14152) 244 : cluster 0 pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 108 KiB/s, 0 objects/s recovering 2024-03-30T13:59:08.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:08 smithi050 bash[22081]: cluster 2024-03-30T13:59:06.275722+0000 mgr.a (mgr.14152) 244 : cluster 0 pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 108 KiB/s, 0 objects/s recovering 2024-03-30T13:59:08.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:08 smithi026 bash[21443]: cluster 2024-03-30T13:59:06.275722+0000 mgr.a (mgr.14152) 244 : cluster 0 pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 108 KiB/s, 0 objects/s recovering 2024-03-30T13:59:08.776 DEBUG:teuthology.orchestra.run.smithi136:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph orch daemon add osd smithi136:vg_nvme/lv_4 2024-03-30T13:59:10.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:10 smithi050 bash[22081]: cluster 2024-03-30T13:59:08.276317+0000 mgr.a (mgr.14152) 245 : cluster 0 pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 93 KiB/s, 0 objects/s recovering 2024-03-30T13:59:10.480 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:10 smithi136 bash[22230]: cluster 2024-03-30T13:59:08.276317+0000 mgr.a (mgr.14152) 245 : cluster 0 pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 93 KiB/s, 0 objects/s recovering 2024-03-30T13:59:10.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:10 smithi026 bash[21443]: cluster 2024-03-30T13:59:08.276317+0000 mgr.a (mgr.14152) 245 : cluster 0 pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 93 KiB/s, 0 objects/s recovering 2024-03-30T13:59:12.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:12 smithi050 bash[22081]: cluster 2024-03-30T13:59:10.276996+0000 mgr.a (mgr.14152) 246 : cluster 0 pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-03-30T13:59:12.468 INFO:teuthology.orchestra.run.smithi136.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.c/config 2024-03-30T13:59:12.479 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:12 smithi136 bash[22230]: cluster 2024-03-30T13:59:10.276996+0000 mgr.a (mgr.14152) 246 : cluster 0 pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-03-30T13:59:12.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:12 smithi026 bash[21443]: cluster 2024-03-30T13:59:10.276996+0000 mgr.a (mgr.14152) 246 : cluster 0 pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-03-30T13:59:14.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:14 smithi026 bash[21443]: cluster 2024-03-30T13:59:12.277581+0000 mgr.a (mgr.14152) 247 : cluster 0 pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-03-30T13:59:14.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:14 smithi026 bash[21443]: audit 2024-03-30T13:59:14.106812+0000 mon.a (mon.0) 685 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:14.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:14 smithi026 bash[21443]: audit 2024-03-30T13:59:14.115001+0000 mon.a (mon.0) 686 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:14.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:14 smithi026 bash[21443]: audit 2024-03-30T13:59:14.124897+0000 mon.a (mon.0) 687 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:14.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:14 smithi050 bash[22081]: cluster 2024-03-30T13:59:12.277581+0000 mgr.a (mgr.14152) 247 : cluster 0 pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-03-30T13:59:14.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:14 smithi050 bash[22081]: audit 2024-03-30T13:59:14.106812+0000 mon.a (mon.0) 685 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:14.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:14 smithi050 bash[22081]: audit 2024-03-30T13:59:14.115001+0000 mon.a (mon.0) 686 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:14.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:14 smithi050 bash[22081]: audit 2024-03-30T13:59:14.124897+0000 mon.a (mon.0) 687 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:14.479 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:14 smithi136 bash[22230]: cluster 2024-03-30T13:59:12.277581+0000 mgr.a (mgr.14152) 247 : cluster 0 pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-03-30T13:59:14.479 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:14 smithi136 bash[22230]: audit 2024-03-30T13:59:14.106812+0000 mon.a (mon.0) 685 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:14.480 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:14 smithi136 bash[22230]: audit 2024-03-30T13:59:14.115001+0000 mon.a (mon.0) 686 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:14.480 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:14 smithi136 bash[22230]: audit 2024-03-30T13:59:14.124897+0000 mon.a (mon.0) 687 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:15.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:15 smithi026 bash[21443]: audit 2024-03-30T13:59:14.888030+0000 mon.a (mon.0) 688 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-30T13:59:15.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:15 smithi026 bash[21443]: audit 2024-03-30T13:59:14.894978+0000 mon.a (mon.0) 689 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-30T13:59:15.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:15 smithi026 bash[21443]: audit 2024-03-30T13:59:14.896649+0000 mon.a (mon.0) 690 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:59:15.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:15 smithi050 bash[22081]: audit 2024-03-30T13:59:14.888030+0000 mon.a (mon.0) 688 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-30T13:59:15.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:15 smithi050 bash[22081]: audit 2024-03-30T13:59:14.894978+0000 mon.a (mon.0) 689 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-30T13:59:15.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:15 smithi050 bash[22081]: audit 2024-03-30T13:59:14.896649+0000 mon.a (mon.0) 690 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:59:15.480 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:15 smithi136 bash[22230]: audit 2024-03-30T13:59:14.888030+0000 mon.a (mon.0) 688 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-30T13:59:15.480 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:15 smithi136 bash[22230]: audit 2024-03-30T13:59:14.894978+0000 mon.a (mon.0) 689 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-30T13:59:15.480 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:15 smithi136 bash[22230]: audit 2024-03-30T13:59:14.896649+0000 mon.a (mon.0) 690 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:59:16.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:16 smithi026 bash[21443]: cluster 2024-03-30T13:59:14.278256+0000 mgr.a (mgr.14152) 248 : cluster 0 pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-03-30T13:59:16.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:16 smithi026 bash[21443]: audit 2024-03-30T13:59:14.880403+0000 mgr.a (mgr.14152) 249 : audit 0 from='client.24196 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi136:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:59:16.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:16 smithi050 bash[22081]: cluster 2024-03-30T13:59:14.278256+0000 mgr.a (mgr.14152) 248 : cluster 0 pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-03-30T13:59:16.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:16 smithi050 bash[22081]: audit 2024-03-30T13:59:14.880403+0000 mgr.a (mgr.14152) 249 : audit 0 from='client.24196 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi136:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:59:16.480 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:16 smithi136 bash[22230]: cluster 2024-03-30T13:59:14.278256+0000 mgr.a (mgr.14152) 248 : cluster 0 pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-03-30T13:59:16.480 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:16 smithi136 bash[22230]: audit 2024-03-30T13:59:14.880403+0000 mgr.a (mgr.14152) 249 : audit 0 from='client.24196 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi136:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T13:59:18.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:18 smithi050 bash[22081]: cluster 2024-03-30T13:59:16.278878+0000 mgr.a (mgr.14152) 250 : cluster 0 pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-03-30T13:59:18.480 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:18 smithi136 bash[22230]: cluster 2024-03-30T13:59:16.278878+0000 mgr.a (mgr.14152) 250 : cluster 0 pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-03-30T13:59:18.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:18 smithi026 bash[21443]: cluster 2024-03-30T13:59:16.278878+0000 mgr.a (mgr.14152) 250 : cluster 0 pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-03-30T13:59:20.153 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:20 smithi050 bash[22081]: cluster 2024-03-30T13:59:18.279429+0000 mgr.a (mgr.14152) 251 : cluster 0 pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:20.480 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:20 smithi136 bash[22230]: cluster 2024-03-30T13:59:18.279429+0000 mgr.a (mgr.14152) 251 : cluster 0 pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:20.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:20 smithi026 bash[21443]: cluster 2024-03-30T13:59:18.279429+0000 mgr.a (mgr.14152) 251 : cluster 0 pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:21.903 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:21 smithi050 bash[22081]: cluster 2024-03-30T13:59:20.279993+0000 mgr.a (mgr.14152) 252 : cluster 0 pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:21.903 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:21 smithi050 bash[22081]: audit 2024-03-30T13:59:20.842548+0000 mon.a (mon.0) 691 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:21.903 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:21 smithi050 bash[22081]: audit 2024-03-30T13:59:20.851733+0000 mon.a (mon.0) 692 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:21.903 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:21 smithi050 bash[22081]: audit 2024-03-30T13:59:20.861926+0000 mon.a (mon.0) 693 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:22.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:21 smithi026 bash[21443]: cluster 2024-03-30T13:59:20.279993+0000 mgr.a (mgr.14152) 252 : cluster 0 pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:22.107 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:21 smithi026 bash[21443]: audit 2024-03-30T13:59:20.842548+0000 mon.a (mon.0) 691 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:22.107 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:21 smithi026 bash[21443]: audit 2024-03-30T13:59:20.851733+0000 mon.a (mon.0) 692 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:22.107 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:21 smithi026 bash[21443]: audit 2024-03-30T13:59:20.861926+0000 mon.a (mon.0) 693 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:22.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:21 smithi136 bash[22230]: cluster 2024-03-30T13:59:20.279993+0000 mgr.a (mgr.14152) 252 : cluster 0 pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:22.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:21 smithi136 bash[22230]: audit 2024-03-30T13:59:20.842548+0000 mon.a (mon.0) 691 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:22.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:21 smithi136 bash[22230]: audit 2024-03-30T13:59:20.851733+0000 mon.a (mon.0) 692 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:22.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:21 smithi136 bash[22230]: audit 2024-03-30T13:59:20.861926+0000 mon.a (mon.0) 693 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:24.107 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:23 smithi026 bash[21443]: cluster 2024-03-30T13:59:22.280549+0000 mgr.a (mgr.14152) 253 : cluster 0 pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:24.107 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:23 smithi026 bash[21443]: audit 2024-03-30T13:59:22.747561+0000 mon.a (mon.0) 694 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:24.107 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:23 smithi026 bash[21443]: audit 2024-03-30T13:59:22.756639+0000 mon.a (mon.0) 695 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:24.107 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:23 smithi026 bash[21443]: audit 2024-03-30T13:59:22.766979+0000 mon.a (mon.0) 696 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:24.107 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:23 smithi026 bash[21443]: audit 2024-03-30T13:59:22.892678+0000 mon.a (mon.0) 697 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "1a3092f5-2c51-4a35-9a44-ca8dd159813d"}]: dispatch 2024-03-30T13:59:24.107 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:23 smithi026 bash[21443]: audit 2024-03-30T13:59:22.893249+0000 mon.c (mon.1) 6 : audit 1 from='client.? 172.21.15.136:0/4105655265' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "1a3092f5-2c51-4a35-9a44-ca8dd159813d"}]: dispatch 2024-03-30T13:59:24.107 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:23 smithi026 bash[21443]: audit 2024-03-30T13:59:22.896079+0000 mon.a (mon.0) 698 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "1a3092f5-2c51-4a35-9a44-ca8dd159813d"}]': finished 2024-03-30T13:59:24.107 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:23 smithi026 bash[21443]: cluster 2024-03-30T13:59:22.900812+0000 mon.a (mon.0) 699 : cluster 0 osdmap e30: 5 total, 4 up, 5 in 2024-03-30T13:59:24.107 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:23 smithi026 bash[21443]: audit 2024-03-30T13:59:22.901442+0000 mon.a (mon.0) 700 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-30T13:59:24.108 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:23 smithi026 bash[21443]: audit 2024-03-30T13:59:23.589641+0000 mon.c (mon.1) 7 : audit 0 from='client.? 172.21.15.136:0/804258489' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-30T13:59:24.153 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:23 smithi050 bash[22081]: cluster 2024-03-30T13:59:22.280549+0000 mgr.a (mgr.14152) 253 : cluster 0 pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:24.153 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:23 smithi050 bash[22081]: audit 2024-03-30T13:59:22.747561+0000 mon.a (mon.0) 694 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:24.154 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:23 smithi050 bash[22081]: audit 2024-03-30T13:59:22.756639+0000 mon.a (mon.0) 695 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:24.154 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:23 smithi050 bash[22081]: audit 2024-03-30T13:59:22.766979+0000 mon.a (mon.0) 696 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:24.154 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:23 smithi050 bash[22081]: audit 2024-03-30T13:59:22.892678+0000 mon.a (mon.0) 697 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "1a3092f5-2c51-4a35-9a44-ca8dd159813d"}]: dispatch 2024-03-30T13:59:24.154 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:23 smithi050 bash[22081]: audit 2024-03-30T13:59:22.893249+0000 mon.c (mon.1) 6 : audit 1 from='client.? 172.21.15.136:0/4105655265' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "1a3092f5-2c51-4a35-9a44-ca8dd159813d"}]: dispatch 2024-03-30T13:59:24.154 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:23 smithi050 bash[22081]: audit 2024-03-30T13:59:22.896079+0000 mon.a (mon.0) 698 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "1a3092f5-2c51-4a35-9a44-ca8dd159813d"}]': finished 2024-03-30T13:59:24.154 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:23 smithi050 bash[22081]: cluster 2024-03-30T13:59:22.900812+0000 mon.a (mon.0) 699 : cluster 0 osdmap e30: 5 total, 4 up, 5 in 2024-03-30T13:59:24.154 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:23 smithi050 bash[22081]: audit 2024-03-30T13:59:22.901442+0000 mon.a (mon.0) 700 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-30T13:59:24.154 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:23 smithi050 bash[22081]: audit 2024-03-30T13:59:23.589641+0000 mon.c (mon.1) 7 : audit 0 from='client.? 172.21.15.136:0/804258489' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-30T13:59:24.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:23 smithi136 bash[22230]: cluster 2024-03-30T13:59:22.280549+0000 mgr.a (mgr.14152) 253 : cluster 0 pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:24.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:23 smithi136 bash[22230]: audit 2024-03-30T13:59:22.747561+0000 mon.a (mon.0) 694 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:24.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:23 smithi136 bash[22230]: audit 2024-03-30T13:59:22.756639+0000 mon.a (mon.0) 695 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:24.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:23 smithi136 bash[22230]: audit 2024-03-30T13:59:22.766979+0000 mon.a (mon.0) 696 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:24.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:23 smithi136 bash[22230]: audit 2024-03-30T13:59:22.892678+0000 mon.a (mon.0) 697 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "1a3092f5-2c51-4a35-9a44-ca8dd159813d"}]: dispatch 2024-03-30T13:59:24.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:23 smithi136 bash[22230]: audit 2024-03-30T13:59:22.893249+0000 mon.c (mon.1) 6 : audit 1 from='client.? 172.21.15.136:0/4105655265' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "1a3092f5-2c51-4a35-9a44-ca8dd159813d"}]: dispatch 2024-03-30T13:59:24.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:23 smithi136 bash[22230]: audit 2024-03-30T13:59:22.896079+0000 mon.a (mon.0) 698 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "1a3092f5-2c51-4a35-9a44-ca8dd159813d"}]': finished 2024-03-30T13:59:24.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:23 smithi136 bash[22230]: cluster 2024-03-30T13:59:22.900812+0000 mon.a (mon.0) 699 : cluster 0 osdmap e30: 5 total, 4 up, 5 in 2024-03-30T13:59:24.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:23 smithi136 bash[22230]: audit 2024-03-30T13:59:22.901442+0000 mon.a (mon.0) 700 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-30T13:59:24.231 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:23 smithi136 bash[22230]: audit 2024-03-30T13:59:23.589641+0000 mon.c (mon.1) 7 : audit 0 from='client.? 172.21.15.136:0/804258489' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-30T13:59:26.022 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:25 smithi136 bash[22230]: cluster 2024-03-30T13:59:24.281075+0000 mgr.a (mgr.14152) 254 : cluster 0 pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:26.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:25 smithi026 bash[21443]: cluster 2024-03-30T13:59:24.281075+0000 mgr.a (mgr.14152) 254 : cluster 0 pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:26.153 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:25 smithi050 bash[22081]: cluster 2024-03-30T13:59:24.281075+0000 mgr.a (mgr.14152) 254 : cluster 0 pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:28.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:27 smithi026 bash[21443]: cluster 2024-03-30T13:59:26.281741+0000 mgr.a (mgr.14152) 255 : cluster 0 pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:28.153 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:27 smithi050 bash[22081]: cluster 2024-03-30T13:59:26.281741+0000 mgr.a (mgr.14152) 255 : cluster 0 pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:28.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:27 smithi136 bash[22230]: cluster 2024-03-30T13:59:26.281741+0000 mgr.a (mgr.14152) 255 : cluster 0 pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:29.979 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:29 smithi136 bash[22230]: cluster 2024-03-30T13:59:28.282411+0000 mgr.a (mgr.14152) 256 : cluster 0 pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:30.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:29 smithi026 bash[21443]: cluster 2024-03-30T13:59:28.282411+0000 mgr.a (mgr.14152) 256 : cluster 0 pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:30.153 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:29 smithi050 bash[22081]: cluster 2024-03-30T13:59:28.282411+0000 mgr.a (mgr.14152) 256 : cluster 0 pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:31.979 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:31 smithi136 bash[22230]: cluster 2024-03-30T13:59:30.282936+0000 mgr.a (mgr.14152) 257 : cluster 0 pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:32.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:31 smithi026 bash[21443]: cluster 2024-03-30T13:59:30.282936+0000 mgr.a (mgr.14152) 257 : cluster 0 pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:32.153 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:31 smithi050 bash[22081]: cluster 2024-03-30T13:59:30.282936+0000 mgr.a (mgr.14152) 257 : cluster 0 pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:33.979 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:33 smithi136 bash[22230]: cluster 2024-03-30T13:59:32.283444+0000 mgr.a (mgr.14152) 258 : cluster 0 pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:34.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:33 smithi026 bash[21443]: cluster 2024-03-30T13:59:32.283444+0000 mgr.a (mgr.14152) 258 : cluster 0 pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:34.153 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:33 smithi050 bash[22081]: cluster 2024-03-30T13:59:32.283444+0000 mgr.a (mgr.14152) 258 : cluster 0 pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:35.426 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:35 smithi136 bash[22230]: cluster 2024-03-30T13:59:34.284082+0000 mgr.a (mgr.14152) 259 : cluster 0 pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:35.426 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:35 smithi136 bash[22230]: audit 2024-03-30T13:59:34.292501+0000 mon.a (mon.0) 701 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:35.426 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:35 smithi136 bash[22230]: audit 2024-03-30T13:59:34.300354+0000 mon.a (mon.0) 702 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:35.426 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:35 smithi136 bash[22230]: cephadm 2024-03-30T13:59:34.303342+0000 mgr.a (mgr.14152) 260 : cephadm 1 Detected new or changed devices on smithi136 2024-03-30T13:59:35.426 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:35 smithi136 bash[22230]: audit 2024-03-30T13:59:34.310335+0000 mon.a (mon.0) 703 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:35.589 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:35 smithi026 bash[21443]: cluster 2024-03-30T13:59:34.284082+0000 mgr.a (mgr.14152) 259 : cluster 0 pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:35.590 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:35 smithi026 bash[21443]: audit 2024-03-30T13:59:34.292501+0000 mon.a (mon.0) 701 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:35.590 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:35 smithi026 bash[21443]: audit 2024-03-30T13:59:34.300354+0000 mon.a (mon.0) 702 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:35.590 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:35 smithi026 bash[21443]: cephadm 2024-03-30T13:59:34.303342+0000 mgr.a (mgr.14152) 260 : cephadm 1 Detected new or changed devices on smithi136 2024-03-30T13:59:35.590 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:35 smithi026 bash[21443]: audit 2024-03-30T13:59:34.310335+0000 mon.a (mon.0) 703 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:35.654 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:35 smithi050 bash[22081]: cluster 2024-03-30T13:59:34.284082+0000 mgr.a (mgr.14152) 259 : cluster 0 pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:35.654 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:35 smithi050 bash[22081]: audit 2024-03-30T13:59:34.292501+0000 mon.a (mon.0) 701 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:35.654 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:35 smithi050 bash[22081]: audit 2024-03-30T13:59:34.300354+0000 mon.a (mon.0) 702 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:35.654 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:35 smithi050 bash[22081]: cephadm 2024-03-30T13:59:34.303342+0000 mgr.a (mgr.14152) 260 : cephadm 1 Detected new or changed devices on smithi136 2024-03-30T13:59:35.654 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:35 smithi050 bash[22081]: audit 2024-03-30T13:59:34.310335+0000 mon.a (mon.0) 703 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:36.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:36 smithi026 bash[21443]: audit 2024-03-30T13:59:35.919218+0000 mon.a (mon.0) 704 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-03-30T13:59:36.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:36 smithi026 bash[21443]: audit 2024-03-30T13:59:35.921280+0000 mon.a (mon.0) 705 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:59:36.607 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:36 smithi026 bash[21443]: cephadm 2024-03-30T13:59:35.923113+0000 mgr.a (mgr.14152) 261 : cephadm 1 Deploying daemon osd.4 on smithi136 2024-03-30T13:59:36.653 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:36 smithi050 bash[22081]: audit 2024-03-30T13:59:35.919218+0000 mon.a (mon.0) 704 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-03-30T13:59:36.653 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:36 smithi050 bash[22081]: audit 2024-03-30T13:59:35.921280+0000 mon.a (mon.0) 705 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:59:36.653 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:36 smithi050 bash[22081]: cephadm 2024-03-30T13:59:35.923113+0000 mgr.a (mgr.14152) 261 : cephadm 1 Deploying daemon osd.4 on smithi136 2024-03-30T13:59:36.729 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:36 smithi136 bash[22230]: audit 2024-03-30T13:59:35.919218+0000 mon.a (mon.0) 704 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-03-30T13:59:36.729 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:36 smithi136 bash[22230]: audit 2024-03-30T13:59:35.921280+0000 mon.a (mon.0) 705 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:59:36.729 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:36 smithi136 bash[22230]: cephadm 2024-03-30T13:59:35.923113+0000 mgr.a (mgr.14152) 261 : cephadm 1 Deploying daemon osd.4 on smithi136 2024-03-30T13:59:37.425 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:37 smithi136 bash[22230]: cluster 2024-03-30T13:59:36.284717+0000 mgr.a (mgr.14152) 262 : cluster 0 pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:37.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:37 smithi026 bash[21443]: cluster 2024-03-30T13:59:36.284717+0000 mgr.a (mgr.14152) 262 : cluster 0 pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:37.653 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:37 smithi050 bash[22081]: cluster 2024-03-30T13:59:36.284717+0000 mgr.a (mgr.14152) 262 : cluster 0 pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:39.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:39 smithi050 bash[22081]: cluster 2024-03-30T13:59:38.285335+0000 mgr.a (mgr.14152) 263 : cluster 0 pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:39.567 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:39 smithi136 bash[22230]: cluster 2024-03-30T13:59:38.285335+0000 mgr.a (mgr.14152) 263 : cluster 0 pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:39.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:39 smithi026 bash[21443]: cluster 2024-03-30T13:59:38.285335+0000 mgr.a (mgr.14152) 263 : cluster 0 pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:39.917 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:39 smithi136 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:59:40.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:39 smithi136 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T13:59:41.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:41 smithi136 bash[22230]: audit 2024-03-30T13:59:40.071356+0000 mon.a (mon.0) 706 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:41.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:41 smithi136 bash[22230]: audit 2024-03-30T13:59:40.079200+0000 mon.a (mon.0) 707 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:41.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:41 smithi136 bash[22230]: audit 2024-03-30T13:59:40.111041+0000 mon.a (mon.0) 708 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:59:41.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:41 smithi136 bash[22230]: audit 2024-03-30T13:59:40.121354+0000 mon.a (mon.0) 709 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:59:41.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:41 smithi136 bash[22230]: audit 2024-03-30T13:59:40.124023+0000 mon.a (mon.0) 710 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:59:41.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:41 smithi136 bash[22230]: audit 2024-03-30T13:59:40.136950+0000 mon.a (mon.0) 711 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:41.333 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:41 smithi050 bash[22081]: audit 2024-03-30T13:59:40.071356+0000 mon.a (mon.0) 706 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:41.333 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:41 smithi050 bash[22081]: audit 2024-03-30T13:59:40.079200+0000 mon.a (mon.0) 707 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:41.333 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:41 smithi050 bash[22081]: audit 2024-03-30T13:59:40.111041+0000 mon.a (mon.0) 708 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:59:41.333 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:41 smithi050 bash[22081]: audit 2024-03-30T13:59:40.121354+0000 mon.a (mon.0) 709 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:59:41.334 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:41 smithi050 bash[22081]: audit 2024-03-30T13:59:40.124023+0000 mon.a (mon.0) 710 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:59:41.334 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:41 smithi050 bash[22081]: audit 2024-03-30T13:59:40.136950+0000 mon.a (mon.0) 711 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:41.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:41 smithi026 bash[21443]: audit 2024-03-30T13:59:40.071356+0000 mon.a (mon.0) 706 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:41.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:41 smithi026 bash[21443]: audit 2024-03-30T13:59:40.079200+0000 mon.a (mon.0) 707 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:41.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:41 smithi026 bash[21443]: audit 2024-03-30T13:59:40.111041+0000 mon.a (mon.0) 708 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:59:41.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:41 smithi026 bash[21443]: audit 2024-03-30T13:59:40.121354+0000 mon.a (mon.0) 709 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:59:41.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:41 smithi026 bash[21443]: audit 2024-03-30T13:59:40.124023+0000 mon.a (mon.0) 710 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:59:41.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:41 smithi026 bash[21443]: audit 2024-03-30T13:59:40.136950+0000 mon.a (mon.0) 711 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:42.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:42 smithi026 bash[21443]: cluster 2024-03-30T13:59:40.286021+0000 mgr.a (mgr.14152) 264 : cluster 0 pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:42.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:42 smithi026 bash[21443]: audit 2024-03-30T13:59:41.080721+0000 mon.a (mon.0) 712 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:42.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:42 smithi026 bash[21443]: audit 2024-03-30T13:59:41.089900+0000 mon.a (mon.0) 713 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:42.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:42 smithi026 bash[21443]: audit 2024-03-30T13:59:41.100087+0000 mon.a (mon.0) 714 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:42.376 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:42 smithi050 bash[22081]: cluster 2024-03-30T13:59:40.286021+0000 mgr.a (mgr.14152) 264 : cluster 0 pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:42.376 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:42 smithi050 bash[22081]: audit 2024-03-30T13:59:41.080721+0000 mon.a (mon.0) 712 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:42.376 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:42 smithi050 bash[22081]: audit 2024-03-30T13:59:41.089900+0000 mon.a (mon.0) 713 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:42.376 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:42 smithi050 bash[22081]: audit 2024-03-30T13:59:41.100087+0000 mon.a (mon.0) 714 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:42.479 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:42 smithi136 bash[22230]: cluster 2024-03-30T13:59:40.286021+0000 mgr.a (mgr.14152) 264 : cluster 0 pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:42.480 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:42 smithi136 bash[22230]: audit 2024-03-30T13:59:41.080721+0000 mon.a (mon.0) 712 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:42.480 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:42 smithi136 bash[22230]: audit 2024-03-30T13:59:41.089900+0000 mon.a (mon.0) 713 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:42.480 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:42 smithi136 bash[22230]: audit 2024-03-30T13:59:41.100087+0000 mon.a (mon.0) 714 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:44.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:43 smithi136 bash[22230]: cluster 2024-03-30T13:59:42.286579+0000 mgr.a (mgr.14152) 265 : cluster 0 pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:44.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:43 smithi136 bash[22230]: audit 2024-03-30T13:59:42.953798+0000 mon.a (mon.0) 715 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:44.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:43 smithi136 bash[22230]: audit 2024-03-30T13:59:42.962918+0000 mon.a (mon.0) 716 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:44.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:43 smithi136 bash[22230]: audit 2024-03-30T13:59:42.973342+0000 mon.a (mon.0) 717 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:44.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:43 smithi026 bash[21443]: cluster 2024-03-30T13:59:42.286579+0000 mgr.a (mgr.14152) 265 : cluster 0 pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:44.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:43 smithi026 bash[21443]: audit 2024-03-30T13:59:42.953798+0000 mon.a (mon.0) 715 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:44.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:43 smithi026 bash[21443]: audit 2024-03-30T13:59:42.962918+0000 mon.a (mon.0) 716 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:44.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:43 smithi026 bash[21443]: audit 2024-03-30T13:59:42.973342+0000 mon.a (mon.0) 717 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:44.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:43 smithi050 bash[22081]: cluster 2024-03-30T13:59:42.286579+0000 mgr.a (mgr.14152) 265 : cluster 0 pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:44.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:43 smithi050 bash[22081]: audit 2024-03-30T13:59:42.953798+0000 mon.a (mon.0) 715 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:44.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:43 smithi050 bash[22081]: audit 2024-03-30T13:59:42.962918+0000 mon.a (mon.0) 716 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:44.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:43 smithi050 bash[22081]: audit 2024-03-30T13:59:42.973342+0000 mon.a (mon.0) 717 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:46.139 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:45 smithi136 bash[22230]: cluster 2024-03-30T13:59:44.287084+0000 mgr.a (mgr.14152) 266 : cluster 0 pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:46.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:45 smithi026 bash[21443]: cluster 2024-03-30T13:59:44.287084+0000 mgr.a (mgr.14152) 266 : cluster 0 pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:46.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:45 smithi050 bash[22081]: cluster 2024-03-30T13:59:44.287084+0000 mgr.a (mgr.14152) 266 : cluster 0 pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:47.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:46 smithi136 bash[22230]: audit 2024-03-30T13:59:46.446505+0000 mon.a (mon.0) 718 : audit 1 from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-03-30T13:59:47.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:46 smithi136 bash[22230]: audit 2024-03-30T13:59:46.447445+0000 mon.c (mon.1) 8 : audit 1 from='osd.4 [v2:172.21.15.136:6800/2150671530,v1:172.21.15.136:6801/2150671530]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-03-30T13:59:47.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:46 smithi026 bash[21443]: audit 2024-03-30T13:59:46.446505+0000 mon.a (mon.0) 718 : audit 1 from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-03-30T13:59:47.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:46 smithi026 bash[21443]: audit 2024-03-30T13:59:46.447445+0000 mon.c (mon.1) 8 : audit 1 from='osd.4 [v2:172.21.15.136:6800/2150671530,v1:172.21.15.136:6801/2150671530]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-03-30T13:59:47.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:46 smithi050 bash[22081]: audit 2024-03-30T13:59:46.446505+0000 mon.a (mon.0) 718 : audit 1 from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-03-30T13:59:47.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:46 smithi050 bash[22081]: audit 2024-03-30T13:59:46.447445+0000 mon.c (mon.1) 8 : audit 1 from='osd.4 [v2:172.21.15.136:6800/2150671530,v1:172.21.15.136:6801/2150671530]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-03-30T13:59:48.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:47 smithi136 bash[22230]: cluster 2024-03-30T13:59:46.287683+0000 mgr.a (mgr.14152) 267 : cluster 0 pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:48.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:47 smithi136 bash[22230]: audit 2024-03-30T13:59:46.966676+0000 mon.a (mon.0) 719 : audit 1 from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-03-30T13:59:48.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:47 smithi136 bash[22230]: cluster 2024-03-30T13:59:46.971396+0000 mon.a (mon.0) 720 : cluster 0 osdmap e31: 5 total, 4 up, 5 in 2024-03-30T13:59:48.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:47 smithi136 bash[22230]: audit 2024-03-30T13:59:46.971912+0000 mon.a (mon.0) 721 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-30T13:59:48.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:47 smithi136 bash[22230]: audit 2024-03-30T13:59:46.973350+0000 mon.a (mon.0) 722 : audit 1 from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi136", "root=default"]}]: dispatch 2024-03-30T13:59:48.230 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:47 smithi136 bash[22230]: audit 2024-03-30T13:59:46.974151+0000 mon.c (mon.1) 9 : audit 1 from='osd.4 [v2:172.21.15.136:6800/2150671530,v1:172.21.15.136:6801/2150671530]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi136", "root=default"]}]: dispatch 2024-03-30T13:59:48.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:47 smithi026 bash[21443]: cluster 2024-03-30T13:59:46.287683+0000 mgr.a (mgr.14152) 267 : cluster 0 pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:48.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:47 smithi026 bash[21443]: audit 2024-03-30T13:59:46.966676+0000 mon.a (mon.0) 719 : audit 1 from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-03-30T13:59:48.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:47 smithi026 bash[21443]: cluster 2024-03-30T13:59:46.971396+0000 mon.a (mon.0) 720 : cluster 0 osdmap e31: 5 total, 4 up, 5 in 2024-03-30T13:59:48.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:47 smithi026 bash[21443]: audit 2024-03-30T13:59:46.971912+0000 mon.a (mon.0) 721 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-30T13:59:48.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:47 smithi026 bash[21443]: audit 2024-03-30T13:59:46.973350+0000 mon.a (mon.0) 722 : audit 1 from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi136", "root=default"]}]: dispatch 2024-03-30T13:59:48.359 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:47 smithi026 bash[21443]: audit 2024-03-30T13:59:46.974151+0000 mon.c (mon.1) 9 : audit 1 from='osd.4 [v2:172.21.15.136:6800/2150671530,v1:172.21.15.136:6801/2150671530]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi136", "root=default"]}]: dispatch 2024-03-30T13:59:48.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:47 smithi050 bash[22081]: cluster 2024-03-30T13:59:46.287683+0000 mgr.a (mgr.14152) 267 : cluster 0 pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:48.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:47 smithi050 bash[22081]: audit 2024-03-30T13:59:46.966676+0000 mon.a (mon.0) 719 : audit 1 from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-03-30T13:59:48.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:47 smithi050 bash[22081]: cluster 2024-03-30T13:59:46.971396+0000 mon.a (mon.0) 720 : cluster 0 osdmap e31: 5 total, 4 up, 5 in 2024-03-30T13:59:48.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:47 smithi050 bash[22081]: audit 2024-03-30T13:59:46.971912+0000 mon.a (mon.0) 721 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-30T13:59:48.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:47 smithi050 bash[22081]: audit 2024-03-30T13:59:46.973350+0000 mon.a (mon.0) 722 : audit 1 from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi136", "root=default"]}]: dispatch 2024-03-30T13:59:48.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:47 smithi050 bash[22081]: audit 2024-03-30T13:59:46.974151+0000 mon.c (mon.1) 9 : audit 1 from='osd.4 [v2:172.21.15.136:6800/2150671530,v1:172.21.15.136:6801/2150671530]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi136", "root=default"]}]: dispatch 2024-03-30T13:59:48.694 INFO:teuthology.orchestra.run.smithi136.stdout:Created osd(s) 4 on host 'smithi136' 2024-03-30T13:59:49.341 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:48 smithi136 bash[22230]: audit 2024-03-30T13:59:47.969132+0000 mon.a (mon.0) 723 : audit 1 from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi136", "root=default"]}]': finished 2024-03-30T13:59:49.342 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:48 smithi136 bash[22230]: cluster 2024-03-30T13:59:47.974525+0000 mon.a (mon.0) 724 : cluster 0 osdmap e32: 5 total, 4 up, 5 in 2024-03-30T13:59:49.342 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:48 smithi136 bash[22230]: audit 2024-03-30T13:59:47.975422+0000 mon.a (mon.0) 725 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-30T13:59:49.342 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:48 smithi136 bash[22230]: audit 2024-03-30T13:59:47.982781+0000 mon.a (mon.0) 726 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-30T13:59:49.342 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:48 smithi136 bash[22230]: audit 2024-03-30T13:59:48.639772+0000 mon.a (mon.0) 727 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:59:49.342 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:48 smithi136 bash[22230]: audit 2024-03-30T13:59:48.648823+0000 mon.a (mon.0) 728 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:49.342 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:48 smithi136 bash[22230]: audit 2024-03-30T13:59:48.649556+0000 mon.a (mon.0) 729 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-03-30T13:59:49.342 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:48 smithi136 bash[22230]: audit 2024-03-30T13:59:48.657749+0000 mon.a (mon.0) 730 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:49.342 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:48 smithi136 bash[22230]: audit 2024-03-30T13:59:48.664200+0000 mon.a (mon.0) 731 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:49.342 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:48 smithi136 bash[22230]: audit 2024-03-30T13:59:48.668859+0000 mon.a (mon.0) 732 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:59:49.342 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:48 smithi136 bash[22230]: audit 2024-03-30T13:59:48.670698+0000 mon.a (mon.0) 733 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:59:49.342 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:48 smithi136 bash[22230]: audit 2024-03-30T13:59:48.680649+0000 mon.a (mon.0) 734 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:49.344 DEBUG:teuthology.orchestra.run.smithi136:osd.4> sudo journalctl -f -n 0 -u ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@osd.4.service 2024-03-30T13:59:49.347 INFO:tasks.cephadm:Deploying osd.5 on smithi136 with /dev/vg_nvme/lv_3... 2024-03-30T13:59:49.347 DEBUG:teuthology.orchestra.run.smithi136:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-03-30T13:59:49.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:48 smithi026 bash[21443]: audit 2024-03-30T13:59:47.969132+0000 mon.a (mon.0) 723 : audit 1 from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi136", "root=default"]}]': finished 2024-03-30T13:59:49.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:48 smithi026 bash[21443]: cluster 2024-03-30T13:59:47.974525+0000 mon.a (mon.0) 724 : cluster 0 osdmap e32: 5 total, 4 up, 5 in 2024-03-30T13:59:49.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:48 smithi026 bash[21443]: audit 2024-03-30T13:59:47.975422+0000 mon.a (mon.0) 725 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-30T13:59:49.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:48 smithi026 bash[21443]: audit 2024-03-30T13:59:47.982781+0000 mon.a (mon.0) 726 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-30T13:59:49.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:48 smithi026 bash[21443]: audit 2024-03-30T13:59:48.639772+0000 mon.a (mon.0) 727 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:59:49.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:48 smithi026 bash[21443]: audit 2024-03-30T13:59:48.648823+0000 mon.a (mon.0) 728 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:49.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:48 smithi026 bash[21443]: audit 2024-03-30T13:59:48.649556+0000 mon.a (mon.0) 729 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-03-30T13:59:49.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:48 smithi026 bash[21443]: audit 2024-03-30T13:59:48.657749+0000 mon.a (mon.0) 730 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:49.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:48 smithi026 bash[21443]: audit 2024-03-30T13:59:48.664200+0000 mon.a (mon.0) 731 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:49.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:48 smithi026 bash[21443]: audit 2024-03-30T13:59:48.668859+0000 mon.a (mon.0) 732 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:59:49.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:48 smithi026 bash[21443]: audit 2024-03-30T13:59:48.670698+0000 mon.a (mon.0) 733 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:59:49.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:48 smithi026 bash[21443]: audit 2024-03-30T13:59:48.680649+0000 mon.a (mon.0) 734 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:49.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:48 smithi050 bash[22081]: audit 2024-03-30T13:59:47.969132+0000 mon.a (mon.0) 723 : audit 1 from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi136", "root=default"]}]': finished 2024-03-30T13:59:49.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:48 smithi050 bash[22081]: cluster 2024-03-30T13:59:47.974525+0000 mon.a (mon.0) 724 : cluster 0 osdmap e32: 5 total, 4 up, 5 in 2024-03-30T13:59:49.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:48 smithi050 bash[22081]: audit 2024-03-30T13:59:47.975422+0000 mon.a (mon.0) 725 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-30T13:59:49.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:48 smithi050 bash[22081]: audit 2024-03-30T13:59:47.982781+0000 mon.a (mon.0) 726 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-30T13:59:49.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:48 smithi050 bash[22081]: audit 2024-03-30T13:59:48.639772+0000 mon.a (mon.0) 727 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:59:49.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:48 smithi050 bash[22081]: audit 2024-03-30T13:59:48.648823+0000 mon.a (mon.0) 728 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:49.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:48 smithi050 bash[22081]: audit 2024-03-30T13:59:48.649556+0000 mon.a (mon.0) 729 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-03-30T13:59:49.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:48 smithi050 bash[22081]: audit 2024-03-30T13:59:48.657749+0000 mon.a (mon.0) 730 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:49.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:48 smithi050 bash[22081]: audit 2024-03-30T13:59:48.664200+0000 mon.a (mon.0) 731 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:49.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:48 smithi050 bash[22081]: audit 2024-03-30T13:59:48.668859+0000 mon.a (mon.0) 732 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:59:49.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:48 smithi050 bash[22081]: audit 2024-03-30T13:59:48.670698+0000 mon.a (mon.0) 733 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:59:49.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:48 smithi050 bash[22081]: audit 2024-03-30T13:59:48.680649+0000 mon.a (mon.0) 734 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:50.305 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:49 smithi136 bash[22230]: cluster 2024-03-30T13:59:47.398524+0000 osd.4 (osd.4) 1 : cluster 0 purged_snaps scrub starts 2024-03-30T13:59:50.305 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:49 smithi136 bash[22230]: cluster 2024-03-30T13:59:47.398672+0000 osd.4 (osd.4) 2 : cluster 0 purged_snaps scrub ok 2024-03-30T13:59:50.305 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:49 smithi136 bash[22230]: cluster 2024-03-30T13:59:48.288262+0000 mgr.a (mgr.14152) 268 : cluster 0 pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:50.305 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:49 smithi136 bash[22230]: cephadm 2024-03-30T13:59:48.651247+0000 mgr.a (mgr.14152) 269 : cephadm 1 Adjusting osd_memory_target on smithi136 to 20337M 2024-03-30T13:59:50.306 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:49 smithi136 bash[22230]: audit 2024-03-30T13:59:48.983739+0000 mon.a (mon.0) 735 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-30T13:59:50.306 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:50 smithi136 bash[22230]: cluster 2024-03-30T13:59:48.994451+0000 mon.a (mon.0) 736 : cluster 1 osd.4 [v2:172.21.15.136:6800/2150671530,v1:172.21.15.136:6801/2150671530] boot 2024-03-30T13:59:50.306 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:50 smithi136 bash[22230]: cluster 2024-03-30T13:59:48.994574+0000 mon.a (mon.0) 737 : cluster 0 osdmap e33: 5 total, 5 up, 5 in 2024-03-30T13:59:50.306 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:50 smithi136 bash[22230]: audit 2024-03-30T13:59:48.995620+0000 mon.a (mon.0) 738 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-30T13:59:50.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:49 smithi026 bash[21443]: cluster 2024-03-30T13:59:47.398524+0000 osd.4 (osd.4) 1 : cluster 0 purged_snaps scrub starts 2024-03-30T13:59:50.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:49 smithi026 bash[21443]: cluster 2024-03-30T13:59:47.398672+0000 osd.4 (osd.4) 2 : cluster 0 purged_snaps scrub ok 2024-03-30T13:59:50.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:49 smithi026 bash[21443]: cluster 2024-03-30T13:59:48.288262+0000 mgr.a (mgr.14152) 268 : cluster 0 pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:50.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:49 smithi026 bash[21443]: cephadm 2024-03-30T13:59:48.651247+0000 mgr.a (mgr.14152) 269 : cephadm 1 Adjusting osd_memory_target on smithi136 to 20337M 2024-03-30T13:59:50.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:49 smithi026 bash[21443]: audit 2024-03-30T13:59:48.983739+0000 mon.a (mon.0) 735 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-30T13:59:50.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:49 smithi026 bash[21443]: cluster 2024-03-30T13:59:48.994451+0000 mon.a (mon.0) 736 : cluster 1 osd.4 [v2:172.21.15.136:6800/2150671530,v1:172.21.15.136:6801/2150671530] boot 2024-03-30T13:59:50.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:49 smithi026 bash[21443]: cluster 2024-03-30T13:59:48.994574+0000 mon.a (mon.0) 737 : cluster 0 osdmap e33: 5 total, 5 up, 5 in 2024-03-30T13:59:50.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:49 smithi026 bash[21443]: audit 2024-03-30T13:59:48.995620+0000 mon.a (mon.0) 738 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-30T13:59:50.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:50 smithi050 bash[22081]: cluster 2024-03-30T13:59:47.398524+0000 osd.4 (osd.4) 1 : cluster 0 purged_snaps scrub starts 2024-03-30T13:59:50.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:50 smithi050 bash[22081]: cluster 2024-03-30T13:59:47.398672+0000 osd.4 (osd.4) 2 : cluster 0 purged_snaps scrub ok 2024-03-30T13:59:50.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:50 smithi050 bash[22081]: cluster 2024-03-30T13:59:48.288262+0000 mgr.a (mgr.14152) 268 : cluster 0 pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-03-30T13:59:50.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:50 smithi050 bash[22081]: cephadm 2024-03-30T13:59:48.651247+0000 mgr.a (mgr.14152) 269 : cephadm 1 Adjusting osd_memory_target on smithi136 to 20337M 2024-03-30T13:59:50.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:50 smithi050 bash[22081]: audit 2024-03-30T13:59:48.983739+0000 mon.a (mon.0) 735 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-30T13:59:50.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:50 smithi050 bash[22081]: cluster 2024-03-30T13:59:48.994451+0000 mon.a (mon.0) 736 : cluster 1 osd.4 [v2:172.21.15.136:6800/2150671530,v1:172.21.15.136:6801/2150671530] boot 2024-03-30T13:59:50.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:50 smithi050 bash[22081]: cluster 2024-03-30T13:59:48.994574+0000 mon.a (mon.0) 737 : cluster 0 osdmap e33: 5 total, 5 up, 5 in 2024-03-30T13:59:50.404 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:50 smithi050 bash[22081]: audit 2024-03-30T13:59:48.995620+0000 mon.a (mon.0) 738 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-30T13:59:51.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:51 smithi026 bash[21443]: cluster 2024-03-30T13:59:49.993419+0000 mon.a (mon.0) 739 : cluster 0 osdmap e34: 5 total, 5 up, 5 in 2024-03-30T13:59:51.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:51 smithi050 bash[22081]: cluster 2024-03-30T13:59:49.993419+0000 mon.a (mon.0) 739 : cluster 0 osdmap e34: 5 total, 5 up, 5 in 2024-03-30T13:59:51.479 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:51 smithi136 bash[22230]: cluster 2024-03-30T13:59:49.993419+0000 mon.a (mon.0) 739 : cluster 0 osdmap e34: 5 total, 5 up, 5 in 2024-03-30T13:59:52.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:52 smithi136 bash[22230]: cluster 2024-03-30T13:59:50.288832+0000 mgr.a (mgr.14152) 270 : cluster 0 pgmap v222: 1 pgs: 1 remapped+peering; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T13:59:52.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:52 smithi136 bash[22230]: cluster 2024-03-30T13:59:51.010956+0000 mon.a (mon.0) 740 : cluster 0 osdmap e35: 5 total, 5 up, 5 in 2024-03-30T13:59:52.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:52 smithi026 bash[21443]: cluster 2024-03-30T13:59:50.288832+0000 mgr.a (mgr.14152) 270 : cluster 0 pgmap v222: 1 pgs: 1 remapped+peering; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T13:59:52.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:52 smithi026 bash[21443]: cluster 2024-03-30T13:59:51.010956+0000 mon.a (mon.0) 740 : cluster 0 osdmap e35: 5 total, 5 up, 5 in 2024-03-30T13:59:52.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:52 smithi050 bash[22081]: cluster 2024-03-30T13:59:50.288832+0000 mgr.a (mgr.14152) 270 : cluster 0 pgmap v222: 1 pgs: 1 remapped+peering; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T13:59:52.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:52 smithi050 bash[22081]: cluster 2024-03-30T13:59:51.010956+0000 mon.a (mon.0) 740 : cluster 0 osdmap e35: 5 total, 5 up, 5 in 2024-03-30T13:59:53.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:53 smithi136 bash[22230]: cluster 2024-03-30T13:59:52.018324+0000 mon.a (mon.0) 741 : cluster 0 osdmap e36: 5 total, 5 up, 5 in 2024-03-30T13:59:53.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:53 smithi026 bash[21443]: cluster 2024-03-30T13:59:52.018324+0000 mon.a (mon.0) 741 : cluster 0 osdmap e36: 5 total, 5 up, 5 in 2024-03-30T13:59:53.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:53 smithi050 bash[22081]: cluster 2024-03-30T13:59:52.018324+0000 mon.a (mon.0) 741 : cluster 0 osdmap e36: 5 total, 5 up, 5 in 2024-03-30T13:59:54.104 INFO:teuthology.orchestra.run.smithi136.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.c/config 2024-03-30T13:59:54.312 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:54 smithi026 bash[21443]: cluster 2024-03-30T13:59:52.289390+0000 mgr.a (mgr.14152) 271 : cluster 0 pgmap v225: 1 pgs: 1 remapped+peering; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T13:59:54.312 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:54 smithi026 bash[21443]: cluster 2024-03-30T13:59:53.027453+0000 mon.a (mon.0) 742 : cluster 0 osdmap e37: 5 total, 5 up, 5 in 2024-03-30T13:59:54.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:54 smithi050 bash[22081]: cluster 2024-03-30T13:59:52.289390+0000 mgr.a (mgr.14152) 271 : cluster 0 pgmap v225: 1 pgs: 1 remapped+peering; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T13:59:54.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:54 smithi050 bash[22081]: cluster 2024-03-30T13:59:53.027453+0000 mon.a (mon.0) 742 : cluster 0 osdmap e37: 5 total, 5 up, 5 in 2024-03-30T13:59:54.479 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:54 smithi136 bash[22230]: cluster 2024-03-30T13:59:52.289390+0000 mgr.a (mgr.14152) 271 : cluster 0 pgmap v225: 1 pgs: 1 remapped+peering; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T13:59:54.479 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:54 smithi136 bash[22230]: cluster 2024-03-30T13:59:53.027453+0000 mon.a (mon.0) 742 : cluster 0 osdmap e37: 5 total, 5 up, 5 in 2024-03-30T13:59:55.570 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:55 smithi026 bash[21443]: cluster 2024-03-30T13:59:54.289975+0000 mgr.a (mgr.14152) 272 : cluster 0 pgmap v227: 1 pgs: 1 remapped+peering; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T13:59:55.570 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:55 smithi026 bash[21443]: audit 2024-03-30T13:59:54.472071+0000 mon.a (mon.0) 743 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:55.570 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:55 smithi026 bash[21443]: audit 2024-03-30T13:59:54.480225+0000 mon.a (mon.0) 744 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:55.570 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:55 smithi026 bash[21443]: audit 2024-03-30T13:59:54.490700+0000 mon.a (mon.0) 745 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:55.570 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:55 smithi026 bash[21443]: audit 2024-03-30T13:59:54.516405+0000 mon.a (mon.0) 746 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:59:55.570 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:55 smithi026 bash[21443]: audit 2024-03-30T13:59:54.522118+0000 mon.a (mon.0) 747 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:59:55.570 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:55 smithi026 bash[21443]: audit 2024-03-30T13:59:54.523912+0000 mon.a (mon.0) 748 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:59:55.570 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:55 smithi026 bash[21443]: cluster 2024-03-30T13:59:54.527789+0000 mgr.a (mgr.14152) 273 : cluster 0 pgmap v228: 1 pgs: 1 remapped+peering; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T13:59:55.571 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:55 smithi026 bash[21443]: audit 2024-03-30T13:59:54.534443+0000 mon.a (mon.0) 749 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:55.571 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:55 smithi026 bash[21443]: cluster 2024-03-30T13:59:55.024121+0000 mon.a (mon.0) 750 : cluster 3 Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-03-30T13:59:55.729 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:55 smithi136 bash[22230]: cluster 2024-03-30T13:59:54.289975+0000 mgr.a (mgr.14152) 272 : cluster 0 pgmap v227: 1 pgs: 1 remapped+peering; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T13:59:55.729 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:55 smithi136 bash[22230]: audit 2024-03-30T13:59:54.472071+0000 mon.a (mon.0) 743 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:55.729 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:55 smithi136 bash[22230]: audit 2024-03-30T13:59:54.480225+0000 mon.a (mon.0) 744 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:55.730 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:55 smithi136 bash[22230]: audit 2024-03-30T13:59:54.490700+0000 mon.a (mon.0) 745 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:55.730 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:55 smithi136 bash[22230]: audit 2024-03-30T13:59:54.516405+0000 mon.a (mon.0) 746 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:59:55.730 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:55 smithi136 bash[22230]: audit 2024-03-30T13:59:54.522118+0000 mon.a (mon.0) 747 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:59:55.730 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:55 smithi136 bash[22230]: audit 2024-03-30T13:59:54.523912+0000 mon.a (mon.0) 748 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:59:55.730 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:55 smithi136 bash[22230]: cluster 2024-03-30T13:59:54.527789+0000 mgr.a (mgr.14152) 273 : cluster 0 pgmap v228: 1 pgs: 1 remapped+peering; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T13:59:55.730 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:55 smithi136 bash[22230]: audit 2024-03-30T13:59:54.534443+0000 mon.a (mon.0) 749 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:55.730 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:55 smithi136 bash[22230]: cluster 2024-03-30T13:59:55.024121+0000 mon.a (mon.0) 750 : cluster 3 Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-03-30T13:59:55.902 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:55 smithi050 bash[22081]: cluster 2024-03-30T13:59:54.289975+0000 mgr.a (mgr.14152) 272 : cluster 0 pgmap v227: 1 pgs: 1 remapped+peering; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T13:59:55.903 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:55 smithi050 bash[22081]: audit 2024-03-30T13:59:54.472071+0000 mon.a (mon.0) 743 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:55.903 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:55 smithi050 bash[22081]: audit 2024-03-30T13:59:54.480225+0000 mon.a (mon.0) 744 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:55.903 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:55 smithi050 bash[22081]: audit 2024-03-30T13:59:54.490700+0000 mon.a (mon.0) 745 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:55.903 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:55 smithi050 bash[22081]: audit 2024-03-30T13:59:54.516405+0000 mon.a (mon.0) 746 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T13:59:55.903 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:55 smithi050 bash[22081]: audit 2024-03-30T13:59:54.522118+0000 mon.a (mon.0) 747 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T13:59:55.903 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:55 smithi050 bash[22081]: audit 2024-03-30T13:59:54.523912+0000 mon.a (mon.0) 748 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T13:59:55.903 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:55 smithi050 bash[22081]: cluster 2024-03-30T13:59:54.527789+0000 mgr.a (mgr.14152) 273 : cluster 0 pgmap v228: 1 pgs: 1 remapped+peering; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T13:59:55.903 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:55 smithi050 bash[22081]: audit 2024-03-30T13:59:54.534443+0000 mon.a (mon.0) 749 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T13:59:55.903 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:55 smithi050 bash[22081]: cluster 2024-03-30T13:59:55.024121+0000 mon.a (mon.0) 750 : cluster 3 Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-03-30T13:59:56.862 INFO:teuthology.orchestra.run.smithi136.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-03-30T13:59:56.862 INFO:teuthology.orchestra.run.smithi136.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-03-30T13:59:56.862 INFO:teuthology.orchestra.run.smithi136.stderr: stderr: 10+0 records in 2024-03-30T13:59:56.862 INFO:teuthology.orchestra.run.smithi136.stderr:10+0 records out 2024-03-30T13:59:56.862 INFO:teuthology.orchestra.run.smithi136.stderr:10485760 bytes (10 MB, 10 MiB) copied, 0.0113395 s, 925 MB/s 2024-03-30T13:59:56.862 INFO:teuthology.orchestra.run.smithi136.stderr:--> Zapping successful for: 2024-03-30T13:59:57.540 DEBUG:teuthology.orchestra.run.smithi136:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph orch daemon add osd smithi136:vg_nvme/lv_3 2024-03-30T13:59:57.856 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:57 smithi026 bash[21443]: cluster 2024-03-30T13:59:56.528459+0000 mgr.a (mgr.14152) 274 : cluster 0 pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail; 104 KiB/s, 0 objects/s recovering 2024-03-30T13:59:57.868 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:57 smithi050 bash[22081]: cluster 2024-03-30T13:59:56.528459+0000 mgr.a (mgr.14152) 274 : cluster 0 pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail; 104 KiB/s, 0 objects/s recovering 2024-03-30T13:59:57.979 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:57 smithi136 bash[22230]: cluster 2024-03-30T13:59:56.528459+0000 mgr.a (mgr.14152) 274 : cluster 0 pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail; 104 KiB/s, 0 objects/s recovering 2024-03-30T13:59:59.856 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 13:59:59 smithi026 bash[21443]: cluster 2024-03-30T13:59:58.529054+0000 mgr.a (mgr.14152) 275 : cluster 0 pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 89 KiB/s, 0 objects/s recovering 2024-03-30T13:59:59.902 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 13:59:59 smithi050 bash[22081]: cluster 2024-03-30T13:59:58.529054+0000 mgr.a (mgr.14152) 275 : cluster 0 pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 89 KiB/s, 0 objects/s recovering 2024-03-30T13:59:59.979 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 13:59:59 smithi136 bash[22230]: cluster 2024-03-30T13:59:58.529054+0000 mgr.a (mgr.14152) 275 : cluster 0 pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 89 KiB/s, 0 objects/s recovering 2024-03-30T14:00:00.856 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:00 smithi026 bash[21443]: cluster 2024-03-30T14:00:00.000185+0000 mon.a (mon.0) 751 : cluster 3 Health detail: HEALTH_WARN 1 stray daemon(s) not managed by cephadm 2024-03-30T14:00:00.856 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:00 smithi026 bash[21443]: cluster 2024-03-30T14:00:00.000276+0000 mon.a (mon.0) 752 : cluster 3 [WRN] CEPHADM_STRAY_DAEMON: 1 stray daemon(s) not managed by cephadm 2024-03-30T14:00:00.856 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:00 smithi026 bash[21443]: cluster 2024-03-30T14:00:00.000326+0000 mon.a (mon.0) 753 : cluster 3 stray daemon osd.4 on host smithi136 not managed by cephadm 2024-03-30T14:00:00.856 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:00 smithi026 bash[21443]: audit 2024-03-30T14:00:00.558050+0000 mon.a (mon.0) 754 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:00.857 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:00 smithi026 bash[21443]: audit 2024-03-30T14:00:00.566774+0000 mon.a (mon.0) 755 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:00.857 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:00 smithi026 bash[21443]: audit 2024-03-30T14:00:00.572344+0000 mon.a (mon.0) 756 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T14:00:00.857 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:00 smithi026 bash[21443]: audit 2024-03-30T14:00:00.577354+0000 mon.a (mon.0) 757 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:00.857 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:00 smithi026 bash[21443]: audit 2024-03-30T14:00:00.584216+0000 mon.a (mon.0) 758 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:00:00.857 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:00 smithi026 bash[21443]: audit 2024-03-30T14:00:00.586112+0000 mon.a (mon.0) 759 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T14:00:00.902 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:00 smithi050 bash[22081]: cluster 2024-03-30T14:00:00.000185+0000 mon.a (mon.0) 751 : cluster 3 Health detail: HEALTH_WARN 1 stray daemon(s) not managed by cephadm 2024-03-30T14:00:00.903 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:00 smithi050 bash[22081]: cluster 2024-03-30T14:00:00.000276+0000 mon.a (mon.0) 752 : cluster 3 [WRN] CEPHADM_STRAY_DAEMON: 1 stray daemon(s) not managed by cephadm 2024-03-30T14:00:00.903 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:00 smithi050 bash[22081]: cluster 2024-03-30T14:00:00.000326+0000 mon.a (mon.0) 753 : cluster 3 stray daemon osd.4 on host smithi136 not managed by cephadm 2024-03-30T14:00:00.903 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:00 smithi050 bash[22081]: audit 2024-03-30T14:00:00.558050+0000 mon.a (mon.0) 754 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:00.903 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:00 smithi050 bash[22081]: audit 2024-03-30T14:00:00.566774+0000 mon.a (mon.0) 755 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:00.903 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:00 smithi050 bash[22081]: audit 2024-03-30T14:00:00.572344+0000 mon.a (mon.0) 756 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T14:00:00.903 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:00 smithi050 bash[22081]: audit 2024-03-30T14:00:00.577354+0000 mon.a (mon.0) 757 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:00.903 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:00 smithi050 bash[22081]: audit 2024-03-30T14:00:00.584216+0000 mon.a (mon.0) 758 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:00:00.903 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:00 smithi050 bash[22081]: audit 2024-03-30T14:00:00.586112+0000 mon.a (mon.0) 759 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T14:00:00.979 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:00 smithi136 bash[22230]: cluster 2024-03-30T14:00:00.000185+0000 mon.a (mon.0) 751 : cluster 3 Health detail: HEALTH_WARN 1 stray daemon(s) not managed by cephadm 2024-03-30T14:00:00.979 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:00 smithi136 bash[22230]: cluster 2024-03-30T14:00:00.000276+0000 mon.a (mon.0) 752 : cluster 3 [WRN] CEPHADM_STRAY_DAEMON: 1 stray daemon(s) not managed by cephadm 2024-03-30T14:00:00.979 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:00 smithi136 bash[22230]: cluster 2024-03-30T14:00:00.000326+0000 mon.a (mon.0) 753 : cluster 3 stray daemon osd.4 on host smithi136 not managed by cephadm 2024-03-30T14:00:00.979 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:00 smithi136 bash[22230]: audit 2024-03-30T14:00:00.558050+0000 mon.a (mon.0) 754 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:00.979 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:00 smithi136 bash[22230]: audit 2024-03-30T14:00:00.566774+0000 mon.a (mon.0) 755 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:00.980 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:00 smithi136 bash[22230]: audit 2024-03-30T14:00:00.572344+0000 mon.a (mon.0) 756 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T14:00:00.980 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:00 smithi136 bash[22230]: audit 2024-03-30T14:00:00.577354+0000 mon.a (mon.0) 757 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:00.980 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:00 smithi136 bash[22230]: audit 2024-03-30T14:00:00.584216+0000 mon.a (mon.0) 758 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:00:00.980 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:00 smithi136 bash[22230]: audit 2024-03-30T14:00:00.586112+0000 mon.a (mon.0) 759 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T14:00:01.856 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:01 smithi026 bash[21443]: cluster 2024-03-30T14:00:00.529696+0000 mgr.a (mgr.14152) 276 : cluster 0 pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 70 KiB/s, 0 objects/s recovering 2024-03-30T14:00:01.856 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:01 smithi026 bash[21443]: cluster 2024-03-30T14:00:00.589616+0000 mgr.a (mgr.14152) 277 : cluster 0 pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 76 KiB/s, 0 objects/s recovering 2024-03-30T14:00:01.856 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:01 smithi026 bash[21443]: audit 2024-03-30T14:00:00.607521+0000 mon.a (mon.0) 760 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:01.856 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:01 smithi026 bash[21443]: audit 2024-03-30T14:00:01.285523+0000 mon.a (mon.0) 761 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:01.856 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:01 smithi026 bash[21443]: audit 2024-03-30T14:00:01.294944+0000 mon.a (mon.0) 762 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:01.856 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:01 smithi026 bash[21443]: audit 2024-03-30T14:00:01.305518+0000 mon.a (mon.0) 763 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:01.856 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:01 smithi026 bash[21443]: cluster 2024-03-30T14:00:01.590584+0000 mon.a (mon.0) 764 : cluster 1 Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-03-30T14:00:01.856 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:01 smithi026 bash[21443]: cluster 2024-03-30T14:00:01.590637+0000 mon.a (mon.0) 765 : cluster 1 Cluster is now healthy 2024-03-30T14:00:01.902 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:01 smithi050 bash[22081]: cluster 2024-03-30T14:00:00.529696+0000 mgr.a (mgr.14152) 276 : cluster 0 pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 70 KiB/s, 0 objects/s recovering 2024-03-30T14:00:01.902 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:01 smithi050 bash[22081]: cluster 2024-03-30T14:00:00.589616+0000 mgr.a (mgr.14152) 277 : cluster 0 pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 76 KiB/s, 0 objects/s recovering 2024-03-30T14:00:01.902 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:01 smithi050 bash[22081]: audit 2024-03-30T14:00:00.607521+0000 mon.a (mon.0) 760 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:01.902 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:01 smithi050 bash[22081]: audit 2024-03-30T14:00:01.285523+0000 mon.a (mon.0) 761 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:01.903 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:01 smithi050 bash[22081]: audit 2024-03-30T14:00:01.294944+0000 mon.a (mon.0) 762 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:01.903 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:01 smithi050 bash[22081]: audit 2024-03-30T14:00:01.305518+0000 mon.a (mon.0) 763 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:01.903 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:01 smithi050 bash[22081]: cluster 2024-03-30T14:00:01.590584+0000 mon.a (mon.0) 764 : cluster 1 Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-03-30T14:00:01.903 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:01 smithi050 bash[22081]: cluster 2024-03-30T14:00:01.590637+0000 mon.a (mon.0) 765 : cluster 1 Cluster is now healthy 2024-03-30T14:00:01.979 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:01 smithi136 bash[22230]: cluster 2024-03-30T14:00:00.529696+0000 mgr.a (mgr.14152) 276 : cluster 0 pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 70 KiB/s, 0 objects/s recovering 2024-03-30T14:00:01.979 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:01 smithi136 bash[22230]: cluster 2024-03-30T14:00:00.589616+0000 mgr.a (mgr.14152) 277 : cluster 0 pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 76 KiB/s, 0 objects/s recovering 2024-03-30T14:00:01.979 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:01 smithi136 bash[22230]: audit 2024-03-30T14:00:00.607521+0000 mon.a (mon.0) 760 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:01.979 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:01 smithi136 bash[22230]: audit 2024-03-30T14:00:01.285523+0000 mon.a (mon.0) 761 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:01.979 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:01 smithi136 bash[22230]: audit 2024-03-30T14:00:01.294944+0000 mon.a (mon.0) 762 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:01.980 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:01 smithi136 bash[22230]: audit 2024-03-30T14:00:01.305518+0000 mon.a (mon.0) 763 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:01.980 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:01 smithi136 bash[22230]: cluster 2024-03-30T14:00:01.590584+0000 mon.a (mon.0) 764 : cluster 1 Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-03-30T14:00:01.980 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:01 smithi136 bash[22230]: cluster 2024-03-30T14:00:01.590637+0000 mon.a (mon.0) 765 : cluster 1 Cluster is now healthy 2024-03-30T14:00:02.147 INFO:teuthology.orchestra.run.smithi136.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.c/config 2024-03-30T14:00:04.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:04 smithi050 bash[22081]: cluster 2024-03-30T14:00:02.590197+0000 mgr.a (mgr.14152) 278 : cluster 0 pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 69 KiB/s, 0 objects/s recovering 2024-03-30T14:00:04.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:04 smithi050 bash[22081]: audit 2024-03-30T14:00:03.132938+0000 mon.a (mon.0) 766 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:04.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:04 smithi050 bash[22081]: audit 2024-03-30T14:00:03.138260+0000 mon.a (mon.0) 767 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:04.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:04 smithi050 bash[22081]: audit 2024-03-30T14:00:03.144037+0000 mon.a (mon.0) 768 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:04.479 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:04 smithi136 bash[22230]: cluster 2024-03-30T14:00:02.590197+0000 mgr.a (mgr.14152) 278 : cluster 0 pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 69 KiB/s, 0 objects/s recovering 2024-03-30T14:00:04.479 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:04 smithi136 bash[22230]: audit 2024-03-30T14:00:03.132938+0000 mon.a (mon.0) 766 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:04.479 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:04 smithi136 bash[22230]: audit 2024-03-30T14:00:03.138260+0000 mon.a (mon.0) 767 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:04.479 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:04 smithi136 bash[22230]: audit 2024-03-30T14:00:03.144037+0000 mon.a (mon.0) 768 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:04.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:04 smithi026 bash[21443]: cluster 2024-03-30T14:00:02.590197+0000 mgr.a (mgr.14152) 278 : cluster 0 pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 69 KiB/s, 0 objects/s recovering 2024-03-30T14:00:04.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:04 smithi026 bash[21443]: audit 2024-03-30T14:00:03.132938+0000 mon.a (mon.0) 766 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:04.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:04 smithi026 bash[21443]: audit 2024-03-30T14:00:03.138260+0000 mon.a (mon.0) 767 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:04.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:04 smithi026 bash[21443]: audit 2024-03-30T14:00:03.144037+0000 mon.a (mon.0) 768 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:05.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:05 smithi050 bash[22081]: audit 2024-03-30T14:00:04.747560+0000 mon.a (mon.0) 769 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-30T14:00:05.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:05 smithi050 bash[22081]: audit 2024-03-30T14:00:04.754067+0000 mon.a (mon.0) 770 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-30T14:00:05.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:05 smithi050 bash[22081]: audit 2024-03-30T14:00:04.755825+0000 mon.a (mon.0) 771 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:00:05.479 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:05 smithi136 bash[22230]: audit 2024-03-30T14:00:04.747560+0000 mon.a (mon.0) 769 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-30T14:00:05.479 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:05 smithi136 bash[22230]: audit 2024-03-30T14:00:04.754067+0000 mon.a (mon.0) 770 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-30T14:00:05.479 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:05 smithi136 bash[22230]: audit 2024-03-30T14:00:04.755825+0000 mon.a (mon.0) 771 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:00:05.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:05 smithi026 bash[21443]: audit 2024-03-30T14:00:04.747560+0000 mon.a (mon.0) 769 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-30T14:00:05.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:05 smithi026 bash[21443]: audit 2024-03-30T14:00:04.754067+0000 mon.a (mon.0) 770 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-30T14:00:05.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:05 smithi026 bash[21443]: audit 2024-03-30T14:00:04.755825+0000 mon.a (mon.0) 771 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:00:06.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:06 smithi050 bash[22081]: cluster 2024-03-30T14:00:04.590760+0000 mgr.a (mgr.14152) 279 : cluster 0 pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 57 KiB/s, 0 objects/s recovering 2024-03-30T14:00:06.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:06 smithi050 bash[22081]: audit 2024-03-30T14:00:04.740302+0000 mgr.a (mgr.14152) 280 : audit 0 from='client.24223 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi136:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T14:00:06.479 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:06 smithi136 bash[22230]: cluster 2024-03-30T14:00:04.590760+0000 mgr.a (mgr.14152) 279 : cluster 0 pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 57 KiB/s, 0 objects/s recovering 2024-03-30T14:00:06.479 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:06 smithi136 bash[22230]: audit 2024-03-30T14:00:04.740302+0000 mgr.a (mgr.14152) 280 : audit 0 from='client.24223 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi136:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T14:00:06.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:06 smithi026 bash[21443]: cluster 2024-03-30T14:00:04.590760+0000 mgr.a (mgr.14152) 279 : cluster 0 pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 57 KiB/s, 0 objects/s recovering 2024-03-30T14:00:06.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:06 smithi026 bash[21443]: audit 2024-03-30T14:00:04.740302+0000 mgr.a (mgr.14152) 280 : audit 0 from='client.24223 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi136:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T14:00:08.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:08 smithi050 bash[22081]: cluster 2024-03-30T14:00:06.591344+0000 mgr.a (mgr.14152) 281 : cluster 0 pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:08.479 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:08 smithi136 bash[22230]: cluster 2024-03-30T14:00:06.591344+0000 mgr.a (mgr.14152) 281 : cluster 0 pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:08.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:08 smithi026 bash[21443]: cluster 2024-03-30T14:00:06.591344+0000 mgr.a (mgr.14152) 281 : cluster 0 pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:10.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:10 smithi050 bash[22081]: cluster 2024-03-30T14:00:08.591894+0000 mgr.a (mgr.14152) 282 : cluster 0 pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:10.423 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:10 smithi136 bash[22230]: cluster 2024-03-30T14:00:08.591894+0000 mgr.a (mgr.14152) 282 : cluster 0 pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:10.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:10 smithi026 bash[21443]: cluster 2024-03-30T14:00:08.591894+0000 mgr.a (mgr.14152) 282 : cluster 0 pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:12.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:12 smithi050 bash[22081]: cluster 2024-03-30T14:00:10.592499+0000 mgr.a (mgr.14152) 283 : cluster 0 pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:12.479 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:12 smithi136 bash[22230]: cluster 2024-03-30T14:00:10.592499+0000 mgr.a (mgr.14152) 283 : cluster 0 pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:12.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:12 smithi026 bash[21443]: cluster 2024-03-30T14:00:10.592499+0000 mgr.a (mgr.14152) 283 : cluster 0 pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:14.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:14 smithi050 bash[22081]: cluster 2024-03-30T14:00:12.593004+0000 mgr.a (mgr.14152) 284 : cluster 0 pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:14.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:14 smithi050 bash[22081]: audit 2024-03-30T14:00:13.992788+0000 mon.a (mon.0) 772 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "420073d4-c6bf-49e4-b9b0-6a5388abf125"}]: dispatch 2024-03-30T14:00:14.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:14 smithi050 bash[22081]: audit 2024-03-30T14:00:13.993812+0000 mon.c (mon.1) 10 : audit 1 from='client.? 172.21.15.136:0/2890287603' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "420073d4-c6bf-49e4-b9b0-6a5388abf125"}]: dispatch 2024-03-30T14:00:14.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:14 smithi050 bash[22081]: audit 2024-03-30T14:00:13.996285+0000 mon.a (mon.0) 773 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "420073d4-c6bf-49e4-b9b0-6a5388abf125"}]': finished 2024-03-30T14:00:14.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:14 smithi050 bash[22081]: cluster 2024-03-30T14:00:14.001351+0000 mon.a (mon.0) 774 : cluster 0 osdmap e38: 6 total, 5 up, 6 in 2024-03-30T14:00:14.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:14 smithi050 bash[22081]: audit 2024-03-30T14:00:14.001808+0000 mon.a (mon.0) 775 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-30T14:00:14.418 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:14 smithi026 bash[21443]: cluster 2024-03-30T14:00:12.593004+0000 mgr.a (mgr.14152) 284 : cluster 0 pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:14.418 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:14 smithi026 bash[21443]: audit 2024-03-30T14:00:13.992788+0000 mon.a (mon.0) 772 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "420073d4-c6bf-49e4-b9b0-6a5388abf125"}]: dispatch 2024-03-30T14:00:14.418 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:14 smithi026 bash[21443]: audit 2024-03-30T14:00:13.993812+0000 mon.c (mon.1) 10 : audit 1 from='client.? 172.21.15.136:0/2890287603' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "420073d4-c6bf-49e4-b9b0-6a5388abf125"}]: dispatch 2024-03-30T14:00:14.419 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:14 smithi026 bash[21443]: audit 2024-03-30T14:00:13.996285+0000 mon.a (mon.0) 773 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "420073d4-c6bf-49e4-b9b0-6a5388abf125"}]': finished 2024-03-30T14:00:14.419 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:14 smithi026 bash[21443]: cluster 2024-03-30T14:00:14.001351+0000 mon.a (mon.0) 774 : cluster 0 osdmap e38: 6 total, 5 up, 6 in 2024-03-30T14:00:14.419 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:14 smithi026 bash[21443]: audit 2024-03-30T14:00:14.001808+0000 mon.a (mon.0) 775 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-30T14:00:14.478 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:14 smithi136 bash[22230]: cluster 2024-03-30T14:00:12.593004+0000 mgr.a (mgr.14152) 284 : cluster 0 pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:14.479 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:14 smithi136 bash[22230]: audit 2024-03-30T14:00:13.992788+0000 mon.a (mon.0) 772 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "420073d4-c6bf-49e4-b9b0-6a5388abf125"}]: dispatch 2024-03-30T14:00:14.479 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:14 smithi136 bash[22230]: audit 2024-03-30T14:00:13.993812+0000 mon.c (mon.1) 10 : audit 1 from='client.? 172.21.15.136:0/2890287603' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "420073d4-c6bf-49e4-b9b0-6a5388abf125"}]: dispatch 2024-03-30T14:00:14.479 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:14 smithi136 bash[22230]: audit 2024-03-30T14:00:13.996285+0000 mon.a (mon.0) 773 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "420073d4-c6bf-49e4-b9b0-6a5388abf125"}]': finished 2024-03-30T14:00:14.479 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:14 smithi136 bash[22230]: cluster 2024-03-30T14:00:14.001351+0000 mon.a (mon.0) 774 : cluster 0 osdmap e38: 6 total, 5 up, 6 in 2024-03-30T14:00:14.479 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:14 smithi136 bash[22230]: audit 2024-03-30T14:00:14.001808+0000 mon.a (mon.0) 775 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-30T14:00:15.444 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:15 smithi026 bash[21443]: audit 2024-03-30T14:00:14.737796+0000 mon.c (mon.1) 11 : audit 0 from='client.? 172.21.15.136:0/4242739781' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-30T14:00:15.478 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:15 smithi136 bash[22230]: audit 2024-03-30T14:00:14.737796+0000 mon.c (mon.1) 11 : audit 0 from='client.? 172.21.15.136:0/4242739781' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-30T14:00:15.652 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:15 smithi050 bash[22081]: audit 2024-03-30T14:00:14.737796+0000 mon.c (mon.1) 11 : audit 0 from='client.? 172.21.15.136:0/4242739781' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-30T14:00:16.478 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:16 smithi136 bash[22230]: cluster 2024-03-30T14:00:14.593529+0000 mgr.a (mgr.14152) 285 : cluster 0 pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:16.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:16 smithi026 bash[21443]: cluster 2024-03-30T14:00:14.593529+0000 mgr.a (mgr.14152) 285 : cluster 0 pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:16.652 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:16 smithi050 bash[22081]: cluster 2024-03-30T14:00:14.593529+0000 mgr.a (mgr.14152) 285 : cluster 0 pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:18.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:18 smithi026 bash[21443]: cluster 2024-03-30T14:00:16.594117+0000 mgr.a (mgr.14152) 286 : cluster 0 pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:18.478 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:18 smithi136 bash[22230]: cluster 2024-03-30T14:00:16.594117+0000 mgr.a (mgr.14152) 286 : cluster 0 pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:18.480 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:18 smithi050 bash[22081]: cluster 2024-03-30T14:00:16.594117+0000 mgr.a (mgr.14152) 286 : cluster 0 pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:20.475 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:20 smithi136 bash[22230]: cluster 2024-03-30T14:00:18.594683+0000 mgr.a (mgr.14152) 287 : cluster 0 pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:20.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:20 smithi026 bash[21443]: cluster 2024-03-30T14:00:18.594683+0000 mgr.a (mgr.14152) 287 : cluster 0 pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:20.652 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:20 smithi050 bash[22081]: cluster 2024-03-30T14:00:18.594683+0000 mgr.a (mgr.14152) 287 : cluster 0 pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:21.902 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:21 smithi050 bash[22081]: cluster 2024-03-30T14:00:20.595240+0000 mgr.a (mgr.14152) 288 : cluster 0 pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:21.902 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:21 smithi050 bash[22081]: audit 2024-03-30T14:00:20.646441+0000 mon.a (mon.0) 776 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:21.902 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:21 smithi050 bash[22081]: audit 2024-03-30T14:00:20.655057+0000 mon.a (mon.0) 777 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:21.902 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:21 smithi050 bash[22081]: cephadm 2024-03-30T14:00:20.658271+0000 mgr.a (mgr.14152) 289 : cephadm 1 Detected new or changed devices on smithi136 2024-03-30T14:00:21.902 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:21 smithi050 bash[22081]: audit 2024-03-30T14:00:20.665587+0000 mon.a (mon.0) 778 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:21.902 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:21 smithi050 bash[22081]: audit 2024-03-30T14:00:21.546909+0000 mon.a (mon.0) 779 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:21.902 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:21 smithi050 bash[22081]: audit 2024-03-30T14:00:21.556755+0000 mon.a (mon.0) 780 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:21.903 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:21 smithi050 bash[22081]: audit 2024-03-30T14:00:21.567580+0000 mon.a (mon.0) 781 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:21.979 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:21 smithi136 bash[22230]: cluster 2024-03-30T14:00:20.595240+0000 mgr.a (mgr.14152) 288 : cluster 0 pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:21.979 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:21 smithi136 bash[22230]: audit 2024-03-30T14:00:20.646441+0000 mon.a (mon.0) 776 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:21.979 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:21 smithi136 bash[22230]: audit 2024-03-30T14:00:20.655057+0000 mon.a (mon.0) 777 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:21.979 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:21 smithi136 bash[22230]: cephadm 2024-03-30T14:00:20.658271+0000 mgr.a (mgr.14152) 289 : cephadm 1 Detected new or changed devices on smithi136 2024-03-30T14:00:21.979 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:21 smithi136 bash[22230]: audit 2024-03-30T14:00:20.665587+0000 mon.a (mon.0) 778 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:21.979 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:21 smithi136 bash[22230]: audit 2024-03-30T14:00:21.546909+0000 mon.a (mon.0) 779 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:21.979 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:21 smithi136 bash[22230]: audit 2024-03-30T14:00:21.556755+0000 mon.a (mon.0) 780 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:21.979 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:21 smithi136 bash[22230]: audit 2024-03-30T14:00:21.567580+0000 mon.a (mon.0) 781 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:22.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:21 smithi026 bash[21443]: cluster 2024-03-30T14:00:20.595240+0000 mgr.a (mgr.14152) 288 : cluster 0 pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:22.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:21 smithi026 bash[21443]: audit 2024-03-30T14:00:20.646441+0000 mon.a (mon.0) 776 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:22.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:21 smithi026 bash[21443]: audit 2024-03-30T14:00:20.655057+0000 mon.a (mon.0) 777 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:22.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:21 smithi026 bash[21443]: cephadm 2024-03-30T14:00:20.658271+0000 mgr.a (mgr.14152) 289 : cephadm 1 Detected new or changed devices on smithi136 2024-03-30T14:00:22.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:21 smithi026 bash[21443]: audit 2024-03-30T14:00:20.665587+0000 mon.a (mon.0) 778 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:22.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:21 smithi026 bash[21443]: audit 2024-03-30T14:00:21.546909+0000 mon.a (mon.0) 779 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:22.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:21 smithi026 bash[21443]: audit 2024-03-30T14:00:21.556755+0000 mon.a (mon.0) 780 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:22.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:21 smithi026 bash[21443]: audit 2024-03-30T14:00:21.567580+0000 mon.a (mon.0) 781 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:23.902 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:23 smithi050 bash[22081]: cluster 2024-03-30T14:00:22.595793+0000 mgr.a (mgr.14152) 290 : cluster 0 pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:23.902 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:23 smithi050 bash[22081]: audit 2024-03-30T14:00:23.336819+0000 mon.a (mon.0) 782 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:23.902 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:23 smithi050 bash[22081]: audit 2024-03-30T14:00:23.346194+0000 mon.a (mon.0) 783 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:23.902 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:23 smithi050 bash[22081]: audit 2024-03-30T14:00:23.356139+0000 mon.a (mon.0) 784 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:23.978 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:23 smithi136 bash[22230]: cluster 2024-03-30T14:00:22.595793+0000 mgr.a (mgr.14152) 290 : cluster 0 pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:23.978 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:23 smithi136 bash[22230]: audit 2024-03-30T14:00:23.336819+0000 mon.a (mon.0) 782 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:23.979 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:23 smithi136 bash[22230]: audit 2024-03-30T14:00:23.346194+0000 mon.a (mon.0) 783 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:23.979 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:23 smithi136 bash[22230]: audit 2024-03-30T14:00:23.356139+0000 mon.a (mon.0) 784 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:24.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:23 smithi026 bash[21443]: cluster 2024-03-30T14:00:22.595793+0000 mgr.a (mgr.14152) 290 : cluster 0 pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:24.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:23 smithi026 bash[21443]: audit 2024-03-30T14:00:23.336819+0000 mon.a (mon.0) 782 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:24.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:23 smithi026 bash[21443]: audit 2024-03-30T14:00:23.346194+0000 mon.a (mon.0) 783 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:24.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:23 smithi026 bash[21443]: audit 2024-03-30T14:00:23.356139+0000 mon.a (mon.0) 784 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:25.902 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:25 smithi050 bash[22081]: cluster 2024-03-30T14:00:24.596370+0000 mgr.a (mgr.14152) 291 : cluster 0 pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:25.978 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:25 smithi136 bash[22230]: cluster 2024-03-30T14:00:24.596370+0000 mgr.a (mgr.14152) 291 : cluster 0 pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:26.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:25 smithi026 bash[21443]: cluster 2024-03-30T14:00:24.596370+0000 mgr.a (mgr.14152) 291 : cluster 0 pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:26.955 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:26 smithi136 bash[22230]: audit 2024-03-30T14:00:25.789367+0000 mon.a (mon.0) 785 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-03-30T14:00:26.955 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:26 smithi136 bash[22230]: audit 2024-03-30T14:00:25.791178+0000 mon.a (mon.0) 786 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:00:26.955 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:26 smithi136 bash[22230]: cephadm 2024-03-30T14:00:25.792847+0000 mgr.a (mgr.14152) 292 : cephadm 1 Deploying daemon osd.5 on smithi136 2024-03-30T14:00:27.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:26 smithi026 bash[21443]: audit 2024-03-30T14:00:25.789367+0000 mon.a (mon.0) 785 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-03-30T14:00:27.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:26 smithi026 bash[21443]: audit 2024-03-30T14:00:25.791178+0000 mon.a (mon.0) 786 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:00:27.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:26 smithi026 bash[21443]: cephadm 2024-03-30T14:00:25.792847+0000 mgr.a (mgr.14152) 292 : cephadm 1 Deploying daemon osd.5 on smithi136 2024-03-30T14:00:27.152 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:26 smithi050 bash[22081]: audit 2024-03-30T14:00:25.789367+0000 mon.a (mon.0) 785 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-03-30T14:00:27.152 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:26 smithi050 bash[22081]: audit 2024-03-30T14:00:25.791178+0000 mon.a (mon.0) 786 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:00:27.152 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:26 smithi050 bash[22081]: cephadm 2024-03-30T14:00:25.792847+0000 mgr.a (mgr.14152) 292 : cephadm 1 Deploying daemon osd.5 on smithi136 2024-03-30T14:00:27.978 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:27 smithi136 bash[22230]: cluster 2024-03-30T14:00:26.596894+0000 mgr.a (mgr.14152) 293 : cluster 0 pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:28.105 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:27 smithi026 bash[21443]: cluster 2024-03-30T14:00:26.596894+0000 mgr.a (mgr.14152) 293 : cluster 0 pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:28.151 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:27 smithi050 bash[22081]: cluster 2024-03-30T14:00:26.596894+0000 mgr.a (mgr.14152) 293 : cluster 0 pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:29.835 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:29 smithi136 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T14:00:29.835 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:29 smithi136 bash[22230]: cluster 2024-03-30T14:00:28.597438+0000 mgr.a (mgr.14152) 294 : cluster 0 pgmap v247: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:29.835 INFO:journalctl@ceph.osd.4.smithi136.stdout:Mar 30 14:00:29 smithi136 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T14:00:30.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:29 smithi026 bash[21443]: cluster 2024-03-30T14:00:28.597438+0000 mgr.a (mgr.14152) 294 : cluster 0 pgmap v247: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:30.151 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:29 smithi050 bash[22081]: cluster 2024-03-30T14:00:28.597438+0000 mgr.a (mgr.14152) 294 : cluster 0 pgmap v247: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:30.228 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:29 smithi136 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T14:00:30.228 INFO:journalctl@ceph.osd.4.smithi136.stdout:Mar 30 14:00:29 smithi136 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T14:00:31.228 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:30 smithi136 bash[22230]: audit 2024-03-30T14:00:29.994083+0000 mon.a (mon.0) 787 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:31.228 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:30 smithi136 bash[22230]: audit 2024-03-30T14:00:30.002649+0000 mon.a (mon.0) 788 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:31.228 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:30 smithi136 bash[22230]: audit 2024-03-30T14:00:30.013243+0000 mon.a (mon.0) 789 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T14:00:31.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:30 smithi136 bash[22230]: audit 2024-03-30T14:00:30.022725+0000 mon.a (mon.0) 790 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:00:31.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:30 smithi136 bash[22230]: audit 2024-03-30T14:00:30.026336+0000 mon.a (mon.0) 791 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T14:00:31.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:30 smithi136 bash[22230]: audit 2024-03-30T14:00:30.038408+0000 mon.a (mon.0) 792 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:31.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:30 smithi026 bash[21443]: audit 2024-03-30T14:00:29.994083+0000 mon.a (mon.0) 787 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:31.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:30 smithi026 bash[21443]: audit 2024-03-30T14:00:30.002649+0000 mon.a (mon.0) 788 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:31.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:30 smithi026 bash[21443]: audit 2024-03-30T14:00:30.013243+0000 mon.a (mon.0) 789 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T14:00:31.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:30 smithi026 bash[21443]: audit 2024-03-30T14:00:30.022725+0000 mon.a (mon.0) 790 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:00:31.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:30 smithi026 bash[21443]: audit 2024-03-30T14:00:30.026336+0000 mon.a (mon.0) 791 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T14:00:31.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:30 smithi026 bash[21443]: audit 2024-03-30T14:00:30.038408+0000 mon.a (mon.0) 792 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:31.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:30 smithi050 bash[22081]: audit 2024-03-30T14:00:29.994083+0000 mon.a (mon.0) 787 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:31.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:30 smithi050 bash[22081]: audit 2024-03-30T14:00:30.002649+0000 mon.a (mon.0) 788 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:31.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:30 smithi050 bash[22081]: audit 2024-03-30T14:00:30.013243+0000 mon.a (mon.0) 789 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T14:00:31.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:30 smithi050 bash[22081]: audit 2024-03-30T14:00:30.022725+0000 mon.a (mon.0) 790 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:00:31.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:30 smithi050 bash[22081]: audit 2024-03-30T14:00:30.026336+0000 mon.a (mon.0) 791 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T14:00:31.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:30 smithi050 bash[22081]: audit 2024-03-30T14:00:30.038408+0000 mon.a (mon.0) 792 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:32.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:32 smithi026 bash[21443]: cluster 2024-03-30T14:00:30.598015+0000 mgr.a (mgr.14152) 295 : cluster 0 pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:32.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:32 smithi050 bash[22081]: cluster 2024-03-30T14:00:30.598015+0000 mgr.a (mgr.14152) 295 : cluster 0 pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:32.478 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:32 smithi136 bash[22230]: cluster 2024-03-30T14:00:30.598015+0000 mgr.a (mgr.14152) 295 : cluster 0 pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:34.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:34 smithi026 bash[21443]: cluster 2024-03-30T14:00:32.598546+0000 mgr.a (mgr.14152) 296 : cluster 0 pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:34.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:34 smithi050 bash[22081]: cluster 2024-03-30T14:00:32.598546+0000 mgr.a (mgr.14152) 296 : cluster 0 pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:34.478 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:34 smithi136 bash[22230]: cluster 2024-03-30T14:00:32.598546+0000 mgr.a (mgr.14152) 296 : cluster 0 pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:36.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:36 smithi026 bash[21443]: cluster 2024-03-30T14:00:34.599135+0000 mgr.a (mgr.14152) 297 : cluster 0 pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:36.371 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:36 smithi136 bash[22230]: cluster 2024-03-30T14:00:34.599135+0000 mgr.a (mgr.14152) 297 : cluster 0 pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:36.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:36 smithi050 bash[22081]: cluster 2024-03-30T14:00:34.599135+0000 mgr.a (mgr.14152) 297 : cluster 0 pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:37.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:37 smithi026 bash[21443]: audit 2024-03-30T14:00:36.384551+0000 mon.a (mon.0) 793 : audit 1 from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-03-30T14:00:37.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:37 smithi026 bash[21443]: audit 2024-03-30T14:00:36.385877+0000 mon.c (mon.1) 12 : audit 1 from='osd.5 [v2:172.21.15.136:6808/2515060655,v1:172.21.15.136:6809/2515060655]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-03-30T14:00:37.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:37 smithi050 bash[22081]: audit 2024-03-30T14:00:36.384551+0000 mon.a (mon.0) 793 : audit 1 from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-03-30T14:00:37.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:37 smithi050 bash[22081]: audit 2024-03-30T14:00:36.385877+0000 mon.c (mon.1) 12 : audit 1 from='osd.5 [v2:172.21.15.136:6808/2515060655,v1:172.21.15.136:6809/2515060655]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-03-30T14:00:37.478 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:37 smithi136 bash[22230]: audit 2024-03-30T14:00:36.384551+0000 mon.a (mon.0) 793 : audit 1 from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-03-30T14:00:37.478 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:37 smithi136 bash[22230]: audit 2024-03-30T14:00:36.385877+0000 mon.c (mon.1) 12 : audit 1 from='osd.5 [v2:172.21.15.136:6808/2515060655,v1:172.21.15.136:6809/2515060655]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-03-30T14:00:38.170 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:38 smithi136 bash[22230]: cluster 2024-03-30T14:00:36.599826+0000 mgr.a (mgr.14152) 298 : cluster 0 pgmap v251: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:38.170 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:38 smithi136 bash[22230]: audit 2024-03-30T14:00:37.054381+0000 mon.a (mon.0) 794 : audit 1 from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-03-30T14:00:38.170 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:38 smithi136 bash[22230]: cluster 2024-03-30T14:00:37.060604+0000 mon.a (mon.0) 795 : cluster 0 osdmap e39: 6 total, 5 up, 6 in 2024-03-30T14:00:38.170 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:38 smithi136 bash[22230]: audit 2024-03-30T14:00:37.061266+0000 mon.a (mon.0) 796 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-30T14:00:38.170 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:38 smithi136 bash[22230]: audit 2024-03-30T14:00:37.062620+0000 mon.a (mon.0) 797 : audit 1 from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi136", "root=default"]}]: dispatch 2024-03-30T14:00:38.170 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:38 smithi136 bash[22230]: audit 2024-03-30T14:00:37.063701+0000 mon.c (mon.1) 13 : audit 1 from='osd.5 [v2:172.21.15.136:6808/2515060655,v1:172.21.15.136:6809/2515060655]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi136", "root=default"]}]: dispatch 2024-03-30T14:00:38.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:38 smithi026 bash[21443]: cluster 2024-03-30T14:00:36.599826+0000 mgr.a (mgr.14152) 298 : cluster 0 pgmap v251: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:38.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:38 smithi026 bash[21443]: audit 2024-03-30T14:00:37.054381+0000 mon.a (mon.0) 794 : audit 1 from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-03-30T14:00:38.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:38 smithi026 bash[21443]: cluster 2024-03-30T14:00:37.060604+0000 mon.a (mon.0) 795 : cluster 0 osdmap e39: 6 total, 5 up, 6 in 2024-03-30T14:00:38.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:38 smithi026 bash[21443]: audit 2024-03-30T14:00:37.061266+0000 mon.a (mon.0) 796 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-30T14:00:38.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:38 smithi026 bash[21443]: audit 2024-03-30T14:00:37.062620+0000 mon.a (mon.0) 797 : audit 1 from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi136", "root=default"]}]: dispatch 2024-03-30T14:00:38.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:38 smithi026 bash[21443]: audit 2024-03-30T14:00:37.063701+0000 mon.c (mon.1) 13 : audit 1 from='osd.5 [v2:172.21.15.136:6808/2515060655,v1:172.21.15.136:6809/2515060655]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi136", "root=default"]}]: dispatch 2024-03-30T14:00:38.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:38 smithi050 bash[22081]: cluster 2024-03-30T14:00:36.599826+0000 mgr.a (mgr.14152) 298 : cluster 0 pgmap v251: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:38.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:38 smithi050 bash[22081]: audit 2024-03-30T14:00:37.054381+0000 mon.a (mon.0) 794 : audit 1 from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-03-30T14:00:38.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:38 smithi050 bash[22081]: cluster 2024-03-30T14:00:37.060604+0000 mon.a (mon.0) 795 : cluster 0 osdmap e39: 6 total, 5 up, 6 in 2024-03-30T14:00:38.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:38 smithi050 bash[22081]: audit 2024-03-30T14:00:37.061266+0000 mon.a (mon.0) 796 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-30T14:00:38.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:38 smithi050 bash[22081]: audit 2024-03-30T14:00:37.062620+0000 mon.a (mon.0) 797 : audit 1 from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi136", "root=default"]}]: dispatch 2024-03-30T14:00:38.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:38 smithi050 bash[22081]: audit 2024-03-30T14:00:37.063701+0000 mon.c (mon.1) 13 : audit 1 from='osd.5 [v2:172.21.15.136:6808/2515060655,v1:172.21.15.136:6809/2515060655]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi136", "root=default"]}]: dispatch 2024-03-30T14:00:39.325 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:39 smithi136 bash[22230]: audit 2024-03-30T14:00:38.057063+0000 mon.a (mon.0) 798 : audit 1 from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi136", "root=default"]}]': finished 2024-03-30T14:00:39.325 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:39 smithi136 bash[22230]: cluster 2024-03-30T14:00:38.062377+0000 mon.a (mon.0) 799 : cluster 0 osdmap e40: 6 total, 5 up, 6 in 2024-03-30T14:00:39.325 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:39 smithi136 bash[22230]: audit 2024-03-30T14:00:38.063312+0000 mon.a (mon.0) 800 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-30T14:00:39.325 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:39 smithi136 bash[22230]: audit 2024-03-30T14:00:38.071239+0000 mon.a (mon.0) 801 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-30T14:00:39.325 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:39 smithi136 bash[22230]: audit 2024-03-30T14:00:38.398588+0000 mon.a (mon.0) 802 : audit 1 from='osd.5 ' entity='osd.5' 2024-03-30T14:00:39.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:39 smithi026 bash[21443]: audit 2024-03-30T14:00:38.057063+0000 mon.a (mon.0) 798 : audit 1 from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi136", "root=default"]}]': finished 2024-03-30T14:00:39.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:39 smithi026 bash[21443]: cluster 2024-03-30T14:00:38.062377+0000 mon.a (mon.0) 799 : cluster 0 osdmap e40: 6 total, 5 up, 6 in 2024-03-30T14:00:39.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:39 smithi026 bash[21443]: audit 2024-03-30T14:00:38.063312+0000 mon.a (mon.0) 800 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-30T14:00:39.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:39 smithi026 bash[21443]: audit 2024-03-30T14:00:38.071239+0000 mon.a (mon.0) 801 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-30T14:00:39.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:39 smithi026 bash[21443]: audit 2024-03-30T14:00:38.398588+0000 mon.a (mon.0) 802 : audit 1 from='osd.5 ' entity='osd.5' 2024-03-30T14:00:39.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:39 smithi050 bash[22081]: audit 2024-03-30T14:00:38.057063+0000 mon.a (mon.0) 798 : audit 1 from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi136", "root=default"]}]': finished 2024-03-30T14:00:39.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:39 smithi050 bash[22081]: cluster 2024-03-30T14:00:38.062377+0000 mon.a (mon.0) 799 : cluster 0 osdmap e40: 6 total, 5 up, 6 in 2024-03-30T14:00:39.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:39 smithi050 bash[22081]: audit 2024-03-30T14:00:38.063312+0000 mon.a (mon.0) 800 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-30T14:00:39.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:39 smithi050 bash[22081]: audit 2024-03-30T14:00:38.071239+0000 mon.a (mon.0) 801 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-30T14:00:39.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:39 smithi050 bash[22081]: audit 2024-03-30T14:00:38.398588+0000 mon.a (mon.0) 802 : audit 1 from='osd.5 ' entity='osd.5' 2024-03-30T14:00:40.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:40 smithi026 bash[21443]: cluster 2024-03-30T14:00:37.415036+0000 osd.5 (osd.5) 1 : cluster 0 purged_snaps scrub starts 2024-03-30T14:00:40.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:40 smithi026 bash[21443]: cluster 2024-03-30T14:00:37.415152+0000 osd.5 (osd.5) 2 : cluster 0 purged_snaps scrub ok 2024-03-30T14:00:40.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:40 smithi026 bash[21443]: cluster 2024-03-30T14:00:38.600445+0000 mgr.a (mgr.14152) 299 : cluster 0 pgmap v254: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:40.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:40 smithi026 bash[21443]: audit 2024-03-30T14:00:39.066255+0000 mon.a (mon.0) 803 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-30T14:00:40.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:40 smithi026 bash[21443]: cluster 2024-03-30T14:00:39.079904+0000 mon.a (mon.0) 804 : cluster 1 osd.5 [v2:172.21.15.136:6808/2515060655,v1:172.21.15.136:6809/2515060655] boot 2024-03-30T14:00:40.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:40 smithi026 bash[21443]: cluster 2024-03-30T14:00:39.079971+0000 mon.a (mon.0) 805 : cluster 0 osdmap e41: 6 total, 6 up, 6 in 2024-03-30T14:00:40.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:40 smithi026 bash[21443]: audit 2024-03-30T14:00:39.080384+0000 mon.a (mon.0) 806 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-30T14:00:40.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:40 smithi050 bash[22081]: cluster 2024-03-30T14:00:37.415036+0000 osd.5 (osd.5) 1 : cluster 0 purged_snaps scrub starts 2024-03-30T14:00:40.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:40 smithi050 bash[22081]: cluster 2024-03-30T14:00:37.415152+0000 osd.5 (osd.5) 2 : cluster 0 purged_snaps scrub ok 2024-03-30T14:00:40.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:40 smithi050 bash[22081]: cluster 2024-03-30T14:00:38.600445+0000 mgr.a (mgr.14152) 299 : cluster 0 pgmap v254: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:40.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:40 smithi050 bash[22081]: audit 2024-03-30T14:00:39.066255+0000 mon.a (mon.0) 803 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-30T14:00:40.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:40 smithi050 bash[22081]: cluster 2024-03-30T14:00:39.079904+0000 mon.a (mon.0) 804 : cluster 1 osd.5 [v2:172.21.15.136:6808/2515060655,v1:172.21.15.136:6809/2515060655] boot 2024-03-30T14:00:40.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:40 smithi050 bash[22081]: cluster 2024-03-30T14:00:39.079971+0000 mon.a (mon.0) 805 : cluster 0 osdmap e41: 6 total, 6 up, 6 in 2024-03-30T14:00:40.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:40 smithi050 bash[22081]: audit 2024-03-30T14:00:39.080384+0000 mon.a (mon.0) 806 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-30T14:00:40.478 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:40 smithi136 bash[22230]: cluster 2024-03-30T14:00:37.415036+0000 osd.5 (osd.5) 1 : cluster 0 purged_snaps scrub starts 2024-03-30T14:00:40.478 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:40 smithi136 bash[22230]: cluster 2024-03-30T14:00:37.415152+0000 osd.5 (osd.5) 2 : cluster 0 purged_snaps scrub ok 2024-03-30T14:00:40.478 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:40 smithi136 bash[22230]: cluster 2024-03-30T14:00:38.600445+0000 mgr.a (mgr.14152) 299 : cluster 0 pgmap v254: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:00:40.478 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:40 smithi136 bash[22230]: audit 2024-03-30T14:00:39.066255+0000 mon.a (mon.0) 803 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-30T14:00:40.478 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:40 smithi136 bash[22230]: cluster 2024-03-30T14:00:39.079904+0000 mon.a (mon.0) 804 : cluster 1 osd.5 [v2:172.21.15.136:6808/2515060655,v1:172.21.15.136:6809/2515060655] boot 2024-03-30T14:00:40.479 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:40 smithi136 bash[22230]: cluster 2024-03-30T14:00:39.079971+0000 mon.a (mon.0) 805 : cluster 0 osdmap e41: 6 total, 6 up, 6 in 2024-03-30T14:00:40.479 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:40 smithi136 bash[22230]: audit 2024-03-30T14:00:39.080384+0000 mon.a (mon.0) 806 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-30T14:00:41.228 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:41 smithi136 bash[22230]: cluster 2024-03-30T14:00:40.081942+0000 mon.a (mon.0) 807 : cluster 0 osdmap e42: 6 total, 6 up, 6 in 2024-03-30T14:00:41.228 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:41 smithi136 bash[22230]: audit 2024-03-30T14:00:40.830665+0000 mon.a (mon.0) 808 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:41.228 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:41 smithi136 bash[22230]: audit 2024-03-30T14:00:40.839423+0000 mon.a (mon.0) 809 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:41.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:41 smithi136 bash[22230]: audit 2024-03-30T14:00:40.850062+0000 mon.a (mon.0) 810 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:41.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:41 smithi136 bash[22230]: audit 2024-03-30T14:00:40.875876+0000 mon.a (mon.0) 811 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T14:00:41.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:41 smithi136 bash[22230]: audit 2024-03-30T14:00:40.881945+0000 mon.a (mon.0) 812 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:00:41.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:41 smithi136 bash[22230]: audit 2024-03-30T14:00:40.883773+0000 mon.a (mon.0) 813 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T14:00:41.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:41 smithi136 bash[22230]: audit 2024-03-30T14:00:40.894214+0000 mon.a (mon.0) 814 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:41.309 INFO:teuthology.orchestra.run.smithi136.stdout:Created osd(s) 5 on host 'smithi136' 2024-03-30T14:00:41.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:41 smithi026 bash[21443]: cluster 2024-03-30T14:00:40.081942+0000 mon.a (mon.0) 807 : cluster 0 osdmap e42: 6 total, 6 up, 6 in 2024-03-30T14:00:41.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:41 smithi026 bash[21443]: audit 2024-03-30T14:00:40.830665+0000 mon.a (mon.0) 808 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:41.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:41 smithi026 bash[21443]: audit 2024-03-30T14:00:40.839423+0000 mon.a (mon.0) 809 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:41.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:41 smithi026 bash[21443]: audit 2024-03-30T14:00:40.850062+0000 mon.a (mon.0) 810 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:41.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:41 smithi026 bash[21443]: audit 2024-03-30T14:00:40.875876+0000 mon.a (mon.0) 811 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T14:00:41.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:41 smithi026 bash[21443]: audit 2024-03-30T14:00:40.881945+0000 mon.a (mon.0) 812 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:00:41.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:41 smithi026 bash[21443]: audit 2024-03-30T14:00:40.883773+0000 mon.a (mon.0) 813 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T14:00:41.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:41 smithi026 bash[21443]: audit 2024-03-30T14:00:40.894214+0000 mon.a (mon.0) 814 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:41.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:41 smithi050 bash[22081]: cluster 2024-03-30T14:00:40.081942+0000 mon.a (mon.0) 807 : cluster 0 osdmap e42: 6 total, 6 up, 6 in 2024-03-30T14:00:41.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:41 smithi050 bash[22081]: audit 2024-03-30T14:00:40.830665+0000 mon.a (mon.0) 808 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:41.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:41 smithi050 bash[22081]: audit 2024-03-30T14:00:40.839423+0000 mon.a (mon.0) 809 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:41.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:41 smithi050 bash[22081]: audit 2024-03-30T14:00:40.850062+0000 mon.a (mon.0) 810 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:41.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:41 smithi050 bash[22081]: audit 2024-03-30T14:00:40.875876+0000 mon.a (mon.0) 811 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T14:00:41.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:41 smithi050 bash[22081]: audit 2024-03-30T14:00:40.881945+0000 mon.a (mon.0) 812 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:00:41.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:41 smithi050 bash[22081]: audit 2024-03-30T14:00:40.883773+0000 mon.a (mon.0) 813 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T14:00:41.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:41 smithi050 bash[22081]: audit 2024-03-30T14:00:40.894214+0000 mon.a (mon.0) 814 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:41.950 DEBUG:teuthology.orchestra.run.smithi136:osd.5> sudo journalctl -f -n 0 -u ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@osd.5.service 2024-03-30T14:00:41.953 INFO:tasks.cephadm:Waiting for 6 OSDs to come up... 2024-03-30T14:00:41.953 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph osd stat -f json 2024-03-30T14:00:42.228 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:42 smithi136 bash[22230]: cluster 2024-03-30T14:00:40.601004+0000 mgr.a (mgr.14152) 300 : cluster 0 pgmap v257: 1 pgs: 1 remapped+peering; 577 KiB data, 178 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:00:42.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:42 smithi136 bash[22230]: cluster 2024-03-30T14:00:40.887737+0000 mgr.a (mgr.14152) 301 : cluster 0 pgmap v258: 1 pgs: 1 remapped+peering; 577 KiB data, 178 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:00:42.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:42 smithi136 bash[22230]: cluster 2024-03-30T14:00:41.077353+0000 mon.a (mon.0) 815 : cluster 3 Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-03-30T14:00:42.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:42 smithi136 bash[22230]: cluster 2024-03-30T14:00:41.092922+0000 mon.a (mon.0) 816 : cluster 0 osdmap e43: 6 total, 6 up, 6 in 2024-03-30T14:00:42.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:42 smithi136 bash[22230]: audit 2024-03-30T14:00:41.268051+0000 mon.a (mon.0) 817 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T14:00:42.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:42 smithi136 bash[22230]: audit 2024-03-30T14:00:41.273617+0000 mon.a (mon.0) 818 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:42.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:42 smithi136 bash[22230]: audit 2024-03-30T14:00:41.282943+0000 mon.a (mon.0) 819 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:42.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:42 smithi136 bash[22230]: audit 2024-03-30T14:00:41.283720+0000 mon.a (mon.0) 820 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:00:42.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:42 smithi136 bash[22230]: audit 2024-03-30T14:00:41.285527+0000 mon.a (mon.0) 821 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T14:00:42.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:42 smithi136 bash[22230]: audit 2024-03-30T14:00:41.296681+0000 mon.a (mon.0) 822 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:42.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:42 smithi136 bash[22230]: audit 2024-03-30T14:00:41.722643+0000 mon.a (mon.0) 823 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:42.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:42 smithi136 bash[22230]: audit 2024-03-30T14:00:41.732346+0000 mon.a (mon.0) 824 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:42.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:42 smithi136 bash[22230]: audit 2024-03-30T14:00:41.742887+0000 mon.a (mon.0) 825 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:42.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:42 smithi026 bash[21443]: cluster 2024-03-30T14:00:40.601004+0000 mgr.a (mgr.14152) 300 : cluster 0 pgmap v257: 1 pgs: 1 remapped+peering; 577 KiB data, 178 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:00:42.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:42 smithi026 bash[21443]: cluster 2024-03-30T14:00:40.887737+0000 mgr.a (mgr.14152) 301 : cluster 0 pgmap v258: 1 pgs: 1 remapped+peering; 577 KiB data, 178 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:00:42.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:42 smithi026 bash[21443]: cluster 2024-03-30T14:00:41.077353+0000 mon.a (mon.0) 815 : cluster 3 Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-03-30T14:00:42.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:42 smithi026 bash[21443]: cluster 2024-03-30T14:00:41.092922+0000 mon.a (mon.0) 816 : cluster 0 osdmap e43: 6 total, 6 up, 6 in 2024-03-30T14:00:42.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:42 smithi026 bash[21443]: audit 2024-03-30T14:00:41.268051+0000 mon.a (mon.0) 817 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T14:00:42.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:42 smithi026 bash[21443]: audit 2024-03-30T14:00:41.273617+0000 mon.a (mon.0) 818 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:42.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:42 smithi026 bash[21443]: audit 2024-03-30T14:00:41.282943+0000 mon.a (mon.0) 819 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:42.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:42 smithi026 bash[21443]: audit 2024-03-30T14:00:41.283720+0000 mon.a (mon.0) 820 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:00:42.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:42 smithi026 bash[21443]: audit 2024-03-30T14:00:41.285527+0000 mon.a (mon.0) 821 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T14:00:42.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:42 smithi026 bash[21443]: audit 2024-03-30T14:00:41.296681+0000 mon.a (mon.0) 822 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:42.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:42 smithi026 bash[21443]: audit 2024-03-30T14:00:41.722643+0000 mon.a (mon.0) 823 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:42.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:42 smithi026 bash[21443]: audit 2024-03-30T14:00:41.732346+0000 mon.a (mon.0) 824 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:42.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:42 smithi026 bash[21443]: audit 2024-03-30T14:00:41.742887+0000 mon.a (mon.0) 825 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:42.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:42 smithi050 bash[22081]: cluster 2024-03-30T14:00:40.601004+0000 mgr.a (mgr.14152) 300 : cluster 0 pgmap v257: 1 pgs: 1 remapped+peering; 577 KiB data, 178 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:00:42.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:42 smithi050 bash[22081]: cluster 2024-03-30T14:00:40.887737+0000 mgr.a (mgr.14152) 301 : cluster 0 pgmap v258: 1 pgs: 1 remapped+peering; 577 KiB data, 178 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:00:42.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:42 smithi050 bash[22081]: cluster 2024-03-30T14:00:41.077353+0000 mon.a (mon.0) 815 : cluster 3 Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-03-30T14:00:42.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:42 smithi050 bash[22081]: cluster 2024-03-30T14:00:41.092922+0000 mon.a (mon.0) 816 : cluster 0 osdmap e43: 6 total, 6 up, 6 in 2024-03-30T14:00:42.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:42 smithi050 bash[22081]: audit 2024-03-30T14:00:41.268051+0000 mon.a (mon.0) 817 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T14:00:42.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:42 smithi050 bash[22081]: audit 2024-03-30T14:00:41.273617+0000 mon.a (mon.0) 818 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:42.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:42 smithi050 bash[22081]: audit 2024-03-30T14:00:41.282943+0000 mon.a (mon.0) 819 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:42.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:42 smithi050 bash[22081]: audit 2024-03-30T14:00:41.283720+0000 mon.a (mon.0) 820 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:00:42.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:42 smithi050 bash[22081]: audit 2024-03-30T14:00:41.285527+0000 mon.a (mon.0) 821 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T14:00:42.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:42 smithi050 bash[22081]: audit 2024-03-30T14:00:41.296681+0000 mon.a (mon.0) 822 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:42.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:42 smithi050 bash[22081]: audit 2024-03-30T14:00:41.722643+0000 mon.a (mon.0) 823 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:42.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:42 smithi050 bash[22081]: audit 2024-03-30T14:00:41.732346+0000 mon.a (mon.0) 824 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:42.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:42 smithi050 bash[22081]: audit 2024-03-30T14:00:41.742887+0000 mon.a (mon.0) 825 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:43.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:43 smithi050 bash[22081]: cluster 2024-03-30T14:00:41.289087+0000 mgr.a (mgr.14152) 302 : cluster 0 pgmap v260: 1 pgs: 1 remapped+peering; 577 KiB data, 178 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:00:43.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:43 smithi050 bash[22081]: cluster 2024-03-30T14:00:41.289451+0000 mgr.a (mgr.14152) 303 : cluster 0 pgmap v261: 1 pgs: 1 remapped+peering; 577 KiB data, 178 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:00:43.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:43 smithi050 bash[22081]: cluster 2024-03-30T14:00:42.123610+0000 mon.a (mon.0) 826 : cluster 0 osdmap e44: 6 total, 6 up, 6 in 2024-03-30T14:00:43.478 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:43 smithi136 bash[22230]: cluster 2024-03-30T14:00:41.289087+0000 mgr.a (mgr.14152) 302 : cluster 0 pgmap v260: 1 pgs: 1 remapped+peering; 577 KiB data, 178 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:00:43.478 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:43 smithi136 bash[22230]: cluster 2024-03-30T14:00:41.289451+0000 mgr.a (mgr.14152) 303 : cluster 0 pgmap v261: 1 pgs: 1 remapped+peering; 577 KiB data, 178 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:00:43.478 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:43 smithi136 bash[22230]: cluster 2024-03-30T14:00:42.123610+0000 mon.a (mon.0) 826 : cluster 0 osdmap e44: 6 total, 6 up, 6 in 2024-03-30T14:00:43.559 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:43 smithi026 bash[21443]: cluster 2024-03-30T14:00:41.289087+0000 mgr.a (mgr.14152) 302 : cluster 0 pgmap v260: 1 pgs: 1 remapped+peering; 577 KiB data, 178 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:00:43.560 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:43 smithi026 bash[21443]: cluster 2024-03-30T14:00:41.289451+0000 mgr.a (mgr.14152) 303 : cluster 0 pgmap v261: 1 pgs: 1 remapped+peering; 577 KiB data, 178 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:00:43.560 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:43 smithi026 bash[21443]: cluster 2024-03-30T14:00:42.123610+0000 mon.a (mon.0) 826 : cluster 0 osdmap e44: 6 total, 6 up, 6 in 2024-03-30T14:00:44.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:44 smithi050 bash[22081]: cluster 2024-03-30T14:00:43.124875+0000 mon.a (mon.0) 827 : cluster 0 osdmap e45: 6 total, 6 up, 6 in 2024-03-30T14:00:44.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:44 smithi050 bash[22081]: audit 2024-03-30T14:00:43.546469+0000 mon.a (mon.0) 828 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:44.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:44 smithi050 bash[22081]: audit 2024-03-30T14:00:43.555548+0000 mon.a (mon.0) 829 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:44.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:44 smithi050 bash[22081]: audit 2024-03-30T14:00:43.565843+0000 mon.a (mon.0) 830 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:44.441 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:44 smithi136 bash[22230]: cluster 2024-03-30T14:00:43.124875+0000 mon.a (mon.0) 827 : cluster 0 osdmap e45: 6 total, 6 up, 6 in 2024-03-30T14:00:44.442 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:44 smithi136 bash[22230]: audit 2024-03-30T14:00:43.546469+0000 mon.a (mon.0) 828 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:44.442 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:44 smithi136 bash[22230]: audit 2024-03-30T14:00:43.555548+0000 mon.a (mon.0) 829 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:44.442 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:44 smithi136 bash[22230]: audit 2024-03-30T14:00:43.565843+0000 mon.a (mon.0) 830 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:44.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:44 smithi026 bash[21443]: cluster 2024-03-30T14:00:43.124875+0000 mon.a (mon.0) 827 : cluster 0 osdmap e45: 6 total, 6 up, 6 in 2024-03-30T14:00:44.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:44 smithi026 bash[21443]: audit 2024-03-30T14:00:43.546469+0000 mon.a (mon.0) 828 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:44.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:44 smithi026 bash[21443]: audit 2024-03-30T14:00:43.555548+0000 mon.a (mon.0) 829 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:44.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:44 smithi026 bash[21443]: audit 2024-03-30T14:00:43.565843+0000 mon.a (mon.0) 830 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:45.228 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:45 smithi136 bash[22230]: cluster 2024-03-30T14:00:43.290005+0000 mgr.a (mgr.14152) 304 : cluster 0 pgmap v264: 1 pgs: 1 remapped+peering; 577 KiB data, 178 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:00:45.228 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:45 smithi136 bash[22230]: audit 2024-03-30T14:00:44.870278+0000 mon.a (mon.0) 831 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:45.228 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:45 smithi136 bash[22230]: audit 2024-03-30T14:00:44.879598+0000 mon.a (mon.0) 832 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:45.228 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:45 smithi136 bash[22230]: audit 2024-03-30T14:00:44.890400+0000 mon.a (mon.0) 833 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:45.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:45 smithi136 bash[22230]: audit 2024-03-30T14:00:44.930093+0000 mon.a (mon.0) 834 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T14:00:45.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:45 smithi136 bash[22230]: audit 2024-03-30T14:00:44.936403+0000 mon.a (mon.0) 835 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:00:45.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:45 smithi136 bash[22230]: audit 2024-03-30T14:00:44.938258+0000 mon.a (mon.0) 836 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T14:00:45.229 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:45 smithi136 bash[22230]: audit 2024-03-30T14:00:44.949476+0000 mon.a (mon.0) 837 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:45.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:45 smithi050 bash[22081]: cluster 2024-03-30T14:00:43.290005+0000 mgr.a (mgr.14152) 304 : cluster 0 pgmap v264: 1 pgs: 1 remapped+peering; 577 KiB data, 178 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:00:45.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:45 smithi050 bash[22081]: audit 2024-03-30T14:00:44.870278+0000 mon.a (mon.0) 831 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:45.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:45 smithi050 bash[22081]: audit 2024-03-30T14:00:44.879598+0000 mon.a (mon.0) 832 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:45.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:45 smithi050 bash[22081]: audit 2024-03-30T14:00:44.890400+0000 mon.a (mon.0) 833 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:45.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:45 smithi050 bash[22081]: audit 2024-03-30T14:00:44.930093+0000 mon.a (mon.0) 834 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T14:00:45.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:45 smithi050 bash[22081]: audit 2024-03-30T14:00:44.936403+0000 mon.a (mon.0) 835 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:00:45.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:45 smithi050 bash[22081]: audit 2024-03-30T14:00:44.938258+0000 mon.a (mon.0) 836 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T14:00:45.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:45 smithi050 bash[22081]: audit 2024-03-30T14:00:44.949476+0000 mon.a (mon.0) 837 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:45.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:45 smithi026 bash[21443]: cluster 2024-03-30T14:00:43.290005+0000 mgr.a (mgr.14152) 304 : cluster 0 pgmap v264: 1 pgs: 1 remapped+peering; 577 KiB data, 178 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:00:45.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:45 smithi026 bash[21443]: audit 2024-03-30T14:00:44.870278+0000 mon.a (mon.0) 831 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:45.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:45 smithi026 bash[21443]: audit 2024-03-30T14:00:44.879598+0000 mon.a (mon.0) 832 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:45.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:45 smithi026 bash[21443]: audit 2024-03-30T14:00:44.890400+0000 mon.a (mon.0) 833 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:45.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:45 smithi026 bash[21443]: audit 2024-03-30T14:00:44.930093+0000 mon.a (mon.0) 834 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T14:00:45.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:45 smithi026 bash[21443]: audit 2024-03-30T14:00:44.936403+0000 mon.a (mon.0) 835 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:00:45.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:45 smithi026 bash[21443]: audit 2024-03-30T14:00:44.938258+0000 mon.a (mon.0) 836 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T14:00:45.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:45 smithi026 bash[21443]: audit 2024-03-30T14:00:44.949476+0000 mon.a (mon.0) 837 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:00:46.103 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T14:00:46.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:46 smithi050 bash[22081]: cluster 2024-03-30T14:00:44.942188+0000 mgr.a (mgr.14152) 305 : cluster 0 pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 178 MiB used, 536 GiB / 536 GiB avail; 150 KiB/s, 0 objects/s recovering 2024-03-30T14:00:46.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:46 smithi050 bash[22081]: cluster 2024-03-30T14:00:45.886664+0000 mon.a (mon.0) 838 : cluster 1 Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-03-30T14:00:46.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:46 smithi050 bash[22081]: cluster 2024-03-30T14:00:45.886725+0000 mon.a (mon.0) 839 : cluster 1 Cluster is now healthy 2024-03-30T14:00:46.478 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:46 smithi136 bash[22230]: cluster 2024-03-30T14:00:44.942188+0000 mgr.a (mgr.14152) 305 : cluster 0 pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 178 MiB used, 536 GiB / 536 GiB avail; 150 KiB/s, 0 objects/s recovering 2024-03-30T14:00:46.478 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:46 smithi136 bash[22230]: cluster 2024-03-30T14:00:45.886664+0000 mon.a (mon.0) 838 : cluster 1 Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-03-30T14:00:46.478 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:46 smithi136 bash[22230]: cluster 2024-03-30T14:00:45.886725+0000 mon.a (mon.0) 839 : cluster 1 Cluster is now healthy 2024-03-30T14:00:46.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:46 smithi026 bash[21443]: cluster 2024-03-30T14:00:44.942188+0000 mgr.a (mgr.14152) 305 : cluster 0 pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 178 MiB used, 536 GiB / 536 GiB avail; 150 KiB/s, 0 objects/s recovering 2024-03-30T14:00:46.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:46 smithi026 bash[21443]: cluster 2024-03-30T14:00:45.886664+0000 mon.a (mon.0) 838 : cluster 1 Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-03-30T14:00:46.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:46 smithi026 bash[21443]: cluster 2024-03-30T14:00:45.886725+0000 mon.a (mon.0) 839 : cluster 1 Cluster is now healthy 2024-03-30T14:00:48.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:48 smithi026 bash[21443]: cluster 2024-03-30T14:00:46.942797+0000 mgr.a (mgr.14152) 306 : cluster 0 pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail; 102 KiB/s, 0 objects/s recovering 2024-03-30T14:00:48.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:48 smithi050 bash[22081]: cluster 2024-03-30T14:00:46.942797+0000 mgr.a (mgr.14152) 306 : cluster 0 pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail; 102 KiB/s, 0 objects/s recovering 2024-03-30T14:00:48.478 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:48 smithi136 bash[22230]: cluster 2024-03-30T14:00:46.942797+0000 mgr.a (mgr.14152) 306 : cluster 0 pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail; 102 KiB/s, 0 objects/s recovering 2024-03-30T14:00:49.314 INFO:teuthology.orchestra.run.smithi026.stdout: 2024-03-30T14:00:50.056 INFO:teuthology.orchestra.run.smithi026.stdout:{"epoch":45,"num_osds":6,"num_up_osds":6,"osd_up_since":1711807239,"num_in_osds":6,"osd_in_since":1711807213,"num_remapped_pgs":0} 2024-03-30T14:00:50.057 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph osd dump --format=json 2024-03-30T14:00:50.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:50 smithi026 bash[21443]: cluster 2024-03-30T14:00:48.943214+0000 mgr.a (mgr.14152) 307 : cluster 0 pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail; 75 KiB/s, 0 objects/s recovering 2024-03-30T14:00:50.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:50 smithi026 bash[21443]: audit 2024-03-30T14:00:49.322852+0000 mon.a (mon.0) 840 : audit 0 from='client.? 172.21.15.26:0/3849336374' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-30T14:00:50.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:50 smithi050 bash[22081]: cluster 2024-03-30T14:00:48.943214+0000 mgr.a (mgr.14152) 307 : cluster 0 pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail; 75 KiB/s, 0 objects/s recovering 2024-03-30T14:00:50.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:50 smithi050 bash[22081]: audit 2024-03-30T14:00:49.322852+0000 mon.a (mon.0) 840 : audit 0 from='client.? 172.21.15.26:0/3849336374' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-30T14:00:50.478 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:50 smithi136 bash[22230]: cluster 2024-03-30T14:00:48.943214+0000 mgr.a (mgr.14152) 307 : cluster 0 pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail; 75 KiB/s, 0 objects/s recovering 2024-03-30T14:00:50.478 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:50 smithi136 bash[22230]: audit 2024-03-30T14:00:49.322852+0000 mon.a (mon.0) 840 : audit 0 from='client.? 172.21.15.26:0/3849336374' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-30T14:00:52.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:52 smithi050 bash[22081]: cluster 2024-03-30T14:00:50.943791+0000 mgr.a (mgr.14152) 308 : cluster 0 pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail; 65 KiB/s, 0 objects/s recovering 2024-03-30T14:00:52.478 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:52 smithi136 bash[22230]: cluster 2024-03-30T14:00:50.943791+0000 mgr.a (mgr.14152) 308 : cluster 0 pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail; 65 KiB/s, 0 objects/s recovering 2024-03-30T14:00:52.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:52 smithi026 bash[21443]: cluster 2024-03-30T14:00:50.943791+0000 mgr.a (mgr.14152) 308 : cluster 0 pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail; 65 KiB/s, 0 objects/s recovering 2024-03-30T14:00:54.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:54 smithi050 bash[22081]: cluster 2024-03-30T14:00:52.944464+0000 mgr.a (mgr.14152) 309 : cluster 0 pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail; 59 KiB/s, 0 objects/s recovering 2024-03-30T14:00:54.478 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:54 smithi136 bash[22230]: cluster 2024-03-30T14:00:52.944464+0000 mgr.a (mgr.14152) 309 : cluster 0 pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail; 59 KiB/s, 0 objects/s recovering 2024-03-30T14:00:54.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:54 smithi026 bash[21443]: cluster 2024-03-30T14:00:52.944464+0000 mgr.a (mgr.14152) 309 : cluster 0 pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail; 59 KiB/s, 0 objects/s recovering 2024-03-30T14:00:54.790 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T14:00:56.459 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:56 smithi136 bash[22230]: cluster 2024-03-30T14:00:54.944946+0000 mgr.a (mgr.14152) 310 : cluster 0 pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail; 49 KiB/s, 0 objects/s recovering 2024-03-30T14:00:56.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:56 smithi026 bash[21443]: cluster 2024-03-30T14:00:54.944946+0000 mgr.a (mgr.14152) 310 : cluster 0 pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail; 49 KiB/s, 0 objects/s recovering 2024-03-30T14:00:56.651 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:56 smithi050 bash[22081]: cluster 2024-03-30T14:00:54.944946+0000 mgr.a (mgr.14152) 310 : cluster 0 pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail; 49 KiB/s, 0 objects/s recovering 2024-03-30T14:00:58.466 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:58 smithi026 bash[21443]: cluster 2024-03-30T14:00:56.945464+0000 mgr.a (mgr.14152) 311 : cluster 0 pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:00:58.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:58 smithi136 bash[22230]: cluster 2024-03-30T14:00:56.945464+0000 mgr.a (mgr.14152) 311 : cluster 0 pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:00:58.651 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:58 smithi050 bash[22081]: cluster 2024-03-30T14:00:56.945464+0000 mgr.a (mgr.14152) 311 : cluster 0 pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:00:58.859 INFO:teuthology.orchestra.run.smithi026.stdout: 2024-03-30T14:00:58.860 INFO:teuthology.orchestra.run.smithi026.stdout:{"epoch":45,"fsid":"56554a52-ee9c-11ee-b647-cb9ed24678a4","created":"2024-03-30T13:52:10.892994+0000","modified":"2024-03-30T14:00:43.120112+0000","last_up_change":"2024-03-30T14:00:39.065551+0000","last_in_change":"2024-03-30T14:00:13.993889+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-03-30T13:58:10.137959+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_type":"Fair distribution","score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"68b92ed1-233e-4b44-94fd-fb7b8cf5ba13","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.26:6802","nonce":3101378251},{"type":"v1","addr":"172.21.15.26:6803","nonce":3101378251}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.26:6804","nonce":3101378251},{"type":"v1","addr":"172.21.15.26:6805","nonce":3101378251}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.26:6808","nonce":3101378251},{"type":"v1","addr":"172.21.15.26:6809","nonce":3101378251}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.26:6806","nonce":3101378251},{"type":"v1","addr":"172.21.15.26:6807","nonce":3101378251}]},"public_addr":"172.21.15.26:6803/3101378251","cluster_addr":"172.21.15.26:6805/3101378251","heartbeat_back_addr":"172.21.15.26:6809/3101378251","heartbeat_front_addr":"172.21.15.26:6807/3101378251","state":["exists","up"]},{"osd":1,"uuid":"71003761-3357-440b-87be-d0ffd7c44fec","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.26:6810","nonce":257573934},{"type":"v1","addr":"172.21.15.26:6811","nonce":257573934}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.26:6812","nonce":257573934},{"type":"v1","addr":"172.21.15.26:6813","nonce":257573934}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.26:6816","nonce":257573934},{"type":"v1","addr":"172.21.15.26:6817","nonce":257573934}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.26:6814","nonce":257573934},{"type":"v1","addr":"172.21.15.26:6815","nonce":257573934}]},"public_addr":"172.21.15.26:6811/257573934","cluster_addr":"172.21.15.26:6813/257573934","heartbeat_back_addr":"172.21.15.26:6817/257573934","heartbeat_front_addr":"172.21.15.26:6815/257573934","state":["exists","up"]},{"osd":2,"uuid":"cdfd83e3-c472-4bb5-a422-d82548a4adf7","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.50:6800","nonce":1606595991},{"type":"v1","addr":"172.21.15.50:6801","nonce":1606595991}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6802","nonce":1606595991},{"type":"v1","addr":"172.21.15.50:6803","nonce":1606595991}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6806","nonce":1606595991},{"type":"v1","addr":"172.21.15.50:6807","nonce":1606595991}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6804","nonce":1606595991},{"type":"v1","addr":"172.21.15.50:6805","nonce":1606595991}]},"public_addr":"172.21.15.50:6801/1606595991","cluster_addr":"172.21.15.50:6803/1606595991","heartbeat_back_addr":"172.21.15.50:6807/1606595991","heartbeat_front_addr":"172.21.15.50:6805/1606595991","state":["exists","up"]},{"osd":3,"uuid":"ddffc97e-d3cc-4703-8822-9432ca414ac7","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.50:6808","nonce":623805305},{"type":"v1","addr":"172.21.15.50:6809","nonce":623805305}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6810","nonce":623805305},{"type":"v1","addr":"172.21.15.50:6811","nonce":623805305}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6814","nonce":623805305},{"type":"v1","addr":"172.21.15.50:6815","nonce":623805305}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6812","nonce":623805305},{"type":"v1","addr":"172.21.15.50:6813","nonce":623805305}]},"public_addr":"172.21.15.50:6809/623805305","cluster_addr":"172.21.15.50:6811/623805305","heartbeat_back_addr":"172.21.15.50:6815/623805305","heartbeat_front_addr":"172.21.15.50:6813/623805305","state":["exists","up"]},{"osd":4,"uuid":"1a3092f5-2c51-4a35-9a44-ca8dd159813d","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.136:6800","nonce":2150671530},{"type":"v1","addr":"172.21.15.136:6801","nonce":2150671530}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.136:6802","nonce":2150671530},{"type":"v1","addr":"172.21.15.136:6803","nonce":2150671530}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.136:6806","nonce":2150671530},{"type":"v1","addr":"172.21.15.136:6807","nonce":2150671530}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.136:6804","nonce":2150671530},{"type":"v1","addr":"172.21.15.136:6805","nonce":2150671530}]},"public_addr":"172.21.15.136:6801/2150671530","cluster_addr":"172.21.15.136:6803/2150671530","heartbeat_back_addr":"172.21.15.136:6807/2150671530","heartbeat_front_addr":"172.21.15.136:6805/2150671530","state":["exists","up"]},{"osd":5,"uuid":"420073d4-c6bf-49e4-b9b0-6a5388abf125","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.136:6808","nonce":2515060655},{"type":"v1","addr":"172.21.15.136:6809","nonce":2515060655}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.136:6810","nonce":2515060655},{"type":"v1","addr":"172.21.15.136:6811","nonce":2515060655}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.136:6814","nonce":2515060655},{"type":"v1","addr":"172.21.15.136:6815","nonce":2515060655}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.136:6812","nonce":2515060655},{"type":"v1","addr":"172.21.15.136:6813","nonce":2515060655}]},"public_addr":"172.21.15.136:6809/2515060655","cluster_addr":"172.21.15.136:6811/2515060655","heartbeat_back_addr":"172.21.15.136:6815/2515060655","heartbeat_front_addr":"172.21.15.136:6813/2515060655","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-30T13:56:20.900816+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-30T13:57:11.869021+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-30T13:58:06.044462+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-30T13:58:57.170292+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-30T13:59:47.398677+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-30T14:00:37.415158+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.26:0/3666056350":"2024-03-31T13:53:19.454530+0000","172.21.15.26:6801/3680733594":"2024-03-31T13:53:19.454530+0000","172.21.15.26:6800/3680733594":"2024-03-31T13:53:19.454530+0000","172.21.15.26:0/2330732170":"2024-03-31T13:53:19.454530+0000","172.21.15.26:6801/2405643829":"2024-03-31T13:52:44.002361+0000","172.21.15.26:0/763639362":"2024-03-31T13:52:44.002361+0000","172.21.15.26:6800/2405643829":"2024-03-31T13:52:44.002361+0000","172.21.15.26:0/2380794705":"2024-03-31T13:52:44.002361+0000","172.21.15.26:0/2228802237":"2024-03-31T13:52:44.002361+0000","172.21.15.26:0/2531510843":"2024-03-31T13:53:19.454530+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-03-30T14:00:59.442 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:00:59 smithi026 bash[21443]: audit 2024-03-30T14:00:58.868025+0000 mon.a (mon.0) 841 : audit 0 from='client.? 172.21.15.26:0/4072466412' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-03-30T14:00:59.478 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:00:59 smithi136 bash[22230]: audit 2024-03-30T14:00:58.868025+0000 mon.a (mon.0) 841 : audit 0 from='client.? 172.21.15.26:0/4072466412' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-03-30T14:00:59.651 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:00:59 smithi050 bash[22081]: audit 2024-03-30T14:00:58.868025+0000 mon.a (mon.0) 841 : audit 0 from='client.? 172.21.15.26:0/4072466412' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-03-30T14:00:59.741 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-03-30T13:58:10.137959+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_type': 'Fair distribution', 'score_acting': 6, 'score_stable': 6, 'optimal_score': 0.5, 'raw_score_acting': 3, 'raw_score_stable': 3, 'primary_affinity_weighted': 1, 'average_primary_affinity': 1, 'average_primary_affinity_weighted': 1}}] 2024-03-30T14:00:59.741 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph osd pool get .mgr pg_num 2024-03-30T14:01:00.478 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:00 smithi136 bash[22230]: cluster 2024-03-30T14:00:58.945902+0000 mgr.a (mgr.14152) 312 : cluster 0 pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:00.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:00 smithi026 bash[21443]: cluster 2024-03-30T14:00:58.945902+0000 mgr.a (mgr.14152) 312 : cluster 0 pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:00.651 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:00 smithi050 bash[22081]: cluster 2024-03-30T14:00:58.945902+0000 mgr.a (mgr.14152) 312 : cluster 0 pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:02.478 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:02 smithi136 bash[22230]: cluster 2024-03-30T14:01:00.946518+0000 mgr.a (mgr.14152) 313 : cluster 0 pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:02.478 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:02 smithi136 bash[22230]: audit 2024-03-30T14:01:01.928126+0000 mon.a (mon.0) 842 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:02.478 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:02 smithi136 bash[22230]: audit 2024-03-30T14:01:01.937313+0000 mon.a (mon.0) 843 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:02.478 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:02 smithi136 bash[22230]: audit 2024-03-30T14:01:01.947854+0000 mon.a (mon.0) 844 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:02.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:02 smithi026 bash[21443]: cluster 2024-03-30T14:01:00.946518+0000 mgr.a (mgr.14152) 313 : cluster 0 pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:02.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:02 smithi026 bash[21443]: audit 2024-03-30T14:01:01.928126+0000 mon.a (mon.0) 842 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:02.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:02 smithi026 bash[21443]: audit 2024-03-30T14:01:01.937313+0000 mon.a (mon.0) 843 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:02.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:02 smithi026 bash[21443]: audit 2024-03-30T14:01:01.947854+0000 mon.a (mon.0) 844 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:02.649 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:02 smithi050 bash[22081]: cluster 2024-03-30T14:01:00.946518+0000 mgr.a (mgr.14152) 313 : cluster 0 pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:02.649 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:02 smithi050 bash[22081]: audit 2024-03-30T14:01:01.928126+0000 mon.a (mon.0) 842 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:02.649 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:02 smithi050 bash[22081]: audit 2024-03-30T14:01:01.937313+0000 mon.a (mon.0) 843 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:02.649 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:02 smithi050 bash[22081]: audit 2024-03-30T14:01:01.947854+0000 mon.a (mon.0) 844 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:03.722 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:03 smithi026 bash[21443]: audit 2024-03-30T14:01:02.475567+0000 mon.a (mon.0) 845 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:03.722 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:03 smithi026 bash[21443]: audit 2024-03-30T14:01:02.481351+0000 mon.a (mon.0) 846 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:03.722 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:03 smithi026 bash[21443]: audit 2024-03-30T14:01:02.487526+0000 mon.a (mon.0) 847 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:03.722 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:03 smithi026 bash[21443]: cluster 2024-03-30T14:01:02.947241+0000 mgr.a (mgr.14152) 314 : cluster 0 pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:03.727 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:03 smithi136 bash[22230]: audit 2024-03-30T14:01:02.475567+0000 mon.a (mon.0) 845 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:03.727 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:03 smithi136 bash[22230]: audit 2024-03-30T14:01:02.481351+0000 mon.a (mon.0) 846 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:03.728 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:03 smithi136 bash[22230]: audit 2024-03-30T14:01:02.487526+0000 mon.a (mon.0) 847 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:03.728 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:03 smithi136 bash[22230]: cluster 2024-03-30T14:01:02.947241+0000 mgr.a (mgr.14152) 314 : cluster 0 pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:03.901 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:03 smithi050 bash[22081]: audit 2024-03-30T14:01:02.475567+0000 mon.a (mon.0) 845 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:03.901 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:03 smithi050 bash[22081]: audit 2024-03-30T14:01:02.481351+0000 mon.a (mon.0) 846 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:03.901 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:03 smithi050 bash[22081]: audit 2024-03-30T14:01:02.487526+0000 mon.a (mon.0) 847 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:03.901 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:03 smithi050 bash[22081]: cluster 2024-03-30T14:01:02.947241+0000 mgr.a (mgr.14152) 314 : cluster 0 pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:04.481 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T14:01:04.855 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:04 smithi026 bash[21443]: audit 2024-03-30T14:01:03.711678+0000 mon.a (mon.0) 848 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:04.855 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:04 smithi026 bash[21443]: audit 2024-03-30T14:01:03.718764+0000 mon.a (mon.0) 849 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:04.855 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:04 smithi026 bash[21443]: audit 2024-03-30T14:01:03.727384+0000 mon.a (mon.0) 850 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:04.978 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:04 smithi136 bash[22230]: audit 2024-03-30T14:01:03.711678+0000 mon.a (mon.0) 848 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:04.978 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:04 smithi136 bash[22230]: audit 2024-03-30T14:01:03.718764+0000 mon.a (mon.0) 849 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:04.978 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:04 smithi136 bash[22230]: audit 2024-03-30T14:01:03.727384+0000 mon.a (mon.0) 850 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:05.095 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:04 smithi050 bash[22081]: audit 2024-03-30T14:01:03.711678+0000 mon.a (mon.0) 848 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:05.095 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:04 smithi050 bash[22081]: audit 2024-03-30T14:01:03.718764+0000 mon.a (mon.0) 849 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:05.095 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:04 smithi050 bash[22081]: audit 2024-03-30T14:01:03.727384+0000 mon.a (mon.0) 850 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:05.855 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:05 smithi026 bash[21443]: cluster 2024-03-30T14:01:04.947857+0000 mgr.a (mgr.14152) 315 : cluster 0 pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:05.978 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:05 smithi136 bash[22230]: cluster 2024-03-30T14:01:04.947857+0000 mgr.a (mgr.14152) 315 : cluster 0 pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:06.151 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:05 smithi050 bash[22081]: cluster 2024-03-30T14:01:04.947857+0000 mgr.a (mgr.14152) 315 : cluster 0 pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:07.631 INFO:teuthology.orchestra.run.smithi026.stdout:pg_num: 1 2024-03-30T14:01:08.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:08 smithi026 bash[21443]: cluster 2024-03-30T14:01:06.948440+0000 mgr.a (mgr.14152) 316 : cluster 0 pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:08.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:08 smithi026 bash[21443]: audit 2024-03-30T14:01:07.640304+0000 mon.a (mon.0) 851 : audit 0 from='client.? 172.21.15.26:0/549992713' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-03-30T14:01:08.374 INFO:tasks.cephadm:Setting up client nodes... 2024-03-30T14:01:08.374 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-03-30T14:01:08.375 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-03-30T14:01:08.375 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph mgr dump --format=json 2024-03-30T14:01:08.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:08 smithi050 bash[22081]: cluster 2024-03-30T14:01:06.948440+0000 mgr.a (mgr.14152) 316 : cluster 0 pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:08.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:08 smithi050 bash[22081]: audit 2024-03-30T14:01:07.640304+0000 mon.a (mon.0) 851 : audit 0 from='client.? 172.21.15.26:0/549992713' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-03-30T14:01:08.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:08 smithi136 bash[22230]: cluster 2024-03-30T14:01:06.948440+0000 mgr.a (mgr.14152) 316 : cluster 0 pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:08.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:08 smithi136 bash[22230]: audit 2024-03-30T14:01:07.640304+0000 mon.a (mon.0) 851 : audit 0 from='client.? 172.21.15.26:0/549992713' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-03-30T14:01:10.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:10 smithi026 bash[21443]: cluster 2024-03-30T14:01:08.949005+0000 mgr.a (mgr.14152) 317 : cluster 0 pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:10.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:10 smithi050 bash[22081]: cluster 2024-03-30T14:01:08.949005+0000 mgr.a (mgr.14152) 317 : cluster 0 pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:10.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:10 smithi136 bash[22230]: cluster 2024-03-30T14:01:08.949005+0000 mgr.a (mgr.14152) 317 : cluster 0 pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:12.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:12 smithi026 bash[21443]: cluster 2024-03-30T14:01:10.949588+0000 mgr.a (mgr.14152) 318 : cluster 0 pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:12.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:12 smithi050 bash[22081]: cluster 2024-03-30T14:01:10.949588+0000 mgr.a (mgr.14152) 318 : cluster 0 pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:12.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:12 smithi136 bash[22230]: cluster 2024-03-30T14:01:10.949588+0000 mgr.a (mgr.14152) 318 : cluster 0 pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:13.113 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T14:01:14.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:14 smithi026 bash[21443]: cluster 2024-03-30T14:01:12.950120+0000 mgr.a (mgr.14152) 319 : cluster 0 pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:14.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:14 smithi050 bash[22081]: cluster 2024-03-30T14:01:12.950120+0000 mgr.a (mgr.14152) 319 : cluster 0 pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:14.460 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:14 smithi136 bash[22230]: cluster 2024-03-30T14:01:12.950120+0000 mgr.a (mgr.14152) 319 : cluster 0 pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:16.105 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:16 smithi026 bash[21443]: cluster 2024-03-30T14:01:14.950671+0000 mgr.a (mgr.14152) 320 : cluster 0 pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:16.227 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:16 smithi136 bash[22230]: cluster 2024-03-30T14:01:14.950671+0000 mgr.a (mgr.14152) 320 : cluster 0 pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:16.296 INFO:teuthology.orchestra.run.smithi026.stdout: 2024-03-30T14:01:16.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:16 smithi050 bash[22081]: cluster 2024-03-30T14:01:14.950671+0000 mgr.a (mgr.14152) 320 : cluster 0 pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:17.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:17 smithi026 bash[21443]: audit 2024-03-30T14:01:16.300352+0000 mon.a (mon.0) 852 : audit 0 from='client.? 172.21.15.26:0/640342993' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-03-30T14:01:17.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:17 smithi050 bash[22081]: audit 2024-03-30T14:01:16.300352+0000 mon.a (mon.0) 852 : audit 0 from='client.? 172.21.15.26:0/640342993' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-03-30T14:01:17.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:17 smithi136 bash[22230]: audit 2024-03-30T14:01:16.300352+0000 mon.a (mon.0) 852 : audit 0 from='client.? 172.21.15.26:0/640342993' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-03-30T14:01:17.904 INFO:teuthology.orchestra.run.smithi026.stdout:{"epoch":15,"flags":0,"active_gid":14152,"active_name":"a","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.26:6800","nonce":1028889507},{"type":"v1","addr":"172.21.15.26:6801","nonce":1028889507}]},"active_addr":"172.21.15.26:6801/1028889507","active_change":"2024-03-30T13:53:19.454744+0000","active_mgr_features":4540701547738038271,"available":true,"standbys":[{"gid":24104,"name":"b","mgr_features":4540701547738038271,"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.25.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:9.4.12","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.5.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:latest","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:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}]}],"modules":["cephadm","dashboard","iostat","nfs","restful"],"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.25.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:9.4.12","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.5.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:latest","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:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}],"services":{"dashboard":"https://172.21.15.26:8443/"},"always_on_modules":{"octopus":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"pacific":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"quincy":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"reef":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"squid":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"]},"last_failure_osd_epoch":3,"active_clients":[{"name":"devicehealth","addrvec":[{"type":"v2","addr":"172.21.15.26:0","nonce":4178511402}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.26:0","nonce":1607513538}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.26:0","nonce":441671206}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.26:0","nonce":971495853}]}]} 2024-03-30T14:01:17.911 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-03-30T14:01:17.911 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-03-30T14:01:17.911 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph osd dump --format=json 2024-03-30T14:01:18.335 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:18 smithi026 bash[21443]: cluster 2024-03-30T14:01:16.951211+0000 mgr.a (mgr.14152) 321 : cluster 0 pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:18.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:18 smithi050 bash[22081]: cluster 2024-03-30T14:01:16.951211+0000 mgr.a (mgr.14152) 321 : cluster 0 pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:18.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:18 smithi136 bash[22230]: cluster 2024-03-30T14:01:16.951211+0000 mgr.a (mgr.14152) 321 : cluster 0 pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:20.326 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:20 smithi050 bash[22081]: cluster 2024-03-30T14:01:18.951723+0000 mgr.a (mgr.14152) 322 : cluster 0 pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:20.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:20 smithi026 bash[21443]: cluster 2024-03-30T14:01:18.951723+0000 mgr.a (mgr.14152) 322 : cluster 0 pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:20.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:20 smithi136 bash[22230]: cluster 2024-03-30T14:01:18.951723+0000 mgr.a (mgr.14152) 322 : cluster 0 pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:22.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:22 smithi026 bash[21443]: cluster 2024-03-30T14:01:20.952266+0000 mgr.a (mgr.14152) 323 : cluster 0 pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:22.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:22 smithi050 bash[22081]: cluster 2024-03-30T14:01:20.952266+0000 mgr.a (mgr.14152) 323 : cluster 0 pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:22.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:22 smithi136 bash[22230]: cluster 2024-03-30T14:01:20.952266+0000 mgr.a (mgr.14152) 323 : cluster 0 pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:23.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:23 smithi136 bash[22230]: audit 2024-03-30T14:01:22.164066+0000 mon.a (mon.0) 853 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:23.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:23 smithi136 bash[22230]: audit 2024-03-30T14:01:22.173508+0000 mon.a (mon.0) 854 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:23.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:23 smithi136 bash[22230]: audit 2024-03-30T14:01:22.184456+0000 mon.a (mon.0) 855 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:23.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:23 smithi136 bash[22230]: audit 2024-03-30T14:01:22.695294+0000 mon.a (mon.0) 856 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:23.478 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:23 smithi136 bash[22230]: audit 2024-03-30T14:01:22.704345+0000 mon.a (mon.0) 857 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:23.478 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:23 smithi136 bash[22230]: audit 2024-03-30T14:01:22.714671+0000 mon.a (mon.0) 858 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:23.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:23 smithi026 bash[21443]: audit 2024-03-30T14:01:22.164066+0000 mon.a (mon.0) 853 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:23.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:23 smithi026 bash[21443]: audit 2024-03-30T14:01:22.173508+0000 mon.a (mon.0) 854 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:23.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:23 smithi026 bash[21443]: audit 2024-03-30T14:01:22.184456+0000 mon.a (mon.0) 855 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:23.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:23 smithi026 bash[21443]: audit 2024-03-30T14:01:22.695294+0000 mon.a (mon.0) 856 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:23.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:23 smithi026 bash[21443]: audit 2024-03-30T14:01:22.704345+0000 mon.a (mon.0) 857 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:23.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:23 smithi026 bash[21443]: audit 2024-03-30T14:01:22.714671+0000 mon.a (mon.0) 858 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:23.629 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:23 smithi050 bash[22081]: audit 2024-03-30T14:01:22.164066+0000 mon.a (mon.0) 853 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:23.630 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:23 smithi050 bash[22081]: audit 2024-03-30T14:01:22.173508+0000 mon.a (mon.0) 854 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:23.630 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:23 smithi050 bash[22081]: audit 2024-03-30T14:01:22.184456+0000 mon.a (mon.0) 855 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:23.630 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:23 smithi050 bash[22081]: audit 2024-03-30T14:01:22.695294+0000 mon.a (mon.0) 856 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:23.630 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:23 smithi050 bash[22081]: audit 2024-03-30T14:01:22.704345+0000 mon.a (mon.0) 857 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:23.630 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:23 smithi050 bash[22081]: audit 2024-03-30T14:01:22.714671+0000 mon.a (mon.0) 858 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:23.743 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T14:01:24.428 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:24 smithi050 bash[22081]: cluster 2024-03-30T14:01:22.952762+0000 mgr.a (mgr.14152) 324 : cluster 0 pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:24.428 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:24 smithi050 bash[22081]: audit 2024-03-30T14:01:23.853337+0000 mon.a (mon.0) 859 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:24.428 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:24 smithi050 bash[22081]: audit 2024-03-30T14:01:23.858462+0000 mon.a (mon.0) 860 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:24.428 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:24 smithi050 bash[22081]: audit 2024-03-30T14:01:23.863186+0000 mon.a (mon.0) 861 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:24.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:24 smithi136 bash[22230]: cluster 2024-03-30T14:01:22.952762+0000 mgr.a (mgr.14152) 324 : cluster 0 pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:24.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:24 smithi136 bash[22230]: audit 2024-03-30T14:01:23.853337+0000 mon.a (mon.0) 859 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:24.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:24 smithi136 bash[22230]: audit 2024-03-30T14:01:23.858462+0000 mon.a (mon.0) 860 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:24.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:24 smithi136 bash[22230]: audit 2024-03-30T14:01:23.863186+0000 mon.a (mon.0) 861 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:24.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:24 smithi026 bash[21443]: cluster 2024-03-30T14:01:22.952762+0000 mgr.a (mgr.14152) 324 : cluster 0 pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:24.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:24 smithi026 bash[21443]: audit 2024-03-30T14:01:23.853337+0000 mon.a (mon.0) 859 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:24.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:24 smithi026 bash[21443]: audit 2024-03-30T14:01:23.858462+0000 mon.a (mon.0) 860 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:24.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:24 smithi026 bash[21443]: audit 2024-03-30T14:01:23.863186+0000 mon.a (mon.0) 861 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:26.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:26 smithi050 bash[22081]: cluster 2024-03-30T14:01:24.953240+0000 mgr.a (mgr.14152) 325 : cluster 0 pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:26.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:26 smithi136 bash[22230]: cluster 2024-03-30T14:01:24.953240+0000 mgr.a (mgr.14152) 325 : cluster 0 pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:26.527 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:26 smithi026 bash[21443]: cluster 2024-03-30T14:01:24.953240+0000 mgr.a (mgr.14152) 325 : cluster 0 pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:26.921 INFO:teuthology.orchestra.run.smithi026.stdout: 2024-03-30T14:01:26.921 INFO:teuthology.orchestra.run.smithi026.stdout:{"epoch":45,"fsid":"56554a52-ee9c-11ee-b647-cb9ed24678a4","created":"2024-03-30T13:52:10.892994+0000","modified":"2024-03-30T14:00:43.120112+0000","last_up_change":"2024-03-30T14:00:39.065551+0000","last_in_change":"2024-03-30T14:00:13.993889+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-03-30T13:58:10.137959+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_type":"Fair distribution","score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"68b92ed1-233e-4b44-94fd-fb7b8cf5ba13","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.26:6802","nonce":3101378251},{"type":"v1","addr":"172.21.15.26:6803","nonce":3101378251}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.26:6804","nonce":3101378251},{"type":"v1","addr":"172.21.15.26:6805","nonce":3101378251}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.26:6808","nonce":3101378251},{"type":"v1","addr":"172.21.15.26:6809","nonce":3101378251}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.26:6806","nonce":3101378251},{"type":"v1","addr":"172.21.15.26:6807","nonce":3101378251}]},"public_addr":"172.21.15.26:6803/3101378251","cluster_addr":"172.21.15.26:6805/3101378251","heartbeat_back_addr":"172.21.15.26:6809/3101378251","heartbeat_front_addr":"172.21.15.26:6807/3101378251","state":["exists","up"]},{"osd":1,"uuid":"71003761-3357-440b-87be-d0ffd7c44fec","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.26:6810","nonce":257573934},{"type":"v1","addr":"172.21.15.26:6811","nonce":257573934}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.26:6812","nonce":257573934},{"type":"v1","addr":"172.21.15.26:6813","nonce":257573934}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.26:6816","nonce":257573934},{"type":"v1","addr":"172.21.15.26:6817","nonce":257573934}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.26:6814","nonce":257573934},{"type":"v1","addr":"172.21.15.26:6815","nonce":257573934}]},"public_addr":"172.21.15.26:6811/257573934","cluster_addr":"172.21.15.26:6813/257573934","heartbeat_back_addr":"172.21.15.26:6817/257573934","heartbeat_front_addr":"172.21.15.26:6815/257573934","state":["exists","up"]},{"osd":2,"uuid":"cdfd83e3-c472-4bb5-a422-d82548a4adf7","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.50:6800","nonce":1606595991},{"type":"v1","addr":"172.21.15.50:6801","nonce":1606595991}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6802","nonce":1606595991},{"type":"v1","addr":"172.21.15.50:6803","nonce":1606595991}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6806","nonce":1606595991},{"type":"v1","addr":"172.21.15.50:6807","nonce":1606595991}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6804","nonce":1606595991},{"type":"v1","addr":"172.21.15.50:6805","nonce":1606595991}]},"public_addr":"172.21.15.50:6801/1606595991","cluster_addr":"172.21.15.50:6803/1606595991","heartbeat_back_addr":"172.21.15.50:6807/1606595991","heartbeat_front_addr":"172.21.15.50:6805/1606595991","state":["exists","up"]},{"osd":3,"uuid":"ddffc97e-d3cc-4703-8822-9432ca414ac7","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.50:6808","nonce":623805305},{"type":"v1","addr":"172.21.15.50:6809","nonce":623805305}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6810","nonce":623805305},{"type":"v1","addr":"172.21.15.50:6811","nonce":623805305}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6814","nonce":623805305},{"type":"v1","addr":"172.21.15.50:6815","nonce":623805305}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6812","nonce":623805305},{"type":"v1","addr":"172.21.15.50:6813","nonce":623805305}]},"public_addr":"172.21.15.50:6809/623805305","cluster_addr":"172.21.15.50:6811/623805305","heartbeat_back_addr":"172.21.15.50:6815/623805305","heartbeat_front_addr":"172.21.15.50:6813/623805305","state":["exists","up"]},{"osd":4,"uuid":"1a3092f5-2c51-4a35-9a44-ca8dd159813d","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.136:6800","nonce":2150671530},{"type":"v1","addr":"172.21.15.136:6801","nonce":2150671530}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.136:6802","nonce":2150671530},{"type":"v1","addr":"172.21.15.136:6803","nonce":2150671530}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.136:6806","nonce":2150671530},{"type":"v1","addr":"172.21.15.136:6807","nonce":2150671530}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.136:6804","nonce":2150671530},{"type":"v1","addr":"172.21.15.136:6805","nonce":2150671530}]},"public_addr":"172.21.15.136:6801/2150671530","cluster_addr":"172.21.15.136:6803/2150671530","heartbeat_back_addr":"172.21.15.136:6807/2150671530","heartbeat_front_addr":"172.21.15.136:6805/2150671530","state":["exists","up"]},{"osd":5,"uuid":"420073d4-c6bf-49e4-b9b0-6a5388abf125","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.136:6808","nonce":2515060655},{"type":"v1","addr":"172.21.15.136:6809","nonce":2515060655}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.136:6810","nonce":2515060655},{"type":"v1","addr":"172.21.15.136:6811","nonce":2515060655}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.136:6814","nonce":2515060655},{"type":"v1","addr":"172.21.15.136:6815","nonce":2515060655}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.136:6812","nonce":2515060655},{"type":"v1","addr":"172.21.15.136:6813","nonce":2515060655}]},"public_addr":"172.21.15.136:6809/2515060655","cluster_addr":"172.21.15.136:6811/2515060655","heartbeat_back_addr":"172.21.15.136:6815/2515060655","heartbeat_front_addr":"172.21.15.136:6813/2515060655","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-30T13:56:20.900816+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-30T13:57:11.869021+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-30T13:58:06.044462+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-30T13:58:57.170292+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-30T13:59:47.398677+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-30T14:00:37.415158+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.26:0/3666056350":"2024-03-31T13:53:19.454530+0000","172.21.15.26:6801/3680733594":"2024-03-31T13:53:19.454530+0000","172.21.15.26:6800/3680733594":"2024-03-31T13:53:19.454530+0000","172.21.15.26:0/2330732170":"2024-03-31T13:53:19.454530+0000","172.21.15.26:6801/2405643829":"2024-03-31T13:52:44.002361+0000","172.21.15.26:0/763639362":"2024-03-31T13:52:44.002361+0000","172.21.15.26:6800/2405643829":"2024-03-31T13:52:44.002361+0000","172.21.15.26:0/2380794705":"2024-03-31T13:52:44.002361+0000","172.21.15.26:0/2228802237":"2024-03-31T13:52:44.002361+0000","172.21.15.26:0/2531510843":"2024-03-31T13:53:19.454530+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-03-30T14:01:27.204 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:27 smithi026 bash[21443]: audit 2024-03-30T14:01:26.929185+0000 mon.a (mon.0) 862 : audit 0 from='client.? 172.21.15.26:0/981949297' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-03-30T14:01:27.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:27 smithi136 bash[22230]: audit 2024-03-30T14:01:26.929185+0000 mon.a (mon.0) 862 : audit 0 from='client.? 172.21.15.26:0/981949297' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-03-30T14:01:27.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:27 smithi050 bash[22081]: audit 2024-03-30T14:01:26.929185+0000 mon.a (mon.0) 862 : audit 0 from='client.? 172.21.15.26:0/981949297' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-03-30T14:01:27.737 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-03-30T14:01:27.737 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph osd dump --format=json 2024-03-30T14:01:28.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:28 smithi136 bash[22230]: cluster 2024-03-30T14:01:26.953717+0000 mgr.a (mgr.14152) 326 : cluster 0 pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:28.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:28 smithi026 bash[21443]: cluster 2024-03-30T14:01:26.953717+0000 mgr.a (mgr.14152) 326 : cluster 0 pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:28.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:28 smithi050 bash[22081]: cluster 2024-03-30T14:01:26.953717+0000 mgr.a (mgr.14152) 326 : cluster 0 pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:30.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:30 smithi136 bash[22230]: cluster 2024-03-30T14:01:28.954232+0000 mgr.a (mgr.14152) 327 : cluster 0 pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:30.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:30 smithi026 bash[21443]: cluster 2024-03-30T14:01:28.954232+0000 mgr.a (mgr.14152) 327 : cluster 0 pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:30.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:30 smithi050 bash[22081]: cluster 2024-03-30T14:01:28.954232+0000 mgr.a (mgr.14152) 327 : cluster 0 pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:32.474 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T14:01:32.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:32 smithi136 bash[22230]: cluster 2024-03-30T14:01:30.954803+0000 mgr.a (mgr.14152) 328 : cluster 0 pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:32.498 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:32 smithi026 bash[21443]: cluster 2024-03-30T14:01:30.954803+0000 mgr.a (mgr.14152) 328 : cluster 0 pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:32.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:32 smithi050 bash[22081]: cluster 2024-03-30T14:01:30.954803+0000 mgr.a (mgr.14152) 328 : cluster 0 pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:34.443 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:34 smithi026 bash[21443]: cluster 2024-03-30T14:01:32.955342+0000 mgr.a (mgr.14152) 329 : cluster 0 pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:34.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:34 smithi136 bash[22230]: cluster 2024-03-30T14:01:32.955342+0000 mgr.a (mgr.14152) 329 : cluster 0 pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:34.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:34 smithi050 bash[22081]: cluster 2024-03-30T14:01:32.955342+0000 mgr.a (mgr.14152) 329 : cluster 0 pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:35.849 INFO:teuthology.orchestra.run.smithi026.stdout: 2024-03-30T14:01:35.849 INFO:teuthology.orchestra.run.smithi026.stdout:{"epoch":45,"fsid":"56554a52-ee9c-11ee-b647-cb9ed24678a4","created":"2024-03-30T13:52:10.892994+0000","modified":"2024-03-30T14:00:43.120112+0000","last_up_change":"2024-03-30T14:00:39.065551+0000","last_in_change":"2024-03-30T14:00:13.993889+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-03-30T13:58:10.137959+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_type":"Fair distribution","score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"68b92ed1-233e-4b44-94fd-fb7b8cf5ba13","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.26:6802","nonce":3101378251},{"type":"v1","addr":"172.21.15.26:6803","nonce":3101378251}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.26:6804","nonce":3101378251},{"type":"v1","addr":"172.21.15.26:6805","nonce":3101378251}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.26:6808","nonce":3101378251},{"type":"v1","addr":"172.21.15.26:6809","nonce":3101378251}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.26:6806","nonce":3101378251},{"type":"v1","addr":"172.21.15.26:6807","nonce":3101378251}]},"public_addr":"172.21.15.26:6803/3101378251","cluster_addr":"172.21.15.26:6805/3101378251","heartbeat_back_addr":"172.21.15.26:6809/3101378251","heartbeat_front_addr":"172.21.15.26:6807/3101378251","state":["exists","up"]},{"osd":1,"uuid":"71003761-3357-440b-87be-d0ffd7c44fec","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.26:6810","nonce":257573934},{"type":"v1","addr":"172.21.15.26:6811","nonce":257573934}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.26:6812","nonce":257573934},{"type":"v1","addr":"172.21.15.26:6813","nonce":257573934}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.26:6816","nonce":257573934},{"type":"v1","addr":"172.21.15.26:6817","nonce":257573934}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.26:6814","nonce":257573934},{"type":"v1","addr":"172.21.15.26:6815","nonce":257573934}]},"public_addr":"172.21.15.26:6811/257573934","cluster_addr":"172.21.15.26:6813/257573934","heartbeat_back_addr":"172.21.15.26:6817/257573934","heartbeat_front_addr":"172.21.15.26:6815/257573934","state":["exists","up"]},{"osd":2,"uuid":"cdfd83e3-c472-4bb5-a422-d82548a4adf7","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.50:6800","nonce":1606595991},{"type":"v1","addr":"172.21.15.50:6801","nonce":1606595991}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6802","nonce":1606595991},{"type":"v1","addr":"172.21.15.50:6803","nonce":1606595991}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6806","nonce":1606595991},{"type":"v1","addr":"172.21.15.50:6807","nonce":1606595991}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6804","nonce":1606595991},{"type":"v1","addr":"172.21.15.50:6805","nonce":1606595991}]},"public_addr":"172.21.15.50:6801/1606595991","cluster_addr":"172.21.15.50:6803/1606595991","heartbeat_back_addr":"172.21.15.50:6807/1606595991","heartbeat_front_addr":"172.21.15.50:6805/1606595991","state":["exists","up"]},{"osd":3,"uuid":"ddffc97e-d3cc-4703-8822-9432ca414ac7","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.50:6808","nonce":623805305},{"type":"v1","addr":"172.21.15.50:6809","nonce":623805305}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6810","nonce":623805305},{"type":"v1","addr":"172.21.15.50:6811","nonce":623805305}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6814","nonce":623805305},{"type":"v1","addr":"172.21.15.50:6815","nonce":623805305}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6812","nonce":623805305},{"type":"v1","addr":"172.21.15.50:6813","nonce":623805305}]},"public_addr":"172.21.15.50:6809/623805305","cluster_addr":"172.21.15.50:6811/623805305","heartbeat_back_addr":"172.21.15.50:6815/623805305","heartbeat_front_addr":"172.21.15.50:6813/623805305","state":["exists","up"]},{"osd":4,"uuid":"1a3092f5-2c51-4a35-9a44-ca8dd159813d","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.136:6800","nonce":2150671530},{"type":"v1","addr":"172.21.15.136:6801","nonce":2150671530}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.136:6802","nonce":2150671530},{"type":"v1","addr":"172.21.15.136:6803","nonce":2150671530}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.136:6806","nonce":2150671530},{"type":"v1","addr":"172.21.15.136:6807","nonce":2150671530}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.136:6804","nonce":2150671530},{"type":"v1","addr":"172.21.15.136:6805","nonce":2150671530}]},"public_addr":"172.21.15.136:6801/2150671530","cluster_addr":"172.21.15.136:6803/2150671530","heartbeat_back_addr":"172.21.15.136:6807/2150671530","heartbeat_front_addr":"172.21.15.136:6805/2150671530","state":["exists","up"]},{"osd":5,"uuid":"420073d4-c6bf-49e4-b9b0-6a5388abf125","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.136:6808","nonce":2515060655},{"type":"v1","addr":"172.21.15.136:6809","nonce":2515060655}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.136:6810","nonce":2515060655},{"type":"v1","addr":"172.21.15.136:6811","nonce":2515060655}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.136:6814","nonce":2515060655},{"type":"v1","addr":"172.21.15.136:6815","nonce":2515060655}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.136:6812","nonce":2515060655},{"type":"v1","addr":"172.21.15.136:6813","nonce":2515060655}]},"public_addr":"172.21.15.136:6809/2515060655","cluster_addr":"172.21.15.136:6811/2515060655","heartbeat_back_addr":"172.21.15.136:6815/2515060655","heartbeat_front_addr":"172.21.15.136:6813/2515060655","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-30T13:56:20.900816+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-30T13:57:11.869021+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-30T13:58:06.044462+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-30T13:58:57.170292+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-30T13:59:47.398677+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-30T14:00:37.415158+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.26:0/3666056350":"2024-03-31T13:53:19.454530+0000","172.21.15.26:6801/3680733594":"2024-03-31T13:53:19.454530+0000","172.21.15.26:6800/3680733594":"2024-03-31T13:53:19.454530+0000","172.21.15.26:0/2330732170":"2024-03-31T13:53:19.454530+0000","172.21.15.26:6801/2405643829":"2024-03-31T13:52:44.002361+0000","172.21.15.26:0/763639362":"2024-03-31T13:52:44.002361+0000","172.21.15.26:6800/2405643829":"2024-03-31T13:52:44.002361+0000","172.21.15.26:0/2380794705":"2024-03-31T13:52:44.002361+0000","172.21.15.26:0/2228802237":"2024-03-31T13:52:44.002361+0000","172.21.15.26:0/2531510843":"2024-03-31T13:53:19.454530+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-03-30T14:01:36.457 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:36 smithi136 bash[22230]: cluster 2024-03-30T14:01:34.955901+0000 mgr.a (mgr.14152) 330 : cluster 0 pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:36.457 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:36 smithi136 bash[22230]: audit 2024-03-30T14:01:35.857382+0000 mon.a (mon.0) 863 : audit 0 from='client.? 172.21.15.26:0/2847247022' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-03-30T14:01:36.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:36 smithi026 bash[21443]: cluster 2024-03-30T14:01:34.955901+0000 mgr.a (mgr.14152) 330 : cluster 0 pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:36.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:36 smithi026 bash[21443]: audit 2024-03-30T14:01:35.857382+0000 mon.a (mon.0) 863 : audit 0 from='client.? 172.21.15.26:0/2847247022' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-03-30T14:01:36.635 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph tell osd.0 flush_pg_stats 2024-03-30T14:01:36.635 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph tell osd.1 flush_pg_stats 2024-03-30T14:01:36.636 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph tell osd.2 flush_pg_stats 2024-03-30T14:01:36.636 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph tell osd.3 flush_pg_stats 2024-03-30T14:01:36.636 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph tell osd.4 flush_pg_stats 2024-03-30T14:01:36.637 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph tell osd.5 flush_pg_stats 2024-03-30T14:01:36.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:36 smithi050 bash[22081]: cluster 2024-03-30T14:01:34.955901+0000 mgr.a (mgr.14152) 330 : cluster 0 pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:36.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:36 smithi050 bash[22081]: audit 2024-03-30T14:01:35.857382+0000 mon.a (mon.0) 863 : audit 0 from='client.? 172.21.15.26:0/2847247022' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-03-30T14:01:38.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:38 smithi136 bash[22230]: cluster 2024-03-30T14:01:36.956457+0000 mgr.a (mgr.14152) 331 : cluster 0 pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:38.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:38 smithi026 bash[21443]: cluster 2024-03-30T14:01:36.956457+0000 mgr.a (mgr.14152) 331 : cluster 0 pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:38.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:38 smithi050 bash[22081]: cluster 2024-03-30T14:01:36.956457+0000 mgr.a (mgr.14152) 331 : cluster 0 pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:40.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:40 smithi026 bash[21443]: cluster 2024-03-30T14:01:38.957021+0000 mgr.a (mgr.14152) 332 : cluster 0 pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:40.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:40 smithi136 bash[22230]: cluster 2024-03-30T14:01:38.957021+0000 mgr.a (mgr.14152) 332 : cluster 0 pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:40.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:40 smithi050 bash[22081]: cluster 2024-03-30T14:01:38.957021+0000 mgr.a (mgr.14152) 332 : cluster 0 pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:41.988 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T14:01:41.988 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T14:01:41.988 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T14:01:41.989 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T14:01:41.989 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T14:01:41.989 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T14:01:42.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:42 smithi026 bash[21443]: cluster 2024-03-30T14:01:40.957663+0000 mgr.a (mgr.14152) 333 : cluster 0 pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:42.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:42 smithi136 bash[22230]: cluster 2024-03-30T14:01:40.957663+0000 mgr.a (mgr.14152) 333 : cluster 0 pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:42.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:42 smithi050 bash[22081]: cluster 2024-03-30T14:01:40.957663+0000 mgr.a (mgr.14152) 333 : cluster 0 pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:43.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:43 smithi026 bash[21443]: audit 2024-03-30T14:01:42.364831+0000 mon.a (mon.0) 864 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:43.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:43 smithi026 bash[21443]: audit 2024-03-30T14:01:42.374272+0000 mon.a (mon.0) 865 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:43.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:43 smithi026 bash[21443]: audit 2024-03-30T14:01:42.384536+0000 mon.a (mon.0) 866 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:43.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:43 smithi026 bash[21443]: audit 2024-03-30T14:01:42.920518+0000 mon.a (mon.0) 867 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:43.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:43 smithi026 bash[21443]: audit 2024-03-30T14:01:42.928454+0000 mon.a (mon.0) 868 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:43.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:43 smithi026 bash[21443]: audit 2024-03-30T14:01:42.938310+0000 mon.a (mon.0) 869 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:43.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:43 smithi026 bash[21443]: cluster 2024-03-30T14:01:42.958175+0000 mgr.a (mgr.14152) 334 : cluster 0 pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:43.642 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:43 smithi050 bash[22081]: audit 2024-03-30T14:01:42.364831+0000 mon.a (mon.0) 864 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:43.642 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:43 smithi050 bash[22081]: audit 2024-03-30T14:01:42.374272+0000 mon.a (mon.0) 865 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:43.643 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:43 smithi050 bash[22081]: audit 2024-03-30T14:01:42.384536+0000 mon.a (mon.0) 866 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:43.643 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:43 smithi050 bash[22081]: audit 2024-03-30T14:01:42.920518+0000 mon.a (mon.0) 867 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:43.643 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:43 smithi050 bash[22081]: audit 2024-03-30T14:01:42.928454+0000 mon.a (mon.0) 868 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:43.643 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:43 smithi050 bash[22081]: audit 2024-03-30T14:01:42.938310+0000 mon.a (mon.0) 869 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:43.643 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:43 smithi050 bash[22081]: cluster 2024-03-30T14:01:42.958175+0000 mgr.a (mgr.14152) 334 : cluster 0 pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:43.727 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:43 smithi136 bash[22230]: audit 2024-03-30T14:01:42.364831+0000 mon.a (mon.0) 864 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:43.727 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:43 smithi136 bash[22230]: audit 2024-03-30T14:01:42.374272+0000 mon.a (mon.0) 865 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:43.727 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:43 smithi136 bash[22230]: audit 2024-03-30T14:01:42.384536+0000 mon.a (mon.0) 866 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:43.727 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:43 smithi136 bash[22230]: audit 2024-03-30T14:01:42.920518+0000 mon.a (mon.0) 867 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:43.727 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:43 smithi136 bash[22230]: audit 2024-03-30T14:01:42.928454+0000 mon.a (mon.0) 868 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:43.727 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:43 smithi136 bash[22230]: audit 2024-03-30T14:01:42.938310+0000 mon.a (mon.0) 869 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:43.727 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:43 smithi136 bash[22230]: cluster 2024-03-30T14:01:42.958175+0000 mgr.a (mgr.14152) 334 : cluster 0 pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:45.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:45 smithi026 bash[21443]: audit 2024-03-30T14:01:43.990050+0000 mon.a (mon.0) 870 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:45.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:45 smithi026 bash[21443]: audit 2024-03-30T14:01:43.994918+0000 mon.a (mon.0) 871 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:45.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:45 smithi026 bash[21443]: audit 2024-03-30T14:01:43.999996+0000 mon.a (mon.0) 872 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:45.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:44 smithi050 bash[22081]: audit 2024-03-30T14:01:43.990050+0000 mon.a (mon.0) 870 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:45.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:44 smithi050 bash[22081]: audit 2024-03-30T14:01:43.994918+0000 mon.a (mon.0) 871 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:45.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:44 smithi050 bash[22081]: audit 2024-03-30T14:01:43.999996+0000 mon.a (mon.0) 872 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:45.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:44 smithi136 bash[22230]: audit 2024-03-30T14:01:43.990050+0000 mon.a (mon.0) 870 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:45.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:44 smithi136 bash[22230]: audit 2024-03-30T14:01:43.994918+0000 mon.a (mon.0) 871 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:45.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:44 smithi136 bash[22230]: audit 2024-03-30T14:01:43.999996+0000 mon.a (mon.0) 872 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:46.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:46 smithi026 bash[21443]: cluster 2024-03-30T14:01:44.958725+0000 mgr.a (mgr.14152) 335 : cluster 0 pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:46.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:46 smithi026 bash[21443]: audit 2024-03-30T14:01:45.056125+0000 mon.a (mon.0) 873 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T14:01:46.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:46 smithi026 bash[21443]: audit 2024-03-30T14:01:45.059010+0000 mon.a (mon.0) 874 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:01:46.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:46 smithi026 bash[21443]: audit 2024-03-30T14:01:45.059873+0000 mon.a (mon.0) 875 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T14:01:46.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:46 smithi026 bash[21443]: audit 2024-03-30T14:01:45.065581+0000 mon.a (mon.0) 876 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:46.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:46 smithi050 bash[22081]: cluster 2024-03-30T14:01:44.958725+0000 mgr.a (mgr.14152) 335 : cluster 0 pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:46.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:46 smithi050 bash[22081]: audit 2024-03-30T14:01:45.056125+0000 mon.a (mon.0) 873 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T14:01:46.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:46 smithi050 bash[22081]: audit 2024-03-30T14:01:45.059010+0000 mon.a (mon.0) 874 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:01:46.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:46 smithi050 bash[22081]: audit 2024-03-30T14:01:45.059873+0000 mon.a (mon.0) 875 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T14:01:46.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:46 smithi050 bash[22081]: audit 2024-03-30T14:01:45.065581+0000 mon.a (mon.0) 876 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:46.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:46 smithi136 bash[22230]: cluster 2024-03-30T14:01:44.958725+0000 mgr.a (mgr.14152) 335 : cluster 0 pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:46.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:46 smithi136 bash[22230]: audit 2024-03-30T14:01:45.056125+0000 mon.a (mon.0) 873 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T14:01:46.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:46 smithi136 bash[22230]: audit 2024-03-30T14:01:45.059010+0000 mon.a (mon.0) 874 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:01:46.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:46 smithi136 bash[22230]: audit 2024-03-30T14:01:45.059873+0000 mon.a (mon.0) 875 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T14:01:46.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:46 smithi136 bash[22230]: audit 2024-03-30T14:01:45.065581+0000 mon.a (mon.0) 876 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:01:48.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:48 smithi026 bash[21443]: cluster 2024-03-30T14:01:46.959103+0000 mgr.a (mgr.14152) 336 : cluster 0 pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:48.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:48 smithi050 bash[22081]: cluster 2024-03-30T14:01:46.959103+0000 mgr.a (mgr.14152) 336 : cluster 0 pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:48.476 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:48 smithi136 bash[22230]: cluster 2024-03-30T14:01:46.959103+0000 mgr.a (mgr.14152) 336 : cluster 0 pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:50.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:50 smithi026 bash[21443]: cluster 2024-03-30T14:01:48.959509+0000 mgr.a (mgr.14152) 337 : cluster 0 pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:50.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:50 smithi050 bash[22081]: cluster 2024-03-30T14:01:48.959509+0000 mgr.a (mgr.14152) 337 : cluster 0 pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:50.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:50 smithi136 bash[22230]: cluster 2024-03-30T14:01:48.959509+0000 mgr.a (mgr.14152) 337 : cluster 0 pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:52.292 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:52 smithi026 bash[21443]: cluster 2024-03-30T14:01:50.960062+0000 mgr.a (mgr.14152) 338 : cluster 0 pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:52.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:52 smithi050 bash[22081]: cluster 2024-03-30T14:01:50.960062+0000 mgr.a (mgr.14152) 338 : cluster 0 pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:52.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:52 smithi136 bash[22230]: cluster 2024-03-30T14:01:50.960062+0000 mgr.a (mgr.14152) 338 : cluster 0 pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:53.475 INFO:teuthology.orchestra.run.smithi026.stdout:141733920796 2024-03-30T14:01:53.475 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph osd last-stat-seq osd.4 2024-03-30T14:01:54.226 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:54 smithi136 bash[22230]: cluster 2024-03-30T14:01:52.960682+0000 mgr.a (mgr.14152) 339 : cluster 0 pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:54.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:54 smithi026 bash[21443]: cluster 2024-03-30T14:01:52.960682+0000 mgr.a (mgr.14152) 339 : cluster 0 pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:54.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:54 smithi050 bash[22081]: cluster 2024-03-30T14:01:52.960682+0000 mgr.a (mgr.14152) 339 : cluster 0 pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:55.709 INFO:teuthology.orchestra.run.smithi026.stdout:34359738437 2024-03-30T14:01:55.710 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph osd last-stat-seq osd.0 2024-03-30T14:01:55.787 INFO:teuthology.orchestra.run.smithi026.stdout:55834574907 2024-03-30T14:01:55.787 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph osd last-stat-seq osd.1 2024-03-30T14:01:56.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:56 smithi050 bash[22081]: cluster 2024-03-30T14:01:54.961240+0000 mgr.a (mgr.14152) 340 : cluster 0 pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:56.417 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:56 smithi026 bash[21443]: cluster 2024-03-30T14:01:54.961240+0000 mgr.a (mgr.14152) 340 : cluster 0 pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:56.476 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:56 smithi136 bash[22230]: cluster 2024-03-30T14:01:54.961240+0000 mgr.a (mgr.14152) 340 : cluster 0 pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:56.935 INFO:teuthology.orchestra.run.smithi026.stdout:107374182438 2024-03-30T14:01:56.935 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph osd last-stat-seq osd.3 2024-03-30T14:01:56.939 INFO:teuthology.orchestra.run.smithi026.stdout:77309411376 2024-03-30T14:01:56.939 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph osd last-stat-seq osd.2 2024-03-30T14:01:56.964 INFO:teuthology.orchestra.run.smithi026.stdout:176093659155 2024-03-30T14:01:56.965 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph osd last-stat-seq osd.5 2024-03-30T14:01:58.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:01:58 smithi026 bash[21443]: cluster 2024-03-30T14:01:56.961712+0000 mgr.a (mgr.14152) 341 : cluster 0 pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:58.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:01:58 smithi050 bash[22081]: cluster 2024-03-30T14:01:56.961712+0000 mgr.a (mgr.14152) 341 : cluster 0 pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:58.476 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:01:58 smithi136 bash[22230]: cluster 2024-03-30T14:01:56.961712+0000 mgr.a (mgr.14152) 341 : cluster 0 pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:01:59.857 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T14:02:00.218 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T14:02:00.218 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T14:02:00.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:00 smithi026 bash[21443]: cluster 2024-03-30T14:01:58.962231+0000 mgr.a (mgr.14152) 342 : cluster 0 pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:00.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:00 smithi050 bash[22081]: cluster 2024-03-30T14:01:58.962231+0000 mgr.a (mgr.14152) 342 : cluster 0 pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:00.476 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:00 smithi136 bash[22230]: cluster 2024-03-30T14:01:58.962231+0000 mgr.a (mgr.14152) 342 : cluster 0 pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:02.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:02 smithi026 bash[21443]: cluster 2024-03-30T14:02:00.962651+0000 mgr.a (mgr.14152) 343 : cluster 0 pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:02.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:02 smithi050 bash[22081]: cluster 2024-03-30T14:02:00.962651+0000 mgr.a (mgr.14152) 343 : cluster 0 pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:02.476 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:02 smithi136 bash[22230]: cluster 2024-03-30T14:02:00.962651+0000 mgr.a (mgr.14152) 343 : cluster 0 pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:03.902 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:03 smithi050 bash[22081]: audit 2024-03-30T14:02:02.595473+0000 mon.a (mon.0) 877 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:03.902 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:03 smithi050 bash[22081]: audit 2024-03-30T14:02:02.604632+0000 mon.a (mon.0) 878 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:03.902 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:03 smithi050 bash[22081]: audit 2024-03-30T14:02:02.614993+0000 mon.a (mon.0) 879 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:03.902 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:03 smithi050 bash[22081]: cluster 2024-03-30T14:02:02.963294+0000 mgr.a (mgr.14152) 344 : cluster 0 pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:03.902 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:03 smithi050 bash[22081]: audit 2024-03-30T14:02:03.150557+0000 mon.a (mon.0) 880 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:03.902 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:03 smithi050 bash[22081]: audit 2024-03-30T14:02:03.159819+0000 mon.a (mon.0) 881 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:03.902 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:03 smithi050 bash[22081]: audit 2024-03-30T14:02:03.170154+0000 mon.a (mon.0) 882 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:03.958 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:03 smithi026 bash[21443]: audit 2024-03-30T14:02:02.595473+0000 mon.a (mon.0) 877 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:03.959 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:03 smithi026 bash[21443]: audit 2024-03-30T14:02:02.604632+0000 mon.a (mon.0) 878 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:03.959 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:03 smithi026 bash[21443]: audit 2024-03-30T14:02:02.614993+0000 mon.a (mon.0) 879 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:03.959 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:03 smithi026 bash[21443]: cluster 2024-03-30T14:02:02.963294+0000 mgr.a (mgr.14152) 344 : cluster 0 pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:03.959 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:03 smithi026 bash[21443]: audit 2024-03-30T14:02:03.150557+0000 mon.a (mon.0) 880 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:03.959 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:03 smithi026 bash[21443]: audit 2024-03-30T14:02:03.159819+0000 mon.a (mon.0) 881 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:03.959 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:03 smithi026 bash[21443]: audit 2024-03-30T14:02:03.170154+0000 mon.a (mon.0) 882 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:03.976 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:03 smithi136 bash[22230]: audit 2024-03-30T14:02:02.595473+0000 mon.a (mon.0) 877 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:03.976 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:03 smithi136 bash[22230]: audit 2024-03-30T14:02:02.604632+0000 mon.a (mon.0) 878 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:03.977 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:03 smithi136 bash[22230]: audit 2024-03-30T14:02:02.614993+0000 mon.a (mon.0) 879 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:03.977 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:03 smithi136 bash[22230]: cluster 2024-03-30T14:02:02.963294+0000 mgr.a (mgr.14152) 344 : cluster 0 pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:03.977 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:03 smithi136 bash[22230]: audit 2024-03-30T14:02:03.150557+0000 mon.a (mon.0) 880 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:03.977 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:03 smithi136 bash[22230]: audit 2024-03-30T14:02:03.159819+0000 mon.a (mon.0) 881 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:03.977 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:03 smithi136 bash[22230]: audit 2024-03-30T14:02:03.170154+0000 mon.a (mon.0) 882 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:05.455 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T14:02:05.456 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T14:02:05.457 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T14:02:05.476 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:05 smithi136 bash[22230]: audit 2024-03-30T14:02:04.175993+0000 mon.a (mon.0) 883 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:05.476 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:05 smithi136 bash[22230]: audit 2024-03-30T14:02:04.181154+0000 mon.a (mon.0) 884 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:05.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:05 smithi136 bash[22230]: audit 2024-03-30T14:02:04.187571+0000 mon.a (mon.0) 885 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:05.497 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:05 smithi026 bash[21443]: audit 2024-03-30T14:02:04.175993+0000 mon.a (mon.0) 883 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:05.497 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:05 smithi026 bash[21443]: audit 2024-03-30T14:02:04.181154+0000 mon.a (mon.0) 884 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:05.497 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:05 smithi026 bash[21443]: audit 2024-03-30T14:02:04.187571+0000 mon.a (mon.0) 885 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:05.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:05 smithi050 bash[22081]: audit 2024-03-30T14:02:04.175993+0000 mon.a (mon.0) 883 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:05.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:05 smithi050 bash[22081]: audit 2024-03-30T14:02:04.181154+0000 mon.a (mon.0) 884 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:05.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:05 smithi050 bash[22081]: audit 2024-03-30T14:02:04.187571+0000 mon.a (mon.0) 885 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:06.476 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:06 smithi136 bash[22230]: cluster 2024-03-30T14:02:04.963933+0000 mgr.a (mgr.14152) 345 : cluster 0 pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:06.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:06 smithi026 bash[21443]: cluster 2024-03-30T14:02:04.963933+0000 mgr.a (mgr.14152) 345 : cluster 0 pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:06.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:06 smithi050 bash[22081]: cluster 2024-03-30T14:02:04.963933+0000 mgr.a (mgr.14152) 345 : cluster 0 pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:07.301 INFO:teuthology.orchestra.run.smithi026.stdout:141733920799 2024-03-30T14:02:07.330 INFO:teuthology.orchestra.run.smithi026.stdout:34359738440 2024-03-30T14:02:07.452 INFO:teuthology.orchestra.run.smithi026.stdout:55834574910 2024-03-30T14:02:08.227 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:08 smithi026 bash[21443]: cluster 2024-03-30T14:02:06.964347+0000 mgr.a (mgr.14152) 346 : cluster 0 pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:08.228 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:08 smithi026 bash[21443]: audit 2024-03-30T14:02:07.311170+0000 mon.a (mon.0) 886 : audit 0 from='client.? 172.21.15.26:0/1735651183' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-03-30T14:02:08.228 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:08 smithi026 bash[21443]: audit 2024-03-30T14:02:07.339759+0000 mon.a (mon.0) 887 : audit 0 from='client.? 172.21.15.26:0/194604367' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-03-30T14:02:08.228 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:08 smithi026 bash[21443]: audit 2024-03-30T14:02:07.462052+0000 mon.a (mon.0) 888 : audit 0 from='client.? 172.21.15.26:0/2288531073' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-03-30T14:02:08.476 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:08 smithi136 bash[22230]: cluster 2024-03-30T14:02:06.964347+0000 mgr.a (mgr.14152) 346 : cluster 0 pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:08.476 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:08 smithi136 bash[22230]: audit 2024-03-30T14:02:07.311170+0000 mon.a (mon.0) 886 : audit 0 from='client.? 172.21.15.26:0/1735651183' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-03-30T14:02:08.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:08 smithi136 bash[22230]: audit 2024-03-30T14:02:07.339759+0000 mon.a (mon.0) 887 : audit 0 from='client.? 172.21.15.26:0/194604367' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-03-30T14:02:08.477 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:08 smithi136 bash[22230]: audit 2024-03-30T14:02:07.462052+0000 mon.a (mon.0) 888 : audit 0 from='client.? 172.21.15.26:0/2288531073' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-03-30T14:02:08.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:08 smithi050 bash[22081]: cluster 2024-03-30T14:02:06.964347+0000 mgr.a (mgr.14152) 346 : cluster 0 pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:08.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:08 smithi050 bash[22081]: audit 2024-03-30T14:02:07.311170+0000 mon.a (mon.0) 886 : audit 0 from='client.? 172.21.15.26:0/1735651183' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-03-30T14:02:08.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:08 smithi050 bash[22081]: audit 2024-03-30T14:02:07.339759+0000 mon.a (mon.0) 887 : audit 0 from='client.? 172.21.15.26:0/194604367' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-03-30T14:02:08.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:08 smithi050 bash[22081]: audit 2024-03-30T14:02:07.462052+0000 mon.a (mon.0) 888 : audit 0 from='client.? 172.21.15.26:0/2288531073' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-03-30T14:02:09.980 INFO:tasks.cephadm.ceph_manager.ceph:need seq 34359738437 got 34359738440 for osd.0 2024-03-30T14:02:09.981 DEBUG:teuthology.parallel:result is None 2024-03-30T14:02:09.986 INFO:tasks.cephadm.ceph_manager.ceph:need seq 141733920796 got 141733920799 for osd.4 2024-03-30T14:02:09.986 DEBUG:teuthology.parallel:result is None 2024-03-30T14:02:10.082 INFO:tasks.cephadm.ceph_manager.ceph:need seq 55834574907 got 55834574910 for osd.1 2024-03-30T14:02:10.082 DEBUG:teuthology.parallel:result is None 2024-03-30T14:02:10.239 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:10 smithi026 bash[21443]: cluster 2024-03-30T14:02:08.964752+0000 mgr.a (mgr.14152) 347 : cluster 0 pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:10.476 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:10 smithi136 bash[22230]: cluster 2024-03-30T14:02:08.964752+0000 mgr.a (mgr.14152) 347 : cluster 0 pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:10.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:10 smithi050 bash[22081]: cluster 2024-03-30T14:02:08.964752+0000 mgr.a (mgr.14152) 347 : cluster 0 pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:12.118 INFO:teuthology.orchestra.run.smithi026.stdout:176093659158 2024-03-30T14:02:12.428 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:12 smithi026 bash[21443]: cluster 2024-03-30T14:02:10.965238+0000 mgr.a (mgr.14152) 348 : cluster 0 pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:12.429 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:12 smithi026 bash[21443]: audit 2024-03-30T14:02:12.127406+0000 mon.a (mon.0) 889 : audit 0 from='client.? 172.21.15.26:0/3766618392' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-03-30T14:02:12.476 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:12 smithi136 bash[22230]: cluster 2024-03-30T14:02:10.965238+0000 mgr.a (mgr.14152) 348 : cluster 0 pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:12.476 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:12 smithi136 bash[22230]: audit 2024-03-30T14:02:12.127406+0000 mon.a (mon.0) 889 : audit 0 from='client.? 172.21.15.26:0/3766618392' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-03-30T14:02:12.526 INFO:teuthology.orchestra.run.smithi026.stdout:77309411379 2024-03-30T14:02:12.617 INFO:teuthology.orchestra.run.smithi026.stdout:107374182442 2024-03-30T14:02:12.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:12 smithi050 bash[22081]: cluster 2024-03-30T14:02:10.965238+0000 mgr.a (mgr.14152) 348 : cluster 0 pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:12.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:12 smithi050 bash[22081]: audit 2024-03-30T14:02:12.127406+0000 mon.a (mon.0) 889 : audit 0 from='client.? 172.21.15.26:0/3766618392' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-03-30T14:02:13.083 INFO:tasks.cephadm.ceph_manager.ceph:need seq 176093659155 got 176093659158 for osd.5 2024-03-30T14:02:13.083 DEBUG:teuthology.parallel:result is None 2024-03-30T14:02:13.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:13 smithi026 bash[21443]: audit 2024-03-30T14:02:12.536331+0000 mon.a (mon.0) 890 : audit 0 from='client.? 172.21.15.26:0/1849417812' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-03-30T14:02:13.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:13 smithi026 bash[21443]: audit 2024-03-30T14:02:12.626776+0000 mon.a (mon.0) 891 : audit 0 from='client.? 172.21.15.26:0/664872939' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-03-30T14:02:13.476 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:13 smithi136 bash[22230]: audit 2024-03-30T14:02:12.536331+0000 mon.a (mon.0) 890 : audit 0 from='client.? 172.21.15.26:0/1849417812' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-03-30T14:02:13.476 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:13 smithi136 bash[22230]: audit 2024-03-30T14:02:12.626776+0000 mon.a (mon.0) 891 : audit 0 from='client.? 172.21.15.26:0/664872939' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-03-30T14:02:13.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:13 smithi050 bash[22081]: audit 2024-03-30T14:02:12.536331+0000 mon.a (mon.0) 890 : audit 0 from='client.? 172.21.15.26:0/1849417812' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-03-30T14:02:13.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:13 smithi050 bash[22081]: audit 2024-03-30T14:02:12.626776+0000 mon.a (mon.0) 891 : audit 0 from='client.? 172.21.15.26:0/664872939' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-03-30T14:02:14.110 INFO:tasks.cephadm.ceph_manager.ceph:need seq 77309411376 got 77309411379 for osd.2 2024-03-30T14:02:14.110 DEBUG:teuthology.parallel:result is None 2024-03-30T14:02:14.154 INFO:tasks.cephadm.ceph_manager.ceph:need seq 107374182438 got 107374182442 for osd.3 2024-03-30T14:02:14.154 DEBUG:teuthology.parallel:result is None 2024-03-30T14:02:14.155 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-03-30T14:02:14.155 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph pg dump --format=json 2024-03-30T14:02:14.476 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:14 smithi136 bash[22230]: cluster 2024-03-30T14:02:12.965772+0000 mgr.a (mgr.14152) 349 : cluster 0 pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:14.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:14 smithi026 bash[21443]: cluster 2024-03-30T14:02:12.965772+0000 mgr.a (mgr.14152) 349 : cluster 0 pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:14.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:14 smithi050 bash[22081]: cluster 2024-03-30T14:02:12.965772+0000 mgr.a (mgr.14152) 349 : cluster 0 pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:16.476 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:16 smithi136 bash[22230]: cluster 2024-03-30T14:02:14.966340+0000 mgr.a (mgr.14152) 350 : cluster 0 pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:16.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:16 smithi026 bash[21443]: cluster 2024-03-30T14:02:14.966340+0000 mgr.a (mgr.14152) 350 : cluster 0 pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:16.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:16 smithi050 bash[22081]: cluster 2024-03-30T14:02:14.966340+0000 mgr.a (mgr.14152) 350 : cluster 0 pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:18.476 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:18 smithi136 bash[22230]: cluster 2024-03-30T14:02:16.966911+0000 mgr.a (mgr.14152) 351 : cluster 0 pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:18.538 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:18 smithi026 bash[21443]: cluster 2024-03-30T14:02:16.966911+0000 mgr.a (mgr.14152) 351 : cluster 0 pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:18.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:18 smithi050 bash[22081]: cluster 2024-03-30T14:02:16.966911+0000 mgr.a (mgr.14152) 351 : cluster 0 pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:18.891 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T14:02:20.476 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:20 smithi136 bash[22230]: cluster 2024-03-30T14:02:18.967521+0000 mgr.a (mgr.14152) 352 : cluster 0 pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:20.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:20 smithi026 bash[21443]: cluster 2024-03-30T14:02:18.967521+0000 mgr.a (mgr.14152) 352 : cluster 0 pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:20.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:20 smithi050 bash[22081]: cluster 2024-03-30T14:02:18.967521+0000 mgr.a (mgr.14152) 352 : cluster 0 pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:22.476 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:22 smithi136 bash[22230]: cluster 2024-03-30T14:02:20.968172+0000 mgr.a (mgr.14152) 353 : cluster 0 pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:22.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:22 smithi026 bash[21443]: cluster 2024-03-30T14:02:20.968172+0000 mgr.a (mgr.14152) 353 : cluster 0 pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:22.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:22 smithi050 bash[22081]: cluster 2024-03-30T14:02:20.968172+0000 mgr.a (mgr.14152) 353 : cluster 0 pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:22.771 INFO:teuthology.orchestra.run.smithi026.stdout: 2024-03-30T14:02:22.774 INFO:teuthology.orchestra.run.smithi026.stderr:dumped all 2024-03-30T14:02:23.606 INFO:teuthology.orchestra.run.smithi026.stdout:{"pg_ready":true,"pg_map":{"version":313,"stamp":"2024-03-30T14:02:20.967798+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":182924,"kb_used_data":4140,"kb_used_omap":9,"kb_used_meta":178678,"kb_avail":562287988,"statfs":{"total":575970213888,"available":575782899712,"internally_reserved":0,"allocated":4239360,"data_stored":2732460,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9568,"internal_metadata":182966944},"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.003261"},"pg_stats":[{"pgid":"1.0","version":"21'137","reported_seq":263,"reported_epoch":45,"state":"active+clean","last_fresh":"2024-03-30T14:00:43.136575+0000","last_change":"2024-03-30T14:00:43.135747+0000","last_active":"2024-03-30T14:00:43.136575+0000","last_peered":"2024-03-30T14:00:43.136575+0000","last_clean":"2024-03-30T14:00:43.136575+0000","last_became_active":"2024-03-30T14:00:43.134485+0000","last_became_peered":"2024-03-30T14:00:43.134485+0000","last_unstale":"2024-03-30T14:00:43.136575+0000","last_undegraded":"2024-03-30T14:00:43.136575+0000","last_fullsized":"2024-03-30T14:00:43.136575+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-03-30T13:58:10.138325+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-03-30T13:58:10.138325+0000","last_clean_scrub_stamp":"2024-03-30T13:58:10.138325+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-04-01T01:00:50.968021+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":32164,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93712988,"statfs":{"total":95995035648,"available":95962099712,"internally_reserved":0,"allocated":1003520,"data_stored":750594,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,1,2,3,4],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":33,"seq":141733920802,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27428,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717724,"statfs":{"total":95995035648,"available":95966949376,"internally_reserved":0,"allocated":409600,"data_stored":160226,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":25,"seq":107374182444,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":32168,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93712984,"statfs":{"total":95995035648,"available":95962095616,"internally_reserved":0,"allocated":1003520,"data_stored":750594,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":31914439},"hb_peers":[0,1,2,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":18,"seq":77309411381,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":32160,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93712992,"statfs":{"total":95995035648,"available":95962103808,"internally_reserved":0,"allocated":1003520,"data_stored":750594,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":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":31584,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713568,"statfs":{"total":95995035648,"available":95962693632,"internally_reserved":0,"allocated":409600,"data_stored":160226,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[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":[]},{"osd":1,"up_from":13,"seq":55834574913,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27420,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717732,"statfs":{"total":95995035648,"available":95966957568,"internally_reserved":0,"allocated":409600,"data_stored":160226,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[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":[]}],"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-03-30T14:02:23.607 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph pg dump --format=json 2024-03-30T14:02:24.104 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:23 smithi026 bash[21443]: audit 2024-03-30T14:02:22.780325+0000 mgr.a (mgr.14152) 354 : audit 0 from='client.14448 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-30T14:02:24.105 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:23 smithi026 bash[21443]: audit 2024-03-30T14:02:22.787402+0000 mon.a (mon.0) 892 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:24.105 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:23 smithi026 bash[21443]: audit 2024-03-30T14:02:22.792744+0000 mon.a (mon.0) 893 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:24.105 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:23 smithi026 bash[21443]: audit 2024-03-30T14:02:22.799993+0000 mon.a (mon.0) 894 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:24.105 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:23 smithi026 bash[21443]: cluster 2024-03-30T14:02:22.968590+0000 mgr.a (mgr.14152) 355 : cluster 0 pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:24.105 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:23 smithi026 bash[21443]: audit 2024-03-30T14:02:23.364341+0000 mon.a (mon.0) 895 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:24.105 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:23 smithi026 bash[21443]: audit 2024-03-30T14:02:23.372200+0000 mon.a (mon.0) 896 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:24.105 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:23 smithi026 bash[21443]: audit 2024-03-30T14:02:23.381449+0000 mon.a (mon.0) 897 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:24.150 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:23 smithi050 bash[22081]: audit 2024-03-30T14:02:22.780325+0000 mgr.a (mgr.14152) 354 : audit 0 from='client.14448 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-30T14:02:24.150 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:23 smithi050 bash[22081]: audit 2024-03-30T14:02:22.787402+0000 mon.a (mon.0) 892 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:24.150 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:23 smithi050 bash[22081]: audit 2024-03-30T14:02:22.792744+0000 mon.a (mon.0) 893 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:24.151 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:23 smithi050 bash[22081]: audit 2024-03-30T14:02:22.799993+0000 mon.a (mon.0) 894 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:24.151 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:23 smithi050 bash[22081]: cluster 2024-03-30T14:02:22.968590+0000 mgr.a (mgr.14152) 355 : cluster 0 pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:24.151 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:23 smithi050 bash[22081]: audit 2024-03-30T14:02:23.364341+0000 mon.a (mon.0) 895 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:24.151 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:23 smithi050 bash[22081]: audit 2024-03-30T14:02:23.372200+0000 mon.a (mon.0) 896 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:24.151 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:23 smithi050 bash[22081]: audit 2024-03-30T14:02:23.381449+0000 mon.a (mon.0) 897 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:24.226 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:23 smithi136 bash[22230]: audit 2024-03-30T14:02:22.780325+0000 mgr.a (mgr.14152) 354 : audit 0 from='client.14448 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-30T14:02:24.226 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:23 smithi136 bash[22230]: audit 2024-03-30T14:02:22.787402+0000 mon.a (mon.0) 892 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:24.226 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:23 smithi136 bash[22230]: audit 2024-03-30T14:02:22.792744+0000 mon.a (mon.0) 893 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:24.227 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:23 smithi136 bash[22230]: audit 2024-03-30T14:02:22.799993+0000 mon.a (mon.0) 894 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:24.227 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:23 smithi136 bash[22230]: cluster 2024-03-30T14:02:22.968590+0000 mgr.a (mgr.14152) 355 : cluster 0 pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:24.227 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:23 smithi136 bash[22230]: audit 2024-03-30T14:02:23.364341+0000 mon.a (mon.0) 895 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:24.227 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:23 smithi136 bash[22230]: audit 2024-03-30T14:02:23.372200+0000 mon.a (mon.0) 896 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:24.227 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:23 smithi136 bash[22230]: audit 2024-03-30T14:02:23.381449+0000 mon.a (mon.0) 897 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:25.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:25 smithi050 bash[22081]: audit 2024-03-30T14:02:24.377513+0000 mon.a (mon.0) 898 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:25.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:25 smithi050 bash[22081]: audit 2024-03-30T14:02:24.385706+0000 mon.a (mon.0) 899 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:25.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:25 smithi050 bash[22081]: audit 2024-03-30T14:02:24.394329+0000 mon.a (mon.0) 900 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:25.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:25 smithi050 bash[22081]: cluster 2024-03-30T14:02:24.969093+0000 mgr.a (mgr.14152) 356 : cluster 0 pgmap v315: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:25.726 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:25 smithi136 bash[22230]: audit 2024-03-30T14:02:24.377513+0000 mon.a (mon.0) 898 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:25.726 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:25 smithi136 bash[22230]: audit 2024-03-30T14:02:24.385706+0000 mon.a (mon.0) 899 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:25.726 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:25 smithi136 bash[22230]: audit 2024-03-30T14:02:24.394329+0000 mon.a (mon.0) 900 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:25.726 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:25 smithi136 bash[22230]: cluster 2024-03-30T14:02:24.969093+0000 mgr.a (mgr.14152) 356 : cluster 0 pgmap v315: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:25.854 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:25 smithi026 bash[21443]: audit 2024-03-30T14:02:24.377513+0000 mon.a (mon.0) 898 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:25.854 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:25 smithi026 bash[21443]: audit 2024-03-30T14:02:24.385706+0000 mon.a (mon.0) 899 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:25.854 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:25 smithi026 bash[21443]: audit 2024-03-30T14:02:24.394329+0000 mon.a (mon.0) 900 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:25.855 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:25 smithi026 bash[21443]: cluster 2024-03-30T14:02:24.969093+0000 mgr.a (mgr.14152) 356 : cluster 0 pgmap v315: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:28.087 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T14:02:28.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:28 smithi026 bash[21443]: cluster 2024-03-30T14:02:26.969641+0000 mgr.a (mgr.14152) 357 : cluster 0 pgmap v316: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:28.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:28 smithi050 bash[22081]: cluster 2024-03-30T14:02:26.969641+0000 mgr.a (mgr.14152) 357 : cluster 0 pgmap v316: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:28.476 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:28 smithi136 bash[22230]: cluster 2024-03-30T14:02:26.969641+0000 mgr.a (mgr.14152) 357 : cluster 0 pgmap v316: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:30.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:30 smithi026 bash[21443]: cluster 2024-03-30T14:02:28.970057+0000 mgr.a (mgr.14152) 358 : cluster 0 pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:30.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:30 smithi050 bash[22081]: cluster 2024-03-30T14:02:28.970057+0000 mgr.a (mgr.14152) 358 : cluster 0 pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:30.476 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:30 smithi136 bash[22230]: cluster 2024-03-30T14:02:28.970057+0000 mgr.a (mgr.14152) 358 : cluster 0 pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:31.058 INFO:teuthology.orchestra.run.smithi026.stdout: 2024-03-30T14:02:31.060 INFO:teuthology.orchestra.run.smithi026.stderr:dumped all 2024-03-30T14:02:31.845 INFO:teuthology.orchestra.run.smithi026.stdout:{"pg_ready":true,"pg_map":{"version":318,"stamp":"2024-03-30T14:02:30.970258+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":182924,"kb_used_data":4140,"kb_used_omap":9,"kb_used_meta":178678,"kb_avail":562287988,"statfs":{"total":575970213888,"available":575782899712,"internally_reserved":0,"allocated":4239360,"data_stored":2732460,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9568,"internal_metadata":182966944},"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.003005"},"pg_stats":[{"pgid":"1.0","version":"21'137","reported_seq":263,"reported_epoch":45,"state":"active+clean","last_fresh":"2024-03-30T14:00:43.136575+0000","last_change":"2024-03-30T14:00:43.135747+0000","last_active":"2024-03-30T14:00:43.136575+0000","last_peered":"2024-03-30T14:00:43.136575+0000","last_clean":"2024-03-30T14:00:43.136575+0000","last_became_active":"2024-03-30T14:00:43.134485+0000","last_became_peered":"2024-03-30T14:00:43.134485+0000","last_unstale":"2024-03-30T14:00:43.136575+0000","last_undegraded":"2024-03-30T14:00:43.136575+0000","last_fullsized":"2024-03-30T14:00:43.136575+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-03-30T13:58:10.138325+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-03-30T13:58:10.138325+0000","last_clean_scrub_stamp":"2024-03-30T13:58:10.138325+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-04-01T01:00:50.968021+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":176093659162,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":32164,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93712988,"statfs":{"total":95995035648,"available":95962099712,"internally_reserved":0,"allocated":1003520,"data_stored":750594,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,1,2,3,4],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":33,"seq":141733920804,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27428,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717724,"statfs":{"total":95995035648,"available":95966949376,"internally_reserved":0,"allocated":409600,"data_stored":160226,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":25,"seq":107374182446,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":32168,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93712984,"statfs":{"total":95995035648,"available":95962095616,"internally_reserved":0,"allocated":1003520,"data_stored":750594,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":31914439},"hb_peers":[0,1,2,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":18,"seq":77309411383,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":32160,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93712992,"statfs":{"total":95995035648,"available":95962103808,"internally_reserved":0,"allocated":1003520,"data_stored":750594,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":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":31584,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713568,"statfs":{"total":95995035648,"available":95962693632,"internally_reserved":0,"allocated":409600,"data_stored":160226,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[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":[]},{"osd":1,"up_from":13,"seq":55834574915,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27420,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717732,"statfs":{"total":95995035648,"available":95966957568,"internally_reserved":0,"allocated":409600,"data_stored":160226,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[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":[]}],"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-03-30T14:02:31.846 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-03-30T14:02:31.846 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-03-30T14:02:31.846 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-03-30T14:02:31.846 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- ceph health --format=json 2024-03-30T14:02:32.104 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:32 smithi026 bash[21443]: cluster 2024-03-30T14:02:30.970528+0000 mgr.a (mgr.14152) 359 : cluster 0 pgmap v318: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:32.104 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:32 smithi026 bash[21443]: audit 2024-03-30T14:02:31.066732+0000 mgr.a (mgr.14152) 360 : audit 0 from='client.14454 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-30T14:02:32.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:32 smithi050 bash[22081]: cluster 2024-03-30T14:02:30.970528+0000 mgr.a (mgr.14152) 359 : cluster 0 pgmap v318: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:32.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:32 smithi050 bash[22081]: audit 2024-03-30T14:02:31.066732+0000 mgr.a (mgr.14152) 360 : audit 0 from='client.14454 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-30T14:02:32.476 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:32 smithi136 bash[22230]: cluster 2024-03-30T14:02:30.970528+0000 mgr.a (mgr.14152) 359 : cluster 0 pgmap v318: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:32.476 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:32 smithi136 bash[22230]: audit 2024-03-30T14:02:31.066732+0000 mgr.a (mgr.14152) 360 : audit 0 from='client.14454 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-30T14:02:34.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:34 smithi026 bash[21443]: cluster 2024-03-30T14:02:32.971070+0000 mgr.a (mgr.14152) 361 : cluster 0 pgmap v319: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:34.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:34 smithi050 bash[22081]: cluster 2024-03-30T14:02:32.971070+0000 mgr.a (mgr.14152) 361 : cluster 0 pgmap v319: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:34.476 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:34 smithi136 bash[22230]: cluster 2024-03-30T14:02:32.971070+0000 mgr.a (mgr.14152) 361 : cluster 0 pgmap v319: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:36.226 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:36 smithi136 bash[22230]: cluster 2024-03-30T14:02:34.971633+0000 mgr.a (mgr.14152) 362 : cluster 0 pgmap v320: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:36.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:36 smithi026 bash[21443]: cluster 2024-03-30T14:02:34.971633+0000 mgr.a (mgr.14152) 362 : cluster 0 pgmap v320: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:36.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:36 smithi050 bash[22081]: cluster 2024-03-30T14:02:34.971633+0000 mgr.a (mgr.14152) 362 : cluster 0 pgmap v320: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:36.577 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T14:02:38.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:38 smithi026 bash[21443]: cluster 2024-03-30T14:02:36.972187+0000 mgr.a (mgr.14152) 363 : cluster 0 pgmap v321: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:38.367 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:38 smithi136 bash[22230]: cluster 2024-03-30T14:02:36.972187+0000 mgr.a (mgr.14152) 363 : cluster 0 pgmap v321: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:38.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:38 smithi050 bash[22081]: cluster 2024-03-30T14:02:36.972187+0000 mgr.a (mgr.14152) 363 : cluster 0 pgmap v321: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:40.183 INFO:teuthology.orchestra.run.smithi026.stdout: 2024-03-30T14:02:40.184 INFO:teuthology.orchestra.run.smithi026.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-03-30T14:02:40.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:40 smithi026 bash[21443]: cluster 2024-03-30T14:02:38.972774+0000 mgr.a (mgr.14152) 364 : cluster 0 pgmap v322: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:40.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:40 smithi050 bash[22081]: cluster 2024-03-30T14:02:38.972774+0000 mgr.a (mgr.14152) 364 : cluster 0 pgmap v322: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:40.476 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:40 smithi136 bash[22230]: cluster 2024-03-30T14:02:38.972774+0000 mgr.a (mgr.14152) 364 : cluster 0 pgmap v322: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:41.245 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-03-30T14:02:41.245 INFO:tasks.cephadm:Setup complete, yielding 2024-03-30T14:02:41.245 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-03-30T14:02:41.257 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi026.front.sepia.ceph.com 2024-03-30T14:02:41.258 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:4e50bbcdd1630c7760b708f3a5b4d38a121e66cb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 -- bash -c 'set -ex 2024-03-30T14:02:41.258 DEBUG:teuthology.orchestra.run.smithi026:> HOSTNAMES=$(ceph orch host ls --format json | jq -r '"'"'.[] | .hostname'"'"') 2024-03-30T14:02:41.258 DEBUG:teuthology.orchestra.run.smithi026:> for host in $HOSTNAMES; do 2024-03-30T14:02:41.258 DEBUG:teuthology.orchestra.run.smithi026:> # find the hostname for "host.c" which will have no mgr 2024-03-30T14:02:41.258 DEBUG:teuthology.orchestra.run.smithi026:> HAS_MGRS=$(ceph orch ps --hostname ${host} --format json | jq '"'"'any(.daemon_type == "mgr")'"'"') 2024-03-30T14:02:41.258 DEBUG:teuthology.orchestra.run.smithi026:> if [ "$HAS_MGRS" == "false" ]; then 2024-03-30T14:02:41.258 DEBUG:teuthology.orchestra.run.smithi026:> HOST_C="${host}" 2024-03-30T14:02:41.258 DEBUG:teuthology.orchestra.run.smithi026:> fi 2024-03-30T14:02:41.258 DEBUG:teuthology.orchestra.run.smithi026:> done 2024-03-30T14:02:41.258 DEBUG:teuthology.orchestra.run.smithi026:> # One last thing to worry about before draining the host 2024-03-30T14:02:41.258 DEBUG:teuthology.orchestra.run.smithi026:> # is that the teuthology test tends to put the explicit 2024-03-30T14:02:41.258 DEBUG:teuthology.orchestra.run.smithi026:> # hostnames in the placement for the mon service. 2024-03-30T14:02:41.258 DEBUG:teuthology.orchestra.run.smithi026:> # We want to make sure we can drain without providing 2024-03-30T14:02:41.259 DEBUG:teuthology.orchestra.run.smithi026:> # --force and there is a check for the host being removed 2024-03-30T14:02:41.259 DEBUG:teuthology.orchestra.run.smithi026:> # being listed explicitly in the placements. Therefore, 2024-03-30T14:02:41.259 DEBUG:teuthology.orchestra.run.smithi026:> # we should remove it from the mon placement. 2024-03-30T14:02:41.259 DEBUG:teuthology.orchestra.run.smithi026:> ceph orch ls mon --export > mon.yaml 2024-03-30T14:02:41.259 DEBUG:teuthology.orchestra.run.smithi026:> sed /"$HOST_C"/d mon.yaml > mon_adjusted.yaml 2024-03-30T14:02:41.259 DEBUG:teuthology.orchestra.run.smithi026:> ceph orch apply -i mon_adjusted.yaml 2024-03-30T14:02:41.259 DEBUG:teuthology.orchestra.run.smithi026:> # now drain that host 2024-03-30T14:02:41.259 DEBUG:teuthology.orchestra.run.smithi026:> ceph orch host drain $HOST_C --zap-osd-devices 2024-03-30T14:02:41.259 DEBUG:teuthology.orchestra.run.smithi026:> # wait for drain to complete 2024-03-30T14:02:41.259 DEBUG:teuthology.orchestra.run.smithi026:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-03-30T14:02:41.259 DEBUG:teuthology.orchestra.run.smithi026:> while [ "$HOST_C_DAEMONS" != "No daemons reported" ]; do 2024-03-30T14:02:41.259 DEBUG:teuthology.orchestra.run.smithi026:> sleep 15 2024-03-30T14:02:41.259 DEBUG:teuthology.orchestra.run.smithi026:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-03-30T14:02:41.260 DEBUG:teuthology.orchestra.run.smithi026:> done 2024-03-30T14:02:41.260 DEBUG:teuthology.orchestra.run.smithi026:> # we want to check the ability to remove the host from 2024-03-30T14:02:41.260 DEBUG:teuthology.orchestra.run.smithi026:> # the CRUSH map, so we should first verify the host is in 2024-03-30T14:02:41.260 DEBUG:teuthology.orchestra.run.smithi026:> # the CRUSH map. 2024-03-30T14:02:41.260 DEBUG:teuthology.orchestra.run.smithi026:> ceph osd getcrushmap -o compiled-crushmap 2024-03-30T14:02:41.260 DEBUG:teuthology.orchestra.run.smithi026:> crushtool -d compiled-crushmap -o crushmap.txt 2024-03-30T14:02:41.260 DEBUG:teuthology.orchestra.run.smithi026:> CRUSH_MAP=$(cat crushmap.txt) 2024-03-30T14:02:41.260 DEBUG:teuthology.orchestra.run.smithi026:> if ! grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-03-30T14:02:41.260 DEBUG:teuthology.orchestra.run.smithi026:> printf "Expected to see $HOST_C in CRUSH map. Saw:\n\n$CRUSH_MAP" 2024-03-30T14:02:41.261 DEBUG:teuthology.orchestra.run.smithi026:> exit 1 2024-03-30T14:02:41.261 DEBUG:teuthology.orchestra.run.smithi026:> fi 2024-03-30T14:02:41.261 DEBUG:teuthology.orchestra.run.smithi026:> # If the drain was successful, we should be able to remove the 2024-03-30T14:02:41.261 DEBUG:teuthology.orchestra.run.smithi026:> # host without force with no issues. If there are still daemons 2024-03-30T14:02:41.261 DEBUG:teuthology.orchestra.run.smithi026:> # we will get a response telling us to drain the host and a 2024-03-30T14:02:41.261 DEBUG:teuthology.orchestra.run.smithi026:> # non-zero return code 2024-03-30T14:02:41.261 DEBUG:teuthology.orchestra.run.smithi026:> ceph orch host rm $HOST_C --rm-crush-entry 2024-03-30T14:02:41.261 DEBUG:teuthology.orchestra.run.smithi026:> # verify we'"'"'ve successfully removed the host from the CRUSH map 2024-03-30T14:02:41.261 DEBUG:teuthology.orchestra.run.smithi026:> sleep 30 2024-03-30T14:02:41.261 DEBUG:teuthology.orchestra.run.smithi026:> ceph osd getcrushmap -o compiled-crushmap 2024-03-30T14:02:41.261 DEBUG:teuthology.orchestra.run.smithi026:> crushtool -d compiled-crushmap -o crushmap.txt 2024-03-30T14:02:41.261 DEBUG:teuthology.orchestra.run.smithi026:> CRUSH_MAP=$(cat crushmap.txt) 2024-03-30T14:02:41.261 DEBUG:teuthology.orchestra.run.smithi026:> if grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-03-30T14:02:41.261 DEBUG:teuthology.orchestra.run.smithi026:> printf "Saw $HOST_C in CRUSH map after it should have been removed.\n\n$CRUSH_MAP" 2024-03-30T14:02:41.261 DEBUG:teuthology.orchestra.run.smithi026:> exit 1 2024-03-30T14:02:41.261 DEBUG:teuthology.orchestra.run.smithi026:> fi 2024-03-30T14:02:41.262 DEBUG:teuthology.orchestra.run.smithi026:> ' 2024-03-30T14:02:41.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:41 smithi026 bash[21443]: audit 2024-03-30T14:02:40.193099+0000 mon.a (mon.0) 901 : audit 0 from='client.? 172.21.15.26:0/744484639' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-03-30T14:02:41.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:41 smithi050 bash[22081]: audit 2024-03-30T14:02:40.193099+0000 mon.a (mon.0) 901 : audit 0 from='client.? 172.21.15.26:0/744484639' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-03-30T14:02:41.476 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:41 smithi136 bash[22230]: audit 2024-03-30T14:02:40.193099+0000 mon.a (mon.0) 901 : audit 0 from='client.? 172.21.15.26:0/744484639' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-03-30T14:02:42.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:42 smithi026 bash[21443]: cluster 2024-03-30T14:02:40.973337+0000 mgr.a (mgr.14152) 365 : cluster 0 pgmap v323: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:42.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:42 smithi050 bash[22081]: cluster 2024-03-30T14:02:40.973337+0000 mgr.a (mgr.14152) 365 : cluster 0 pgmap v323: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:42.476 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:42 smithi136 bash[22230]: cluster 2024-03-30T14:02:40.973337+0000 mgr.a (mgr.14152) 365 : cluster 0 pgmap v323: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:44.226 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:43 smithi136 bash[22230]: audit 2024-03-30T14:02:42.941450+0000 mon.a (mon.0) 902 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:44.226 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:43 smithi136 bash[22230]: audit 2024-03-30T14:02:42.945911+0000 mon.a (mon.0) 903 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:44.226 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:43 smithi136 bash[22230]: audit 2024-03-30T14:02:42.950861+0000 mon.a (mon.0) 904 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:44.226 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:43 smithi136 bash[22230]: cluster 2024-03-30T14:02:42.973696+0000 mgr.a (mgr.14152) 366 : cluster 0 pgmap v324: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:44.226 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:43 smithi136 bash[22230]: audit 2024-03-30T14:02:43.591231+0000 mon.a (mon.0) 905 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:44.226 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:43 smithi136 bash[22230]: audit 2024-03-30T14:02:43.600503+0000 mon.a (mon.0) 906 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:44.226 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:43 smithi136 bash[22230]: audit 2024-03-30T14:02:43.610633+0000 mon.a (mon.0) 907 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:44.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:43 smithi026 bash[21443]: audit 2024-03-30T14:02:42.941450+0000 mon.a (mon.0) 902 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:44.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:43 smithi026 bash[21443]: audit 2024-03-30T14:02:42.945911+0000 mon.a (mon.0) 903 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:44.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:43 smithi026 bash[21443]: audit 2024-03-30T14:02:42.950861+0000 mon.a (mon.0) 904 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:44.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:43 smithi026 bash[21443]: cluster 2024-03-30T14:02:42.973696+0000 mgr.a (mgr.14152) 366 : cluster 0 pgmap v324: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:44.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:43 smithi026 bash[21443]: audit 2024-03-30T14:02:43.591231+0000 mon.a (mon.0) 905 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:44.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:43 smithi026 bash[21443]: audit 2024-03-30T14:02:43.600503+0000 mon.a (mon.0) 906 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:44.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:43 smithi026 bash[21443]: audit 2024-03-30T14:02:43.610633+0000 mon.a (mon.0) 907 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:44.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:43 smithi050 bash[22081]: audit 2024-03-30T14:02:42.941450+0000 mon.a (mon.0) 902 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:44.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:43 smithi050 bash[22081]: audit 2024-03-30T14:02:42.945911+0000 mon.a (mon.0) 903 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:44.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:43 smithi050 bash[22081]: audit 2024-03-30T14:02:42.950861+0000 mon.a (mon.0) 904 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:44.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:43 smithi050 bash[22081]: cluster 2024-03-30T14:02:42.973696+0000 mgr.a (mgr.14152) 366 : cluster 0 pgmap v324: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:44.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:43 smithi050 bash[22081]: audit 2024-03-30T14:02:43.591231+0000 mon.a (mon.0) 905 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:44.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:43 smithi050 bash[22081]: audit 2024-03-30T14:02:43.600503+0000 mon.a (mon.0) 906 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:44.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:43 smithi050 bash[22081]: audit 2024-03-30T14:02:43.610633+0000 mon.a (mon.0) 907 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:45.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:45 smithi050 bash[22081]: audit 2024-03-30T14:02:44.565634+0000 mon.a (mon.0) 908 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:45.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:45 smithi050 bash[22081]: audit 2024-03-30T14:02:44.573816+0000 mon.a (mon.0) 909 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:45.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:45 smithi050 bash[22081]: audit 2024-03-30T14:02:44.583699+0000 mon.a (mon.0) 910 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:45.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:45 smithi050 bash[22081]: cluster 2024-03-30T14:02:44.974222+0000 mgr.a (mgr.14152) 367 : cluster 0 pgmap v325: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:45.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:45 smithi050 bash[22081]: audit 2024-03-30T14:02:45.169978+0000 mon.a (mon.0) 911 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T14:02:45.651 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:45 smithi050 bash[22081]: audit 2024-03-30T14:02:45.175901+0000 mon.a (mon.0) 912 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:02:45.651 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:45 smithi050 bash[22081]: audit 2024-03-30T14:02:45.177740+0000 mon.a (mon.0) 913 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T14:02:45.651 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:45 smithi050 bash[22081]: audit 2024-03-30T14:02:45.188379+0000 mon.a (mon.0) 914 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:45.854 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:45 smithi026 bash[21443]: audit 2024-03-30T14:02:44.565634+0000 mon.a (mon.0) 908 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:45.855 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:45 smithi026 bash[21443]: audit 2024-03-30T14:02:44.573816+0000 mon.a (mon.0) 909 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:45.855 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:45 smithi026 bash[21443]: audit 2024-03-30T14:02:44.583699+0000 mon.a (mon.0) 910 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:45.855 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:45 smithi026 bash[21443]: cluster 2024-03-30T14:02:44.974222+0000 mgr.a (mgr.14152) 367 : cluster 0 pgmap v325: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:45.855 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:45 smithi026 bash[21443]: audit 2024-03-30T14:02:45.169978+0000 mon.a (mon.0) 911 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T14:02:45.855 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:45 smithi026 bash[21443]: audit 2024-03-30T14:02:45.175901+0000 mon.a (mon.0) 912 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:02:45.855 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:45 smithi026 bash[21443]: audit 2024-03-30T14:02:45.177740+0000 mon.a (mon.0) 913 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T14:02:45.855 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:45 smithi026 bash[21443]: audit 2024-03-30T14:02:45.188379+0000 mon.a (mon.0) 914 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:45.976 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:45 smithi136 bash[22230]: audit 2024-03-30T14:02:44.565634+0000 mon.a (mon.0) 908 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:45.976 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:45 smithi136 bash[22230]: audit 2024-03-30T14:02:44.573816+0000 mon.a (mon.0) 909 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:45.976 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:45 smithi136 bash[22230]: audit 2024-03-30T14:02:44.583699+0000 mon.a (mon.0) 910 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:45.976 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:45 smithi136 bash[22230]: cluster 2024-03-30T14:02:44.974222+0000 mgr.a (mgr.14152) 367 : cluster 0 pgmap v325: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:45.976 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:45 smithi136 bash[22230]: audit 2024-03-30T14:02:45.169978+0000 mon.a (mon.0) 911 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T14:02:45.976 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:45 smithi136 bash[22230]: audit 2024-03-30T14:02:45.175901+0000 mon.a (mon.0) 912 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:02:45.976 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:45 smithi136 bash[22230]: audit 2024-03-30T14:02:45.177740+0000 mon.a (mon.0) 913 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T14:02:45.976 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:45 smithi136 bash[22230]: audit 2024-03-30T14:02:45.188379+0000 mon.a (mon.0) 914 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:46.162 INFO:teuthology.orchestra.run.smithi026.stderr:Inferring config /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/mon.a/config 2024-03-30T14:02:48.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:48 smithi026 bash[21443]: cluster 2024-03-30T14:02:46.974730+0000 mgr.a (mgr.14152) 368 : cluster 0 pgmap v326: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:48.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:48 smithi050 bash[22081]: cluster 2024-03-30T14:02:46.974730+0000 mgr.a (mgr.14152) 368 : cluster 0 pgmap v326: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:48.475 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:48 smithi136 bash[22230]: cluster 2024-03-30T14:02:46.974730+0000 mgr.a (mgr.14152) 368 : cluster 0 pgmap v326: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:48.856 INFO:teuthology.orchestra.run.smithi026.stderr:++ ceph orch host ls --format json 2024-03-30T14:02:48.856 INFO:teuthology.orchestra.run.smithi026.stderr:++ jq -r '.[] | .hostname' 2024-03-30T14:02:49.212 INFO:teuthology.orchestra.run.smithi026.stderr:+ HOSTNAMES='smithi026 2024-03-30T14:02:49.212 INFO:teuthology.orchestra.run.smithi026.stderr:smithi050 2024-03-30T14:02:49.212 INFO:teuthology.orchestra.run.smithi026.stderr:smithi136' 2024-03-30T14:02:49.212 INFO:teuthology.orchestra.run.smithi026.stderr:+ for host in $HOSTNAMES 2024-03-30T14:02:49.212 INFO:teuthology.orchestra.run.smithi026.stderr:++ ceph orch ps --hostname smithi026 --format json 2024-03-30T14:02:49.213 INFO:teuthology.orchestra.run.smithi026.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-03-30T14:02:49.586 INFO:teuthology.orchestra.run.smithi026.stderr:+ HAS_MGRS=true 2024-03-30T14:02:49.586 INFO:teuthology.orchestra.run.smithi026.stderr:+ '[' true == false ']' 2024-03-30T14:02:49.586 INFO:teuthology.orchestra.run.smithi026.stderr:+ for host in $HOSTNAMES 2024-03-30T14:02:49.586 INFO:teuthology.orchestra.run.smithi026.stderr:++ ceph orch ps --hostname smithi050 --format json 2024-03-30T14:02:49.586 INFO:teuthology.orchestra.run.smithi026.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-03-30T14:02:49.946 INFO:teuthology.orchestra.run.smithi026.stderr:+ HAS_MGRS=true 2024-03-30T14:02:49.947 INFO:teuthology.orchestra.run.smithi026.stderr:+ '[' true == false ']' 2024-03-30T14:02:49.947 INFO:teuthology.orchestra.run.smithi026.stderr:+ for host in $HOSTNAMES 2024-03-30T14:02:49.947 INFO:teuthology.orchestra.run.smithi026.stderr:++ ceph orch ps --hostname smithi136 --format json 2024-03-30T14:02:49.947 INFO:teuthology.orchestra.run.smithi026.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-03-30T14:02:50.310 INFO:teuthology.orchestra.run.smithi026.stderr:+ HAS_MGRS=false 2024-03-30T14:02:50.311 INFO:teuthology.orchestra.run.smithi026.stderr:+ '[' false == false ']' 2024-03-30T14:02:50.311 INFO:teuthology.orchestra.run.smithi026.stderr:+ HOST_C=smithi136 2024-03-30T14:02:50.311 INFO:teuthology.orchestra.run.smithi026.stderr:+ ceph orch ls mon --export 2024-03-30T14:02:50.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:50 smithi026 bash[21443]: cluster 2024-03-30T14:02:48.975246+0000 mgr.a (mgr.14152) 369 : cluster 0 pgmap v327: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:50.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:50 smithi026 bash[21443]: audit 2024-03-30T14:02:49.207968+0000 mgr.a (mgr.14152) 370 : audit 0 from='client.14466 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-30T14:02:50.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:50 smithi050 bash[22081]: cluster 2024-03-30T14:02:48.975246+0000 mgr.a (mgr.14152) 369 : cluster 0 pgmap v327: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:50.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:50 smithi050 bash[22081]: audit 2024-03-30T14:02:49.207968+0000 mgr.a (mgr.14152) 370 : audit 0 from='client.14466 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-30T14:02:50.476 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:50 smithi136 bash[22230]: cluster 2024-03-30T14:02:48.975246+0000 mgr.a (mgr.14152) 369 : cluster 0 pgmap v327: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:50.476 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:50 smithi136 bash[22230]: audit 2024-03-30T14:02:49.207968+0000 mgr.a (mgr.14152) 370 : audit 0 from='client.14466 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-30T14:02:50.687 INFO:teuthology.orchestra.run.smithi026.stderr:+ sed /smithi136/d mon.yaml 2024-03-30T14:02:50.689 INFO:teuthology.orchestra.run.smithi026.stderr:+ ceph orch apply -i mon_adjusted.yaml 2024-03-30T14:02:51.044 INFO:teuthology.orchestra.run.smithi026.stdout:Scheduled mon update... 2024-03-30T14:02:51.058 INFO:teuthology.orchestra.run.smithi026.stderr:+ ceph orch host drain smithi136 --zap-osd-devices 2024-03-30T14:02:51.298 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:51 smithi136 bash[22230]: audit 2024-03-30T14:02:49.572999+0000 mgr.a (mgr.14152) 371 : audit 0 from='client.14472 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi026", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-30T14:02:51.298 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:51 smithi136 bash[22230]: audit 2024-03-30T14:02:49.937710+0000 mgr.a (mgr.14152) 372 : audit 0 from='client.14478 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi050", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-30T14:02:51.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:51 smithi026 bash[21443]: audit 2024-03-30T14:02:49.572999+0000 mgr.a (mgr.14152) 371 : audit 0 from='client.14472 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi026", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-30T14:02:51.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:51 smithi026 bash[21443]: audit 2024-03-30T14:02:49.937710+0000 mgr.a (mgr.14152) 372 : audit 0 from='client.14478 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi050", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-30T14:02:51.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:51 smithi050 bash[22081]: audit 2024-03-30T14:02:49.572999+0000 mgr.a (mgr.14152) 371 : audit 0 from='client.14472 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi026", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-30T14:02:51.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:51 smithi050 bash[22081]: audit 2024-03-30T14:02:49.937710+0000 mgr.a (mgr.14152) 372 : audit 0 from='client.14478 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi050", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-30T14:02:52.225 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:51 smithi136 systemd[1]: ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@mon.c.service: Deactivated successfully. 2024-03-30T14:02:53.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:53 smithi026 bash[21443]: audit 2024-03-30T14:02:50.298956+0000 mgr.a (mgr.14152) 373 : audit 0 from='client.14484 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi136", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-30T14:02:53.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:53 smithi026 bash[21443]: audit 2024-03-30T14:02:50.679515+0000 mgr.a (mgr.14152) 374 : audit 0 from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T14:02:53.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:53 smithi026 bash[21443]: cluster 2024-03-30T14:02:50.975774+0000 mgr.a (mgr.14152) 375 : cluster 0 pgmap v328: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:53.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:53 smithi026 bash[21443]: audit 2024-03-30T14:02:51.042370+0000 mgr.a (mgr.14152) 376 : audit 0 from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T14:02:53.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:53 smithi026 bash[21443]: cephadm 2024-03-30T14:02:51.049270+0000 mgr.a (mgr.14152) 377 : cephadm 1 Saving service mon spec with placement smithi026:172.21.15.26=a;smithi050:172.21.15.50=b;count:3 2024-03-30T14:02:53.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:53 smithi026 bash[21443]: cephadm 2024-03-30T14:02:51.090465+0000 mgr.a (mgr.14152) 378 : cephadm 1 Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-03-30T14:02:53.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:53 smithi026 bash[21443]: cephadm 2024-03-30T14:02:51.090581+0000 mgr.a (mgr.14152) 379 : cephadm 1 Removing monitor c from monmap... 2024-03-30T14:02:53.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:53 smithi026 bash[21443]: audit 2024-03-30T14:02:51.092007+0000 mon.a (mon.0) 923 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2024-03-30T14:02:53.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:53 smithi026 bash[21443]: audit 2024-03-30T14:02:51.094759+0000 mon.a (mon.0) 924 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-03-30T14:02:53.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:53 smithi026 bash[21443]: audit 2024-03-30T14:02:51.094988+0000 mon.a (mon.0) 925 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T14:02:53.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:53 smithi026 bash[21443]: cluster 2024-03-30T14:02:51.103597+0000 mon.b (mon.1) 16 : cluster 1 mon.b calling monitor election 2024-03-30T14:02:53.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:53 smithi026 bash[21443]: cluster 2024-03-30T14:02:53.095416+0000 mon.a (mon.0) 926 : cluster 1 mon.a calling monitor election 2024-03-30T14:02:53.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:53 smithi026 bash[21443]: cluster 2024-03-30T14:02:53.116757+0000 mon.a (mon.0) 927 : cluster 1 mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-03-30T14:02:53.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:53 smithi026 bash[21443]: cluster 2024-03-30T14:02:53.123555+0000 mon.a (mon.0) 928 : cluster 0 monmap epoch 4 2024-03-30T14:02:53.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:53 smithi026 bash[21443]: cluster 2024-03-30T14:02:53.123607+0000 mon.a (mon.0) 929 : cluster 0 fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T14:02:53.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:53 smithi026 bash[21443]: cluster 2024-03-30T14:02:53.123630+0000 mon.a (mon.0) 930 : cluster 0 last_changed 2024-03-30T14:02:51.090833+0000 2024-03-30T14:02:53.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:53 smithi026 bash[21443]: cluster 2024-03-30T14:02:53.123654+0000 mon.a (mon.0) 931 : cluster 0 created 2024-03-30T13:52:06.246947+0000 2024-03-30T14:02:53.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:53 smithi026 bash[21443]: cluster 2024-03-30T14:02:53.123678+0000 mon.a (mon.0) 932 : cluster 0 min_mon_release 19 (squid) 2024-03-30T14:02:53.607 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:53 smithi026 bash[21443]: cluster 2024-03-30T14:02:53.123707+0000 mon.a (mon.0) 933 : cluster 0 election_strategy: 1 2024-03-30T14:02:53.607 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:53 smithi026 bash[21443]: cluster 2024-03-30T14:02:53.123730+0000 mon.a (mon.0) 934 : cluster 0 0: [v2:172.21.15.26:3300/0,v1:172.21.15.26:6789/0] mon.a 2024-03-30T14:02:53.607 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:53 smithi026 bash[21443]: cluster 2024-03-30T14:02:53.123756+0000 mon.a (mon.0) 935 : cluster 0 1: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.b 2024-03-30T14:02:53.607 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:53 smithi026 bash[21443]: cluster 2024-03-30T14:02:53.141146+0000 mon.a (mon.0) 936 : cluster 0 fsmap 2024-03-30T14:02:53.607 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:53 smithi026 bash[21443]: cluster 2024-03-30T14:02:53.141203+0000 mon.a (mon.0) 937 : cluster 0 osdmap e45: 6 total, 6 up, 6 in 2024-03-30T14:02:53.607 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:53 smithi026 bash[21443]: cluster 2024-03-30T14:02:53.141993+0000 mon.a (mon.0) 938 : cluster 0 mgrmap e15: a(active, since 9m), standbys: b 2024-03-30T14:02:53.607 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:53 smithi026 bash[21443]: cluster 2024-03-30T14:02:53.142268+0000 mon.a (mon.0) 939 : cluster 1 overall HEALTH_OK 2024-03-30T14:02:53.651 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:53 smithi050 bash[22081]: audit 2024-03-30T14:02:50.298956+0000 mgr.a (mgr.14152) 373 : audit 0 from='client.14484 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi136", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-30T14:02:53.651 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:53 smithi050 bash[22081]: audit 2024-03-30T14:02:50.679515+0000 mgr.a (mgr.14152) 374 : audit 0 from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T14:02:53.651 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:53 smithi050 bash[22081]: cluster 2024-03-30T14:02:50.975774+0000 mgr.a (mgr.14152) 375 : cluster 0 pgmap v328: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:53.651 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:53 smithi050 bash[22081]: audit 2024-03-30T14:02:51.042370+0000 mgr.a (mgr.14152) 376 : audit 0 from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T14:02:53.651 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:53 smithi050 bash[22081]: cephadm 2024-03-30T14:02:51.049270+0000 mgr.a (mgr.14152) 377 : cephadm 1 Saving service mon spec with placement smithi026:172.21.15.26=a;smithi050:172.21.15.50=b;count:3 2024-03-30T14:02:53.651 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:53 smithi050 bash[22081]: cephadm 2024-03-30T14:02:51.090465+0000 mgr.a (mgr.14152) 378 : cephadm 1 Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-03-30T14:02:53.651 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:53 smithi050 bash[22081]: cephadm 2024-03-30T14:02:51.090581+0000 mgr.a (mgr.14152) 379 : cephadm 1 Removing monitor c from monmap... 2024-03-30T14:02:53.651 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:53 smithi050 bash[22081]: audit 2024-03-30T14:02:51.092007+0000 mon.a (mon.0) 923 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2024-03-30T14:02:53.651 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:53 smithi050 bash[22081]: audit 2024-03-30T14:02:51.094759+0000 mon.a (mon.0) 924 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-03-30T14:02:53.651 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:53 smithi050 bash[22081]: audit 2024-03-30T14:02:51.094988+0000 mon.a (mon.0) 925 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-03-30T14:02:53.652 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:53 smithi050 bash[22081]: cluster 2024-03-30T14:02:51.103597+0000 mon.b (mon.1) 16 : cluster 1 mon.b calling monitor election 2024-03-30T14:02:53.652 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:53 smithi050 bash[22081]: cluster 2024-03-30T14:02:53.095416+0000 mon.a (mon.0) 926 : cluster 1 mon.a calling monitor election 2024-03-30T14:02:53.652 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:53 smithi050 bash[22081]: cluster 2024-03-30T14:02:53.116757+0000 mon.a (mon.0) 927 : cluster 1 mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-03-30T14:02:53.652 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:53 smithi050 bash[22081]: cluster 2024-03-30T14:02:53.123555+0000 mon.a (mon.0) 928 : cluster 0 monmap epoch 4 2024-03-30T14:02:53.652 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:53 smithi050 bash[22081]: cluster 2024-03-30T14:02:53.123607+0000 mon.a (mon.0) 929 : cluster 0 fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T14:02:53.652 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:53 smithi050 bash[22081]: cluster 2024-03-30T14:02:53.123630+0000 mon.a (mon.0) 930 : cluster 0 last_changed 2024-03-30T14:02:51.090833+0000 2024-03-30T14:02:53.652 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:53 smithi050 bash[22081]: cluster 2024-03-30T14:02:53.123654+0000 mon.a (mon.0) 931 : cluster 0 created 2024-03-30T13:52:06.246947+0000 2024-03-30T14:02:53.652 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:53 smithi050 bash[22081]: cluster 2024-03-30T14:02:53.123678+0000 mon.a (mon.0) 932 : cluster 0 min_mon_release 19 (squid) 2024-03-30T14:02:53.652 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:53 smithi050 bash[22081]: cluster 2024-03-30T14:02:53.123707+0000 mon.a (mon.0) 933 : cluster 0 election_strategy: 1 2024-03-30T14:02:53.652 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:53 smithi050 bash[22081]: cluster 2024-03-30T14:02:53.123730+0000 mon.a (mon.0) 934 : cluster 0 0: [v2:172.21.15.26:3300/0,v1:172.21.15.26:6789/0] mon.a 2024-03-30T14:02:53.652 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:53 smithi050 bash[22081]: cluster 2024-03-30T14:02:53.123756+0000 mon.a (mon.0) 935 : cluster 0 1: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.b 2024-03-30T14:02:53.652 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:53 smithi050 bash[22081]: cluster 2024-03-30T14:02:53.141146+0000 mon.a (mon.0) 936 : cluster 0 fsmap 2024-03-30T14:02:53.653 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:53 smithi050 bash[22081]: cluster 2024-03-30T14:02:53.141203+0000 mon.a (mon.0) 937 : cluster 0 osdmap e45: 6 total, 6 up, 6 in 2024-03-30T14:02:53.653 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:53 smithi050 bash[22081]: cluster 2024-03-30T14:02:53.141993+0000 mon.a (mon.0) 938 : cluster 0 mgrmap e15: a(active, since 9m), standbys: b 2024-03-30T14:02:53.653 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:53 smithi050 bash[22081]: cluster 2024-03-30T14:02:53.142268+0000 mon.a (mon.0) 939 : cluster 1 overall HEALTH_OK 2024-03-30T14:02:54.437 INFO:teuthology.orchestra.run.smithi026.stdout:Scheduled to remove the following daemons from host 'smithi136' 2024-03-30T14:02:54.437 INFO:teuthology.orchestra.run.smithi026.stdout:type id 2024-03-30T14:02:54.437 INFO:teuthology.orchestra.run.smithi026.stdout:-------------------- --------------- 2024-03-30T14:02:54.437 INFO:teuthology.orchestra.run.smithi026.stdout:agent smithi136 2024-03-30T14:02:54.437 INFO:teuthology.orchestra.run.smithi026.stdout:mon c 2024-03-30T14:02:54.437 INFO:teuthology.orchestra.run.smithi026.stdout:osd 4 2024-03-30T14:02:54.437 INFO:teuthology.orchestra.run.smithi026.stdout:osd 5 2024-03-30T14:02:54.452 INFO:teuthology.orchestra.run.smithi026.stderr:++ ceph orch ps --hostname smithi136 2024-03-30T14:02:54.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:54 smithi026 bash[21443]: cluster 2024-03-30T14:02:52.976318+0000 mgr.a (mgr.14152) 380 : cluster 0 pgmap v329: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:54.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:54 smithi026 bash[21443]: cephadm 2024-03-30T14:02:53.144723+0000 mgr.a (mgr.14152) 381 : cephadm 1 Removing daemon mon.c from smithi136 -- ports [] 2024-03-30T14:02:54.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:54 smithi050 bash[22081]: cluster 2024-03-30T14:02:52.976318+0000 mgr.a (mgr.14152) 380 : cluster 0 pgmap v329: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:54.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:54 smithi050 bash[22081]: cephadm 2024-03-30T14:02:53.144723+0000 mgr.a (mgr.14152) 381 : cephadm 1 Removing daemon mon.c from smithi136 -- ports [] 2024-03-30T14:02:54.837 INFO:teuthology.orchestra.run.smithi026.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-03-30T14:02:54.837 INFO:teuthology.orchestra.run.smithi026.stderr:agent.smithi136 smithi136 running 11s ago 8m - - 2024-03-30T14:02:54.837 INFO:teuthology.orchestra.run.smithi026.stderr:mon.c smithi136 running (7m) 11s ago 7m 34.3M 2048M 19.0.0-1967-g4e50bbcd b0c4478f1d83 cd177c76c9fb 2024-03-30T14:02:54.837 INFO:teuthology.orchestra.run.smithi026.stderr:osd.4 smithi136 running (3m) 11s ago 3m 36.9M 19.8G 19.0.0-1967-g4e50bbcd b0c4478f1d83 5eed8811c231 2024-03-30T14:02:54.837 INFO:teuthology.orchestra.run.smithi026.stderr:osd.5 smithi136 running (2m) 11s ago 2m 43.1M 19.8G 19.0.0-1967-g4e50bbcd b0c4478f1d83 3eca6f6e7bb3 ' 2024-03-30T14:02:54.838 INFO:teuthology.orchestra.run.smithi026.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-03-30T14:02:54.838 INFO:teuthology.orchestra.run.smithi026.stderr:agent.smithi136 smithi136 running 11s ago 8m - - 2024-03-30T14:02:54.838 INFO:teuthology.orchestra.run.smithi026.stderr:mon.c smithi136 running (7m) 11s ago 7m 34.3M 2048M 19.0.0-1967-g4e50bbcd b0c4478f1d83 cd177c76c9fb 2024-03-30T14:02:54.838 INFO:teuthology.orchestra.run.smithi026.stderr:osd.4 smithi136 running (3m) 11s ago 3m 36.9M 19.8G 19.0.0-1967-g4e50bbcd b0c4478f1d83 5eed8811c231 2024-03-30T14:02:54.838 INFO:teuthology.orchestra.run.smithi026.stderr:osd.5 smithi136 running (2m) 11s ago 2m 43.1M 19.8G 19.0.0-1967-g4e50bbcd b0c4478f1d83 3eca6f6e7bb3 ' '!=' 'No daemons reported' ']' 2024-03-30T14:02:54.838 INFO:teuthology.orchestra.run.smithi026.stderr:+ sleep 15 2024-03-30T14:02:55.855 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:55 smithi026 bash[21443]: audit 2024-03-30T14:02:54.431513+0000 mgr.a (mgr.14152) 382 : audit 0 from='client.14500 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi136", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T14:02:55.855 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:55 smithi026 bash[21443]: audit 2024-03-30T14:02:54.436916+0000 mon.a (mon.0) 940 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:55.855 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:55 smithi026 bash[21443]: cephadm 2024-03-30T14:02:54.437598+0000 mgr.a (mgr.14152) 383 : cephadm 1 Added label _no_schedule to host smithi136 2024-03-30T14:02:55.855 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:55 smithi026 bash[21443]: audit 2024-03-30T14:02:54.441308+0000 mon.a (mon.0) 941 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:55.855 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:55 smithi026 bash[21443]: cephadm 2024-03-30T14:02:54.442071+0000 mgr.a (mgr.14152) 384 : cephadm 1 Added label SpecialHostLabels.DRAIN_CONF_KEYRING to host smithi136 2024-03-30T14:02:55.856 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:55 smithi026 bash[21443]: audit 2024-03-30T14:02:54.443575+0000 mon.a (mon.0) 942 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-03-30T14:02:55.856 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:55 smithi026 bash[21443]: cephadm 2024-03-30T14:02:54.444634+0000 mgr.a (mgr.14152) 385 : cephadm 1 osd.4 crush weight is 0.0872955322265625 2024-03-30T14:02:55.856 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:55 smithi026 bash[21443]: audit 2024-03-30T14:02:54.445564+0000 mon.a (mon.0) 943 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-03-30T14:02:55.856 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:55 smithi026 bash[21443]: cephadm 2024-03-30T14:02:54.446548+0000 mgr.a (mgr.14152) 386 : cephadm 1 osd.5 crush weight is 0.0872955322265625 2024-03-30T14:02:55.856 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:55 smithi026 bash[21443]: audit 2024-03-30T14:02:54.815659+0000 mgr.a (mgr.14152) 387 : audit 0 from='client.14504 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi136", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T14:02:55.856 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:55 smithi026 bash[21443]: cluster 2024-03-30T14:02:54.976843+0000 mgr.a (mgr.14152) 388 : cluster 0 pgmap v330: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:55.900 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:55 smithi050 bash[22081]: audit 2024-03-30T14:02:54.431513+0000 mgr.a (mgr.14152) 382 : audit 0 from='client.14500 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi136", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T14:02:55.900 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:55 smithi050 bash[22081]: audit 2024-03-30T14:02:54.436916+0000 mon.a (mon.0) 940 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:55.900 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:55 smithi050 bash[22081]: cephadm 2024-03-30T14:02:54.437598+0000 mgr.a (mgr.14152) 383 : cephadm 1 Added label _no_schedule to host smithi136 2024-03-30T14:02:55.900 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:55 smithi050 bash[22081]: audit 2024-03-30T14:02:54.441308+0000 mon.a (mon.0) 941 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:55.900 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:55 smithi050 bash[22081]: cephadm 2024-03-30T14:02:54.442071+0000 mgr.a (mgr.14152) 384 : cephadm 1 Added label SpecialHostLabels.DRAIN_CONF_KEYRING to host smithi136 2024-03-30T14:02:55.900 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:55 smithi050 bash[22081]: audit 2024-03-30T14:02:54.443575+0000 mon.a (mon.0) 942 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-03-30T14:02:55.901 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:55 smithi050 bash[22081]: cephadm 2024-03-30T14:02:54.444634+0000 mgr.a (mgr.14152) 385 : cephadm 1 osd.4 crush weight is 0.0872955322265625 2024-03-30T14:02:55.901 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:55 smithi050 bash[22081]: audit 2024-03-30T14:02:54.445564+0000 mon.a (mon.0) 943 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-03-30T14:02:55.901 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:55 smithi050 bash[22081]: cephadm 2024-03-30T14:02:54.446548+0000 mgr.a (mgr.14152) 386 : cephadm 1 osd.5 crush weight is 0.0872955322265625 2024-03-30T14:02:55.901 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:55 smithi050 bash[22081]: audit 2024-03-30T14:02:54.815659+0000 mgr.a (mgr.14152) 387 : audit 0 from='client.14504 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi136", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T14:02:55.901 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:55 smithi050 bash[22081]: cluster 2024-03-30T14:02:54.976843+0000 mgr.a (mgr.14152) 388 : cluster 0 pgmap v330: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:58.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:58 smithi026 bash[21443]: cluster 2024-03-30T14:02:56.977397+0000 mgr.a (mgr.14152) 389 : cluster 0 pgmap v331: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:58.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:58 smithi050 bash[22081]: cluster 2024-03-30T14:02:56.977397+0000 mgr.a (mgr.14152) 389 : cluster 0 pgmap v331: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:58.475 INFO:journalctl@ceph.mon.c.smithi136.stdout:Mar 30 14:02:58 smithi136 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T14:02:58.476 INFO:journalctl@ceph.osd.5.smithi136.stdout:Mar 30 14:02:58 smithi136 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T14:02:58.476 INFO:journalctl@ceph.osd.4.smithi136.stdout:Mar 30 14:02:58 smithi136 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T14:02:59.797 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:59 smithi026 bash[21443]: audit 2024-03-30T14:02:58.531771+0000 mon.a (mon.0) 944 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:59.797 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:59 smithi026 bash[21443]: audit 2024-03-30T14:02:58.539284+0000 mon.a (mon.0) 945 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:59.797 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:59 smithi026 bash[21443]: audit 2024-03-30T14:02:58.648609+0000 mon.a (mon.0) 946 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T14:02:59.797 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:02:59 smithi026 bash[21443]: cluster 2024-03-30T14:02:58.977903+0000 mgr.a (mgr.14152) 390 : cluster 0 pgmap v332: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:02:59.900 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:59 smithi050 bash[22081]: audit 2024-03-30T14:02:58.531771+0000 mon.a (mon.0) 944 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:59.900 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:59 smithi050 bash[22081]: audit 2024-03-30T14:02:58.539284+0000 mon.a (mon.0) 945 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:02:59.900 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:59 smithi050 bash[22081]: audit 2024-03-30T14:02:58.648609+0000 mon.a (mon.0) 946 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T14:02:59.900 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:02:59 smithi050 bash[22081]: cluster 2024-03-30T14:02:58.977903+0000 mgr.a (mgr.14152) 390 : cluster 0 pgmap v332: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:03:01.280 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:01 smithi026 bash[21443]: audit 2024-03-30T14:03:00.031052+0000 mon.a (mon.0) 947 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:01.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:01 smithi050 bash[22081]: audit 2024-03-30T14:03:00.031052+0000 mon.a (mon.0) 947 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:02.330 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:02 smithi026 bash[21443]: cluster 2024-03-30T14:03:00.978502+0000 mgr.a (mgr.14152) 391 : cluster 0 pgmap v333: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:03:02.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:02 smithi050 bash[22081]: cluster 2024-03-30T14:03:00.978502+0000 mgr.a (mgr.14152) 391 : cluster 0 pgmap v333: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:03:04.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:04 smithi050 bash[22081]: cluster 2024-03-30T14:03:02.979039+0000 mgr.a (mgr.14152) 392 : cluster 0 pgmap v334: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:03:04.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:04 smithi050 bash[22081]: audit 2024-03-30T14:03:03.150785+0000 mon.a (mon.0) 948 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:04.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:04 smithi050 bash[22081]: audit 2024-03-30T14:03:03.160218+0000 mon.a (mon.0) 949 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:04.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:04 smithi050 bash[22081]: audit 2024-03-30T14:03:03.170568+0000 mon.a (mon.0) 950 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:04.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:04 smithi050 bash[22081]: audit 2024-03-30T14:03:03.762340+0000 mon.a (mon.0) 951 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:04.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:04 smithi050 bash[22081]: audit 2024-03-30T14:03:03.771167+0000 mon.a (mon.0) 952 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:04.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:04 smithi050 bash[22081]: audit 2024-03-30T14:03:03.781417+0000 mon.a (mon.0) 953 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:04.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:04 smithi050 bash[22081]: audit 2024-03-30T14:03:03.890813+0000 mon.a (mon.0) 954 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:04.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:04 smithi050 bash[22081]: audit 2024-03-30T14:03:03.899380+0000 mon.a (mon.0) 955 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:04.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:04 smithi026 bash[21443]: cluster 2024-03-30T14:03:02.979039+0000 mgr.a (mgr.14152) 392 : cluster 0 pgmap v334: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:03:04.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:04 smithi026 bash[21443]: audit 2024-03-30T14:03:03.150785+0000 mon.a (mon.0) 948 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:04.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:04 smithi026 bash[21443]: audit 2024-03-30T14:03:03.160218+0000 mon.a (mon.0) 949 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:04.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:04 smithi026 bash[21443]: audit 2024-03-30T14:03:03.170568+0000 mon.a (mon.0) 950 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:04.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:04 smithi026 bash[21443]: audit 2024-03-30T14:03:03.762340+0000 mon.a (mon.0) 951 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:04.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:04 smithi026 bash[21443]: audit 2024-03-30T14:03:03.771167+0000 mon.a (mon.0) 952 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:04.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:04 smithi026 bash[21443]: audit 2024-03-30T14:03:03.781417+0000 mon.a (mon.0) 953 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:04.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:04 smithi026 bash[21443]: audit 2024-03-30T14:03:03.890813+0000 mon.a (mon.0) 954 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:04.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:04 smithi026 bash[21443]: audit 2024-03-30T14:03:03.899380+0000 mon.a (mon.0) 955 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:05.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:05 smithi050 bash[22081]: audit 2024-03-30T14:03:04.376827+0000 mon.a (mon.0) 956 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:05.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:05 smithi050 bash[22081]: audit 2024-03-30T14:03:04.385248+0000 mon.a (mon.0) 957 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:05.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:05 smithi050 bash[22081]: audit 2024-03-30T14:03:04.795522+0000 mon.a (mon.0) 958 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:05.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:05 smithi050 bash[22081]: audit 2024-03-30T14:03:04.804399+0000 mon.a (mon.0) 959 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:05.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:05 smithi050 bash[22081]: audit 2024-03-30T14:03:04.814778+0000 mon.a (mon.0) 960 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:05.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:05 smithi050 bash[22081]: cluster 2024-03-30T14:03:04.979584+0000 mgr.a (mgr.14152) 393 : cluster 0 pgmap v335: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:03:05.854 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:05 smithi026 bash[21443]: audit 2024-03-30T14:03:04.376827+0000 mon.a (mon.0) 956 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:05.854 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:05 smithi026 bash[21443]: audit 2024-03-30T14:03:04.385248+0000 mon.a (mon.0) 957 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:05.855 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:05 smithi026 bash[21443]: audit 2024-03-30T14:03:04.795522+0000 mon.a (mon.0) 958 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:05.855 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:05 smithi026 bash[21443]: audit 2024-03-30T14:03:04.804399+0000 mon.a (mon.0) 959 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:05.855 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:05 smithi026 bash[21443]: audit 2024-03-30T14:03:04.814778+0000 mon.a (mon.0) 960 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:05.855 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:05 smithi026 bash[21443]: cluster 2024-03-30T14:03:04.979584+0000 mgr.a (mgr.14152) 393 : cluster 0 pgmap v335: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:03:07.104 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:06 smithi026 bash[21443]: audit 2024-03-30T14:03:05.999144+0000 mon.a (mon.0) 961 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:07.104 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:06 smithi026 bash[21443]: audit 2024-03-30T14:03:06.007717+0000 mon.a (mon.0) 962 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:07.104 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:06 smithi026 bash[21443]: audit 2024-03-30T14:03:06.017964+0000 mon.a (mon.0) 963 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:07.285 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:07 smithi050 bash[22081]: audit 2024-03-30T14:03:05.999144+0000 mon.a (mon.0) 961 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:07.285 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:07 smithi050 bash[22081]: audit 2024-03-30T14:03:06.007717+0000 mon.a (mon.0) 962 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:07.286 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:07 smithi050 bash[22081]: audit 2024-03-30T14:03:06.017964+0000 mon.a (mon.0) 963 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:08.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:08 smithi026 bash[21443]: cluster 2024-03-30T14:03:06.980130+0000 mgr.a (mgr.14152) 394 : cluster 0 pgmap v336: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:03:08.399 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:08 smithi050 bash[22081]: cluster 2024-03-30T14:03:06.980130+0000 mgr.a (mgr.14152) 394 : cluster 0 pgmap v336: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:03:09.840 INFO:teuthology.orchestra.run.smithi026.stderr:++ ceph orch ps --hostname smithi136 2024-03-30T14:03:10.223 INFO:teuthology.orchestra.run.smithi026.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-03-30T14:03:10.223 INFO:teuthology.orchestra.run.smithi026.stderr:agent.smithi136 smithi136 running 4s ago 8m - - 2024-03-30T14:03:10.223 INFO:teuthology.orchestra.run.smithi026.stderr:osd.4 smithi136 running (3m) 4s ago 3m 37.3M 19.8G 19.0.0-1967-g4e50bbcd b0c4478f1d83 5eed8811c231 2024-03-30T14:03:10.223 INFO:teuthology.orchestra.run.smithi026.stderr:osd.5 smithi136 running (2m) 4s ago 2m 43.4M 19.8G 19.0.0-1967-g4e50bbcd b0c4478f1d83 3eca6f6e7bb3 ' 2024-03-30T14:03:10.224 INFO:teuthology.orchestra.run.smithi026.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-03-30T14:03:10.224 INFO:teuthology.orchestra.run.smithi026.stderr:agent.smithi136 smithi136 running 4s ago 8m - - 2024-03-30T14:03:10.224 INFO:teuthology.orchestra.run.smithi026.stderr:osd.4 smithi136 running (3m) 4s ago 3m 37.3M 19.8G 19.0.0-1967-g4e50bbcd b0c4478f1d83 5eed8811c231 2024-03-30T14:03:10.224 INFO:teuthology.orchestra.run.smithi026.stderr:osd.5 smithi136 running (2m) 4s ago 2m 43.4M 19.8G 19.0.0-1967-g4e50bbcd b0c4478f1d83 3eca6f6e7bb3 ' '!=' 'No daemons reported' ']' 2024-03-30T14:03:10.224 INFO:teuthology.orchestra.run.smithi026.stderr:+ sleep 15 2024-03-30T14:03:10.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:10 smithi026 bash[21443]: cluster 2024-03-30T14:03:08.980618+0000 mgr.a (mgr.14152) 395 : cluster 0 pgmap v337: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:03:10.399 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:10 smithi050 bash[22081]: cluster 2024-03-30T14:03:08.980618+0000 mgr.a (mgr.14152) 395 : cluster 0 pgmap v337: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:03:11.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:11 smithi026 bash[21443]: audit 2024-03-30T14:03:10.207307+0000 mgr.a (mgr.14152) 396 : audit 0 from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi136", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T14:03:11.399 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:11 smithi050 bash[22081]: audit 2024-03-30T14:03:10.207307+0000 mgr.a (mgr.14152) 396 : audit 0 from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi136", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T14:03:12.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:12 smithi026 bash[21443]: cluster 2024-03-30T14:03:10.981183+0000 mgr.a (mgr.14152) 397 : cluster 0 pgmap v338: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:03:12.399 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:12 smithi050 bash[22081]: cluster 2024-03-30T14:03:10.981183+0000 mgr.a (mgr.14152) 397 : cluster 0 pgmap v338: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:03:14.105 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:13 smithi026 bash[21443]: cephadm 2024-03-30T14:03:12.727405+0000 mgr.a (mgr.14152) 398 : cephadm 1 Detected new or changed devices on smithi136 2024-03-30T14:03:14.105 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:13 smithi026 bash[21443]: audit 2024-03-30T14:03:12.736115+0000 mon.a (mon.0) 964 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:14.105 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:13 smithi026 bash[21443]: audit 2024-03-30T14:03:12.744626+0000 mon.a (mon.0) 965 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:14.105 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:13 smithi026 bash[21443]: audit 2024-03-30T14:03:12.746425+0000 mon.a (mon.0) 966 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:03:14.105 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:13 smithi026 bash[21443]: audit 2024-03-30T14:03:12.748519+0000 mon.a (mon.0) 967 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T14:03:14.105 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:13 smithi026 bash[21443]: cephadm 2024-03-30T14:03:12.751198+0000 mgr.a (mgr.14152) 399 : cephadm 1 Updating smithi026:/etc/ceph/ceph.conf 2024-03-30T14:03:14.105 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:13 smithi026 bash[21443]: cephadm 2024-03-30T14:03:12.752120+0000 mgr.a (mgr.14152) 400 : cephadm 1 Updating smithi050:/etc/ceph/ceph.conf 2024-03-30T14:03:14.105 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:13 smithi026 bash[21443]: cephadm 2024-03-30T14:03:12.753427+0000 mgr.a (mgr.14152) 401 : cephadm 1 Removing smithi136:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-03-30T14:03:14.105 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:13 smithi026 bash[21443]: cephadm 2024-03-30T14:03:12.870133+0000 mgr.a (mgr.14152) 402 : cephadm 1 Removing smithi136:/etc/ceph/ceph.client.admin.keyring 2024-03-30T14:03:14.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:13 smithi026 bash[21443]: cephadm 2024-03-30T14:03:12.936089+0000 mgr.a (mgr.14152) 403 : cephadm 1 Removing smithi136:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.client.admin.keyring 2024-03-30T14:03:14.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:13 smithi026 bash[21443]: cluster 2024-03-30T14:03:12.981583+0000 mgr.a (mgr.14152) 404 : cluster 0 pgmap v339: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:03:14.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:13 smithi026 bash[21443]: audit 2024-03-30T14:03:13.007336+0000 mon.a (mon.0) 968 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:14.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:13 smithi026 bash[21443]: audit 2024-03-30T14:03:13.012746+0000 mon.a (mon.0) 969 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:14.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:13 smithi026 bash[21443]: cephadm 2024-03-30T14:03:13.071163+0000 mgr.a (mgr.14152) 405 : cephadm 1 Updating smithi050:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-03-30T14:03:14.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:13 smithi026 bash[21443]: cephadm 2024-03-30T14:03:13.071386+0000 mgr.a (mgr.14152) 406 : cephadm 1 Updating smithi026:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-03-30T14:03:14.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:13 smithi026 bash[21443]: audit 2024-03-30T14:03:13.242982+0000 mon.a (mon.0) 970 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:14.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:13 smithi026 bash[21443]: audit 2024-03-30T14:03:13.248222+0000 mon.a (mon.0) 971 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:14.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:13 smithi026 bash[21443]: audit 2024-03-30T14:03:13.253077+0000 mon.a (mon.0) 972 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:14.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:13 smithi026 bash[21443]: audit 2024-03-30T14:03:13.257844+0000 mon.a (mon.0) 973 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:14.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:13 smithi026 bash[21443]: audit 2024-03-30T14:03:13.260021+0000 mon.a (mon.0) 974 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-03-30T14:03:14.106 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:13 smithi026 bash[21443]: audit 2024-03-30T14:03:13.261637+0000 mon.a (mon.0) 975 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-03-30T14:03:14.107 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:13 smithi026 bash[21443]: audit 2024-03-30T14:03:13.263320+0000 mon.a (mon.0) 976 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-03-30T14:03:14.107 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:13 smithi026 bash[21443]: audit 2024-03-30T14:03:13.264838+0000 mon.a (mon.0) 977 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-03-30T14:03:14.150 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:13 smithi050 bash[22081]: cephadm 2024-03-30T14:03:12.727405+0000 mgr.a (mgr.14152) 398 : cephadm 1 Detected new or changed devices on smithi136 2024-03-30T14:03:14.150 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:13 smithi050 bash[22081]: audit 2024-03-30T14:03:12.736115+0000 mon.a (mon.0) 964 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:14.150 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:13 smithi050 bash[22081]: audit 2024-03-30T14:03:12.744626+0000 mon.a (mon.0) 965 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:14.151 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:13 smithi050 bash[22081]: audit 2024-03-30T14:03:12.746425+0000 mon.a (mon.0) 966 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:03:14.151 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:13 smithi050 bash[22081]: audit 2024-03-30T14:03:12.748519+0000 mon.a (mon.0) 967 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T14:03:14.151 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:13 smithi050 bash[22081]: cephadm 2024-03-30T14:03:12.751198+0000 mgr.a (mgr.14152) 399 : cephadm 1 Updating smithi026:/etc/ceph/ceph.conf 2024-03-30T14:03:14.151 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:13 smithi050 bash[22081]: cephadm 2024-03-30T14:03:12.752120+0000 mgr.a (mgr.14152) 400 : cephadm 1 Updating smithi050:/etc/ceph/ceph.conf 2024-03-30T14:03:14.151 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:13 smithi050 bash[22081]: cephadm 2024-03-30T14:03:12.753427+0000 mgr.a (mgr.14152) 401 : cephadm 1 Removing smithi136:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-03-30T14:03:14.151 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:13 smithi050 bash[22081]: cephadm 2024-03-30T14:03:12.870133+0000 mgr.a (mgr.14152) 402 : cephadm 1 Removing smithi136:/etc/ceph/ceph.client.admin.keyring 2024-03-30T14:03:14.151 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:13 smithi050 bash[22081]: cephadm 2024-03-30T14:03:12.936089+0000 mgr.a (mgr.14152) 403 : cephadm 1 Removing smithi136:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.client.admin.keyring 2024-03-30T14:03:14.151 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:13 smithi050 bash[22081]: cluster 2024-03-30T14:03:12.981583+0000 mgr.a (mgr.14152) 404 : cluster 0 pgmap v339: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:03:14.151 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:13 smithi050 bash[22081]: audit 2024-03-30T14:03:13.007336+0000 mon.a (mon.0) 968 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:14.151 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:13 smithi050 bash[22081]: audit 2024-03-30T14:03:13.012746+0000 mon.a (mon.0) 969 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:14.151 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:13 smithi050 bash[22081]: cephadm 2024-03-30T14:03:13.071163+0000 mgr.a (mgr.14152) 405 : cephadm 1 Updating smithi050:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-03-30T14:03:14.151 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:13 smithi050 bash[22081]: cephadm 2024-03-30T14:03:13.071386+0000 mgr.a (mgr.14152) 406 : cephadm 1 Updating smithi026:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-03-30T14:03:14.151 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:13 smithi050 bash[22081]: audit 2024-03-30T14:03:13.242982+0000 mon.a (mon.0) 970 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:14.151 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:13 smithi050 bash[22081]: audit 2024-03-30T14:03:13.248222+0000 mon.a (mon.0) 971 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:14.152 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:13 smithi050 bash[22081]: audit 2024-03-30T14:03:13.253077+0000 mon.a (mon.0) 972 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:14.152 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:13 smithi050 bash[22081]: audit 2024-03-30T14:03:13.257844+0000 mon.a (mon.0) 973 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:14.152 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:13 smithi050 bash[22081]: audit 2024-03-30T14:03:13.260021+0000 mon.a (mon.0) 974 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-03-30T14:03:14.152 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:13 smithi050 bash[22081]: audit 2024-03-30T14:03:13.261637+0000 mon.a (mon.0) 975 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-03-30T14:03:14.152 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:13 smithi050 bash[22081]: audit 2024-03-30T14:03:13.263320+0000 mon.a (mon.0) 976 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-03-30T14:03:14.152 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:13 smithi050 bash[22081]: audit 2024-03-30T14:03:13.264838+0000 mon.a (mon.0) 977 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-03-30T14:03:14.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:14 smithi026 bash[21443]: debug 2024-03-30T14:03:14.265+0000 7f32f64a5700 -1 mon.a@0(leader).osd e46 definitely_dead 0 2024-03-30T14:03:15.104 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:14 smithi026 bash[21443]: audit 2024-03-30T14:03:13.260257+0000 mgr.a (mgr.14152) 407 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-03-30T14:03:15.104 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:14 smithi026 bash[21443]: audit 2024-03-30T14:03:13.261843+0000 mgr.a (mgr.14152) 408 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-03-30T14:03:15.104 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:14 smithi026 bash[21443]: audit 2024-03-30T14:03:13.263535+0000 mgr.a (mgr.14152) 409 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-03-30T14:03:15.104 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:14 smithi026 bash[21443]: audit 2024-03-30T14:03:14.258727+0000 mon.a (mon.0) 978 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-03-30T14:03:15.105 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:14 smithi026 bash[21443]: cluster 2024-03-30T14:03:14.263728+0000 mon.a (mon.0) 979 : cluster 0 osdmap e46: 6 total, 6 up, 6 in 2024-03-30T14:03:15.105 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:14 smithi026 bash[21443]: audit 2024-03-30T14:03:14.265750+0000 mon.a (mon.0) 980 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-03-30T14:03:15.105 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:14 smithi026 bash[21443]: audit 2024-03-30T14:03:14.268594+0000 mon.a (mon.0) 981 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-03-30T14:03:15.105 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:14 smithi026 bash[21443]: audit 2024-03-30T14:03:14.271022+0000 mon.a (mon.0) 982 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-03-30T14:03:15.150 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:14 smithi050 bash[22081]: audit 2024-03-30T14:03:13.260257+0000 mgr.a (mgr.14152) 407 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-03-30T14:03:15.150 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:14 smithi050 bash[22081]: audit 2024-03-30T14:03:13.261843+0000 mgr.a (mgr.14152) 408 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-03-30T14:03:15.150 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:14 smithi050 bash[22081]: audit 2024-03-30T14:03:13.263535+0000 mgr.a (mgr.14152) 409 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-03-30T14:03:15.150 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:14 smithi050 bash[22081]: audit 2024-03-30T14:03:14.258727+0000 mon.a (mon.0) 978 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-03-30T14:03:15.150 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:14 smithi050 bash[22081]: cluster 2024-03-30T14:03:14.263728+0000 mon.a (mon.0) 979 : cluster 0 osdmap e46: 6 total, 6 up, 6 in 2024-03-30T14:03:15.150 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:14 smithi050 bash[22081]: audit 2024-03-30T14:03:14.265750+0000 mon.a (mon.0) 980 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-03-30T14:03:15.150 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:14 smithi050 bash[22081]: audit 2024-03-30T14:03:14.268594+0000 mon.a (mon.0) 981 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-03-30T14:03:15.150 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:14 smithi050 bash[22081]: audit 2024-03-30T14:03:14.271022+0000 mon.a (mon.0) 982 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-03-30T14:03:15.975 INFO:journalctl@ceph.osd.4.smithi136.stdout:Mar 30 14:03:15 smithi136 systemd[1]: Stopping Ceph osd.4 for 56554a52-ee9c-11ee-b647-cb9ed24678a4... 2024-03-30T14:03:15.975 INFO:journalctl@ceph.osd.4.smithi136.stdout:Mar 30 14:03:15 smithi136 bash[28742]: debug 2024-03-30T14:03:15.819+0000 7f6931715700 -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-03-30T14:03:15.975 INFO:journalctl@ceph.osd.4.smithi136.stdout:Mar 30 14:03:15 smithi136 bash[28742]: debug 2024-03-30T14:03:15.819+0000 7f6931715700 -1 osd.4 45 *** Got signal Terminated *** 2024-03-30T14:03:15.976 INFO:journalctl@ceph.osd.4.smithi136.stdout:Mar 30 14:03:15 smithi136 bash[28742]: debug 2024-03-30T14:03:15.819+0000 7f6931715700 -1 osd.4 45 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-03-30T14:03:16.104 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:15 smithi026 bash[21443]: cephadm 2024-03-30T14:03:14.264881+0000 mgr.a (mgr.14152) 410 : cephadm 1 osd.5 weight is now 0.0 2024-03-30T14:03:16.104 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:15 smithi026 bash[21443]: audit 2024-03-30T14:03:14.266144+0000 mgr.a (mgr.14152) 411 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-03-30T14:03:16.104 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:15 smithi026 bash[21443]: audit 2024-03-30T14:03:14.268943+0000 mgr.a (mgr.14152) 412 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-03-30T14:03:16.104 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:15 smithi026 bash[21443]: cluster 2024-03-30T14:03:14.982137+0000 mgr.a (mgr.14152) 413 : cluster 0 pgmap v341: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:03:16.105 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:15 smithi026 bash[21443]: cluster 2024-03-30T14:03:15.259090+0000 mon.a (mon.0) 983 : cluster 3 Health check failed: 1 osds down (OSD_DOWN) 2024-03-30T14:03:16.105 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:15 smithi026 bash[21443]: audit 2024-03-30T14:03:15.261183+0000 mon.a (mon.0) 984 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-03-30T14:03:16.105 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:15 smithi026 bash[21443]: cluster 2024-03-30T14:03:15.266364+0000 mon.a (mon.0) 985 : cluster 0 osdmap e47: 6 total, 5 up, 6 in 2024-03-30T14:03:16.150 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:15 smithi050 bash[22081]: cephadm 2024-03-30T14:03:14.264881+0000 mgr.a (mgr.14152) 410 : cephadm 1 osd.5 weight is now 0.0 2024-03-30T14:03:16.150 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:15 smithi050 bash[22081]: audit 2024-03-30T14:03:14.266144+0000 mgr.a (mgr.14152) 411 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-03-30T14:03:16.150 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:15 smithi050 bash[22081]: audit 2024-03-30T14:03:14.268943+0000 mgr.a (mgr.14152) 412 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-03-30T14:03:16.150 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:15 smithi050 bash[22081]: cluster 2024-03-30T14:03:14.982137+0000 mgr.a (mgr.14152) 413 : cluster 0 pgmap v341: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:03:16.150 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:15 smithi050 bash[22081]: cluster 2024-03-30T14:03:15.259090+0000 mon.a (mon.0) 983 : cluster 3 Health check failed: 1 osds down (OSD_DOWN) 2024-03-30T14:03:16.150 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:15 smithi050 bash[22081]: audit 2024-03-30T14:03:15.261183+0000 mon.a (mon.0) 984 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-03-30T14:03:16.150 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:15 smithi050 bash[22081]: cluster 2024-03-30T14:03:15.266364+0000 mon.a (mon.0) 985 : cluster 0 osdmap e47: 6 total, 5 up, 6 in 2024-03-30T14:03:17.104 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:16 smithi026 bash[21443]: cephadm 2024-03-30T14:03:15.268548+0000 mgr.a (mgr.14152) 414 : cephadm 1 osd.4 now down 2024-03-30T14:03:17.104 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:16 smithi026 bash[21443]: cephadm 2024-03-30T14:03:15.269050+0000 mgr.a (mgr.14152) 415 : cephadm 1 Removing daemon osd.4 from smithi136 -- ports [] 2024-03-30T14:03:17.104 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:16 smithi026 bash[21443]: cluster 2024-03-30T14:03:16.268391+0000 mon.a (mon.0) 986 : cluster 0 osdmap e48: 6 total, 5 up, 6 in 2024-03-30T14:03:17.149 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:16 smithi050 bash[22081]: cephadm 2024-03-30T14:03:15.268548+0000 mgr.a (mgr.14152) 414 : cephadm 1 osd.4 now down 2024-03-30T14:03:17.149 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:16 smithi050 bash[22081]: cephadm 2024-03-30T14:03:15.269050+0000 mgr.a (mgr.14152) 415 : cephadm 1 Removing daemon osd.4 from smithi136 -- ports [] 2024-03-30T14:03:17.149 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:16 smithi050 bash[22081]: cluster 2024-03-30T14:03:16.268391+0000 mon.a (mon.0) 986 : cluster 0 osdmap e48: 6 total, 5 up, 6 in 2024-03-30T14:03:17.225 INFO:journalctl@ceph.osd.4.smithi136.stdout:Mar 30 14:03:16 smithi136 bash[38148]: ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4-osd-4 2024-03-30T14:03:17.725 INFO:journalctl@ceph.osd.4.smithi136.stdout:Mar 30 14:03:17 smithi136 bash[38222]: Error response from daemon: No such container: ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4-osd-4 2024-03-30T14:03:18.104 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:17 smithi026 bash[21443]: cluster 2024-03-30T14:03:16.982697+0000 mgr.a (mgr.14152) 416 : cluster 0 pgmap v344: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:03:18.104 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:17 smithi026 bash[21443]: cluster 2024-03-30T14:03:17.270833+0000 mon.a (mon.0) 987 : cluster 0 osdmap e49: 6 total, 5 up, 6 in 2024-03-30T14:03:18.149 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:17 smithi050 bash[22081]: cluster 2024-03-30T14:03:16.982697+0000 mgr.a (mgr.14152) 416 : cluster 0 pgmap v344: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:03:18.150 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:17 smithi050 bash[22081]: cluster 2024-03-30T14:03:17.270833+0000 mon.a (mon.0) 987 : cluster 0 osdmap e49: 6 total, 5 up, 6 in 2024-03-30T14:03:19.475 INFO:journalctl@ceph.osd.5.smithi136.stdout:Mar 30 14:03:19 smithi136 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T14:03:19.475 INFO:journalctl@ceph.osd.4.smithi136.stdout:Mar 30 14:03:19 smithi136 systemd[1]: ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@osd.4.service: Deactivated successfully. 2024-03-30T14:03:19.475 INFO:journalctl@ceph.osd.4.smithi136.stdout:Mar 30 14:03:19 smithi136 systemd[1]: Stopped Ceph osd.4 for 56554a52-ee9c-11ee-b647-cb9ed24678a4. 2024-03-30T14:03:19.475 INFO:journalctl@ceph.osd.4.smithi136.stdout:Mar 30 14:03:19 smithi136 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T14:03:20.269 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:20 smithi026 bash[21443]: cluster 2024-03-30T14:03:18.983382+0000 mgr.a (mgr.14152) 417 : cluster 0 pgmap v346: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:03:20.269 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:20 smithi026 bash[21443]: audit 2024-03-30T14:03:19.497645+0000 mon.a (mon.0) 988 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-03-30T14:03:20.269 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:20 smithi026 bash[21443]: audit 2024-03-30T14:03:19.500603+0000 mon.a (mon.0) 989 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-03-30T14:03:20.269 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:20 smithi026 bash[21443]: audit 2024-03-30T14:03:19.506753+0000 mon.a (mon.0) 990 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-03-30T14:03:20.269 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:20 smithi026 bash[21443]: cluster 2024-03-30T14:03:19.508342+0000 mon.a (mon.0) 991 : cluster 1 Health check cleared: OSD_DOWN (was: 1 osds down) 2024-03-30T14:03:20.269 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:20 smithi026 bash[21443]: cluster 2024-03-30T14:03:19.508410+0000 mon.a (mon.0) 992 : cluster 1 Cluster is now healthy 2024-03-30T14:03:20.269 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:20 smithi026 bash[21443]: audit 2024-03-30T14:03:19.510405+0000 mon.a (mon.0) 993 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-03-30T14:03:20.269 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:20 smithi026 bash[21443]: cluster 2024-03-30T14:03:19.515409+0000 mon.a (mon.0) 994 : cluster 0 osdmap e50: 5 total, 5 up, 5 in 2024-03-30T14:03:20.399 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:20 smithi050 bash[22081]: cluster 2024-03-30T14:03:18.983382+0000 mgr.a (mgr.14152) 417 : cluster 0 pgmap v346: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-03-30T14:03:20.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:20 smithi050 bash[22081]: audit 2024-03-30T14:03:19.497645+0000 mon.a (mon.0) 988 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-03-30T14:03:20.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:20 smithi050 bash[22081]: audit 2024-03-30T14:03:19.500603+0000 mon.a (mon.0) 989 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-03-30T14:03:20.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:20 smithi050 bash[22081]: audit 2024-03-30T14:03:19.506753+0000 mon.a (mon.0) 990 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-03-30T14:03:20.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:20 smithi050 bash[22081]: cluster 2024-03-30T14:03:19.508342+0000 mon.a (mon.0) 991 : cluster 1 Health check cleared: OSD_DOWN (was: 1 osds down) 2024-03-30T14:03:20.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:20 smithi050 bash[22081]: cluster 2024-03-30T14:03:19.508410+0000 mon.a (mon.0) 992 : cluster 1 Cluster is now healthy 2024-03-30T14:03:20.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:20 smithi050 bash[22081]: audit 2024-03-30T14:03:19.510405+0000 mon.a (mon.0) 993 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-03-30T14:03:20.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:20 smithi050 bash[22081]: cluster 2024-03-30T14:03:19.515409+0000 mon.a (mon.0) 994 : cluster 0 osdmap e50: 5 total, 5 up, 5 in 2024-03-30T14:03:21.104 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:21 smithi026 bash[21443]: cephadm 2024-03-30T14:03:19.496888+0000 mgr.a (mgr.14152) 418 : cephadm 1 Removing key for osd.4 2024-03-30T14:03:21.104 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:21 smithi026 bash[21443]: cephadm 2024-03-30T14:03:19.506066+0000 mgr.a (mgr.14152) 419 : cephadm 1 Successfully removed osd.4 on smithi136 2024-03-30T14:03:21.104 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:21 smithi026 bash[21443]: cephadm 2024-03-30T14:03:19.516882+0000 mgr.a (mgr.14152) 420 : cephadm 1 Successfully purged osd.4 on smithi136 2024-03-30T14:03:21.104 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:21 smithi026 bash[21443]: cephadm 2024-03-30T14:03:19.517101+0000 mgr.a (mgr.14152) 421 : cephadm 1 Zapping devices for osd.4 on smithi136 2024-03-30T14:03:21.104 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:21 smithi026 bash[21443]: cluster 2024-03-30T14:03:20.517715+0000 mon.a (mon.0) 995 : cluster 0 osdmap e51: 5 total, 5 up, 5 in 2024-03-30T14:03:21.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:21 smithi050 bash[22081]: cephadm 2024-03-30T14:03:19.496888+0000 mgr.a (mgr.14152) 418 : cephadm 1 Removing key for osd.4 2024-03-30T14:03:21.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:21 smithi050 bash[22081]: cephadm 2024-03-30T14:03:19.506066+0000 mgr.a (mgr.14152) 419 : cephadm 1 Successfully removed osd.4 on smithi136 2024-03-30T14:03:21.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:21 smithi050 bash[22081]: cephadm 2024-03-30T14:03:19.516882+0000 mgr.a (mgr.14152) 420 : cephadm 1 Successfully purged osd.4 on smithi136 2024-03-30T14:03:21.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:21 smithi050 bash[22081]: cephadm 2024-03-30T14:03:19.517101+0000 mgr.a (mgr.14152) 421 : cephadm 1 Zapping devices for osd.4 on smithi136 2024-03-30T14:03:21.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:21 smithi050 bash[22081]: cluster 2024-03-30T14:03:20.517715+0000 mon.a (mon.0) 995 : cluster 0 osdmap e51: 5 total, 5 up, 5 in 2024-03-30T14:03:22.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:22 smithi026 bash[21443]: cluster 2024-03-30T14:03:20.983997+0000 mgr.a (mgr.14152) 422 : cluster 0 pgmap v349: 1 pgs: 1 remapped+peering; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:03:22.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:22 smithi026 bash[21443]: cluster 2024-03-30T14:03:21.522048+0000 mon.a (mon.0) 996 : cluster 0 osdmap e52: 5 total, 5 up, 5 in 2024-03-30T14:03:22.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:22 smithi050 bash[22081]: cluster 2024-03-30T14:03:20.983997+0000 mgr.a (mgr.14152) 422 : cluster 0 pgmap v349: 1 pgs: 1 remapped+peering; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:03:22.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:22 smithi050 bash[22081]: cluster 2024-03-30T14:03:21.522048+0000 mon.a (mon.0) 996 : cluster 0 osdmap e52: 5 total, 5 up, 5 in 2024-03-30T14:03:23.399 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:23 smithi050 bash[22081]: cluster 2024-03-30T14:03:22.157078+0000 mon.a (mon.0) 997 : cluster 0 osdmap e53: 5 total, 5 up, 5 in 2024-03-30T14:03:23.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:23 smithi026 bash[21443]: cluster 2024-03-30T14:03:22.157078+0000 mon.a (mon.0) 997 : cluster 0 osdmap e53: 5 total, 5 up, 5 in 2024-03-30T14:03:24.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:24 smithi050 bash[22081]: cluster 2024-03-30T14:03:22.984547+0000 mgr.a (mgr.14152) 423 : cluster 0 pgmap v352: 1 pgs: 1 remapped+peering; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:03:24.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:24 smithi050 bash[22081]: cluster 2024-03-30T14:03:23.167194+0000 mon.a (mon.0) 998 : cluster 0 osdmap e54: 5 total, 5 up, 5 in 2024-03-30T14:03:24.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:24 smithi050 bash[22081]: audit 2024-03-30T14:03:23.389156+0000 mon.a (mon.0) 999 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:24.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:24 smithi050 bash[22081]: audit 2024-03-30T14:03:23.398764+0000 mon.a (mon.0) 1000 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:24.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:24 smithi050 bash[22081]: audit 2024-03-30T14:03:23.409459+0000 mon.a (mon.0) 1001 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:24.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:24 smithi026 bash[21443]: cluster 2024-03-30T14:03:22.984547+0000 mgr.a (mgr.14152) 423 : cluster 0 pgmap v352: 1 pgs: 1 remapped+peering; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail 2024-03-30T14:03:24.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:24 smithi026 bash[21443]: cluster 2024-03-30T14:03:23.167194+0000 mon.a (mon.0) 998 : cluster 0 osdmap e54: 5 total, 5 up, 5 in 2024-03-30T14:03:24.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:24 smithi026 bash[21443]: audit 2024-03-30T14:03:23.389156+0000 mon.a (mon.0) 999 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:24.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:24 smithi026 bash[21443]: audit 2024-03-30T14:03:23.398764+0000 mon.a (mon.0) 1000 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:24.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:24 smithi026 bash[21443]: audit 2024-03-30T14:03:23.409459+0000 mon.a (mon.0) 1001 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:25.226 INFO:teuthology.orchestra.run.smithi026.stderr:++ ceph orch ps --hostname smithi136 2024-03-30T14:03:25.602 INFO:teuthology.orchestra.run.smithi026.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-03-30T14:03:25.603 INFO:teuthology.orchestra.run.smithi026.stderr:agent.smithi136 smithi136 running 19s ago 8m - - 2024-03-30T14:03:25.603 INFO:teuthology.orchestra.run.smithi026.stderr:osd.5 smithi136 running (2m) 19s ago 2m 43.4M 19.8G 19.0.0-1967-g4e50bbcd b0c4478f1d83 3eca6f6e7bb3 ' 2024-03-30T14:03:25.603 INFO:teuthology.orchestra.run.smithi026.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-03-30T14:03:25.603 INFO:teuthology.orchestra.run.smithi026.stderr:agent.smithi136 smithi136 running 19s ago 8m - - 2024-03-30T14:03:25.603 INFO:teuthology.orchestra.run.smithi026.stderr:osd.5 smithi136 running (2m) 19s ago 2m 43.4M 19.8G 19.0.0-1967-g4e50bbcd b0c4478f1d83 3eca6f6e7bb3 ' '!=' 'No daemons reported' ']' 2024-03-30T14:03:25.603 INFO:teuthology.orchestra.run.smithi026.stderr:+ sleep 15 2024-03-30T14:03:26.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:25 smithi026 bash[21443]: audit 2024-03-30T14:03:24.976390+0000 mon.a (mon.0) 1002 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:26.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:25 smithi026 bash[21443]: audit 2024-03-30T14:03:24.981562+0000 mon.a (mon.0) 1003 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:26.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:25 smithi026 bash[21443]: cluster 2024-03-30T14:03:24.984881+0000 mgr.a (mgr.14152) 424 : cluster 0 pgmap v354: 1 pgs: 1 active+clean; 577 KiB data, 153 MiB used, 447 GiB / 447 GiB avail; 129 KiB/s, 0 objects/s recovering 2024-03-30T14:03:26.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:25 smithi026 bash[21443]: audit 2024-03-30T14:03:24.987704+0000 mon.a (mon.0) 1004 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:26.399 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:25 smithi050 bash[22081]: audit 2024-03-30T14:03:24.976390+0000 mon.a (mon.0) 1002 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:26.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:25 smithi050 bash[22081]: audit 2024-03-30T14:03:24.981562+0000 mon.a (mon.0) 1003 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:26.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:25 smithi050 bash[22081]: cluster 2024-03-30T14:03:24.984881+0000 mgr.a (mgr.14152) 424 : cluster 0 pgmap v354: 1 pgs: 1 active+clean; 577 KiB data, 153 MiB used, 447 GiB / 447 GiB avail; 129 KiB/s, 0 objects/s recovering 2024-03-30T14:03:26.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:25 smithi050 bash[22081]: audit 2024-03-30T14:03:24.987704+0000 mon.a (mon.0) 1004 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:27.399 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:27 smithi050 bash[22081]: audit 2024-03-30T14:03:25.591175+0000 mgr.a (mgr.14152) 425 : audit 0 from='client.14512 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi136", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T14:03:27.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:27 smithi050 bash[22081]: audit 2024-03-30T14:03:26.190615+0000 mon.a (mon.0) 1005 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:27.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:27 smithi050 bash[22081]: audit 2024-03-30T14:03:26.199315+0000 mon.a (mon.0) 1006 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:27.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:27 smithi050 bash[22081]: audit 2024-03-30T14:03:26.209993+0000 mon.a (mon.0) 1007 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:27.470 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:27 smithi026 bash[21443]: audit 2024-03-30T14:03:25.591175+0000 mgr.a (mgr.14152) 425 : audit 0 from='client.14512 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi136", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T14:03:27.470 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:27 smithi026 bash[21443]: audit 2024-03-30T14:03:26.190615+0000 mon.a (mon.0) 1005 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:27.471 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:27 smithi026 bash[21443]: audit 2024-03-30T14:03:26.199315+0000 mon.a (mon.0) 1006 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:27.471 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:27 smithi026 bash[21443]: audit 2024-03-30T14:03:26.209993+0000 mon.a (mon.0) 1007 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:28.336 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:28 smithi050 bash[22081]: cluster 2024-03-30T14:03:26.985358+0000 mgr.a (mgr.14152) 426 : cluster 0 pgmap v355: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-03-30T14:03:28.336 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:28 smithi050 bash[22081]: audit 2024-03-30T14:03:28.055618+0000 mon.a (mon.0) 1008 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-03-30T14:03:28.336 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:28 smithi050 bash[22081]: audit 2024-03-30T14:03:28.058594+0000 mon.a (mon.0) 1009 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-03-30T14:03:28.336 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:28 smithi050 bash[22081]: audit 2024-03-30T14:03:28.061043+0000 mon.a (mon.0) 1010 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-03-30T14:03:28.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:28 smithi026 bash[21443]: debug 2024-03-30T14:03:28.057+0000 7f32f64a5700 -1 mon.a@0(leader).osd e54 definitely_dead 0 2024-03-30T14:03:28.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:28 smithi026 bash[21443]: cluster 2024-03-30T14:03:26.985358+0000 mgr.a (mgr.14152) 426 : cluster 0 pgmap v355: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-03-30T14:03:28.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:28 smithi026 bash[21443]: audit 2024-03-30T14:03:28.055618+0000 mon.a (mon.0) 1008 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-03-30T14:03:28.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:28 smithi026 bash[21443]: audit 2024-03-30T14:03:28.058594+0000 mon.a (mon.0) 1009 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-03-30T14:03:28.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:28 smithi026 bash[21443]: audit 2024-03-30T14:03:28.061043+0000 mon.a (mon.0) 1010 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-03-30T14:03:28.975 INFO:journalctl@ceph.osd.5.smithi136.stdout:Mar 30 14:03:28 smithi136 systemd[1]: Stopping Ceph osd.5 for 56554a52-ee9c-11ee-b647-cb9ed24678a4... 2024-03-30T14:03:28.975 INFO:journalctl@ceph.osd.5.smithi136.stdout:Mar 30 14:03:28 smithi136 bash[32361]: debug 2024-03-30T14:03:28.766+0000 7f714d400700 -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-03-30T14:03:28.975 INFO:journalctl@ceph.osd.5.smithi136.stdout:Mar 30 14:03:28 smithi136 bash[32361]: debug 2024-03-30T14:03:28.766+0000 7f714d400700 -1 osd.5 54 *** Got signal Terminated *** 2024-03-30T14:03:28.975 INFO:journalctl@ceph.osd.5.smithi136.stdout:Mar 30 14:03:28 smithi136 bash[32361]: debug 2024-03-30T14:03:28.766+0000 7f714d400700 -1 osd.5 54 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-03-30T14:03:29.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:29 smithi026 bash[21443]: cephadm 2024-03-30T14:03:28.054841+0000 mgr.a (mgr.14152) 427 : cephadm 1 Successfully zapped devices for osd.4 on smithi136 2024-03-30T14:03:29.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:29 smithi026 bash[21443]: audit 2024-03-30T14:03:28.056075+0000 mgr.a (mgr.14152) 428 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-03-30T14:03:29.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:29 smithi026 bash[21443]: audit 2024-03-30T14:03:28.058969+0000 mgr.a (mgr.14152) 429 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-03-30T14:03:29.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:29 smithi026 bash[21443]: cluster 2024-03-30T14:03:28.208266+0000 mon.a (mon.0) 1011 : cluster 3 Health check failed: 1 osds down (OSD_DOWN) 2024-03-30T14:03:29.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:29 smithi026 bash[21443]: cluster 2024-03-30T14:03:28.208326+0000 mon.a (mon.0) 1012 : cluster 3 Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-03-30T14:03:29.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:29 smithi026 bash[21443]: audit 2024-03-30T14:03:28.210658+0000 mon.a (mon.0) 1013 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-03-30T14:03:29.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:29 smithi026 bash[21443]: cluster 2024-03-30T14:03:28.216673+0000 mon.a (mon.0) 1014 : cluster 0 osdmap e55: 5 total, 4 up, 5 in 2024-03-30T14:03:29.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:29 smithi026 bash[21443]: cephadm 2024-03-30T14:03:28.218243+0000 mgr.a (mgr.14152) 430 : cephadm 1 osd.5 now down 2024-03-30T14:03:29.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:29 smithi026 bash[21443]: cephadm 2024-03-30T14:03:28.218918+0000 mgr.a (mgr.14152) 431 : cephadm 1 Removing daemon osd.5 from smithi136 -- ports [] 2024-03-30T14:03:29.630 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:29 smithi050 bash[22081]: cephadm 2024-03-30T14:03:28.054841+0000 mgr.a (mgr.14152) 427 : cephadm 1 Successfully zapped devices for osd.4 on smithi136 2024-03-30T14:03:29.631 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:29 smithi050 bash[22081]: audit 2024-03-30T14:03:28.056075+0000 mgr.a (mgr.14152) 428 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-03-30T14:03:29.631 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:29 smithi050 bash[22081]: audit 2024-03-30T14:03:28.058969+0000 mgr.a (mgr.14152) 429 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-03-30T14:03:29.631 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:29 smithi050 bash[22081]: cluster 2024-03-30T14:03:28.208266+0000 mon.a (mon.0) 1011 : cluster 3 Health check failed: 1 osds down (OSD_DOWN) 2024-03-30T14:03:29.631 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:29 smithi050 bash[22081]: cluster 2024-03-30T14:03:28.208326+0000 mon.a (mon.0) 1012 : cluster 3 Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-03-30T14:03:29.631 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:29 smithi050 bash[22081]: audit 2024-03-30T14:03:28.210658+0000 mon.a (mon.0) 1013 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-03-30T14:03:29.631 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:29 smithi050 bash[22081]: cluster 2024-03-30T14:03:28.216673+0000 mon.a (mon.0) 1014 : cluster 0 osdmap e55: 5 total, 4 up, 5 in 2024-03-30T14:03:29.631 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:29 smithi050 bash[22081]: cephadm 2024-03-30T14:03:28.218243+0000 mgr.a (mgr.14152) 430 : cephadm 1 osd.5 now down 2024-03-30T14:03:29.631 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:29 smithi050 bash[22081]: cephadm 2024-03-30T14:03:28.218918+0000 mgr.a (mgr.14152) 431 : cephadm 1 Removing daemon osd.5 from smithi136 -- ports [] 2024-03-30T14:03:30.118 INFO:journalctl@ceph.osd.5.smithi136.stdout:Mar 30 14:03:29 smithi136 bash[38825]: ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4-osd-5 2024-03-30T14:03:30.118 INFO:journalctl@ceph.osd.5.smithi136.stdout:Mar 30 14:03:29 smithi136 bash[38939]: Error response from daemon: No such container: ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4-osd-5 2024-03-30T14:03:30.502 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:30 smithi050 bash[22081]: cluster 2024-03-30T14:03:28.985909+0000 mgr.a (mgr.14152) 432 : cluster 0 pgmap v357: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 84 KiB/s, 0 objects/s recovering 2024-03-30T14:03:30.502 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:30 smithi050 bash[22081]: audit 2024-03-30T14:03:30.108516+0000 mon.a (mon.0) 1015 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:30.502 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:30 smithi050 bash[22081]: audit 2024-03-30T14:03:30.116327+0000 mon.a (mon.0) 1016 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:30.502 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:30 smithi050 bash[22081]: audit 2024-03-30T14:03:30.126605+0000 mon.a (mon.0) 1017 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:30.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:30 smithi026 bash[21443]: cluster 2024-03-30T14:03:28.985909+0000 mgr.a (mgr.14152) 432 : cluster 0 pgmap v357: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 84 KiB/s, 0 objects/s recovering 2024-03-30T14:03:30.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:30 smithi026 bash[21443]: audit 2024-03-30T14:03:30.108516+0000 mon.a (mon.0) 1015 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:30.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:30 smithi026 bash[21443]: audit 2024-03-30T14:03:30.116327+0000 mon.a (mon.0) 1016 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:30.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:30 smithi026 bash[21443]: audit 2024-03-30T14:03:30.126605+0000 mon.a (mon.0) 1017 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:31.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:31 smithi026 bash[21443]: cluster 2024-03-30T14:03:30.117851+0000 mgr.a (mgr.14152) 433 : cluster 0 pgmap v358: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 81 KiB/s, 0 objects/s recovering 2024-03-30T14:03:31.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:31 smithi026 bash[21443]: cluster 2024-03-30T14:03:31.112422+0000 mon.a (mon.0) 1018 : cluster 3 Health check failed: 1 failed cephadm daemon(s) (CEPHADM_FAILED_DAEMON) 2024-03-30T14:03:31.649 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:31 smithi050 bash[22081]: cluster 2024-03-30T14:03:30.117851+0000 mgr.a (mgr.14152) 433 : cluster 0 pgmap v358: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 81 KiB/s, 0 objects/s recovering 2024-03-30T14:03:31.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:31 smithi050 bash[22081]: cluster 2024-03-30T14:03:31.112422+0000 mon.a (mon.0) 1018 : cluster 3 Health check failed: 1 failed cephadm daemon(s) (CEPHADM_FAILED_DAEMON) 2024-03-30T14:03:31.975 INFO:journalctl@ceph.osd.5.smithi136.stdout:Mar 30 14:03:31 smithi136 systemd[1]: ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@osd.5.service: Deactivated successfully. 2024-03-30T14:03:31.975 INFO:journalctl@ceph.osd.5.smithi136.stdout:Mar 30 14:03:31 smithi136 systemd[1]: Stopped Ceph osd.5 for 56554a52-ee9c-11ee-b647-cb9ed24678a4. 2024-03-30T14:03:31.975 INFO:journalctl@ceph.osd.5.smithi136.stdout:Mar 30 14:03:31 smithi136 systemd[1]: /etc/systemd/system/ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-03-30T14:03:32.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:32 smithi026 bash[21443]: audit 2024-03-30T14:03:31.947048+0000 mon.a (mon.0) 1019 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-03-30T14:03:32.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:32 smithi026 bash[21443]: audit 2024-03-30T14:03:31.949976+0000 mon.a (mon.0) 1020 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-03-30T14:03:32.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:32 smithi026 bash[21443]: audit 2024-03-30T14:03:31.956058+0000 mon.a (mon.0) 1021 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-03-30T14:03:32.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:32 smithi026 bash[21443]: cluster 2024-03-30T14:03:31.957279+0000 mon.a (mon.0) 1022 : cluster 1 Health check cleared: OSD_DOWN (was: 1 osds down) 2024-03-30T14:03:32.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:32 smithi026 bash[21443]: cluster 2024-03-30T14:03:31.957331+0000 mon.a (mon.0) 1023 : cluster 1 Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-03-30T14:03:32.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:32 smithi026 bash[21443]: audit 2024-03-30T14:03:31.959396+0000 mon.a (mon.0) 1024 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-03-30T14:03:32.606 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:32 smithi026 bash[21443]: cluster 2024-03-30T14:03:31.964088+0000 mon.a (mon.0) 1025 : cluster 0 osdmap e56: 4 total, 4 up, 4 in 2024-03-30T14:03:32.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:32 smithi050 bash[22081]: audit 2024-03-30T14:03:31.947048+0000 mon.a (mon.0) 1019 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-03-30T14:03:32.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:32 smithi050 bash[22081]: audit 2024-03-30T14:03:31.949976+0000 mon.a (mon.0) 1020 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-03-30T14:03:32.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:32 smithi050 bash[22081]: audit 2024-03-30T14:03:31.956058+0000 mon.a (mon.0) 1021 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-03-30T14:03:32.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:32 smithi050 bash[22081]: cluster 2024-03-30T14:03:31.957279+0000 mon.a (mon.0) 1022 : cluster 1 Health check cleared: OSD_DOWN (was: 1 osds down) 2024-03-30T14:03:32.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:32 smithi050 bash[22081]: cluster 2024-03-30T14:03:31.957331+0000 mon.a (mon.0) 1023 : cluster 1 Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-03-30T14:03:32.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:32 smithi050 bash[22081]: audit 2024-03-30T14:03:31.959396+0000 mon.a (mon.0) 1024 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-03-30T14:03:32.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:32 smithi050 bash[22081]: cluster 2024-03-30T14:03:31.964088+0000 mon.a (mon.0) 1025 : cluster 0 osdmap e56: 4 total, 4 up, 4 in 2024-03-30T14:03:33.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:33 smithi026 bash[21443]: cephadm 2024-03-30T14:03:31.946452+0000 mgr.a (mgr.14152) 434 : cephadm 1 Removing key for osd.5 2024-03-30T14:03:33.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:33 smithi026 bash[21443]: cephadm 2024-03-30T14:03:31.955318+0000 mgr.a (mgr.14152) 435 : cephadm 1 Successfully removed osd.5 on smithi136 2024-03-30T14:03:33.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:33 smithi026 bash[21443]: cephadm 2024-03-30T14:03:31.965274+0000 mgr.a (mgr.14152) 436 : cephadm 1 Successfully purged osd.5 on smithi136 2024-03-30T14:03:33.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:33 smithi026 bash[21443]: cephadm 2024-03-30T14:03:31.965501+0000 mgr.a (mgr.14152) 437 : cephadm 1 Zapping devices for osd.5 on smithi136 2024-03-30T14:03:33.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:33 smithi026 bash[21443]: cluster 2024-03-30T14:03:32.118376+0000 mgr.a (mgr.14152) 438 : cluster 0 pgmap v360: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:03:33.649 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:33 smithi050 bash[22081]: cephadm 2024-03-30T14:03:31.946452+0000 mgr.a (mgr.14152) 434 : cephadm 1 Removing key for osd.5 2024-03-30T14:03:33.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:33 smithi050 bash[22081]: cephadm 2024-03-30T14:03:31.955318+0000 mgr.a (mgr.14152) 435 : cephadm 1 Successfully removed osd.5 on smithi136 2024-03-30T14:03:33.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:33 smithi050 bash[22081]: cephadm 2024-03-30T14:03:31.965274+0000 mgr.a (mgr.14152) 436 : cephadm 1 Successfully purged osd.5 on smithi136 2024-03-30T14:03:33.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:33 smithi050 bash[22081]: cephadm 2024-03-30T14:03:31.965501+0000 mgr.a (mgr.14152) 437 : cephadm 1 Zapping devices for osd.5 on smithi136 2024-03-30T14:03:33.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:33 smithi050 bash[22081]: cluster 2024-03-30T14:03:32.118376+0000 mgr.a (mgr.14152) 438 : cluster 0 pgmap v360: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:03:35.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:35 smithi026 bash[21443]: cluster 2024-03-30T14:03:34.119062+0000 mgr.a (mgr.14152) 439 : cluster 0 pgmap v361: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:03:35.649 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:35 smithi050 bash[22081]: cluster 2024-03-30T14:03:34.119062+0000 mgr.a (mgr.14152) 439 : cluster 0 pgmap v361: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:03:37.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:37 smithi026 bash[21443]: cluster 2024-03-30T14:03:36.119665+0000 mgr.a (mgr.14152) 440 : cluster 0 pgmap v362: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:03:37.649 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:37 smithi050 bash[22081]: cluster 2024-03-30T14:03:36.119665+0000 mgr.a (mgr.14152) 440 : cluster 0 pgmap v362: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:03:39.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:38 smithi026 bash[21443]: cephadm 2024-03-30T14:03:37.946530+0000 mgr.a (mgr.14152) 441 : cephadm 1 Successfully zapped devices for osd.5 on smithi136 2024-03-30T14:03:39.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:38 smithi026 bash[21443]: audit 2024-03-30T14:03:37.953583+0000 mon.a (mon.0) 1026 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:39.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:38 smithi026 bash[21443]: cephadm 2024-03-30T14:03:37.956834+0000 mgr.a (mgr.14152) 442 : cephadm 1 Removing daemon agent.smithi136 from smithi136 -- ports [] 2024-03-30T14:03:39.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:38 smithi026 bash[21443]: cluster 2024-03-30T14:03:38.120187+0000 mgr.a (mgr.14152) 443 : cluster 0 pgmap v363: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:03:39.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:38 smithi026 bash[21443]: audit 2024-03-30T14:03:38.673947+0000 mon.a (mon.0) 1027 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "client.agent.smithi136"}]: dispatch 2024-03-30T14:03:39.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:38 smithi026 bash[21443]: audit 2024-03-30T14:03:38.676850+0000 mon.a (mon.0) 1028 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "client.agent.smithi136"}]': finished 2024-03-30T14:03:39.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:38 smithi026 bash[21443]: audit 2024-03-30T14:03:38.688652+0000 mon.a (mon.0) 1029 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:39.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:38 smithi026 bash[21443]: audit 2024-03-30T14:03:38.695709+0000 mon.a (mon.0) 1030 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:39.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:38 smithi026 bash[21443]: audit 2024-03-30T14:03:38.799421+0000 mon.a (mon.0) 1031 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T14:03:39.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:38 smithi050 bash[22081]: cephadm 2024-03-30T14:03:37.946530+0000 mgr.a (mgr.14152) 441 : cephadm 1 Successfully zapped devices for osd.5 on smithi136 2024-03-30T14:03:39.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:38 smithi050 bash[22081]: audit 2024-03-30T14:03:37.953583+0000 mon.a (mon.0) 1026 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:39.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:38 smithi050 bash[22081]: cephadm 2024-03-30T14:03:37.956834+0000 mgr.a (mgr.14152) 442 : cephadm 1 Removing daemon agent.smithi136 from smithi136 -- ports [] 2024-03-30T14:03:39.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:38 smithi050 bash[22081]: cluster 2024-03-30T14:03:38.120187+0000 mgr.a (mgr.14152) 443 : cluster 0 pgmap v363: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:03:39.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:38 smithi050 bash[22081]: audit 2024-03-30T14:03:38.673947+0000 mon.a (mon.0) 1027 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "client.agent.smithi136"}]: dispatch 2024-03-30T14:03:39.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:38 smithi050 bash[22081]: audit 2024-03-30T14:03:38.676850+0000 mon.a (mon.0) 1028 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "client.agent.smithi136"}]': finished 2024-03-30T14:03:39.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:38 smithi050 bash[22081]: audit 2024-03-30T14:03:38.688652+0000 mon.a (mon.0) 1029 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:39.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:38 smithi050 bash[22081]: audit 2024-03-30T14:03:38.695709+0000 mon.a (mon.0) 1030 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:39.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:38 smithi050 bash[22081]: audit 2024-03-30T14:03:38.799421+0000 mon.a (mon.0) 1031 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T14:03:40.219 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:39 smithi026 bash[21443]: cephadm 2024-03-30T14:03:38.673382+0000 mgr.a (mgr.14152) 444 : cephadm 1 Removing key for client.agent.smithi136 2024-03-30T14:03:40.219 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:39 smithi026 bash[21443]: audit 2024-03-30T14:03:39.327559+0000 mon.a (mon.0) 1032 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:40.219 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:39 smithi026 bash[21443]: audit 2024-03-30T14:03:39.332145+0000 mon.a (mon.0) 1033 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:40.399 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:39 smithi050 bash[22081]: cephadm 2024-03-30T14:03:38.673382+0000 mgr.a (mgr.14152) 444 : cephadm 1 Removing key for client.agent.smithi136 2024-03-30T14:03:40.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:39 smithi050 bash[22081]: audit 2024-03-30T14:03:39.327559+0000 mon.a (mon.0) 1032 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:40.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:39 smithi050 bash[22081]: audit 2024-03-30T14:03:39.332145+0000 mon.a (mon.0) 1033 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:40.605 INFO:teuthology.orchestra.run.smithi026.stderr:++ ceph orch ps --hostname smithi136 2024-03-30T14:03:40.985 INFO:teuthology.orchestra.run.smithi026.stderr:+ HOST_C_DAEMONS='No daemons reported' 2024-03-30T14:03:40.985 INFO:teuthology.orchestra.run.smithi026.stderr:+ '[' 'No daemons reported' '!=' 'No daemons reported' ']' 2024-03-30T14:03:40.985 INFO:teuthology.orchestra.run.smithi026.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-03-30T14:03:41.331 INFO:teuthology.orchestra.run.smithi026.stderr:17 2024-03-30T14:03:41.342 INFO:teuthology.orchestra.run.smithi026.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-03-30T14:03:41.353 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:41 smithi026 bash[21443]: audit 2024-03-30T14:03:40.040285+0000 mon.a (mon.0) 1034 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:41.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:41 smithi026 bash[21443]: cluster 2024-03-30T14:03:40.120761+0000 mgr.a (mgr.14152) 445 : cluster 0 pgmap v364: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:03:41.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:41 smithi026 bash[21443]: audit 2024-03-30T14:03:40.330299+0000 mon.a (mon.0) 1035 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:41.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:41 smithi026 bash[21443]: audit 2024-03-30T14:03:40.334391+0000 mon.a (mon.0) 1036 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:41.362 INFO:teuthology.orchestra.run.smithi026.stderr:++ cat crushmap.txt 2024-03-30T14:03:41.363 INFO:teuthology.orchestra.run.smithi026.stderr:+ CRUSH_MAP='# begin crush map 2024-03-30T14:03:41.363 INFO:teuthology.orchestra.run.smithi026.stderr:tunable choose_local_tries 0 2024-03-30T14:03:41.364 INFO:teuthology.orchestra.run.smithi026.stderr:tunable choose_local_fallback_tries 0 2024-03-30T14:03:41.364 INFO:teuthology.orchestra.run.smithi026.stderr:tunable choose_total_tries 50 2024-03-30T14:03:41.364 INFO:teuthology.orchestra.run.smithi026.stderr:tunable chooseleaf_descend_once 1 2024-03-30T14:03:41.364 INFO:teuthology.orchestra.run.smithi026.stderr:tunable chooseleaf_vary_r 1 2024-03-30T14:03:41.364 INFO:teuthology.orchestra.run.smithi026.stderr:tunable chooseleaf_stable 1 2024-03-30T14:03:41.364 INFO:teuthology.orchestra.run.smithi026.stderr:tunable straw_calc_version 1 2024-03-30T14:03:41.364 INFO:teuthology.orchestra.run.smithi026.stderr:tunable allowed_bucket_algs 54 2024-03-30T14:03:41.364 INFO:teuthology.orchestra.run.smithi026.stderr: 2024-03-30T14:03:41.364 INFO:teuthology.orchestra.run.smithi026.stderr:# devices 2024-03-30T14:03:41.364 INFO:teuthology.orchestra.run.smithi026.stderr:device 0 osd.0 class ssd 2024-03-30T14:03:41.364 INFO:teuthology.orchestra.run.smithi026.stderr:device 1 osd.1 class ssd 2024-03-30T14:03:41.364 INFO:teuthology.orchestra.run.smithi026.stderr:device 2 osd.2 class ssd 2024-03-30T14:03:41.364 INFO:teuthology.orchestra.run.smithi026.stderr:device 3 osd.3 class ssd 2024-03-30T14:03:41.364 INFO:teuthology.orchestra.run.smithi026.stderr: 2024-03-30T14:03:41.365 INFO:teuthology.orchestra.run.smithi026.stderr:# types 2024-03-30T14:03:41.365 INFO:teuthology.orchestra.run.smithi026.stderr:type 0 osd 2024-03-30T14:03:41.365 INFO:teuthology.orchestra.run.smithi026.stderr:type 1 host 2024-03-30T14:03:41.365 INFO:teuthology.orchestra.run.smithi026.stderr:type 2 chassis 2024-03-30T14:03:41.365 INFO:teuthology.orchestra.run.smithi026.stderr:type 3 rack 2024-03-30T14:03:41.365 INFO:teuthology.orchestra.run.smithi026.stderr:type 4 row 2024-03-30T14:03:41.365 INFO:teuthology.orchestra.run.smithi026.stderr:type 5 pdu 2024-03-30T14:03:41.365 INFO:teuthology.orchestra.run.smithi026.stderr:type 6 pod 2024-03-30T14:03:41.365 INFO:teuthology.orchestra.run.smithi026.stderr:type 7 room 2024-03-30T14:03:41.365 INFO:teuthology.orchestra.run.smithi026.stderr:type 8 datacenter 2024-03-30T14:03:41.365 INFO:teuthology.orchestra.run.smithi026.stderr:type 9 zone 2024-03-30T14:03:41.365 INFO:teuthology.orchestra.run.smithi026.stderr:type 10 region 2024-03-30T14:03:41.365 INFO:teuthology.orchestra.run.smithi026.stderr:type 11 root 2024-03-30T14:03:41.365 INFO:teuthology.orchestra.run.smithi026.stderr: 2024-03-30T14:03:41.366 INFO:teuthology.orchestra.run.smithi026.stderr:# buckets 2024-03-30T14:03:41.366 INFO:teuthology.orchestra.run.smithi026.stderr:host smithi026 { 2024-03-30T14:03:41.366 INFO:teuthology.orchestra.run.smithi026.stderr: id -3 # do not change unnecessarily 2024-03-30T14:03:41.366 INFO:teuthology.orchestra.run.smithi026.stderr: id -4 class ssd # do not change unnecessarily 2024-03-30T14:03:41.366 INFO:teuthology.orchestra.run.smithi026.stderr: # weight 0.17459 2024-03-30T14:03:41.366 INFO:teuthology.orchestra.run.smithi026.stderr: alg straw2 2024-03-30T14:03:41.366 INFO:teuthology.orchestra.run.smithi026.stderr: hash 0 # rjenkins1 2024-03-30T14:03:41.366 INFO:teuthology.orchestra.run.smithi026.stderr: item osd.0 weight 0.08730 2024-03-30T14:03:41.366 INFO:teuthology.orchestra.run.smithi026.stderr: item osd.1 weight 0.08730 2024-03-30T14:03:41.366 INFO:teuthology.orchestra.run.smithi026.stderr:} 2024-03-30T14:03:41.366 INFO:teuthology.orchestra.run.smithi026.stderr:host smithi050 { 2024-03-30T14:03:41.366 INFO:teuthology.orchestra.run.smithi026.stderr: id -5 # do not change unnecessarily 2024-03-30T14:03:41.366 INFO:teuthology.orchestra.run.smithi026.stderr: id -6 class ssd # do not change unnecessarily 2024-03-30T14:03:41.367 INFO:teuthology.orchestra.run.smithi026.stderr: # weight 0.17459 2024-03-30T14:03:41.367 INFO:teuthology.orchestra.run.smithi026.stderr: alg straw2 2024-03-30T14:03:41.367 INFO:teuthology.orchestra.run.smithi026.stderr: hash 0 # rjenkins1 2024-03-30T14:03:41.367 INFO:teuthology.orchestra.run.smithi026.stderr: item osd.2 weight 0.08730 2024-03-30T14:03:41.367 INFO:teuthology.orchestra.run.smithi026.stderr: item osd.3 weight 0.08730 2024-03-30T14:03:41.367 INFO:teuthology.orchestra.run.smithi026.stderr:} 2024-03-30T14:03:41.367 INFO:teuthology.orchestra.run.smithi026.stderr:host smithi136 { 2024-03-30T14:03:41.367 INFO:teuthology.orchestra.run.smithi026.stderr: id -7 # do not change unnecessarily 2024-03-30T14:03:41.367 INFO:teuthology.orchestra.run.smithi026.stderr: id -8 class ssd # do not change unnecessarily 2024-03-30T14:03:41.367 INFO:teuthology.orchestra.run.smithi026.stderr: # weight 0.00000 2024-03-30T14:03:41.367 INFO:teuthology.orchestra.run.smithi026.stderr: alg straw2 2024-03-30T14:03:41.367 INFO:teuthology.orchestra.run.smithi026.stderr: hash 0 # rjenkins1 2024-03-30T14:03:41.367 INFO:teuthology.orchestra.run.smithi026.stderr:} 2024-03-30T14:03:41.368 INFO:teuthology.orchestra.run.smithi026.stderr:root default { 2024-03-30T14:03:41.368 INFO:teuthology.orchestra.run.smithi026.stderr: id -1 # do not change unnecessarily 2024-03-30T14:03:41.368 INFO:teuthology.orchestra.run.smithi026.stderr: id -2 class ssd # do not change unnecessarily 2024-03-30T14:03:41.368 INFO:teuthology.orchestra.run.smithi026.stderr: # weight 0.34918 2024-03-30T14:03:41.368 INFO:teuthology.orchestra.run.smithi026.stderr: alg straw2 2024-03-30T14:03:41.368 INFO:teuthology.orchestra.run.smithi026.stderr: hash 0 # rjenkins1 2024-03-30T14:03:41.368 INFO:teuthology.orchestra.run.smithi026.stderr: item smithi026 weight 0.17459 2024-03-30T14:03:41.368 INFO:teuthology.orchestra.run.smithi026.stderr: item smithi050 weight 0.17459 2024-03-30T14:03:41.368 INFO:teuthology.orchestra.run.smithi026.stderr: item smithi136 weight 0.00000 2024-03-30T14:03:41.368 INFO:teuthology.orchestra.run.smithi026.stderr:} 2024-03-30T14:03:41.368 INFO:teuthology.orchestra.run.smithi026.stderr: 2024-03-30T14:03:41.368 INFO:teuthology.orchestra.run.smithi026.stderr:# rules 2024-03-30T14:03:41.368 INFO:teuthology.orchestra.run.smithi026.stderr:rule replicated_rule { 2024-03-30T14:03:41.368 INFO:teuthology.orchestra.run.smithi026.stderr: id 0 2024-03-30T14:03:41.368 INFO:teuthology.orchestra.run.smithi026.stderr: type replicated 2024-03-30T14:03:41.369 INFO:teuthology.orchestra.run.smithi026.stderr: step take default 2024-03-30T14:03:41.369 INFO:teuthology.orchestra.run.smithi026.stderr: step choose firstn 0 type osd 2024-03-30T14:03:41.369 INFO:teuthology.orchestra.run.smithi026.stderr: step emit 2024-03-30T14:03:41.369 INFO:teuthology.orchestra.run.smithi026.stderr:} 2024-03-30T14:03:41.369 INFO:teuthology.orchestra.run.smithi026.stderr: 2024-03-30T14:03:41.369 INFO:teuthology.orchestra.run.smithi026.stderr:# end crush map' 2024-03-30T14:03:41.369 INFO:teuthology.orchestra.run.smithi026.stderr:+ grep -q smithi136 2024-03-30T14:03:41.369 INFO:teuthology.orchestra.run.smithi026.stderr:+ ceph orch host rm smithi136 --rm-crush-entry 2024-03-30T14:03:41.399 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:41 smithi050 bash[22081]: audit 2024-03-30T14:03:40.040285+0000 mon.a (mon.0) 1034 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:41.399 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:41 smithi050 bash[22081]: cluster 2024-03-30T14:03:40.120761+0000 mgr.a (mgr.14152) 445 : cluster 0 pgmap v364: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:03:41.399 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:41 smithi050 bash[22081]: audit 2024-03-30T14:03:40.330299+0000 mon.a (mon.0) 1035 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:41.399 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:41 smithi050 bash[22081]: audit 2024-03-30T14:03:40.334391+0000 mon.a (mon.0) 1036 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:42.061 INFO:teuthology.orchestra.run.smithi026.stdout:Removed host 'smithi136' 2024-03-30T14:03:42.079 INFO:teuthology.orchestra.run.smithi026.stderr:+ sleep 30 2024-03-30T14:03:42.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:42 smithi026 bash[21443]: audit 2024-03-30T14:03:40.974206+0000 mgr.a (mgr.14152) 446 : audit 0 from='client.14516 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi136", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T14:03:42.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:42 smithi026 bash[21443]: audit 2024-03-30T14:03:41.338240+0000 mon.a (mon.0) 1037 : audit 0 from='client.? 172.21.15.26:0/461282683' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-03-30T14:03:42.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:42 smithi026 bash[21443]: audit 2024-03-30T14:03:41.737460+0000 mon.a (mon.0) 1038 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi136"}]: dispatch 2024-03-30T14:03:42.354 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 14:03:42 smithi026 bash[21693]: debug 2024-03-30T14:03:42.064+0000 7fe1d7165700 -1 log_channel(cephadm) log [ERR] : host smithi136 `cephadm ceph-volume` failed: Cannot decode JSON: 2024-03-30T14:03:42.354 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 14:03:42 smithi026 bash[21693]: Traceback (most recent call last): 2024-03-30T14:03:42.355 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 14:03:42 smithi026 bash[21693]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1530, in _run_cephadm_json 2024-03-30T14:03:42.355 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 14:03:42 smithi026 bash[21693]: return json.loads(''.join(out)) 2024-03-30T14:03:42.355 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 14:03:42 smithi026 bash[21693]: File "/lib64/python3.6/json/__init__.py", line 354, in loads 2024-03-30T14:03:42.355 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 14:03:42 smithi026 bash[21693]: return _default_decoder.decode(s) 2024-03-30T14:03:42.355 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 14:03:42 smithi026 bash[21693]: File "/lib64/python3.6/json/decoder.py", line 339, in decode 2024-03-30T14:03:42.355 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 14:03:42 smithi026 bash[21693]: obj, end = self.raw_decode(s, idx=_w(s, 0).end()) 2024-03-30T14:03:42.355 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 14:03:42 smithi026 bash[21693]: File "/lib64/python3.6/json/decoder.py", line 357, in raw_decode 2024-03-30T14:03:42.355 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 14:03:42 smithi026 bash[21693]: raise JSONDecodeError("Expecting value", s, err.value) from None 2024-03-30T14:03:42.355 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 14:03:42 smithi026 bash[21693]: json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0) 2024-03-30T14:03:42.355 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 14:03:42 smithi026 bash[21693]: debug 2024-03-30T14:03:42.096+0000 7fe1df976700 -1 log_channel(cephadm) log [ERR] : executing refresh((['smithi026', 'smithi050', 'smithi136'],)) failed. 2024-03-30T14:03:42.355 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 14:03:42 smithi026 bash[21693]: Traceback (most recent call last): 2024-03-30T14:03:42.355 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 14:03:42 smithi026 bash[21693]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 94, in do_work 2024-03-30T14:03:42.355 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 14:03:42 smithi026 bash[21693]: return f(*arg) 2024-03-30T14:03:42.355 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 14:03:42 smithi026 bash[21693]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 316, in refresh 2024-03-30T14:03:42.355 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 14:03:42 smithi026 bash[21693]: and not self.mgr.inventory.has_label(host, SpecialHostLabels.NO_MEMORY_AUTOTUNE) 2024-03-30T14:03:42.355 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 14:03:42 smithi026 bash[21693]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 168, in has_label 2024-03-30T14:03:42.356 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 14:03:42 smithi026 bash[21693]: host = self._get_stored_name(host) 2024-03-30T14:03:42.356 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 14:03:42 smithi026 bash[21693]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 105, in _get_stored_name 2024-03-30T14:03:42.356 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 14:03:42 smithi026 bash[21693]: self.assert_host(host) 2024-03-30T14:03:42.356 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 14:03:42 smithi026 bash[21693]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 124, in assert_host 2024-03-30T14:03:42.356 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 14:03:42 smithi026 bash[21693]: raise OrchestratorError('host %s does not exist' % host) 2024-03-30T14:03:42.356 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 14:03:42 smithi026 bash[21693]: orchestrator._interface.OrchestratorError: host smithi136 does not exist 2024-03-30T14:03:42.399 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:42 smithi050 bash[22081]: audit 2024-03-30T14:03:40.974206+0000 mgr.a (mgr.14152) 446 : audit 0 from='client.14516 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi136", "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T14:03:42.399 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:42 smithi050 bash[22081]: audit 2024-03-30T14:03:41.338240+0000 mon.a (mon.0) 1037 : audit 0 from='client.? 172.21.15.26:0/461282683' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-03-30T14:03:42.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:42 smithi050 bash[22081]: audit 2024-03-30T14:03:41.737460+0000 mon.a (mon.0) 1038 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi136"}]: dispatch 2024-03-30T14:03:43.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: audit 2024-03-30T14:03:41.736395+0000 mgr.a (mgr.14152) 447 : audit 0 from='client.14524 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi136", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T14:03:43.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: audit 2024-03-30T14:03:42.046507+0000 mon.a (mon.0) 1039 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi136"}]': finished 2024-03-30T14:03:43.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: cluster 2024-03-30T14:03:42.052146+0000 mon.a (mon.0) 1040 : cluster 0 osdmap e57: 4 total, 4 up, 4 in 2024-03-30T14:03:43.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: audit 2024-03-30T14:03:42.063494+0000 mon.a (mon.0) 1041 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:43.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: audit 2024-03-30T14:03:42.064285+0000 mon.a (mon.0) 1042 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi136"}]: dispatch 2024-03-30T14:03:43.355 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: audit 2024-03-30T14:03:42.067629+0000 mon.a (mon.0) 1043 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi136"}]': finished 2024-03-30T14:03:43.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: cephadm 2024-03-30T14:03:42.071492+0000 mgr.a (mgr.14152) 448 : cephadm 4 host smithi136 `cephadm ceph-volume` failed: Cannot decode JSON: 2024-03-30T14:03:43.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: Traceback (most recent call last): 2024-03-30T14:03:43.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1530, in _run_cephadm_json 2024-03-30T14:03:43.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: return json.loads(''.join(out)) 2024-03-30T14:03:43.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: File "/lib64/python3.6/json/__init__.py", line 354, in loads 2024-03-30T14:03:43.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: return _default_decoder.decode(s) 2024-03-30T14:03:43.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: File "/lib64/python3.6/json/decoder.py", line 339, in decode 2024-03-30T14:03:43.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: obj, end = self.raw_decode(s, idx=_w(s, 0).end()) 2024-03-30T14:03:43.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: File "/lib64/python3.6/json/decoder.py", line 357, in raw_decode 2024-03-30T14:03:43.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: raise JSONDecodeError("Expecting value", s, err.value) from None 2024-03-30T14:03:43.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0) 2024-03-30T14:03:43.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: cephadm 2024-03-30T14:03:42.071652+0000 mgr.a (mgr.14152) 449 : cephadm 1 Removed host smithi136 2024-03-30T14:03:43.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: cephadm 2024-03-30T14:03:42.103746+0000 mgr.a (mgr.14152) 450 : cephadm 4 executing refresh((['smithi026', 'smithi050', 'smithi136'],)) failed. 2024-03-30T14:03:43.356 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: Traceback (most recent call last): 2024-03-30T14:03:43.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 94, in do_work 2024-03-30T14:03:43.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: return f(*arg) 2024-03-30T14:03:43.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 316, in refresh 2024-03-30T14:03:43.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: and not self.mgr.inventory.has_label(host, SpecialHostLabels.NO_MEMORY_AUTOTUNE) 2024-03-30T14:03:43.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 168, in has_label 2024-03-30T14:03:43.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: host = self._get_stored_name(host) 2024-03-30T14:03:43.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 105, in _get_stored_name 2024-03-30T14:03:43.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: self.assert_host(host) 2024-03-30T14:03:43.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 124, in assert_host 2024-03-30T14:03:43.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: raise OrchestratorError('host %s does not exist' % host) 2024-03-30T14:03:43.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: orchestrator._interface.OrchestratorError: host smithi136 does not exist 2024-03-30T14:03:43.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: audit 2024-03-30T14:03:42.104559+0000 mon.a (mon.0) 1044 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T14:03:43.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: audit 2024-03-30T14:03:42.106735+0000 mon.a (mon.0) 1045 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:03:43.357 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: audit 2024-03-30T14:03:42.107450+0000 mon.a (mon.0) 1046 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T14:03:43.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: cluster 2024-03-30T14:03:42.108854+0000 mgr.a (mgr.14152) 451 : cluster 0 pgmap v366: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:03:43.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: cluster 2024-03-30T14:03:42.109110+0000 mgr.a (mgr.14152) 452 : cluster 0 pgmap v367: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:03:43.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: audit 2024-03-30T14:03:42.112860+0000 mon.a (mon.0) 1047 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:43.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: cephadm 2024-03-30T14:03:42.179098+0000 mgr.a (mgr.14152) 453 : cephadm 1 Reconfiguring mon.a (monmap changed)... 2024-03-30T14:03:43.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: audit 2024-03-30T14:03:42.179478+0000 mon.a (mon.0) 1048 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-03-30T14:03:43.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: audit 2024-03-30T14:03:42.180186+0000 mon.a (mon.0) 1049 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-03-30T14:03:43.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: audit 2024-03-30T14:03:42.180828+0000 mon.a (mon.0) 1050 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:03:43.358 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:43 smithi026 bash[21443]: cephadm 2024-03-30T14:03:42.181594+0000 mgr.a (mgr.14152) 454 : cephadm 1 Reconfiguring daemon mon.a on smithi026 2024-03-30T14:03:43.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: audit 2024-03-30T14:03:41.736395+0000 mgr.a (mgr.14152) 447 : audit 0 from='client.14524 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi136", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-03-30T14:03:43.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: audit 2024-03-30T14:03:42.046507+0000 mon.a (mon.0) 1039 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi136"}]': finished 2024-03-30T14:03:43.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: cluster 2024-03-30T14:03:42.052146+0000 mon.a (mon.0) 1040 : cluster 0 osdmap e57: 4 total, 4 up, 4 in 2024-03-30T14:03:43.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: audit 2024-03-30T14:03:42.063494+0000 mon.a (mon.0) 1041 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:43.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: audit 2024-03-30T14:03:42.064285+0000 mon.a (mon.0) 1042 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi136"}]: dispatch 2024-03-30T14:03:43.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: audit 2024-03-30T14:03:42.067629+0000 mon.a (mon.0) 1043 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi136"}]': finished 2024-03-30T14:03:43.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: cephadm 2024-03-30T14:03:42.071492+0000 mgr.a (mgr.14152) 448 : cephadm 4 host smithi136 `cephadm ceph-volume` failed: Cannot decode JSON: 2024-03-30T14:03:43.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: Traceback (most recent call last): 2024-03-30T14:03:43.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1530, in _run_cephadm_json 2024-03-30T14:03:43.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: return json.loads(''.join(out)) 2024-03-30T14:03:43.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: File "/lib64/python3.6/json/__init__.py", line 354, in loads 2024-03-30T14:03:43.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: return _default_decoder.decode(s) 2024-03-30T14:03:43.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: File "/lib64/python3.6/json/decoder.py", line 339, in decode 2024-03-30T14:03:43.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: obj, end = self.raw_decode(s, idx=_w(s, 0).end()) 2024-03-30T14:03:43.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: File "/lib64/python3.6/json/decoder.py", line 357, in raw_decode 2024-03-30T14:03:43.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: raise JSONDecodeError("Expecting value", s, err.value) from None 2024-03-30T14:03:43.401 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0) 2024-03-30T14:03:43.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: cephadm 2024-03-30T14:03:42.071652+0000 mgr.a (mgr.14152) 449 : cephadm 1 Removed host smithi136 2024-03-30T14:03:43.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: cephadm 2024-03-30T14:03:42.103746+0000 mgr.a (mgr.14152) 450 : cephadm 4 executing refresh((['smithi026', 'smithi050', 'smithi136'],)) failed. 2024-03-30T14:03:43.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: Traceback (most recent call last): 2024-03-30T14:03:43.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 94, in do_work 2024-03-30T14:03:43.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: return f(*arg) 2024-03-30T14:03:43.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 316, in refresh 2024-03-30T14:03:43.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: and not self.mgr.inventory.has_label(host, SpecialHostLabels.NO_MEMORY_AUTOTUNE) 2024-03-30T14:03:43.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 168, in has_label 2024-03-30T14:03:43.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: host = self._get_stored_name(host) 2024-03-30T14:03:43.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 105, in _get_stored_name 2024-03-30T14:03:43.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: self.assert_host(host) 2024-03-30T14:03:43.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 124, in assert_host 2024-03-30T14:03:43.402 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: raise OrchestratorError('host %s does not exist' % host) 2024-03-30T14:03:43.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: orchestrator._interface.OrchestratorError: host smithi136 does not exist 2024-03-30T14:03:43.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: audit 2024-03-30T14:03:42.104559+0000 mon.a (mon.0) 1044 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-30T14:03:43.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: audit 2024-03-30T14:03:42.106735+0000 mon.a (mon.0) 1045 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:03:43.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: audit 2024-03-30T14:03:42.107450+0000 mon.a (mon.0) 1046 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-30T14:03:43.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: cluster 2024-03-30T14:03:42.108854+0000 mgr.a (mgr.14152) 451 : cluster 0 pgmap v366: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:03:43.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: cluster 2024-03-30T14:03:42.109110+0000 mgr.a (mgr.14152) 452 : cluster 0 pgmap v367: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:03:43.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: audit 2024-03-30T14:03:42.112860+0000 mon.a (mon.0) 1047 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:43.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: cephadm 2024-03-30T14:03:42.179098+0000 mgr.a (mgr.14152) 453 : cephadm 1 Reconfiguring mon.a (monmap changed)... 2024-03-30T14:03:43.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: audit 2024-03-30T14:03:42.179478+0000 mon.a (mon.0) 1048 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-03-30T14:03:43.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: audit 2024-03-30T14:03:42.180186+0000 mon.a (mon.0) 1049 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-03-30T14:03:43.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: audit 2024-03-30T14:03:42.180828+0000 mon.a (mon.0) 1050 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:03:43.403 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:43 smithi050 bash[22081]: cephadm 2024-03-30T14:03:42.181594+0000 mgr.a (mgr.14152) 454 : cephadm 1 Reconfiguring daemon mon.a on smithi026 2024-03-30T14:03:44.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:44 smithi026 bash[21443]: cluster 2024-03-30T14:03:43.066619+0000 mon.a (mon.0) 1051 : cluster 3 Health check failed: 1 stray host(s) with 1 daemon(s) not managed by cephadm (CEPHADM_STRAY_HOST) 2024-03-30T14:03:44.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:44 smithi026 bash[21443]: cluster 2024-03-30T14:03:43.066674+0000 mon.a (mon.0) 1052 : cluster 1 Health check cleared: CEPHADM_FAILED_DAEMON (was: 1 failed cephadm daemon(s)) 2024-03-30T14:03:44.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:44 smithi026 bash[21443]: audit 2024-03-30T14:03:43.606199+0000 mon.a (mon.0) 1053 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:44.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:44 smithi026 bash[21443]: audit 2024-03-30T14:03:43.610197+0000 mon.a (mon.0) 1054 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:44.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:44 smithi026 bash[21443]: audit 2024-03-30T14:03:43.614769+0000 mon.a (mon.0) 1055 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:44.399 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:44 smithi050 bash[22081]: cluster 2024-03-30T14:03:43.066619+0000 mon.a (mon.0) 1051 : cluster 3 Health check failed: 1 stray host(s) with 1 daemon(s) not managed by cephadm (CEPHADM_STRAY_HOST) 2024-03-30T14:03:44.399 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:44 smithi050 bash[22081]: cluster 2024-03-30T14:03:43.066674+0000 mon.a (mon.0) 1052 : cluster 1 Health check cleared: CEPHADM_FAILED_DAEMON (was: 1 failed cephadm daemon(s)) 2024-03-30T14:03:44.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:44 smithi050 bash[22081]: audit 2024-03-30T14:03:43.606199+0000 mon.a (mon.0) 1053 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:44.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:44 smithi050 bash[22081]: audit 2024-03-30T14:03:43.610197+0000 mon.a (mon.0) 1054 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:44.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:44 smithi050 bash[22081]: audit 2024-03-30T14:03:43.614769+0000 mon.a (mon.0) 1055 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:45.104 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:45 smithi026 bash[21443]: cluster 2024-03-30T14:03:44.109611+0000 mgr.a (mgr.14152) 455 : cluster 0 pgmap v368: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:03:45.399 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:45 smithi050 bash[22081]: cluster 2024-03-30T14:03:44.109611+0000 mgr.a (mgr.14152) 455 : cluster 0 pgmap v368: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:03:46.354 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:46 smithi026 bash[21443]: audit 2024-03-30T14:03:45.146450+0000 mon.a (mon.0) 1056 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:46.436 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:46 smithi026 bash[21443]: audit 2024-03-30T14:03:45.154634+0000 mon.a (mon.0) 1057 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:46.436 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:46 smithi026 bash[21443]: audit 2024-03-30T14:03:45.164267+0000 mon.a (mon.0) 1058 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:46.436 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:46 smithi026 bash[21443]: audit 2024-03-30T14:03:45.406607+0000 mon.a (mon.0) 1059 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:46.436 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:46 smithi026 bash[21443]: audit 2024-03-30T14:03:45.415229+0000 mon.a (mon.0) 1060 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:46.436 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:46 smithi026 bash[21443]: audit 2024-03-30T14:03:45.454754+0000 mon.a (mon.0) 1061 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-03-30T14:03:46.436 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:46 smithi026 bash[21443]: audit 2024-03-30T14:03:45.457020+0000 mon.a (mon.0) 1062 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-03-30T14:03:46.437 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:46 smithi026 bash[21443]: audit 2024-03-30T14:03:45.458940+0000 mon.a (mon.0) 1063 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:03:46.437 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:46 smithi050 bash[22081]: audit 2024-03-30T14:03:45.146450+0000 mon.a (mon.0) 1056 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:46.437 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:46 smithi050 bash[22081]: audit 2024-03-30T14:03:45.154634+0000 mon.a (mon.0) 1057 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:46.437 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:46 smithi050 bash[22081]: audit 2024-03-30T14:03:45.164267+0000 mon.a (mon.0) 1058 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:46.437 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:46 smithi050 bash[22081]: audit 2024-03-30T14:03:45.406607+0000 mon.a (mon.0) 1059 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:46.437 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:46 smithi050 bash[22081]: audit 2024-03-30T14:03:45.415229+0000 mon.a (mon.0) 1060 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:46.437 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:46 smithi050 bash[22081]: audit 2024-03-30T14:03:45.454754+0000 mon.a (mon.0) 1061 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-03-30T14:03:46.437 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:46 smithi050 bash[22081]: audit 2024-03-30T14:03:45.457020+0000 mon.a (mon.0) 1062 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-03-30T14:03:46.438 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:46 smithi050 bash[22081]: audit 2024-03-30T14:03:45.458940+0000 mon.a (mon.0) 1063 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:03:47.282 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:47 smithi026 bash[21443]: cephadm 2024-03-30T14:03:45.453926+0000 mgr.a (mgr.14152) 456 : cephadm 1 Reconfiguring mgr.a (monmap changed)... 2024-03-30T14:03:47.282 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:47 smithi026 bash[21443]: cephadm 2024-03-30T14:03:45.461116+0000 mgr.a (mgr.14152) 457 : cephadm 1 Reconfiguring daemon mgr.a on smithi026 2024-03-30T14:03:47.282 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:47 smithi026 bash[21443]: cluster 2024-03-30T14:03:46.110199+0000 mgr.a (mgr.14152) 458 : cluster 0 pgmap v369: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:03:47.399 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:47 smithi050 bash[22081]: cephadm 2024-03-30T14:03:45.453926+0000 mgr.a (mgr.14152) 456 : cephadm 1 Reconfiguring mgr.a (monmap changed)... 2024-03-30T14:03:47.399 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:47 smithi050 bash[22081]: cephadm 2024-03-30T14:03:45.461116+0000 mgr.a (mgr.14152) 457 : cephadm 1 Reconfiguring daemon mgr.a on smithi026 2024-03-30T14:03:47.400 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:47 smithi050 bash[22081]: cluster 2024-03-30T14:03:46.110199+0000 mgr.a (mgr.14152) 458 : cluster 0 pgmap v369: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:03:49.060 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:48 smithi026 bash[21443]: audit 2024-03-30T14:03:47.809743+0000 mon.a (mon.0) 1064 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:49.060 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:48 smithi026 bash[21443]: audit 2024-03-30T14:03:47.818338+0000 mon.a (mon.0) 1065 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:49.060 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:48 smithi026 bash[21443]: cephadm 2024-03-30T14:03:47.833864+0000 mgr.a (mgr.14152) 459 : cephadm 1 Reconfiguring osd.0 (monmap changed)... 2024-03-30T14:03:49.060 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:48 smithi026 bash[21443]: audit 2024-03-30T14:03:47.834371+0000 mon.a (mon.0) 1066 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-03-30T14:03:49.060 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:48 smithi026 bash[21443]: audit 2024-03-30T14:03:47.835692+0000 mon.a (mon.0) 1067 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:03:49.060 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:48 smithi026 bash[21443]: cephadm 2024-03-30T14:03:47.838295+0000 mgr.a (mgr.14152) 460 : cephadm 1 Reconfiguring daemon osd.0 on smithi026 2024-03-30T14:03:49.060 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:48 smithi026 bash[21443]: cluster 2024-03-30T14:03:48.110770+0000 mgr.a (mgr.14152) 461 : cluster 0 pgmap v370: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:03:49.061 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:48 smithi050 bash[22081]: audit 2024-03-30T14:03:47.809743+0000 mon.a (mon.0) 1064 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:49.061 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:48 smithi050 bash[22081]: audit 2024-03-30T14:03:47.818338+0000 mon.a (mon.0) 1065 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:49.061 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:48 smithi050 bash[22081]: cephadm 2024-03-30T14:03:47.833864+0000 mgr.a (mgr.14152) 459 : cephadm 1 Reconfiguring osd.0 (monmap changed)... 2024-03-30T14:03:49.061 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:48 smithi050 bash[22081]: audit 2024-03-30T14:03:47.834371+0000 mon.a (mon.0) 1066 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-03-30T14:03:49.061 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:48 smithi050 bash[22081]: audit 2024-03-30T14:03:47.835692+0000 mon.a (mon.0) 1067 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:03:49.061 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:48 smithi050 bash[22081]: cephadm 2024-03-30T14:03:47.838295+0000 mgr.a (mgr.14152) 460 : cephadm 1 Reconfiguring daemon osd.0 on smithi026 2024-03-30T14:03:49.061 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:48 smithi050 bash[22081]: cluster 2024-03-30T14:03:48.110770+0000 mgr.a (mgr.14152) 461 : cluster 0 pgmap v370: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:03:51.319 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:51 smithi026 bash[21443]: audit 2024-03-30T14:03:50.078506+0000 mon.a (mon.0) 1068 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:51.319 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:51 smithi026 bash[21443]: audit 2024-03-30T14:03:50.086832+0000 mon.a (mon.0) 1069 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:51.319 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:51 smithi026 bash[21443]: cephadm 2024-03-30T14:03:50.108833+0000 mgr.a (mgr.14152) 462 : cephadm 1 Reconfiguring osd.1 (monmap changed)... 2024-03-30T14:03:51.320 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:51 smithi026 bash[21443]: audit 2024-03-30T14:03:50.109352+0000 mon.a (mon.0) 1070 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-03-30T14:03:51.320 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:51 smithi026 bash[21443]: audit 2024-03-30T14:03:50.110601+0000 mon.a (mon.0) 1071 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:03:51.320 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:51 smithi026 bash[21443]: cluster 2024-03-30T14:03:50.111185+0000 mgr.a (mgr.14152) 463 : cluster 0 pgmap v371: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:03:51.320 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:51 smithi026 bash[21443]: cephadm 2024-03-30T14:03:50.113064+0000 mgr.a (mgr.14152) 464 : cephadm 1 Reconfiguring daemon osd.1 on smithi026 2024-03-30T14:03:51.388 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:51 smithi050 bash[22081]: audit 2024-03-30T14:03:50.078506+0000 mon.a (mon.0) 1068 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:51.388 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:51 smithi050 bash[22081]: audit 2024-03-30T14:03:50.086832+0000 mon.a (mon.0) 1069 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:51.388 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:51 smithi050 bash[22081]: cephadm 2024-03-30T14:03:50.108833+0000 mgr.a (mgr.14152) 462 : cephadm 1 Reconfiguring osd.1 (monmap changed)... 2024-03-30T14:03:51.388 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:51 smithi050 bash[22081]: audit 2024-03-30T14:03:50.109352+0000 mon.a (mon.0) 1070 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-03-30T14:03:51.388 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:51 smithi050 bash[22081]: audit 2024-03-30T14:03:50.110601+0000 mon.a (mon.0) 1071 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:03:51.388 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:51 smithi050 bash[22081]: cluster 2024-03-30T14:03:50.111185+0000 mgr.a (mgr.14152) 463 : cluster 0 pgmap v371: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:03:51.388 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:51 smithi050 bash[22081]: cephadm 2024-03-30T14:03:50.113064+0000 mgr.a (mgr.14152) 464 : cephadm 1 Reconfiguring daemon osd.1 on smithi026 2024-03-30T14:03:53.513 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:53 smithi050 bash[22081]: cluster 2024-03-30T14:03:52.111720+0000 mgr.a (mgr.14152) 465 : cluster 0 pgmap v372: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:03:53.513 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:53 smithi050 bash[22081]: audit 2024-03-30T14:03:52.253782+0000 mon.a (mon.0) 1072 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:53.513 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:53 smithi050 bash[22081]: audit 2024-03-30T14:03:52.262510+0000 mon.a (mon.0) 1073 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:53.513 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:53 smithi050 bash[22081]: audit 2024-03-30T14:03:52.283470+0000 mon.a (mon.0) 1074 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-03-30T14:03:53.513 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:53 smithi050 bash[22081]: audit 2024-03-30T14:03:52.285200+0000 mon.a (mon.0) 1075 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-03-30T14:03:53.513 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:53 smithi050 bash[22081]: audit 2024-03-30T14:03:52.286907+0000 mon.a (mon.0) 1076 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:03:53.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:53 smithi026 bash[21443]: cluster 2024-03-30T14:03:52.111720+0000 mgr.a (mgr.14152) 465 : cluster 0 pgmap v372: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:03:53.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:53 smithi026 bash[21443]: audit 2024-03-30T14:03:52.253782+0000 mon.a (mon.0) 1072 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:53.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:53 smithi026 bash[21443]: audit 2024-03-30T14:03:52.262510+0000 mon.a (mon.0) 1073 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:53.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:53 smithi026 bash[21443]: audit 2024-03-30T14:03:52.283470+0000 mon.a (mon.0) 1074 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-03-30T14:03:53.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:53 smithi026 bash[21443]: audit 2024-03-30T14:03:52.285200+0000 mon.a (mon.0) 1075 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-03-30T14:03:53.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:53 smithi026 bash[21443]: audit 2024-03-30T14:03:52.286907+0000 mon.a (mon.0) 1076 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:03:54.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:54 smithi026 bash[21443]: cephadm 2024-03-30T14:03:52.282877+0000 mgr.a (mgr.14152) 466 : cephadm 1 Reconfiguring mon.b (monmap changed)... 2024-03-30T14:03:54.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:54 smithi026 bash[21443]: cephadm 2024-03-30T14:03:52.288963+0000 mgr.a (mgr.14152) 467 : cephadm 1 Reconfiguring daemon mon.b on smithi050 2024-03-30T14:03:54.649 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:54 smithi050 bash[22081]: cephadm 2024-03-30T14:03:52.282877+0000 mgr.a (mgr.14152) 466 : cephadm 1 Reconfiguring mon.b (monmap changed)... 2024-03-30T14:03:54.649 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:54 smithi050 bash[22081]: cephadm 2024-03-30T14:03:52.288963+0000 mgr.a (mgr.14152) 467 : cephadm 1 Reconfiguring daemon mon.b on smithi050 2024-03-30T14:03:55.513 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:55 smithi050 bash[22081]: cluster 2024-03-30T14:03:54.112335+0000 mgr.a (mgr.14152) 468 : cluster 0 pgmap v373: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:03:55.513 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:55 smithi050 bash[22081]: audit 2024-03-30T14:03:54.274601+0000 mon.a (mon.0) 1077 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:55.513 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:55 smithi050 bash[22081]: audit 2024-03-30T14:03:54.283647+0000 mon.a (mon.0) 1078 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:55.513 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:55 smithi050 bash[22081]: cephadm 2024-03-30T14:03:54.308438+0000 mgr.a (mgr.14152) 469 : cephadm 1 Reconfiguring mgr.b (monmap changed)... 2024-03-30T14:03:55.513 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:55 smithi050 bash[22081]: audit 2024-03-30T14:03:54.309160+0000 mon.a (mon.0) 1079 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-03-30T14:03:55.513 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:55 smithi050 bash[22081]: audit 2024-03-30T14:03:54.311154+0000 mon.a (mon.0) 1080 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-03-30T14:03:55.513 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:55 smithi050 bash[22081]: audit 2024-03-30T14:03:54.312879+0000 mon.a (mon.0) 1081 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:03:55.513 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:55 smithi050 bash[22081]: cephadm 2024-03-30T14:03:54.314888+0000 mgr.a (mgr.14152) 470 : cephadm 1 Reconfiguring daemon mgr.b on smithi050 2024-03-30T14:03:55.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:55 smithi026 bash[21443]: cluster 2024-03-30T14:03:54.112335+0000 mgr.a (mgr.14152) 468 : cluster 0 pgmap v373: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:03:55.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:55 smithi026 bash[21443]: audit 2024-03-30T14:03:54.274601+0000 mon.a (mon.0) 1077 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:55.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:55 smithi026 bash[21443]: audit 2024-03-30T14:03:54.283647+0000 mon.a (mon.0) 1078 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:55.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:55 smithi026 bash[21443]: cephadm 2024-03-30T14:03:54.308438+0000 mgr.a (mgr.14152) 469 : cephadm 1 Reconfiguring mgr.b (monmap changed)... 2024-03-30T14:03:55.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:55 smithi026 bash[21443]: audit 2024-03-30T14:03:54.309160+0000 mon.a (mon.0) 1079 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-03-30T14:03:55.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:55 smithi026 bash[21443]: audit 2024-03-30T14:03:54.311154+0000 mon.a (mon.0) 1080 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-03-30T14:03:55.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:55 smithi026 bash[21443]: audit 2024-03-30T14:03:54.312879+0000 mon.a (mon.0) 1081 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:03:55.605 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:55 smithi026 bash[21443]: cephadm 2024-03-30T14:03:54.314888+0000 mgr.a (mgr.14152) 470 : cephadm 1 Reconfiguring daemon mgr.b on smithi050 2024-03-30T14:03:56.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:56 smithi026 bash[21443]: cluster 2024-03-30T14:03:56.112878+0000 mgr.a (mgr.14152) 471 : cluster 0 pgmap v374: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:03:56.649 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:56 smithi050 bash[22081]: cluster 2024-03-30T14:03:56.112878+0000 mgr.a (mgr.14152) 471 : cluster 0 pgmap v374: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:03:57.649 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:57 smithi050 bash[22081]: audit 2024-03-30T14:03:56.399850+0000 mon.a (mon.0) 1082 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:57.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:57 smithi050 bash[22081]: audit 2024-03-30T14:03:56.408806+0000 mon.a (mon.0) 1083 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:57.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:57 smithi050 bash[22081]: cephadm 2024-03-30T14:03:56.435367+0000 mgr.a (mgr.14152) 472 : cephadm 1 Reconfiguring osd.2 (monmap changed)... 2024-03-30T14:03:57.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:57 smithi050 bash[22081]: audit 2024-03-30T14:03:56.436008+0000 mon.a (mon.0) 1084 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-03-30T14:03:57.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:57 smithi050 bash[22081]: audit 2024-03-30T14:03:56.437835+0000 mon.a (mon.0) 1085 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:03:57.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:57 smithi050 bash[22081]: cephadm 2024-03-30T14:03:56.440796+0000 mgr.a (mgr.14152) 473 : cephadm 1 Reconfiguring daemon osd.2 on smithi050 2024-03-30T14:03:57.854 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:57 smithi026 bash[21443]: audit 2024-03-30T14:03:56.399850+0000 mon.a (mon.0) 1082 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:57.854 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:57 smithi026 bash[21443]: audit 2024-03-30T14:03:56.408806+0000 mon.a (mon.0) 1083 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:57.854 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:57 smithi026 bash[21443]: cephadm 2024-03-30T14:03:56.435367+0000 mgr.a (mgr.14152) 472 : cephadm 1 Reconfiguring osd.2 (monmap changed)... 2024-03-30T14:03:57.854 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:57 smithi026 bash[21443]: audit 2024-03-30T14:03:56.436008+0000 mon.a (mon.0) 1084 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-03-30T14:03:57.854 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:57 smithi026 bash[21443]: audit 2024-03-30T14:03:56.437835+0000 mon.a (mon.0) 1085 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:03:57.854 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:57 smithi026 bash[21443]: cephadm 2024-03-30T14:03:56.440796+0000 mgr.a (mgr.14152) 473 : cephadm 1 Reconfiguring daemon osd.2 on smithi050 2024-03-30T14:03:58.649 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:58 smithi050 bash[22081]: cluster 2024-03-30T14:03:58.113564+0000 mgr.a (mgr.14152) 474 : cluster 0 pgmap v375: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:03:58.854 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:58 smithi026 bash[21443]: cluster 2024-03-30T14:03:58.113564+0000 mgr.a (mgr.14152) 474 : cluster 0 pgmap v375: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:03:59.841 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:59 smithi050 bash[22081]: audit 2024-03-30T14:03:58.516119+0000 mon.a (mon.0) 1086 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:59.842 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:59 smithi050 bash[22081]: audit 2024-03-30T14:03:58.525293+0000 mon.a (mon.0) 1087 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:59.842 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:59 smithi050 bash[22081]: cephadm 2024-03-30T14:03:58.560858+0000 mgr.a (mgr.14152) 475 : cephadm 1 Reconfiguring osd.3 (monmap changed)... 2024-03-30T14:03:59.842 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:59 smithi050 bash[22081]: audit 2024-03-30T14:03:58.561528+0000 mon.a (mon.0) 1088 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-03-30T14:03:59.842 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:59 smithi050 bash[22081]: audit 2024-03-30T14:03:58.563370+0000 mon.a (mon.0) 1089 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:03:59.842 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:03:59 smithi050 bash[22081]: cephadm 2024-03-30T14:03:58.566200+0000 mgr.a (mgr.14152) 476 : cephadm 1 Reconfiguring daemon osd.3 on smithi050 2024-03-30T14:03:59.854 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:59 smithi026 bash[21443]: audit 2024-03-30T14:03:58.516119+0000 mon.a (mon.0) 1086 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:59.854 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:59 smithi026 bash[21443]: audit 2024-03-30T14:03:58.525293+0000 mon.a (mon.0) 1087 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:03:59.854 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:59 smithi026 bash[21443]: cephadm 2024-03-30T14:03:58.560858+0000 mgr.a (mgr.14152) 475 : cephadm 1 Reconfiguring osd.3 (monmap changed)... 2024-03-30T14:03:59.854 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:59 smithi026 bash[21443]: audit 2024-03-30T14:03:58.561528+0000 mon.a (mon.0) 1088 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-03-30T14:03:59.854 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:59 smithi026 bash[21443]: audit 2024-03-30T14:03:58.563370+0000 mon.a (mon.0) 1089 : audit 0 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-30T14:03:59.854 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:03:59 smithi026 bash[21443]: cephadm 2024-03-30T14:03:58.566200+0000 mgr.a (mgr.14152) 476 : cephadm 1 Reconfiguring daemon osd.3 on smithi050 2024-03-30T14:04:00.854 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:04:00 smithi026 bash[21443]: cluster 2024-03-30T14:04:00.114199+0000 mgr.a (mgr.14152) 477 : cluster 0 pgmap v376: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:04:00.899 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:04:00 smithi050 bash[22081]: cluster 2024-03-30T14:04:00.114199+0000 mgr.a (mgr.14152) 477 : cluster 0 pgmap v376: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:04:01.854 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:04:01 smithi026 bash[21443]: audit 2024-03-30T14:04:00.683048+0000 mon.a (mon.0) 1090 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:04:01.854 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:04:01 smithi026 bash[21443]: audit 2024-03-30T14:04:00.688702+0000 mon.a (mon.0) 1091 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:04:02.149 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:04:01 smithi050 bash[22081]: audit 2024-03-30T14:04:00.683048+0000 mon.a (mon.0) 1090 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:04:02.149 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:04:01 smithi050 bash[22081]: audit 2024-03-30T14:04:00.688702+0000 mon.a (mon.0) 1091 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:04:03.102 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:04:02 smithi026 bash[21443]: cluster 2024-03-30T14:04:02.114747+0000 mgr.a (mgr.14152) 478 : cluster 0 pgmap v377: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:04:03.149 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:04:02 smithi050 bash[22081]: cluster 2024-03-30T14:04:02.114747+0000 mgr.a (mgr.14152) 478 : cluster 0 pgmap v377: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:04:05.104 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:04:04 smithi026 bash[21443]: audit 2024-03-30T14:04:03.833915+0000 mon.a (mon.0) 1092 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:04:05.104 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:04:04 smithi026 bash[21443]: audit 2024-03-30T14:04:03.840675+0000 mon.a (mon.0) 1093 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:04:05.104 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:04:04 smithi026 bash[21443]: audit 2024-03-30T14:04:03.847947+0000 mon.a (mon.0) 1094 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:04:05.104 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:04:04 smithi026 bash[21443]: cluster 2024-03-30T14:04:04.115311+0000 mgr.a (mgr.14152) 479 : cluster 0 pgmap v378: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:04:05.149 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:04:04 smithi050 bash[22081]: audit 2024-03-30T14:04:03.833915+0000 mon.a (mon.0) 1092 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:04:05.150 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:04:04 smithi050 bash[22081]: audit 2024-03-30T14:04:03.840675+0000 mon.a (mon.0) 1093 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:04:05.150 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:04:04 smithi050 bash[22081]: audit 2024-03-30T14:04:03.847947+0000 mon.a (mon.0) 1094 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:04:05.150 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:04:04 smithi050 bash[22081]: cluster 2024-03-30T14:04:04.115311+0000 mgr.a (mgr.14152) 479 : cluster 0 pgmap v378: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:04:06.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:04:06 smithi050 bash[22081]: audit 2024-03-30T14:04:05.375790+0000 mon.a (mon.0) 1095 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:04:06.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:04:06 smithi050 bash[22081]: audit 2024-03-30T14:04:05.384706+0000 mon.a (mon.0) 1096 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:04:06.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:04:06 smithi050 bash[22081]: audit 2024-03-30T14:04:05.394785+0000 mon.a (mon.0) 1097 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:04:06.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:04:06 smithi050 bash[22081]: cluster 2024-03-30T14:04:06.115893+0000 mgr.a (mgr.14152) 480 : cluster 0 pgmap v379: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:04:06.854 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:04:06 smithi026 bash[21443]: audit 2024-03-30T14:04:05.375790+0000 mon.a (mon.0) 1095 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:04:06.880 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:04:06 smithi026 bash[21443]: audit 2024-03-30T14:04:05.384706+0000 mon.a (mon.0) 1096 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:04:06.881 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:04:06 smithi026 bash[21443]: audit 2024-03-30T14:04:05.394785+0000 mon.a (mon.0) 1097 : audit 1 from='mgr.14152 172.21.15.26:0/642874007' entity='mgr.a' 2024-03-30T14:04:06.881 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:04:06 smithi026 bash[21443]: cluster 2024-03-30T14:04:06.115893+0000 mgr.a (mgr.14152) 480 : cluster 0 pgmap v379: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:04:09.399 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:04:09 smithi050 bash[22081]: cluster 2024-03-30T14:04:08.116455+0000 mgr.a (mgr.14152) 481 : cluster 0 pgmap v380: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:04:09.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:04:09 smithi026 bash[21443]: cluster 2024-03-30T14:04:08.116455+0000 mgr.a (mgr.14152) 481 : cluster 0 pgmap v380: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:04:11.604 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:04:11 smithi026 bash[21443]: cluster 2024-03-30T14:04:10.117049+0000 mgr.a (mgr.14152) 482 : cluster 0 pgmap v381: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:04:11.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:04:11 smithi050 bash[22081]: cluster 2024-03-30T14:04:10.117049+0000 mgr.a (mgr.14152) 482 : cluster 0 pgmap v381: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:04:12.081 INFO:teuthology.orchestra.run.smithi026.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-03-30T14:04:12.424 INFO:teuthology.orchestra.run.smithi026.stderr:18 2024-03-30T14:04:12.435 INFO:teuthology.orchestra.run.smithi026.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-03-30T14:04:12.453 INFO:teuthology.orchestra.run.smithi026.stderr:++ cat crushmap.txt 2024-03-30T14:04:12.455 INFO:teuthology.orchestra.run.smithi026.stderr:+ CRUSH_MAP='# begin crush map 2024-03-30T14:04:12.455 INFO:teuthology.orchestra.run.smithi026.stderr:tunable choose_local_tries 0 2024-03-30T14:04:12.455 INFO:teuthology.orchestra.run.smithi026.stderr:tunable choose_local_fallback_tries 0 2024-03-30T14:04:12.455 INFO:teuthology.orchestra.run.smithi026.stderr:tunable choose_total_tries 50 2024-03-30T14:04:12.455 INFO:teuthology.orchestra.run.smithi026.stderr:tunable chooseleaf_descend_once 1 2024-03-30T14:04:12.455 INFO:teuthology.orchestra.run.smithi026.stderr:tunable chooseleaf_vary_r 1 2024-03-30T14:04:12.455 INFO:teuthology.orchestra.run.smithi026.stderr:tunable chooseleaf_stable 1 2024-03-30T14:04:12.455 INFO:teuthology.orchestra.run.smithi026.stderr:tunable straw_calc_version 1 2024-03-30T14:04:12.455 INFO:teuthology.orchestra.run.smithi026.stderr:tunable allowed_bucket_algs 54 2024-03-30T14:04:12.455 INFO:teuthology.orchestra.run.smithi026.stderr: 2024-03-30T14:04:12.455 INFO:teuthology.orchestra.run.smithi026.stderr:# devices 2024-03-30T14:04:12.456 INFO:teuthology.orchestra.run.smithi026.stderr:device 0 osd.0 class ssd 2024-03-30T14:04:12.456 INFO:teuthology.orchestra.run.smithi026.stderr:device 1 osd.1 class ssd 2024-03-30T14:04:12.456 INFO:teuthology.orchestra.run.smithi026.stderr:device 2 osd.2 class ssd 2024-03-30T14:04:12.456 INFO:teuthology.orchestra.run.smithi026.stderr:device 3 osd.3 class ssd 2024-03-30T14:04:12.456 INFO:teuthology.orchestra.run.smithi026.stderr: 2024-03-30T14:04:12.456 INFO:teuthology.orchestra.run.smithi026.stderr:# types 2024-03-30T14:04:12.456 INFO:teuthology.orchestra.run.smithi026.stderr:type 0 osd 2024-03-30T14:04:12.456 INFO:teuthology.orchestra.run.smithi026.stderr:type 1 host 2024-03-30T14:04:12.456 INFO:teuthology.orchestra.run.smithi026.stderr:type 2 chassis 2024-03-30T14:04:12.456 INFO:teuthology.orchestra.run.smithi026.stderr:type 3 rack 2024-03-30T14:04:12.456 INFO:teuthology.orchestra.run.smithi026.stderr:type 4 row 2024-03-30T14:04:12.456 INFO:teuthology.orchestra.run.smithi026.stderr:type 5 pdu 2024-03-30T14:04:12.456 INFO:teuthology.orchestra.run.smithi026.stderr:type 6 pod 2024-03-30T14:04:12.456 INFO:teuthology.orchestra.run.smithi026.stderr:type 7 room 2024-03-30T14:04:12.457 INFO:teuthology.orchestra.run.smithi026.stderr:type 8 datacenter 2024-03-30T14:04:12.457 INFO:teuthology.orchestra.run.smithi026.stderr:type 9 zone 2024-03-30T14:04:12.457 INFO:teuthology.orchestra.run.smithi026.stderr:type 10 region 2024-03-30T14:04:12.457 INFO:teuthology.orchestra.run.smithi026.stderr:type 11 root 2024-03-30T14:04:12.457 INFO:teuthology.orchestra.run.smithi026.stderr: 2024-03-30T14:04:12.457 INFO:teuthology.orchestra.run.smithi026.stderr:# buckets 2024-03-30T14:04:12.457 INFO:teuthology.orchestra.run.smithi026.stderr:host smithi026 { 2024-03-30T14:04:12.457 INFO:teuthology.orchestra.run.smithi026.stderr: id -3 # do not change unnecessarily 2024-03-30T14:04:12.457 INFO:teuthology.orchestra.run.smithi026.stderr: id -4 class ssd # do not change unnecessarily 2024-03-30T14:04:12.457 INFO:teuthology.orchestra.run.smithi026.stderr: # weight 0.17459 2024-03-30T14:04:12.457 INFO:teuthology.orchestra.run.smithi026.stderr: alg straw2 2024-03-30T14:04:12.457 INFO:teuthology.orchestra.run.smithi026.stderr: hash 0 # rjenkins1 2024-03-30T14:04:12.457 INFO:teuthology.orchestra.run.smithi026.stderr: item osd.0 weight 0.08730 2024-03-30T14:04:12.458 INFO:teuthology.orchestra.run.smithi026.stderr: item osd.1 weight 0.08730 2024-03-30T14:04:12.458 INFO:teuthology.orchestra.run.smithi026.stderr:} 2024-03-30T14:04:12.458 INFO:teuthology.orchestra.run.smithi026.stderr:host smithi050 { 2024-03-30T14:04:12.458 INFO:teuthology.orchestra.run.smithi026.stderr: id -5 # do not change unnecessarily 2024-03-30T14:04:12.458 INFO:teuthology.orchestra.run.smithi026.stderr: id -6 class ssd # do not change unnecessarily 2024-03-30T14:04:12.458 INFO:teuthology.orchestra.run.smithi026.stderr: # weight 0.17459 2024-03-30T14:04:12.458 INFO:teuthology.orchestra.run.smithi026.stderr: alg straw2 2024-03-30T14:04:12.458 INFO:teuthology.orchestra.run.smithi026.stderr: hash 0 # rjenkins1 2024-03-30T14:04:12.458 INFO:teuthology.orchestra.run.smithi026.stderr: item osd.2 weight 0.08730 2024-03-30T14:04:12.458 INFO:teuthology.orchestra.run.smithi026.stderr: item osd.3 weight 0.08730 2024-03-30T14:04:12.458 INFO:teuthology.orchestra.run.smithi026.stderr:} 2024-03-30T14:04:12.458 INFO:teuthology.orchestra.run.smithi026.stderr:root default { 2024-03-30T14:04:12.458 INFO:teuthology.orchestra.run.smithi026.stderr: id -1 # do not change unnecessarily 2024-03-30T14:04:12.458 INFO:teuthology.orchestra.run.smithi026.stderr: id -2 class ssd # do not change unnecessarily 2024-03-30T14:04:12.458 INFO:teuthology.orchestra.run.smithi026.stderr: # weight 0.34918 2024-03-30T14:04:12.459 INFO:teuthology.orchestra.run.smithi026.stderr: alg straw2 2024-03-30T14:04:12.459 INFO:teuthology.orchestra.run.smithi026.stderr: hash 0 # rjenkins1 2024-03-30T14:04:12.459 INFO:teuthology.orchestra.run.smithi026.stderr: item smithi026 weight 0.17459 2024-03-30T14:04:12.459 INFO:teuthology.orchestra.run.smithi026.stderr: item smithi050 weight 0.17459 2024-03-30T14:04:12.459 INFO:teuthology.orchestra.run.smithi026.stderr:} 2024-03-30T14:04:12.459 INFO:teuthology.orchestra.run.smithi026.stderr: 2024-03-30T14:04:12.459 INFO:teuthology.orchestra.run.smithi026.stderr:# rules 2024-03-30T14:04:12.459 INFO:teuthology.orchestra.run.smithi026.stderr:rule replicated_rule { 2024-03-30T14:04:12.459 INFO:teuthology.orchestra.run.smithi026.stderr: id 0 2024-03-30T14:04:12.459 INFO:teuthology.orchestra.run.smithi026.stderr: type replicated 2024-03-30T14:04:12.459 INFO:teuthology.orchestra.run.smithi026.stderr: step take default 2024-03-30T14:04:12.459 INFO:teuthology.orchestra.run.smithi026.stderr: step choose firstn 0 type osd 2024-03-30T14:04:12.459 INFO:teuthology.orchestra.run.smithi026.stderr: step emit 2024-03-30T14:04:12.459 INFO:teuthology.orchestra.run.smithi026.stderr:} 2024-03-30T14:04:12.459 INFO:teuthology.orchestra.run.smithi026.stderr: 2024-03-30T14:04:12.459 INFO:teuthology.orchestra.run.smithi026.stderr:# end crush map' 2024-03-30T14:04:12.460 INFO:teuthology.orchestra.run.smithi026.stderr:+ grep -q smithi136 2024-03-30T14:04:13.327 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-03-30T14:04:13.337 INFO:tasks.cephadm:Teardown begin 2024-03-30T14:04:13.338 DEBUG:teuthology.orchestra.run.smithi026:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-03-30T14:04:13.352 DEBUG:teuthology.orchestra.run.smithi050:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-03-30T14:04:13.367 DEBUG:teuthology.orchestra.run.smithi136:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-03-30T14:04:13.382 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-03-30T14:04:13.382 DEBUG:teuthology.orchestra.run.smithi026:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-03-30T14:04:13.402 DEBUG:teuthology.orchestra.run.smithi050:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-03-30T14:04:13.417 DEBUG:teuthology.orchestra.run.smithi136:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-03-30T14:04:13.428 INFO:tasks.cephadm:Stopping all daemons... 2024-03-30T14:04:13.428 INFO:tasks.cephadm.mon.a:Stopping mon.a... 2024-03-30T14:04:13.428 DEBUG:teuthology.orchestra.run.smithi026:> sudo systemctl stop ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@mon.a 2024-03-30T14:04:13.455 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:04:13 smithi026 bash[21443]: cluster 2024-03-30T14:04:12.117633+0000 mgr.a (mgr.14152) 483 : cluster 0 pgmap v382: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:04:13.455 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:04:13 smithi026 bash[21443]: audit 2024-03-30T14:04:12.430989+0000 mon.a (mon.0) 1098 : audit 0 from='client.? 172.21.15.26:0/579428839' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-03-30T14:04:13.595 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:04:13 smithi026 systemd[1]: Stopping Ceph mon.a for 56554a52-ee9c-11ee-b647-cb9ed24678a4... 2024-03-30T14:04:13.649 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:04:13 smithi050 bash[22081]: cluster 2024-03-30T14:04:12.117633+0000 mgr.a (mgr.14152) 483 : cluster 0 pgmap v382: 1 pgs: 1 active+clean; 577 KiB data, 122 MiB used, 357 GiB / 358 GiB avail 2024-03-30T14:04:13.650 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:04:13 smithi050 bash[22081]: audit 2024-03-30T14:04:12.430989+0000 mon.a (mon.0) 1098 : audit 0 from='client.? 172.21.15.26:0/579428839' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-03-30T14:04:13.854 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:04:13 smithi026 bash[21443]: debug 2024-03-30T14:04:13.600+0000 7f32fbcb0700 -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-03-30T14:04:13.854 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:04:13 smithi026 bash[21443]: debug 2024-03-30T14:04:13.600+0000 7f32fbcb0700 -1 mon.a@0(leader) e4 *** Got Signal Terminated *** 2024-03-30T14:04:14.706 DEBUG:teuthology.orchestra.run.smithi026:> sudo pkill -f 'journalctl -f -n 0 -u ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@mon.a.service' 2024-03-30T14:04:14.757 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:04:14 smithi026 bash[46666]: ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4-mon-a 2024-03-30T14:04:14.758 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:04:14 smithi026 bash[46726]: Error response from daemon: No such container: ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4-mon-a 2024-03-30T14:04:14.758 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:04:14 smithi026 systemd[1]: ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@mon.a.service: Deactivated successfully. 2024-03-30T14:04:14.758 INFO:journalctl@ceph.mon.a.smithi026.stdout:Mar 30 14:04:14 smithi026 systemd[1]: Stopped Ceph mon.a for 56554a52-ee9c-11ee-b647-cb9ed24678a4. 2024-03-30T14:04:14.782 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-03-30T14:04:14.782 INFO:tasks.cephadm.mon.a:Stopped mon.a 2024-03-30T14:04:14.782 INFO:tasks.cephadm.mon.c:Stopping mon.b... 2024-03-30T14:04:14.782 DEBUG:teuthology.orchestra.run.smithi050:> sudo systemctl stop ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@mon.b 2024-03-30T14:04:15.124 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:04:14 smithi050 systemd[1]: Stopping Ceph mon.b for 56554a52-ee9c-11ee-b647-cb9ed24678a4... 2024-03-30T14:04:15.124 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:04:15 smithi050 bash[22081]: debug 2024-03-30T14:04:15.044+0000 7ff97c35d700 -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-03-30T14:04:15.124 INFO:journalctl@ceph.mon.b.smithi050.stdout:Mar 30 14:04:15 smithi050 bash[22081]: debug 2024-03-30T14:04:15.044+0000 7ff97c35d700 -1 mon.b@1(peon) e4 *** Got Signal Terminated *** 2024-03-30T14:04:15.945 DEBUG:teuthology.orchestra.run.smithi050:> sudo pkill -f 'journalctl -f -n 0 -u ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@mon.b.service' 2024-03-30T14:04:15.972 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-03-30T14:04:15.972 INFO:tasks.cephadm.mon.c:Stopped mon.b 2024-03-30T14:04:15.972 INFO:tasks.cephadm.mon.c:Stopping mon.c... 2024-03-30T14:04:15.972 DEBUG:teuthology.orchestra.run.smithi136:> sudo systemctl stop ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@mon.c 2024-03-30T14:04:15.995 DEBUG:teuthology.orchestra.run.smithi136:> sudo pkill -f 'journalctl -f -n 0 -u ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@mon.c.service' 2024-03-30T14:04:16.070 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-03-30T14:04:16.071 INFO:tasks.cephadm.mon.c:Stopped mon.c 2024-03-30T14:04:16.071 INFO:tasks.cephadm.mgr.a:Stopping mgr.a... 2024-03-30T14:04:16.071 DEBUG:teuthology.orchestra.run.smithi026:> sudo systemctl stop ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@mgr.a 2024-03-30T14:04:16.354 INFO:journalctl@ceph.mgr.a.smithi026.stdout:Mar 30 14:04:16 smithi026 systemd[1]: Stopping Ceph mgr.a for 56554a52-ee9c-11ee-b647-cb9ed24678a4... 2024-03-30T14:04:17.040 DEBUG:teuthology.orchestra.run.smithi026:> sudo pkill -f 'journalctl -f -n 0 -u ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@mgr.a.service' 2024-03-30T14:04:17.063 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-03-30T14:04:17.063 INFO:tasks.cephadm.mgr.a:Stopped mgr.a 2024-03-30T14:04:17.063 INFO:tasks.cephadm.mgr.b:Stopping mgr.b... 2024-03-30T14:04:17.063 DEBUG:teuthology.orchestra.run.smithi050:> sudo systemctl stop ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@mgr.b 2024-03-30T14:04:17.399 INFO:journalctl@ceph.mgr.b.smithi050.stdout:Mar 30 14:04:17 smithi050 systemd[1]: Stopping Ceph mgr.b for 56554a52-ee9c-11ee-b647-cb9ed24678a4... 2024-03-30T14:04:18.028 DEBUG:teuthology.orchestra.run.smithi050:> sudo pkill -f 'journalctl -f -n 0 -u ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@mgr.b.service' 2024-03-30T14:04:18.048 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-03-30T14:04:18.048 INFO:tasks.cephadm.mgr.b:Stopped mgr.b 2024-03-30T14:04:18.048 INFO:tasks.cephadm.osd.0:Stopping osd.0... 2024-03-30T14:04:18.048 DEBUG:teuthology.orchestra.run.smithi026:> sudo systemctl stop ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@osd.0 2024-03-30T14:04:18.354 INFO:journalctl@ceph.osd.0.smithi026.stdout:Mar 30 14:04:18 smithi026 systemd[1]: Stopping Ceph osd.0 for 56554a52-ee9c-11ee-b647-cb9ed24678a4... 2024-03-30T14:04:18.354 INFO:journalctl@ceph.osd.0.smithi026.stdout:Mar 30 14:04:18 smithi026 bash[31845]: debug 2024-03-30T14:04:18.204+0000 7fd83e475700 -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-03-30T14:04:18.354 INFO:journalctl@ceph.osd.0.smithi026.stdout:Mar 30 14:04:18 smithi026 bash[31845]: debug 2024-03-30T14:04:18.204+0000 7fd83e475700 -1 osd.0 57 *** Got signal Terminated *** 2024-03-30T14:04:18.354 INFO:journalctl@ceph.osd.0.smithi026.stdout:Mar 30 14:04:18 smithi026 bash[31845]: debug 2024-03-30T14:04:18.204+0000 7fd83e475700 -1 osd.0 57 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-03-30T14:04:24.354 INFO:journalctl@ceph.osd.0.smithi026.stdout:Mar 30 14:04:24 smithi026 bash[46864]: ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4-osd-0 2024-03-30T14:04:24.853 INFO:journalctl@ceph.osd.0.smithi026.stdout:Mar 30 14:04:24 smithi026 bash[47106]: Error response from daemon: No such container: ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4-osd-0 2024-03-30T14:04:26.223 DEBUG:teuthology.orchestra.run.smithi026:> sudo pkill -f 'journalctl -f -n 0 -u ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@osd.0.service' 2024-03-30T14:04:26.251 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-03-30T14:04:26.251 INFO:tasks.cephadm.osd.0:Stopped osd.0 2024-03-30T14:04:26.251 INFO:tasks.cephadm.osd.1:Stopping osd.1... 2024-03-30T14:04:26.251 DEBUG:teuthology.orchestra.run.smithi026:> sudo systemctl stop ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@osd.1 2024-03-30T14:04:26.604 INFO:journalctl@ceph.osd.1.smithi026.stdout:Mar 30 14:04:26 smithi026 systemd[1]: Stopping Ceph osd.1 for 56554a52-ee9c-11ee-b647-cb9ed24678a4... 2024-03-30T14:04:26.604 INFO:journalctl@ceph.osd.1.smithi026.stdout:Mar 30 14:04:26 smithi026 bash[35528]: debug 2024-03-30T14:04:26.424+0000 7f6bfc739700 -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-03-30T14:04:26.604 INFO:journalctl@ceph.osd.1.smithi026.stdout:Mar 30 14:04:26 smithi026 bash[35528]: debug 2024-03-30T14:04:26.424+0000 7f6bfc739700 -1 osd.1 57 *** Got signal Terminated *** 2024-03-30T14:04:26.605 INFO:journalctl@ceph.osd.1.smithi026.stdout:Mar 30 14:04:26 smithi026 bash[35528]: debug 2024-03-30T14:04:26.424+0000 7f6bfc739700 -1 osd.1 57 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-03-30T14:04:32.792 INFO:journalctl@ceph.osd.1.smithi026.stdout:Mar 30 14:04:32 smithi026 bash[47252]: ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4-osd-1 2024-03-30T14:04:32.792 INFO:journalctl@ceph.osd.1.smithi026.stdout:Mar 30 14:04:32 smithi026 bash[47540]: Error response from daemon: No such container: ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4-osd-1 2024-03-30T14:04:34.398 DEBUG:teuthology.orchestra.run.smithi026:> sudo pkill -f 'journalctl -f -n 0 -u ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@osd.1.service' 2024-03-30T14:04:34.447 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-03-30T14:04:34.448 INFO:tasks.cephadm.osd.1:Stopped osd.1 2024-03-30T14:04:34.448 INFO:tasks.cephadm.osd.2:Stopping osd.2... 2024-03-30T14:04:34.448 DEBUG:teuthology.orchestra.run.smithi050:> sudo systemctl stop ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@osd.2 2024-03-30T14:04:34.900 INFO:journalctl@ceph.osd.2.smithi050.stdout:Mar 30 14:04:34 smithi050 systemd[1]: Stopping Ceph osd.2 for 56554a52-ee9c-11ee-b647-cb9ed24678a4... 2024-03-30T14:04:34.900 INFO:journalctl@ceph.osd.2.smithi050.stdout:Mar 30 14:04:34 smithi050 bash[27702]: debug 2024-03-30T14:04:34.604+0000 7f9700b6e700 -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-03-30T14:04:34.900 INFO:journalctl@ceph.osd.2.smithi050.stdout:Mar 30 14:04:34 smithi050 bash[27702]: debug 2024-03-30T14:04:34.604+0000 7f9700b6e700 -1 osd.2 57 *** Got signal Terminated *** 2024-03-30T14:04:34.900 INFO:journalctl@ceph.osd.2.smithi050.stdout:Mar 30 14:04:34 smithi050 bash[27702]: debug 2024-03-30T14:04:34.604+0000 7f9700b6e700 -1 osd.2 57 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-03-30T14:04:40.899 INFO:journalctl@ceph.osd.2.smithi050.stdout:Mar 30 14:04:40 smithi050 bash[37148]: ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4-osd-2 2024-03-30T14:04:40.899 INFO:journalctl@ceph.osd.2.smithi050.stdout:Mar 30 14:04:40 smithi050 bash[37214]: ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4-osd-2 2024-03-30T14:04:42.363 DEBUG:teuthology.orchestra.run.smithi050:> sudo pkill -f 'journalctl -f -n 0 -u ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@osd.2.service' 2024-03-30T14:04:42.390 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-03-30T14:04:42.390 INFO:tasks.cephadm.osd.2:Stopped osd.2 2024-03-30T14:04:42.391 INFO:tasks.cephadm.osd.3:Stopping osd.3... 2024-03-30T14:04:42.391 DEBUG:teuthology.orchestra.run.smithi050:> sudo systemctl stop ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@osd.3 2024-03-30T14:04:42.650 INFO:journalctl@ceph.osd.3.smithi050.stdout:Mar 30 14:04:42 smithi050 systemd[1]: Stopping Ceph osd.3 for 56554a52-ee9c-11ee-b647-cb9ed24678a4... 2024-03-30T14:04:42.650 INFO:journalctl@ceph.osd.3.smithi050.stdout:Mar 30 14:04:42 smithi050 bash[31312]: debug 2024-03-30T14:04:42.583+0000 7f7c188bb700 -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-03-30T14:04:42.650 INFO:journalctl@ceph.osd.3.smithi050.stdout:Mar 30 14:04:42 smithi050 bash[31312]: debug 2024-03-30T14:04:42.583+0000 7f7c188bb700 -1 osd.3 57 *** Got signal Terminated *** 2024-03-30T14:04:42.650 INFO:journalctl@ceph.osd.3.smithi050.stdout:Mar 30 14:04:42 smithi050 bash[31312]: debug 2024-03-30T14:04:42.583+0000 7f7c188bb700 -1 osd.3 57 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-03-30T14:04:45.649 INFO:journalctl@ceph.osd.3.smithi050.stdout:Mar 30 14:04:45 smithi050 bash[31312]: debug 2024-03-30T14:04:45.351+0000 7f7c10ea7700 -1 osd.3 57 heartbeat_check: no reply from 172.21.15.26:6806 osd.0 since back 2024-03-30T14:04:19.946100+0000 front 2024-03-30T14:04:19.946054+0000 (oldest deadline 2024-03-30T14:04:44.645546+0000) 2024-03-30T14:04:46.649 INFO:journalctl@ceph.osd.3.smithi050.stdout:Mar 30 14:04:46 smithi050 bash[31312]: debug 2024-03-30T14:04:46.347+0000 7f7c10ea7700 -1 osd.3 57 heartbeat_check: no reply from 172.21.15.26:6806 osd.0 since back 2024-03-30T14:04:19.946100+0000 front 2024-03-30T14:04:19.946054+0000 (oldest deadline 2024-03-30T14:04:44.645546+0000) 2024-03-30T14:04:47.649 INFO:journalctl@ceph.osd.3.smithi050.stdout:Mar 30 14:04:47 smithi050 bash[31312]: debug 2024-03-30T14:04:47.319+0000 7f7c10ea7700 -1 osd.3 57 heartbeat_check: no reply from 172.21.15.26:6806 osd.0 since back 2024-03-30T14:04:19.946100+0000 front 2024-03-30T14:04:19.946054+0000 (oldest deadline 2024-03-30T14:04:44.645546+0000) 2024-03-30T14:04:48.899 INFO:journalctl@ceph.osd.3.smithi050.stdout:Mar 30 14:04:48 smithi050 bash[37348]: ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4-osd-3 2024-03-30T14:04:48.899 INFO:journalctl@ceph.osd.3.smithi050.stdout:Mar 30 14:04:48 smithi050 bash[37475]: Error response from daemon: No such container: ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4-osd-3 2024-03-30T14:04:50.404 DEBUG:teuthology.orchestra.run.smithi050:> sudo pkill -f 'journalctl -f -n 0 -u ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@osd.3.service' 2024-03-30T14:04:50.433 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-03-30T14:04:50.433 INFO:tasks.cephadm.osd.3:Stopped osd.3 2024-03-30T14:04:50.433 INFO:tasks.cephadm.osd.4:Stopping osd.4... 2024-03-30T14:04:50.433 DEBUG:teuthology.orchestra.run.smithi136:> sudo systemctl stop ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@osd.4 2024-03-30T14:04:50.459 DEBUG:teuthology.orchestra.run.smithi136:> sudo pkill -f 'journalctl -f -n 0 -u ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@osd.4.service' 2024-03-30T14:04:50.527 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-03-30T14:04:50.527 INFO:tasks.cephadm.osd.4:Stopped osd.4 2024-03-30T14:04:50.527 INFO:tasks.cephadm.osd.5:Stopping osd.5... 2024-03-30T14:04:50.527 DEBUG:teuthology.orchestra.run.smithi136:> sudo systemctl stop ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@osd.5 2024-03-30T14:04:50.588 DEBUG:teuthology.orchestra.run.smithi136:> sudo pkill -f 'journalctl -f -n 0 -u ceph-56554a52-ee9c-11ee-b647-cb9ed24678a4@osd.5.service' 2024-03-30T14:04:50.669 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-03-30T14:04:50.669 INFO:tasks.cephadm.osd.5:Stopped osd.5 2024-03-30T14:04:50.669 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 --force --keep-logs 2024-03-30T14:04:50.842 INFO:teuthology.orchestra.run.smithi026.stdout:Deleting cluster with fsid: 56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T14:04:53.643 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 --force --keep-logs 2024-03-30T14:04:53.912 INFO:teuthology.orchestra.run.smithi050.stdout:Deleting cluster with fsid: 56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T14:04:56.634 DEBUG:teuthology.orchestra.run.smithi136:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 --force --keep-logs 2024-03-30T14:04:56.801 INFO:teuthology.orchestra.run.smithi136.stdout:Deleting cluster with fsid: 56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T14:04:58.295 DEBUG:teuthology.orchestra.run.smithi026:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-03-30T14:04:58.310 DEBUG:teuthology.orchestra.run.smithi050:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-03-30T14:04:58.325 DEBUG:teuthology.orchestra.run.smithi136:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-03-30T14:04:58.336 INFO:tasks.cephadm:Archiving crash dumps... 2024-03-30T14:04:58.338 DEBUG:teuthology.misc:Transferring archived files from smithi026:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/crash to /home/teuthworker/archive/teuthology-2024-03-29_21:08:02-orch-squid-distro-default-smithi/7630119/remote/smithi026/crash 2024-03-30T14:04:58.339 DEBUG:teuthology.orchestra.run.smithi026:> sudo tar c -f - -C /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/crash -- . 2024-03-30T14:04:58.364 INFO:teuthology.orchestra.run.smithi026.stderr:tar: /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/crash: Cannot open: No such file or directory 2024-03-30T14:04:58.364 INFO:teuthology.orchestra.run.smithi026.stderr:tar: Error is not recoverable: exiting now 2024-03-30T14:04:58.366 DEBUG:teuthology.misc:Transferring archived files from smithi050:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/crash to /home/teuthworker/archive/teuthology-2024-03-29_21:08:02-orch-squid-distro-default-smithi/7630119/remote/smithi050/crash 2024-03-30T14:04:58.367 DEBUG:teuthology.orchestra.run.smithi050:> sudo tar c -f - -C /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/crash -- . 2024-03-30T14:04:58.380 INFO:teuthology.orchestra.run.smithi050.stderr:tar: /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/crash: Cannot open: No such file or directory 2024-03-30T14:04:58.380 INFO:teuthology.orchestra.run.smithi050.stderr:tar: Error is not recoverable: exiting now 2024-03-30T14:04:58.382 DEBUG:teuthology.misc:Transferring archived files from smithi136:/var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/crash to /home/teuthworker/archive/teuthology-2024-03-29_21:08:02-orch-squid-distro-default-smithi/7630119/remote/smithi136/crash 2024-03-30T14:04:58.383 DEBUG:teuthology.orchestra.run.smithi136:> sudo tar c -f - -C /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/crash -- . 2024-03-30T14:04:58.394 INFO:teuthology.orchestra.run.smithi136.stderr:tar: /var/lib/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/crash: Cannot open: No such file or directory 2024-03-30T14:04:58.394 INFO:teuthology.orchestra.run.smithi136.stderr:tar: Error is not recoverable: exiting now 2024-03-30T14:04:58.395 INFO:tasks.cephadm:Checking cluster log for badness... 2024-03-30T14:04:58.395 DEBUG:teuthology.orchestra.run.smithi026:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | head -n 1 2024-03-30T14:04:58.423 INFO:teuthology.orchestra.run.smithi026.stdout:2024-03-30T14:00:00.000276+0000 mon.a (mon.0) 752 : cluster 3 [WRN] CEPHADM_STRAY_DAEMON: 1 stray daemon(s) not managed by cephadm 2024-03-30T14:04:58.424 WARNING:tasks.cephadm:Found errors (ERR|WRN|SEC) in cluster log 2024-03-30T14:04:58.424 DEBUG:teuthology.orchestra.run.smithi026:> sudo egrep '\[SEC\]' /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | head -n 1 2024-03-30T14:04:58.482 DEBUG:teuthology.orchestra.run.smithi026:> sudo egrep '\[ERR\]' /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | head -n 1 2024-03-30T14:04:58.542 DEBUG:teuthology.orchestra.run.smithi026:> sudo egrep '\[WRN\]' /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | head -n 1 2024-03-30T14:04:58.597 INFO:teuthology.orchestra.run.smithi026.stdout:2024-03-30T14:00:00.000276+0000 mon.a (mon.0) 752 : cluster 3 [WRN] CEPHADM_STRAY_DAEMON: 1 stray daemon(s) not managed by cephadm 2024-03-30T14:04:58.598 INFO:tasks.cephadm:Compressing logs... 2024-03-30T14:04:58.598 DEBUG:teuthology.orchestra.run.smithi026:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-03-30T14:04:58.642 DEBUG:teuthology.orchestra.run.smithi050:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-03-30T14:04:58.645 DEBUG:teuthology.orchestra.run.smithi136:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-03-30T14:04:58.652 INFO:teuthology.orchestra.run.smithi026.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-03-30T14:04:58.656 INFO:teuthology.orchestra.run.smithi050.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-03-30T14:04:58.658 INFO:teuthology.orchestra.run.smithi136.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-03-30T14:04:58.665 INFO:teuthology.orchestra.run.smithi026.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-03-30T14:04:58.665 INFO:teuthology.orchestra.run.smithi026.stderr:gzip -5 --verbose -- /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-osd.0.log 2024-03-30T14:04:58.666 INFO:teuthology.orchestra.run.smithi026.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-mon.a.log 2024-03-30T14:04:58.667 INFO:teuthology.orchestra.run.smithi026.stderr:gzip -5 --verbose -- /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph.cephadm.log 2024-03-30T14:04:58.667 INFO:teuthology.orchestra.run.smithi026.stderr:/var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-mon.a.log: /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-osd.1.log 2024-03-30T14:04:58.667 INFO:teuthology.orchestra.run.smithi026.stderr:/var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph.log 2024-03-30T14:04:58.668 INFO:teuthology.orchestra.run.smithi026.stderr:/var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-osd.1.log: 80.8% -- replaced with /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph.cephadm.log.gz 2024-03-30T14:04:58.668 INFO:teuthology.orchestra.run.smithi026.stderr:gzip -5 --verbose -- /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-volume.log 2024-03-30T14:04:58.668 INFO:teuthology.orchestra.run.smithi026.stderr:gzip -5 --verbose -- /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph.audit.log 2024-03-30T14:04:58.669 INFO:teuthology.orchestra.run.smithi026.stderr:/var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-volume.log: /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph.log: gzip -5 --verbose -- /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-mgr.a.log 2024-03-30T14:04:58.672 INFO:teuthology.orchestra.run.smithi026.stderr:/var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph.audit.log: /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-mgr.a.log: 86.8% -- replaced with /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph.log.gz 2024-03-30T14:04:58.672 INFO:teuthology.orchestra.run.smithi026.stderr: 88.2% -- replaced with /var/log/ceph/cephadm.log.gz 2024-03-30T14:04:58.672 INFO:teuthology.orchestra.run.smithi026.stderr: 90.1% -- replaced with /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph.audit.log.gz 2024-03-30T14:04:58.676 INFO:teuthology.orchestra.run.smithi136.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-03-30T14:04:58.677 INFO:teuthology.orchestra.run.smithi136.stderr:gzip -5 --verbose -- /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph.cephadm.log 2024-03-30T14:04:58.677 INFO:teuthology.orchestra.run.smithi136.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-osd.5.log 2024-03-30T14:04:58.678 INFO:teuthology.orchestra.run.smithi136.stderr:/var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph.log 2024-03-30T14:04:58.678 INFO:teuthology.orchestra.run.smithi136.stderr: 81.5% -- replaced with /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph.cephadm.log.gz 2024-03-30T14:04:58.678 INFO:teuthology.orchestra.run.smithi136.stderr:/var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-osd.5.log: gzip -5 --verbose -- /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-volume.log 2024-03-30T14:04:58.679 INFO:teuthology.orchestra.run.smithi136.stderr:gzip -5 --verbose -- /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-mon.c.log 2024-03-30T14:04:58.679 INFO:teuthology.orchestra.run.smithi136.stderr:/var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph.log: /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph.audit.log 2024-03-30T14:04:58.679 INFO:teuthology.orchestra.run.smithi136.stderr: 85.5% -- replaced with /var/log/ceph/cephadm.log.gz 2024-03-30T14:04:58.680 INFO:teuthology.orchestra.run.smithi136.stderr:/var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-mon.c.log: gzip -5 --verbose -- /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-osd.4.log 2024-03-30T14:04:58.680 INFO:teuthology.orchestra.run.smithi136.stderr: 87.0% -- replaced with /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph.log.gz 2024-03-30T14:04:58.682 INFO:teuthology.orchestra.run.smithi136.stderr:/var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph.audit.log: /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-osd.4.log: 90.4% -- replaced with /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph.audit.log.gz 2024-03-30T14:04:58.702 INFO:teuthology.orchestra.run.smithi136.stderr: 91.7% -- replaced with /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-volume.log.gz 2024-03-30T14:04:58.705 INFO:teuthology.orchestra.run.smithi026.stderr: 91.7% -- replaced with /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-volume.log.gz 2024-03-30T14:04:58.709 INFO:teuthology.orchestra.run.smithi136.stderr: 92.6% -- replaced with /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-osd.5.log.gz 2024-03-30T14:04:58.722 INFO:teuthology.orchestra.run.smithi136.stderr: 92.8% -- replaced with /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-osd.4.log.gz 2024-03-30T14:04:58.730 INFO:teuthology.orchestra.run.smithi026.stderr: 93.2% -- replaced with /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-osd.1.log.gz 2024-03-30T14:04:58.736 INFO:teuthology.orchestra.run.smithi026.stderr: 93.1% -- replaced with /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-osd.0.log.gz 2024-03-30T14:04:58.762 INFO:teuthology.orchestra.run.smithi050.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-03-30T14:04:58.762 INFO:teuthology.orchestra.run.smithi050.stderr:gzip -5 --verbose -- /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-osd.2.log 2024-03-30T14:04:58.763 INFO:teuthology.orchestra.run.smithi050.stderr:gzip -5 --verbose -- /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph.cephadm.log 2024-03-30T14:04:58.764 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/cephadm.log: /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-osd.3.log 2024-03-30T14:04:58.764 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph.cephadm.log: 79.9% -- replaced with /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph.cephadm.log.gz 2024-03-30T14:04:58.765 INFO:teuthology.orchestra.run.smithi050.stderr:gzip -5 --verbose -- /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph.log 2024-03-30T14:04:58.765 INFO:teuthology.orchestra.run.smithi050.stderr:gzip -5 --verbose -- /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-volume.log 2024-03-30T14:04:58.765 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-osd.3.log: /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph.log: gzip -5 --verbose -- /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-mgr.b.log 2024-03-30T14:04:58.766 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph.audit.log 2024-03-30T14:04:58.767 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-mgr.b.log: gzip 86.7% 86.8% -- replaced with /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph.log.gz -- replaced with /var/log/ceph/cephadm.log.gz 2024-03-30T14:04:58.767 INFO:teuthology.orchestra.run.smithi050.stderr: 2024-03-30T14:04:58.767 INFO:teuthology.orchestra.run.smithi050.stderr: -5 --verbose -- /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-mon.b.log 2024-03-30T14:04:58.770 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph.audit.log: /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-mon.b.log: 90.3% -- replaced with /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph.audit.log.gz 2024-03-30T14:04:58.771 INFO:teuthology.orchestra.run.smithi050.stderr: 91.8% -- replaced with /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-mgr.b.log.gz 2024-03-30T14:04:58.786 INFO:teuthology.orchestra.run.smithi136.stderr: 93.1% -- replaced with /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-mon.c.log.gz 2024-03-30T14:04:58.788 INFO:teuthology.orchestra.run.smithi136.stderr: 2024-03-30T14:04:58.788 INFO:teuthology.orchestra.run.smithi136.stderr:real 0m0.138s 2024-03-30T14:04:58.788 INFO:teuthology.orchestra.run.smithi136.stderr:user 0m0.212s 2024-03-30T14:04:58.788 INFO:teuthology.orchestra.run.smithi136.stderr:sys 0m0.024s 2024-03-30T14:04:58.797 INFO:teuthology.orchestra.run.smithi026.stderr: 88.3% -- replaced with /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-mgr.a.log.gz 2024-03-30T14:04:58.803 INFO:teuthology.orchestra.run.smithi050.stderr: 91.7% -- replaced with /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-volume.log.gz 2024-03-30T14:04:58.839 INFO:teuthology.orchestra.run.smithi050.stderr: 92.8% -- replaced with /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-osd.3.log.gz 2024-03-30T14:04:58.864 INFO:teuthology.orchestra.run.smithi050.stderr: 93.3% -- replaced with /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-osd.2.log.gz 2024-03-30T14:04:58.911 INFO:teuthology.orchestra.run.smithi050.stderr: 92.7% -- replaced with /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-mon.b.log.gz 2024-03-30T14:04:58.912 INFO:teuthology.orchestra.run.smithi050.stderr: 2024-03-30T14:04:58.912 INFO:teuthology.orchestra.run.smithi050.stderr:real 0m0.265s 2024-03-30T14:04:58.912 INFO:teuthology.orchestra.run.smithi050.stderr:user 0m0.351s 2024-03-30T14:04:58.912 INFO:teuthology.orchestra.run.smithi050.stderr:sys 0m0.048s 2024-03-30T14:04:59.034 INFO:teuthology.orchestra.run.smithi026.stderr: 91.2% -- replaced with /var/log/ceph/56554a52-ee9c-11ee-b647-cb9ed24678a4/ceph-mon.a.log.gz 2024-03-30T14:04:59.036 INFO:teuthology.orchestra.run.smithi026.stderr: 2024-03-30T14:04:59.036 INFO:teuthology.orchestra.run.smithi026.stderr:real 0m0.391s 2024-03-30T14:04:59.036 INFO:teuthology.orchestra.run.smithi026.stderr:user 0m0.635s 2024-03-30T14:04:59.036 INFO:teuthology.orchestra.run.smithi026.stderr:sys 0m0.065s 2024-03-30T14:04:59.037 INFO:tasks.cephadm:Archiving logs... 2024-03-30T14:04:59.037 DEBUG:teuthology.misc:Transferring archived files from smithi026:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-03-29_21:08:02-orch-squid-distro-default-smithi/7630119/remote/smithi026/log 2024-03-30T14:04:59.038 DEBUG:teuthology.orchestra.run.smithi026:> sudo tar c -f - -C /var/log/ceph -- . 2024-03-30T14:04:59.187 DEBUG:teuthology.misc:Transferring archived files from smithi050:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-03-29_21:08:02-orch-squid-distro-default-smithi/7630119/remote/smithi050/log 2024-03-30T14:04:59.188 DEBUG:teuthology.orchestra.run.smithi050:> sudo tar c -f - -C /var/log/ceph -- . 2024-03-30T14:04:59.249 DEBUG:teuthology.misc:Transferring archived files from smithi136:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-03-29_21:08:02-orch-squid-distro-default-smithi/7630119/remote/smithi136/log 2024-03-30T14:04:59.249 DEBUG:teuthology.orchestra.run.smithi136:> sudo tar c -f - -C /var/log/ceph -- . 2024-03-30T14:04:59.295 INFO:tasks.cephadm:Removing cluster... 2024-03-30T14:04:59.296 DEBUG:teuthology.orchestra.run.smithi026:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 --force 2024-03-30T14:04:59.463 INFO:teuthology.orchestra.run.smithi026.stdout:Deleting cluster with fsid: 56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T14:05:00.797 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 --force 2024-03-30T14:05:00.971 INFO:teuthology.orchestra.run.smithi050.stdout:Deleting cluster with fsid: 56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T14:05:02.320 DEBUG:teuthology.orchestra.run.smithi136:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 56554a52-ee9c-11ee-b647-cb9ed24678a4 --force 2024-03-30T14:05:02.489 INFO:teuthology.orchestra.run.smithi136.stdout:Deleting cluster with fsid: 56554a52-ee9c-11ee-b647-cb9ed24678a4 2024-03-30T14:05:03.819 INFO:tasks.cephadm:Removing cephadm ... 2024-03-30T14:05:03.819 DEBUG:teuthology.orchestra.run.smithi026:> rm -rf /home/ubuntu/cephtest/cephadm 2024-03-30T14:05:03.825 DEBUG:teuthology.orchestra.run.smithi050:> rm -rf /home/ubuntu/cephtest/cephadm 2024-03-30T14:05:03.831 DEBUG:teuthology.orchestra.run.smithi136:> rm -rf /home/ubuntu/cephtest/cephadm 2024-03-30T14:05:03.837 INFO:tasks.cephadm:Teardown complete 2024-03-30T14:05:03.837 DEBUG:teuthology.run_tasks:Unwinding manager install 2024-03-30T14:05:03.845 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-03-30T14:05:03.845 DEBUG:teuthology.orchestra.run.smithi026:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-03-30T14:05:03.870 DEBUG:teuthology.orchestra.run.smithi050:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-03-30T14:05:03.877 DEBUG:teuthology.orchestra.run.smithi136:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-03-30T14:05:03.961 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-03-30T14:05:03.969 INFO:teuthology.task.clock:Checking final clock skew... 2024-03-30T14:05:03.970 DEBUG:teuthology.orchestra.run.smithi026:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-03-30T14:05:03.972 DEBUG:teuthology.orchestra.run.smithi050:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-03-30T14:05:03.974 DEBUG:teuthology.orchestra.run.smithi136:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-03-30T14:05:03.982 INFO:teuthology.orchestra.run.smithi026.stdout: remote refid st t when poll reach delay offset jitter 2024-03-30T14:05:03.982 INFO:teuthology.orchestra.run.smithi026.stdout:============================================================================== 2024-03-30T14:05:03.982 INFO:teuthology.orchestra.run.smithi026.stdout:*hv01.front.sepi 44.4.53.2 2 u 10 64 377 0.101 -3.545 0.945 2024-03-30T14:05:03.983 INFO:teuthology.orchestra.run.smithi026.stdout:+hv02.front.sepi 63.231.80.2 3 u 4 64 377 0.093 -1.492 1.387 2024-03-30T14:05:03.983 INFO:teuthology.orchestra.run.smithi026.stdout:+hv03.front.sepi 74.6.168.72 3 u 9 64 377 0.098 -2.433 1.037 2024-03-30T14:05:03.983 INFO:teuthology.orchestra.run.smithi026.stdout: hv04.front.sepi .INIT. 16 u - 512 0 0.000 +0.000 0.000 2024-03-30T14:05:03.986 INFO:teuthology.orchestra.run.smithi136.stdout: remote refid st t when poll reach delay offset jitter 2024-03-30T14:05:03.986 INFO:teuthology.orchestra.run.smithi136.stdout:============================================================================== 2024-03-30T14:05:03.986 INFO:teuthology.orchestra.run.smithi136.stdout:*hv01.front.sepi 44.4.53.2 2 u 1 64 377 0.070 -4.079 2.455 2024-03-30T14:05:03.986 INFO:teuthology.orchestra.run.smithi136.stdout:+hv02.front.sepi 63.231.80.2 3 u 2 64 377 0.076 -3.792 2.444 2024-03-30T14:05:03.986 INFO:teuthology.orchestra.run.smithi136.stdout:+hv03.front.sepi 74.6.168.72 3 u 5 64 377 0.106 -7.053 2.575 2024-03-30T14:05:03.986 INFO:teuthology.orchestra.run.smithi136.stdout: hv04.front.sepi .INIT. 16 u - 512 0 0.000 +0.000 0.000 2024-03-30T14:05:03.988 INFO:teuthology.orchestra.run.smithi050.stdout: remote refid st t when poll reach delay offset jitter 2024-03-30T14:05:03.988 INFO:teuthology.orchestra.run.smithi050.stdout:============================================================================== 2024-03-30T14:05:03.988 INFO:teuthology.orchestra.run.smithi050.stdout:*hv01.front.sepi 44.4.53.2 2 u 13 64 377 0.100 -7.061 2.244 2024-03-30T14:05:03.988 INFO:teuthology.orchestra.run.smithi050.stdout:+hv02.front.sepi 63.231.80.2 3 u 3 64 377 0.084 -4.746 1.760 2024-03-30T14:05:03.988 INFO:teuthology.orchestra.run.smithi050.stdout:+hv03.front.sepi 74.6.168.72 3 u 4 64 377 0.097 -3.124 3.452 2024-03-30T14:05:03.988 INFO:teuthology.orchestra.run.smithi050.stdout: hv04.front.sepi .INIT. 16 u - 512 0 0.000 +0.000 0.000 2024-03-30T14:05:03.988 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-03-30T14:05:03.997 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-03-30T14:05:03.997 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-03-30T14:05:04.033 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-03-30T14:05:04.067 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-03-30T14:05:04.100 INFO:teuthology.task.internal:Duration was 1493.147583 seconds 2024-03-30T14:05:04.101 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-03-30T14:05:04.135 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-03-30T14:05:04.135 DEBUG:teuthology.orchestra.run.smithi026:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-03-30T14:05:04.137 DEBUG:teuthology.orchestra.run.smithi050:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-03-30T14:05:04.140 DEBUG:teuthology.orchestra.run.smithi136:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-03-30T14:05:04.176 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-03-30T14:05:04.176 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi026.front.sepia.ceph.com 2024-03-30T14:05:04.176 DEBUG:teuthology.orchestra.run.smithi026:> 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-03-30T14:05:04.226 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi050.front.sepia.ceph.com 2024-03-30T14:05:04.227 DEBUG:teuthology.orchestra.run.smithi050:> 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-03-30T14:05:04.236 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi136.front.sepia.ceph.com 2024-03-30T14:05:04.236 DEBUG:teuthology.orchestra.run.smithi136:> 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-03-30T14:05:04.246 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-03-30T14:05:04.246 DEBUG:teuthology.orchestra.run.smithi026:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-03-30T14:05:04.270 DEBUG:teuthology.orchestra.run.smithi050:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-03-30T14:05:04.281 DEBUG:teuthology.orchestra.run.smithi136:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-03-30T14:05:04.325 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-03-30T14:05:04.325 DEBUG:teuthology.orchestra.run.smithi026:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-03-30T14:05:04.350 DEBUG:teuthology.orchestra.run.smithi050:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-03-30T14:05:04.361 DEBUG:teuthology.orchestra.run.smithi136:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-03-30T14:05:04.446 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-03-30T14:05:04.456 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-03-30T14:05:04.456 DEBUG:teuthology.orchestra.run.smithi026:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-03-30T14:05:04.467 DEBUG:teuthology.orchestra.run.smithi050:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-03-30T14:05:04.480 DEBUG:teuthology.orchestra.run.smithi136:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-03-30T14:05:04.490 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-03-30T14:05:04.499 DEBUG:teuthology.orchestra.run.smithi026:> 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-03-30T14:05:04.510 DEBUG:teuthology.orchestra.run.smithi050:> 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-03-30T14:05:04.519 INFO:teuthology.orchestra.run.smithi026.stdout:kernel.core_pattern = core 2024-03-30T14:05:04.525 DEBUG:teuthology.orchestra.run.smithi136:> 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-03-30T14:05:04.534 INFO:teuthology.orchestra.run.smithi050.stdout:kernel.core_pattern = core 2024-03-30T14:05:04.541 INFO:teuthology.orchestra.run.smithi136.stdout:kernel.core_pattern = core 2024-03-30T14:05:04.569 DEBUG:teuthology.orchestra.run.smithi026:> test -e /home/ubuntu/cephtest/archive/coredump 2024-03-30T14:05:04.600 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-30T14:05:04.600 DEBUG:teuthology.orchestra.run.smithi050:> test -e /home/ubuntu/cephtest/archive/coredump 2024-03-30T14:05:04.605 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-30T14:05:04.605 DEBUG:teuthology.orchestra.run.smithi136:> test -e /home/ubuntu/cephtest/archive/coredump 2024-03-30T14:05:04.615 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-30T14:05:04.615 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-03-30T14:05:04.625 INFO:teuthology.task.internal:Transferring archived files... 2024-03-30T14:05:04.626 DEBUG:teuthology.misc:Transferring archived files from smithi026:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-03-29_21:08:02-orch-squid-distro-default-smithi/7630119/remote/smithi026 2024-03-30T14:05:04.626 DEBUG:teuthology.orchestra.run.smithi026:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-03-30T14:05:04.664 DEBUG:teuthology.misc:Transferring archived files from smithi050:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-03-29_21:08:02-orch-squid-distro-default-smithi/7630119/remote/smithi050 2024-03-30T14:05:04.664 DEBUG:teuthology.orchestra.run.smithi050:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-03-30T14:05:04.685 DEBUG:teuthology.misc:Transferring archived files from smithi136:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-03-29_21:08:02-orch-squid-distro-default-smithi/7630119/remote/smithi136 2024-03-30T14:05:04.686 DEBUG:teuthology.orchestra.run.smithi136:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-03-30T14:05:04.707 INFO:teuthology.task.internal:Removing archive directory... 2024-03-30T14:05:04.708 DEBUG:teuthology.orchestra.run.smithi026:> rm -rf -- /home/ubuntu/cephtest/archive 2024-03-30T14:05:04.710 DEBUG:teuthology.orchestra.run.smithi050:> rm -rf -- /home/ubuntu/cephtest/archive 2024-03-30T14:05:04.729 DEBUG:teuthology.orchestra.run.smithi136:> rm -rf -- /home/ubuntu/cephtest/archive 2024-03-30T14:05:04.752 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-03-30T14:05:04.763 INFO:teuthology.task.internal:Not uploading archives. 2024-03-30T14:05:04.763 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-03-30T14:05:04.785 INFO:teuthology.task.internal:Tidying up after the test... 2024-03-30T14:05:04.785 DEBUG:teuthology.orchestra.run.smithi026:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-03-30T14:05:04.787 DEBUG:teuthology.orchestra.run.smithi050:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-03-30T14:05:04.790 DEBUG:teuthology.orchestra.run.smithi136:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-03-30T14:05:04.791 INFO:teuthology.orchestra.run.smithi026.stdout: 658626 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Mar 30 14:05 /home/ubuntu/cephtest 2024-03-30T14:05:04.793 INFO:teuthology.orchestra.run.smithi050.stdout: 658642 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Mar 30 14:05 /home/ubuntu/cephtest 2024-03-30T14:05:04.800 INFO:teuthology.orchestra.run.smithi136.stdout: 658467 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Mar 30 14:05 /home/ubuntu/cephtest 2024-03-30T14:05:04.801 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-03-30T14:05:04.820 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-03-30T14:05:04.887 INFO:teuthology.nuke:Checking targets against current locks 2024-03-30T14:05:04.913 DEBUG:teuthology.nuke:shortname: smithi026 2024-03-30T14:05:04.914 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-03-30T14:05:04.936 DEBUG:teuthology.nuke:shortname: smithi050 2024-03-30T14:05:04.936 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-03-30T14:05:04.944 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi026.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-03-29_21:08:02-orch-squid-distro-default-smithi/7630119', '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-03-30 13:31:23.908957', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBM4L8ux2bqU61lBPIw8up/RGurEw9IiqiLQGrxaE5PkzraHPE6pGnFqa48AmEuu1pCX5iozeQFbK+TBuBXLWhC8='} 2024-03-30T14:05:04.956 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi050.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-03-29_21:08:02-orch-squid-distro-default-smithi/7630119', '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-03-30 13:31:23.906963', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBmhxIkK9Su9k5FdR2AQnDBzEApYzl1X85ssygbxNTw+wc+LG6KGcGKO+xhvUAOWF1X7i3O2y5jKwqJ7rwDBSp0='} 2024-03-30T14:05:04.959 DEBUG:teuthology.nuke:shortname: smithi136 2024-03-30T14:05:04.960 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-03-30T14:05:04.980 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi136.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-03-29_21:08:02-orch-squid-distro-default-smithi/7630119', '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-03-30 13:31:23.910695', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBOoRu5sqQBiweQ1DbUZU1pq9GpPfcGJSjTkIt1NcAR5LQTBcvOWsHRE2SquSQ5ZGf6rPT78rdBYZaSg5kYIfVRY='} 2024-03-30T14:05:04.989 INFO:teuthology.orchestra.console.smithi026:Power off 2024-03-30T14:05:04.989 DEBUG:teuthology.orchestra.console.smithi026:pexpect command: ipmitool -H smithi026.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-03-30T14:05:05.005 INFO:teuthology.orchestra.console.smithi050:Power off 2024-03-30T14:05:05.005 DEBUG:teuthology.orchestra.console.smithi050:pexpect command: ipmitool -H smithi050.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-03-30T14:05:05.017 DEBUG:teuthology.orchestra.console.smithi026:power off output: Chassis Power Control: Down/Off 2024-03-30T14:05:05.018 DEBUG:teuthology.orchestra.console.smithi026:pexpect command: ipmitool -H smithi026.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-30T14:05:05.027 DEBUG:teuthology.orchestra.console.smithi050:power off output: Chassis Power Control: Down/Off 2024-03-30T14:05:05.028 DEBUG:teuthology.orchestra.console.smithi050:pexpect command: ipmitool -H smithi050.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-30T14:05:05.043 DEBUG:teuthology.orchestra.console.smithi026:check power output: Chassis Power is on 2024-03-30T14:05:05.051 INFO:teuthology.orchestra.console.smithi136:Power off 2024-03-30T14:05:05.051 DEBUG:teuthology.orchestra.console.smithi136:pexpect command: ipmitool -H smithi136.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-03-30T14:05:05.060 DEBUG:teuthology.orchestra.console.smithi050:check power output: Chassis Power is on 2024-03-30T14:05:05.073 DEBUG:teuthology.orchestra.console.smithi136:power off output: Chassis Power Control: Down/Off 2024-03-30T14:05:05.073 DEBUG:teuthology.orchestra.console.smithi136:pexpect command: ipmitool -H smithi136.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-30T14:05:05.095 DEBUG:teuthology.orchestra.console.smithi136:check power output: Chassis Power is on 2024-03-30T14:05:09.044 DEBUG:teuthology.orchestra.console.smithi026:pexpect command: ipmitool -H smithi026.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-30T14:05:09.061 DEBUG:teuthology.orchestra.console.smithi050:pexpect command: ipmitool -H smithi050.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-30T14:05:09.096 DEBUG:teuthology.orchestra.console.smithi136:pexpect command: ipmitool -H smithi136.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-30T14:05:09.155 DEBUG:teuthology.orchestra.console.smithi026:check power output: Chassis Power is on 2024-03-30T14:05:09.171 DEBUG:teuthology.orchestra.console.smithi050:check power output: Chassis Power is on 2024-03-30T14:05:09.205 DEBUG:teuthology.orchestra.console.smithi136:check power output: Chassis Power is on 2024-03-30T14:05:13.160 DEBUG:teuthology.orchestra.console.smithi026:pexpect command: ipmitool -H smithi026.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-30T14:05:13.171 DEBUG:teuthology.orchestra.console.smithi050:pexpect command: ipmitool -H smithi050.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-30T14:05:13.206 DEBUG:teuthology.orchestra.console.smithi136:pexpect command: ipmitool -H smithi136.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-30T14:05:13.270 DEBUG:teuthology.orchestra.console.smithi026:check power output: Chassis Power is off 2024-03-30T14:05:13.281 DEBUG:teuthology.orchestra.console.smithi050:check power output: Chassis Power is on 2024-03-30T14:05:13.315 DEBUG:teuthology.orchestra.console.smithi136:check power output: Chassis Power is off 2024-03-30T14:05:13.371 INFO:teuthology.orchestra.console.smithi026:Power off completed 2024-03-30T14:05:13.415 INFO:teuthology.orchestra.console.smithi136:Power off completed 2024-03-30T14:05:17.282 DEBUG:teuthology.orchestra.console.smithi050:pexpect command: ipmitool -H smithi050.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-30T14:05:17.391 DEBUG:teuthology.orchestra.console.smithi050:check power output: Chassis Power is off 2024-03-30T14:05:17.492 INFO:teuthology.orchestra.console.smithi050:Power off completed 2024-03-30T14:05:17.596 INFO:teuthology.run:Summary data: description: orch/cephadm/workunits/{0-distro/ubuntu_22.04 agent/on mon_election/connectivity task/test_host_drain} duration: 1493.1475825309753 failure_reason: '"2024-03-30T14:00:00.000276+0000 mon.a (mon.0) 752 : cluster 3 [WRN] CEPHADM_STRAY_DAEMON: 1 stray daemon(s) not managed by cephadm" in cluster log' flavor: default owner: scheduled_teuthology@teuthology success: false 2024-03-30T14:05:17.596 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-03-30T14:05:17.683 INFO:teuthology.run:FAIL