2024-04-18T22:37:55.304 INFO:root:teuthology version: 0.0.1.dev269+g9481b1d 2024-04-18T22:37:55.304 DEBUG:teuthology.run:Teuthology command: teuthology --name teuthology-2024-04-18_21:00:02-rados-squid-distro-default-smithi --owner scheduled_teuthology@teuthology --archive /home/teuthworker/archive/teuthology-2024-04-18_21:00:02-rados-squid-distro-default-smithi/7662605 --description rados/cephadm/workunits/{0-distro/ubuntu_22.04 agent/off mon_election/classic task/test_host_drain} --verbose -- /home/teuthworker/archive/teuthology-2024-04-18_21:00:02-rados-squid-distro-default-smithi/7662605/orig.config.yaml 2024-04-18T22:37:55.334 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-18T22:37:55.413 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-04-18_21:00:02-rados-squid-distro-default-smithi/7662605 branch: squid description: rados/cephadm/workunits/{0-distro/ubuntu_22.04 agent/off mon_election/classic task/test_host_drain} email: ceph-qa@ceph.com first_in_suite: false job_id: '7662605' kernel: kdb: 1 sha1: distro ktype: distro last_in_suite: false machine_type: smithi name: teuthology-2024-04-18_21:00:02-rados-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: 1 mgr: debug mgr: 20 debug ms: 1 mgr/cephadm/use_agent: false mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) - MON_DOWN log-only-match: - CEPHADM_ sha1: 1a6a3e742fd81c6d70be70552499bff767652c32 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 1a6a3e742fd81c6d70be70552499bff767652c32 workunit: branch: squid sha1: d0bf63dd179c05751e4be49477389aa290c73089 owner: scheduled_teuthology@teuthology priority: 101 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: 6512 sha1: 1a6a3e742fd81c6d70be70552499bff767652c32 sleep_before_teardown: 0 subset: 28391/100000 suite: rados suite_branch: squid suite_path: /home/teuthworker/src/git.ceph.com_ceph_d0bf63dd179c05751e4be49477389aa290c73089/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: d0bf63dd179c05751e4be49477389aa290c73089 targets: smithi016.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHqSE1SNp+y7ivzHIx0a/15AyP0Q2eJMhUmzFVVHC6vYxXyVIiKy+X6GiH5I6J/JpOm6dkFseaCjQKOABKSCovU= smithi055.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBtZXHCCUH+uk3aM/ObFkkJhH6z0GJqrt6+QgCPq2NIatX+RKOAuQScLs+Xeklz8TKyHITMtoGxEuHjLjEBcMlU= smithi069.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCmmHxk8IyXXkg4/YSw6Lp6bA3eAIJanqowXPhsvl69M2o0rqL+uBaeCLWUtNt2hunCCzfY5G41AJtwfDzCfrS4= 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: 9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17 timestamp: 2024-04-18_21:00:02 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-04-18T22:37:55.414 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_d0bf63dd179c05751e4be49477389aa290c73089/qa; will attempt to use it 2024-04-18T22:37:55.414 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_d0bf63dd179c05751e4be49477389aa290c73089/qa/tasks 2024-04-18T22:37:55.414 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-04-18T22:37:55.416 INFO:teuthology.task.internal:Checking packages... 2024-04-18T22:37:55.439 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash '1a6a3e742fd81c6d70be70552499bff767652c32' 2024-04-18T22:37:55.440 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-04-18T22:37:55.440 INFO:teuthology.packaging:ref: None 2024-04-18T22:37:55.440 INFO:teuthology.packaging:tag: None 2024-04-18T22:37:55.440 INFO:teuthology.packaging:branch: squid 2024-04-18T22:37:55.440 INFO:teuthology.packaging:sha1: 1a6a3e742fd81c6d70be70552499bff767652c32 2024-04-18T22:37:55.440 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-04-18T22:37:55.658 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-2401-gd0bf63dd-1jammy 2024-04-18T22:37:55.659 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-04-18T22:37:55.667 INFO:teuthology.task.internal:no buildpackages task found 2024-04-18T22:37:55.667 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-04-18T22:37:55.675 INFO:teuthology.task.internal:Saving configuration 2024-04-18T22:37:55.688 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-04-18T22:37:55.695 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-18T22:37:55.721 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi016.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-18_21:00:02-rados-squid-distro-default-smithi/7662605', '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-04-18 22:32:27.717357', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDkTeAzkvsvMGqauoAtMaQxk9dFVOTNZ4kLzY9mUAzW3'} 2024-04-18T22:37:55.743 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi055.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-18_21:00:02-rados-squid-distro-default-smithi/7662605', '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-04-18 22:32:27.720099', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILtiA6KMCm9Rexd1UKZ9dEty9I+68Bun5/fLndUHvpzC'} 2024-04-18T22:37:55.764 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi069.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-18_21:00:02-rados-squid-distro-default-smithi/7662605', '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-04-18 22:32:27.718860', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPe3h0ZWHOjy8TW9hsyDPsnVsh0zkeECh80siimRuSvg'} 2024-04-18T22:37:55.764 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-04-18T22:37:55.770 INFO:teuthology.task.internal:roles: ubuntu@smithi016.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-04-18T22:37:55.770 INFO:teuthology.task.internal:roles: ubuntu@smithi055.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-04-18T22:37:55.770 INFO:teuthology.task.internal:roles: ubuntu@smithi069.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-04-18T22:37:55.770 INFO:teuthology.run_tasks:Running task console_log... 2024-04-18T22:37:55.878 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7ffabab47280>, signals=[15]) 2024-04-18T22:37:55.879 INFO:teuthology.run_tasks:Running task internal.connect... 2024-04-18T22:37:55.885 INFO:teuthology.task.internal:Opening connections... 2024-04-18T22:37:55.886 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi016.front.sepia.ceph.com 2024-04-18T22:37:55.887 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi016.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-18T22:37:55.970 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi055.front.sepia.ceph.com 2024-04-18T22:37:55.970 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi055.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-18T22:37:56.049 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi069.front.sepia.ceph.com 2024-04-18T22:37:56.050 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi069.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-18T22:37:56.127 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-04-18T22:37:56.134 DEBUG:teuthology.orchestra.run.smithi016:> uname -m 2024-04-18T22:37:56.140 INFO:teuthology.orchestra.run.smithi016.stdout:x86_64 2024-04-18T22:37:56.140 DEBUG:teuthology.orchestra.run.smithi016:> cat /etc/os-release 2024-04-18T22:37:56.189 INFO:teuthology.orchestra.run.smithi016.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-04-18T22:37:56.189 INFO:teuthology.orchestra.run.smithi016.stdout:NAME="Ubuntu" 2024-04-18T22:37:56.189 INFO:teuthology.orchestra.run.smithi016.stdout:VERSION_ID="22.04" 2024-04-18T22:37:56.189 INFO:teuthology.orchestra.run.smithi016.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-04-18T22:37:56.189 INFO:teuthology.orchestra.run.smithi016.stdout:VERSION_CODENAME=jammy 2024-04-18T22:37:56.189 INFO:teuthology.orchestra.run.smithi016.stdout:ID=ubuntu 2024-04-18T22:37:56.189 INFO:teuthology.orchestra.run.smithi016.stdout:ID_LIKE=debian 2024-04-18T22:37:56.189 INFO:teuthology.orchestra.run.smithi016.stdout:HOME_URL="https://www.ubuntu.com/" 2024-04-18T22:37:56.189 INFO:teuthology.orchestra.run.smithi016.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-04-18T22:37:56.189 INFO:teuthology.orchestra.run.smithi016.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-04-18T22:37:56.189 INFO:teuthology.orchestra.run.smithi016.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-04-18T22:37:56.190 INFO:teuthology.orchestra.run.smithi016.stdout:UBUNTU_CODENAME=jammy 2024-04-18T22:37:56.190 INFO:teuthology.lock.ops:Updating smithi016.front.sepia.ceph.com on lock server 2024-04-18T22:37:56.372 DEBUG:teuthology.orchestra.run.smithi055:> uname -m 2024-04-18T22:37:56.378 INFO:teuthology.orchestra.run.smithi055.stdout:x86_64 2024-04-18T22:37:56.378 DEBUG:teuthology.orchestra.run.smithi055:> cat /etc/os-release 2024-04-18T22:37:56.427 INFO:teuthology.orchestra.run.smithi055.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-04-18T22:37:56.427 INFO:teuthology.orchestra.run.smithi055.stdout:NAME="Ubuntu" 2024-04-18T22:37:56.427 INFO:teuthology.orchestra.run.smithi055.stdout:VERSION_ID="22.04" 2024-04-18T22:37:56.428 INFO:teuthology.orchestra.run.smithi055.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-04-18T22:37:56.428 INFO:teuthology.orchestra.run.smithi055.stdout:VERSION_CODENAME=jammy 2024-04-18T22:37:56.428 INFO:teuthology.orchestra.run.smithi055.stdout:ID=ubuntu 2024-04-18T22:37:56.428 INFO:teuthology.orchestra.run.smithi055.stdout:ID_LIKE=debian 2024-04-18T22:37:56.428 INFO:teuthology.orchestra.run.smithi055.stdout:HOME_URL="https://www.ubuntu.com/" 2024-04-18T22:37:56.428 INFO:teuthology.orchestra.run.smithi055.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-04-18T22:37:56.428 INFO:teuthology.orchestra.run.smithi055.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-04-18T22:37:56.428 INFO:teuthology.orchestra.run.smithi055.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-04-18T22:37:56.428 INFO:teuthology.orchestra.run.smithi055.stdout:UBUNTU_CODENAME=jammy 2024-04-18T22:37:56.428 INFO:teuthology.lock.ops:Updating smithi055.front.sepia.ceph.com on lock server 2024-04-18T22:37:56.486 DEBUG:teuthology.orchestra.run.smithi069:> uname -m 2024-04-18T22:37:56.491 INFO:teuthology.orchestra.run.smithi069.stdout:x86_64 2024-04-18T22:37:56.492 DEBUG:teuthology.orchestra.run.smithi069:> cat /etc/os-release 2024-04-18T22:37:56.541 INFO:teuthology.orchestra.run.smithi069.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-04-18T22:37:56.541 INFO:teuthology.orchestra.run.smithi069.stdout:NAME="Ubuntu" 2024-04-18T22:37:56.541 INFO:teuthology.orchestra.run.smithi069.stdout:VERSION_ID="22.04" 2024-04-18T22:37:56.541 INFO:teuthology.orchestra.run.smithi069.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-04-18T22:37:56.541 INFO:teuthology.orchestra.run.smithi069.stdout:VERSION_CODENAME=jammy 2024-04-18T22:37:56.541 INFO:teuthology.orchestra.run.smithi069.stdout:ID=ubuntu 2024-04-18T22:37:56.541 INFO:teuthology.orchestra.run.smithi069.stdout:ID_LIKE=debian 2024-04-18T22:37:56.542 INFO:teuthology.orchestra.run.smithi069.stdout:HOME_URL="https://www.ubuntu.com/" 2024-04-18T22:37:56.542 INFO:teuthology.orchestra.run.smithi069.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-04-18T22:37:56.542 INFO:teuthology.orchestra.run.smithi069.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-04-18T22:37:56.542 INFO:teuthology.orchestra.run.smithi069.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-04-18T22:37:56.542 INFO:teuthology.orchestra.run.smithi069.stdout:UBUNTU_CODENAME=jammy 2024-04-18T22:37:56.542 INFO:teuthology.lock.ops:Updating smithi069.front.sepia.ceph.com on lock server 2024-04-18T22:37:56.566 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-04-18T22:37:56.576 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-04-18T22:37:56.664 INFO:teuthology.task.internal:Checking for old test directory... 2024-04-18T22:37:56.665 DEBUG:teuthology.orchestra.run.smithi016:> test '!' -e /home/ubuntu/cephtest 2024-04-18T22:37:56.667 DEBUG:teuthology.orchestra.run.smithi055:> test '!' -e /home/ubuntu/cephtest 2024-04-18T22:37:56.670 DEBUG:teuthology.orchestra.run.smithi069:> test '!' -e /home/ubuntu/cephtest 2024-04-18T22:37:56.676 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-04-18T22:37:56.682 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-04-18T22:37:56.682 DEBUG:teuthology.orchestra.run.smithi016:> test -z $(ls -A /var/lib/ceph) 2024-04-18T22:37:56.714 DEBUG:teuthology.orchestra.run.smithi055:> test -z $(ls -A /var/lib/ceph) 2024-04-18T22:37:56.717 DEBUG:teuthology.orchestra.run.smithi069:> test -z $(ls -A /var/lib/ceph) 2024-04-18T22:37:56.735 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-04-18T22:37:56.816 INFO:teuthology.run_tasks:Running task kernel... 2024-04-18T22:37:56.835 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-04-18T22:37:56.835 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}, 'host.c': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-04-18T22:37:56.835 DEBUG:teuthology.orchestra.run.smithi016:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-18T22:37:56.836 DEBUG:teuthology.orchestra.run.smithi055:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-18T22:37:56.836 DEBUG:teuthology.orchestra.run.smithi069:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-18T22:37:56.841 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-18T22:37:56.841 DEBUG:teuthology.orchestra.run.smithi055:> uname -r 2024-04-18T22:37:56.842 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-18T22:37:56.842 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-18T22:37:56.843 DEBUG:teuthology.orchestra.run.smithi069:> uname -r 2024-04-18T22:37:56.843 DEBUG:teuthology.orchestra.run.smithi016:> uname -r 2024-04-18T22:37:56.887 INFO:teuthology.orchestra.run.smithi055.stdout:5.15.0-56-generic 2024-04-18T22:37:56.887 INFO:teuthology.task.kernel:Running kernel on smithi055: 5.15.0-56-generic 2024-04-18T22:37:56.887 DEBUG:teuthology.orchestra.run.smithi055:> sudo apt-get clean 2024-04-18T22:37:56.889 INFO:teuthology.orchestra.run.smithi016.stdout:5.15.0-56-generic 2024-04-18T22:37:56.889 INFO:teuthology.task.kernel:Running kernel on smithi016: 5.15.0-56-generic 2024-04-18T22:37:56.889 DEBUG:teuthology.orchestra.run.smithi016:> sudo apt-get clean 2024-04-18T22:37:56.892 INFO:teuthology.orchestra.run.smithi069.stdout:5.15.0-56-generic 2024-04-18T22:37:56.893 INFO:teuthology.task.kernel:Running kernel on smithi069: 5.15.0-56-generic 2024-04-18T22:37:56.893 DEBUG:teuthology.orchestra.run.smithi069:> sudo apt-get clean 2024-04-18T22:37:56.999 DEBUG:teuthology.orchestra.run.smithi055:> sudo apt-get update 2024-04-18T22:37:57.013 DEBUG:teuthology.orchestra.run.smithi016:> sudo apt-get update 2024-04-18T22:37:57.038 DEBUG:teuthology.orchestra.run.smithi069:> sudo apt-get update 2024-04-18T22:37:57.173 INFO:teuthology.orchestra.run.smithi055.stdout:Get:1 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-04-18T22:37:57.177 INFO:teuthology.orchestra.run.smithi069.stdout:Get:1 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-04-18T22:37:57.178 INFO:teuthology.orchestra.run.smithi016.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-18T22:37:57.182 INFO:teuthology.orchestra.run.smithi016.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-04-18T22:37:57.182 INFO:teuthology.orchestra.run.smithi016.stdout:Get:3 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-04-18T22:37:57.253 INFO:teuthology.orchestra.run.smithi055.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-18T22:37:57.254 INFO:teuthology.orchestra.run.smithi016.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-04-18T22:37:57.285 INFO:teuthology.orchestra.run.smithi069.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-18T22:37:57.335 INFO:teuthology.orchestra.run.smithi055.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-04-18T22:37:57.370 INFO:teuthology.orchestra.run.smithi069.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-04-18T22:37:57.392 INFO:teuthology.orchestra.run.smithi069.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,351 kB] 2024-04-18T22:37:57.493 INFO:teuthology.orchestra.run.smithi055.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,351 kB] 2024-04-18T22:37:57.541 INFO:teuthology.orchestra.run.smithi069.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [445 kB] 2024-04-18T22:37:57.549 INFO:teuthology.orchestra.run.smithi069.stdout:Get:6 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [238 kB] 2024-04-18T22:37:57.553 INFO:teuthology.orchestra.run.smithi069.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-04-18T22:37:57.554 INFO:teuthology.orchestra.run.smithi069.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,670 kB] 2024-04-18T22:37:57.582 INFO:teuthology.orchestra.run.smithi069.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [34.1 kB] 2024-04-18T22:37:57.583 INFO:teuthology.orchestra.run.smithi069.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [280 kB] 2024-04-18T22:37:57.587 INFO:teuthology.orchestra.run.smithi069.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-04-18T22:37:57.588 INFO:teuthology.orchestra.run.smithi069.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [848 kB] 2024-04-18T22:37:57.598 INFO:teuthology.orchestra.run.smithi069.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [600 kB] 2024-04-18T22:37:57.604 INFO:teuthology.orchestra.run.smithi069.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [162 kB] 2024-04-18T22:37:57.605 INFO:teuthology.orchestra.run.smithi016.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,351 kB] 2024-04-18T22:37:57.606 INFO:teuthology.orchestra.run.smithi055.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [445 kB] 2024-04-18T22:37:57.606 INFO:teuthology.orchestra.run.smithi069.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-04-18T22:37:57.606 INFO:teuthology.orchestra.run.smithi069.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-04-18T22:37:57.607 INFO:teuthology.orchestra.run.smithi069.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-04-18T22:37:57.614 INFO:teuthology.orchestra.run.smithi055.stdout:Get:6 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [238 kB] 2024-04-18T22:37:57.618 INFO:teuthology.orchestra.run.smithi069.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-04-18T22:37:57.619 INFO:teuthology.orchestra.run.smithi055.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-04-18T22:37:57.620 INFO:teuthology.orchestra.run.smithi055.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,670 kB] 2024-04-18T22:37:57.640 INFO:teuthology.orchestra.run.smithi069.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-04-18T22:37:57.653 INFO:teuthology.orchestra.run.smithi055.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [34.1 kB] 2024-04-18T22:37:57.654 INFO:teuthology.orchestra.run.smithi055.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [280 kB] 2024-04-18T22:37:57.657 INFO:teuthology.orchestra.run.smithi055.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-04-18T22:37:57.658 INFO:teuthology.orchestra.run.smithi055.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [600 kB] 2024-04-18T22:37:57.665 INFO:teuthology.orchestra.run.smithi055.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [848 kB] 2024-04-18T22:37:57.674 INFO:teuthology.orchestra.run.smithi055.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [162 kB] 2024-04-18T22:37:57.675 INFO:teuthology.orchestra.run.smithi055.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-04-18T22:37:57.682 INFO:teuthology.orchestra.run.smithi016.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [612 kB] 2024-04-18T22:37:57.693 INFO:teuthology.orchestra.run.smithi055.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-04-18T22:37:57.694 INFO:teuthology.orchestra.run.smithi055.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-04-18T22:37:57.694 INFO:teuthology.orchestra.run.smithi055.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-04-18T22:37:57.694 INFO:teuthology.orchestra.run.smithi055.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-04-18T22:37:57.711 INFO:teuthology.orchestra.run.smithi055.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-04-18T22:37:57.720 INFO:teuthology.orchestra.run.smithi069.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-04-18T22:37:57.726 INFO:teuthology.orchestra.run.smithi016.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [445 kB] 2024-04-18T22:37:57.739 INFO:teuthology.orchestra.run.smithi016.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [238 kB] 2024-04-18T22:37:57.739 INFO:teuthology.orchestra.run.smithi016.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-04-18T22:37:57.739 INFO:teuthology.orchestra.run.smithi016.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [34.1 kB] 2024-04-18T22:37:57.739 INFO:teuthology.orchestra.run.smithi016.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,670 kB] 2024-04-18T22:37:57.759 INFO:teuthology.orchestra.run.smithi016.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [280 kB] 2024-04-18T22:37:57.760 INFO:teuthology.orchestra.run.smithi016.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,572 kB] 2024-04-18T22:37:57.762 INFO:teuthology.orchestra.run.smithi016.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-04-18T22:37:57.762 INFO:teuthology.orchestra.run.smithi016.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [600 kB] 2024-04-18T22:37:57.769 INFO:teuthology.orchestra.run.smithi016.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [848 kB] 2024-04-18T22:37:57.778 INFO:teuthology.orchestra.run.smithi016.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [162 kB] 2024-04-18T22:37:57.780 INFO:teuthology.orchestra.run.smithi016.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-04-18T22:37:57.780 INFO:teuthology.orchestra.run.smithi016.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-04-18T22:37:57.781 INFO:teuthology.orchestra.run.smithi016.stdout:Get:20 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-04-18T22:37:57.807 INFO:teuthology.orchestra.run.smithi016.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [300 kB] 2024-04-18T22:37:57.807 INFO:teuthology.orchestra.run.smithi016.stdout:Get:22 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-04-18T22:37:57.807 INFO:teuthology.orchestra.run.smithi016.stdout:Get:23 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-04-18T22:37:57.809 INFO:teuthology.orchestra.run.smithi016.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-04-18T22:37:57.809 INFO:teuthology.orchestra.run.smithi016.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,765 kB] 2024-04-18T22:37:57.821 INFO:teuthology.orchestra.run.smithi016.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [38.1 kB] 2024-04-18T22:37:57.822 INFO:teuthology.orchestra.run.smithi016.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [298 kB] 2024-04-18T22:37:57.829 INFO:teuthology.orchestra.run.smithi016.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-04-18T22:37:57.829 INFO:teuthology.orchestra.run.smithi016.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,070 kB] 2024-04-18T22:37:57.838 INFO:teuthology.orchestra.run.smithi016.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [699 kB] 2024-04-18T22:37:57.845 INFO:teuthology.orchestra.run.smithi016.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [244 kB] 2024-04-18T22:37:57.848 INFO:teuthology.orchestra.run.smithi016.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-04-18T22:37:57.850 INFO:teuthology.orchestra.run.smithi016.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,472 B] 2024-04-18T22:37:57.850 INFO:teuthology.orchestra.run.smithi016.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [42.7 kB] 2024-04-18T22:37:57.851 INFO:teuthology.orchestra.run.smithi016.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.4 kB] 2024-04-18T22:37:57.852 INFO:teuthology.orchestra.run.smithi016.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-04-18T22:37:57.852 INFO:teuthology.orchestra.run.smithi016.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.1 kB] 2024-04-18T22:37:57.852 INFO:teuthology.orchestra.run.smithi055.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [612 kB] 2024-04-18T22:37:57.853 INFO:teuthology.orchestra.run.smithi016.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.2 kB] 2024-04-18T22:37:57.860 INFO:teuthology.orchestra.run.smithi069.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,572 kB] 2024-04-18T22:37:57.871 INFO:teuthology.orchestra.run.smithi016.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.0 kB] 2024-04-18T22:37:57.871 INFO:teuthology.orchestra.run.smithi016.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-04-18T22:37:57.871 INFO:teuthology.orchestra.run.smithi016.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.2 kB] 2024-04-18T22:37:57.871 INFO:teuthology.orchestra.run.smithi016.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.4 kB] 2024-04-18T22:37:57.891 INFO:teuthology.orchestra.run.smithi016.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.2 kB] 2024-04-18T22:37:57.891 INFO:teuthology.orchestra.run.smithi016.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-04-18T22:37:58.188 INFO:teuthology.orchestra.run.smithi069.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [612 kB] 2024-04-18T22:37:58.226 INFO:teuthology.orchestra.run.smithi069.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [300 kB] 2024-04-18T22:37:58.241 INFO:teuthology.orchestra.run.smithi069.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-04-18T22:37:58.242 INFO:teuthology.orchestra.run.smithi069.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [38.1 kB] 2024-04-18T22:37:58.243 INFO:teuthology.orchestra.run.smithi069.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,765 kB] 2024-04-18T22:37:58.305 INFO:teuthology.orchestra.run.smithi069.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [298 kB] 2024-04-18T22:37:58.313 INFO:teuthology.orchestra.run.smithi069.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-04-18T22:37:58.477 INFO:teuthology.orchestra.run.smithi069.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,070 kB] 2024-04-18T22:37:58.694 INFO:teuthology.orchestra.run.smithi055.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,572 kB] 2024-04-18T22:37:59.992 INFO:teuthology.orchestra.run.smithi069.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [699 kB] 2024-04-18T22:38:00.849 INFO:teuthology.orchestra.run.smithi069.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [244 kB] 2024-04-18T22:38:01.065 INFO:teuthology.orchestra.run.smithi069.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-04-18T22:38:01.079 INFO:teuthology.orchestra.run.smithi069.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,472 B] 2024-04-18T22:38:01.080 INFO:teuthology.orchestra.run.smithi069.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [42.7 kB] 2024-04-18T22:38:01.102 INFO:teuthology.orchestra.run.smithi069.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.4 kB] 2024-04-18T22:38:01.107 INFO:teuthology.orchestra.run.smithi069.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-04-18T22:38:01.108 INFO:teuthology.orchestra.run.smithi069.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.2 kB] 2024-04-18T22:38:01.138 INFO:teuthology.orchestra.run.smithi069.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.1 kB] 2024-04-18T22:38:01.169 INFO:teuthology.orchestra.run.smithi069.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.0 kB] 2024-04-18T22:38:01.267 INFO:teuthology.orchestra.run.smithi055.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [300 kB] 2024-04-18T22:38:01.340 INFO:teuthology.orchestra.run.smithi069.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-04-18T22:38:01.423 INFO:teuthology.orchestra.run.smithi069.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.4 kB] 2024-04-18T22:38:01.539 INFO:teuthology.orchestra.run.smithi069.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.2 kB] 2024-04-18T22:38:01.590 INFO:teuthology.orchestra.run.smithi069.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.2 kB] 2024-04-18T22:38:01.622 INFO:teuthology.orchestra.run.smithi069.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-04-18T22:38:01.849 INFO:teuthology.orchestra.run.smithi055.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-04-18T22:38:01.885 INFO:teuthology.orchestra.run.smithi055.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [38.1 kB] 2024-04-18T22:38:01.970 INFO:teuthology.orchestra.run.smithi055.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,765 kB] 2024-04-18T22:38:03.707 INFO:teuthology.orchestra.run.smithi016.stdout:Fetched 12.9 MB in 2s (6,130 kB/s) 2024-04-18T22:38:05.080 INFO:teuthology.orchestra.run.smithi016.stdout:Reading package lists... 2024-04-18T22:38:05.097 DEBUG:teuthology.orchestra.run.smithi016:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-18T22:38:05.137 INFO:teuthology.orchestra.run.smithi055.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [298 kB] 2024-04-18T22:38:05.158 INFO:teuthology.orchestra.run.smithi016.stdout:Reading package lists... 2024-04-18T22:38:05.300 INFO:teuthology.orchestra.run.smithi055.stdout:Ign:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en 2024-04-18T22:38:05.363 INFO:teuthology.orchestra.run.smithi016.stdout:Building dependency tree... 2024-04-18T22:38:05.364 INFO:teuthology.orchestra.run.smithi016.stdout:Reading state information... 2024-04-18T22:38:05.464 INFO:teuthology.orchestra.run.smithi055.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-04-18T22:38:05.465 INFO:teuthology.orchestra.run.smithi055.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,070 kB] 2024-04-18T22:38:05.546 INFO:teuthology.orchestra.run.smithi016.stdout:The following packages were automatically installed and are no longer required: 2024-04-18T22:38:05.546 INFO:teuthology.orchestra.run.smithi016.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-18T22:38:05.546 INFO:teuthology.orchestra.run.smithi016.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-18T22:38:05.547 INFO:teuthology.orchestra.run.smithi016.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-18T22:38:05.547 INFO:teuthology.orchestra.run.smithi016.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-04-18T22:38:05.547 INFO:teuthology.orchestra.run.smithi016.stdout: python2.7-minimal 2024-04-18T22:38:05.547 INFO:teuthology.orchestra.run.smithi016.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-18T22:38:05.548 INFO:teuthology.orchestra.run.smithi016.stdout:The following additional packages will be installed: 2024-04-18T22:38:05.548 INFO:teuthology.orchestra.run.smithi016.stdout: linux-generic linux-headers-5.15.0-105 linux-headers-5.15.0-105-generic 2024-04-18T22:38:05.549 INFO:teuthology.orchestra.run.smithi016.stdout: linux-headers-generic linux-image-5.15.0-105-generic 2024-04-18T22:38:05.549 INFO:teuthology.orchestra.run.smithi016.stdout: linux-modules-5.15.0-105-generic linux-modules-extra-5.15.0-105-generic 2024-04-18T22:38:05.550 INFO:teuthology.orchestra.run.smithi016.stdout:Suggested packages: 2024-04-18T22:38:05.550 INFO:teuthology.orchestra.run.smithi016.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-04-18T22:38:05.551 INFO:teuthology.orchestra.run.smithi016.stdout:Recommended packages: 2024-04-18T22:38:05.551 INFO:teuthology.orchestra.run.smithi016.stdout: thermald 2024-04-18T22:38:05.590 INFO:teuthology.orchestra.run.smithi016.stdout:The following NEW packages will be installed: 2024-04-18T22:38:05.590 INFO:teuthology.orchestra.run.smithi016.stdout: linux-headers-5.15.0-105 linux-headers-5.15.0-105-generic 2024-04-18T22:38:05.590 INFO:teuthology.orchestra.run.smithi016.stdout: linux-image-5.15.0-105-generic linux-modules-5.15.0-105-generic 2024-04-18T22:38:05.591 INFO:teuthology.orchestra.run.smithi016.stdout: linux-modules-extra-5.15.0-105-generic 2024-04-18T22:38:05.592 INFO:teuthology.orchestra.run.smithi016.stdout:The following packages will be upgraded: 2024-04-18T22:38:05.592 INFO:teuthology.orchestra.run.smithi016.stdout: linux-generic linux-headers-generic linux-image-generic 2024-04-18T22:38:05.668 INFO:teuthology.orchestra.run.smithi016.stdout:3 upgraded, 5 newly installed, 0 to remove and 315 not upgraded. 2024-04-18T22:38:05.668 INFO:teuthology.orchestra.run.smithi016.stdout:Need to get 113 MB of archives. 2024-04-18T22:38:05.668 INFO:teuthology.orchestra.run.smithi016.stdout:After this operation, 583 MB of additional disk space will be used. 2024-04-18T22:38:05.668 INFO:teuthology.orchestra.run.smithi016.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-105-generic amd64 5.15.0-105.115 [22.7 MB] 2024-04-18T22:38:06.021 INFO:teuthology.orchestra.run.smithi055.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [699 kB] 2024-04-18T22:38:06.076 INFO:teuthology.orchestra.run.smithi069.stdout:Fetched 12.9 MB in 5s (2,862 kB/s) 2024-04-18T22:38:06.080 INFO:teuthology.orchestra.run.smithi055.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [244 kB] 2024-04-18T22:38:06.095 INFO:teuthology.orchestra.run.smithi055.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-04-18T22:38:06.096 INFO:teuthology.orchestra.run.smithi055.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [42.7 kB] 2024-04-18T22:38:06.099 INFO:teuthology.orchestra.run.smithi055.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,472 B] 2024-04-18T22:38:06.099 INFO:teuthology.orchestra.run.smithi055.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.4 kB] 2024-04-18T22:38:06.101 INFO:teuthology.orchestra.run.smithi055.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-04-18T22:38:06.101 INFO:teuthology.orchestra.run.smithi055.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.2 kB] 2024-04-18T22:38:06.104 INFO:teuthology.orchestra.run.smithi055.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.1 kB] 2024-04-18T22:38:06.216 INFO:teuthology.orchestra.run.smithi016.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-105-generic amd64 5.15.0-105.115 [11.5 MB] 2024-04-18T22:38:06.271 INFO:teuthology.orchestra.run.smithi055.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.0 kB] 2024-04-18T22:38:06.354 INFO:teuthology.orchestra.run.smithi055.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-04-18T22:38:06.355 INFO:teuthology.orchestra.run.smithi055.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.2 kB] 2024-04-18T22:38:06.360 INFO:teuthology.orchestra.run.smithi016.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-105-generic amd64 5.15.0-105.115 [63.9 MB] 2024-04-18T22:38:06.390 INFO:teuthology.orchestra.run.smithi055.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.4 kB] 2024-04-18T22:38:06.478 INFO:teuthology.orchestra.run.smithi055.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.2 kB] 2024-04-18T22:38:06.508 INFO:teuthology.orchestra.run.smithi055.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-04-18T22:38:06.508 INFO:teuthology.orchestra.run.smithi055.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [298 kB] 2024-04-18T22:38:07.422 INFO:teuthology.orchestra.run.smithi069.stdout:Reading package lists... 2024-04-18T22:38:07.439 DEBUG:teuthology.orchestra.run.smithi069:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-18T22:38:07.538 INFO:teuthology.orchestra.run.smithi069.stdout:Reading package lists... 2024-04-18T22:38:07.586 INFO:teuthology.orchestra.run.smithi016.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.105.102 [1,694 B] 2024-04-18T22:38:07.586 INFO:teuthology.orchestra.run.smithi016.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.105.102 [2,530 B] 2024-04-18T22:38:07.586 INFO:teuthology.orchestra.run.smithi016.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-105 all 5.15.0-105.115 [12.3 MB] 2024-04-18T22:38:07.716 INFO:teuthology.orchestra.run.smithi069.stdout:Building dependency tree... 2024-04-18T22:38:07.716 INFO:teuthology.orchestra.run.smithi069.stdout:Reading state information... 2024-04-18T22:38:07.730 INFO:teuthology.orchestra.run.smithi016.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-105-generic amd64 5.15.0-105.115 [2,857 kB] 2024-04-18T22:38:07.756 INFO:teuthology.orchestra.run.smithi016.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.105.102 [2,382 B] 2024-04-18T22:38:07.870 INFO:teuthology.orchestra.run.smithi069.stdout:The following packages were automatically installed and are no longer required: 2024-04-18T22:38:07.870 INFO:teuthology.orchestra.run.smithi069.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-18T22:38:07.870 INFO:teuthology.orchestra.run.smithi069.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-18T22:38:07.870 INFO:teuthology.orchestra.run.smithi069.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-18T22:38:07.871 INFO:teuthology.orchestra.run.smithi069.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-04-18T22:38:07.871 INFO:teuthology.orchestra.run.smithi069.stdout: python2.7-minimal 2024-04-18T22:38:07.871 INFO:teuthology.orchestra.run.smithi069.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-18T22:38:07.872 INFO:teuthology.orchestra.run.smithi069.stdout:The following additional packages will be installed: 2024-04-18T22:38:07.872 INFO:teuthology.orchestra.run.smithi069.stdout: linux-generic linux-headers-5.15.0-105 linux-headers-5.15.0-105-generic 2024-04-18T22:38:07.872 INFO:teuthology.orchestra.run.smithi069.stdout: linux-headers-generic linux-image-5.15.0-105-generic 2024-04-18T22:38:07.872 INFO:teuthology.orchestra.run.smithi069.stdout: linux-modules-5.15.0-105-generic linux-modules-extra-5.15.0-105-generic 2024-04-18T22:38:07.873 INFO:teuthology.orchestra.run.smithi069.stdout:Suggested packages: 2024-04-18T22:38:07.873 INFO:teuthology.orchestra.run.smithi069.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-04-18T22:38:07.873 INFO:teuthology.orchestra.run.smithi069.stdout:Recommended packages: 2024-04-18T22:38:07.873 INFO:teuthology.orchestra.run.smithi069.stdout: thermald 2024-04-18T22:38:07.921 INFO:teuthology.orchestra.run.smithi069.stdout:The following NEW packages will be installed: 2024-04-18T22:38:07.921 INFO:teuthology.orchestra.run.smithi069.stdout: linux-headers-5.15.0-105 linux-headers-5.15.0-105-generic 2024-04-18T22:38:07.922 INFO:teuthology.orchestra.run.smithi069.stdout: linux-image-5.15.0-105-generic linux-modules-5.15.0-105-generic 2024-04-18T22:38:07.922 INFO:teuthology.orchestra.run.smithi069.stdout: linux-modules-extra-5.15.0-105-generic 2024-04-18T22:38:07.923 INFO:teuthology.orchestra.run.smithi069.stdout:The following packages will be upgraded: 2024-04-18T22:38:07.924 INFO:teuthology.orchestra.run.smithi069.stdout: linux-generic linux-headers-generic linux-image-generic 2024-04-18T22:38:08.103 INFO:teuthology.orchestra.run.smithi069.stdout:3 upgraded, 5 newly installed, 0 to remove and 315 not upgraded. 2024-04-18T22:38:08.103 INFO:teuthology.orchestra.run.smithi069.stdout:Need to get 113 MB of archives. 2024-04-18T22:38:08.103 INFO:teuthology.orchestra.run.smithi069.stdout:After this operation, 583 MB of additional disk space will be used. 2024-04-18T22:38:08.103 INFO:teuthology.orchestra.run.smithi069.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-105-generic amd64 5.15.0-105.115 [22.7 MB] 2024-04-18T22:38:08.271 INFO:teuthology.orchestra.run.smithi016.stdout:Fetched 113 MB in 2s (50.9 MB/s) 2024-04-18T22:38:08.454 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package linux-modules-5.15.0-105-generic. 2024-04-18T22:38:09.512 INFO:teuthology.orchestra.run.smithi069.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-105-generic amd64 5.15.0-105.115 [11.5 MB] 2024-04-18T22:38:09.842 INFO:teuthology.orchestra.run.smithi069.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-105-generic amd64 5.15.0-105.115 [63.9 MB] 2024-04-18T22:38:10.436 INFO:teuthology.orchestra.run.smithi016.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-04-18T22:38:10.440 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../0-linux-modules-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-04-18T22:38:10.510 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking linux-modules-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-18T22:38:11.218 INFO:teuthology.orchestra.run.smithi055.stdout:Fetched 12.9 MB in 10s (1,324 kB/s) 2024-04-18T22:38:12.004 INFO:teuthology.orchestra.run.smithi069.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.105.102 [1,694 B] 2024-04-18T22:38:12.004 INFO:teuthology.orchestra.run.smithi069.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.105.102 [2,530 B] 2024-04-18T22:38:12.004 INFO:teuthology.orchestra.run.smithi069.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-105 all 5.15.0-105.115 [12.3 MB] 2024-04-18T22:38:12.614 INFO:teuthology.orchestra.run.smithi055.stdout:Reading package lists... 2024-04-18T22:38:12.632 DEBUG:teuthology.orchestra.run.smithi055:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-18T22:38:12.678 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package linux-image-5.15.0-105-generic. 2024-04-18T22:38:12.693 INFO:teuthology.orchestra.run.smithi055.stdout:Reading package lists... 2024-04-18T22:38:12.699 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../1-linux-image-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-04-18T22:38:12.789 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking linux-image-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-18T22:38:12.894 INFO:teuthology.orchestra.run.smithi055.stdout:Building dependency tree... 2024-04-18T22:38:12.895 INFO:teuthology.orchestra.run.smithi055.stdout:Reading state information... 2024-04-18T22:38:12.975 INFO:teuthology.orchestra.run.smithi069.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-105-generic amd64 5.15.0-105.115 [2,857 kB] 2024-04-18T22:38:13.073 INFO:teuthology.orchestra.run.smithi055.stdout:The following packages were automatically installed and are no longer required: 2024-04-18T22:38:13.073 INFO:teuthology.orchestra.run.smithi055.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-18T22:38:13.073 INFO:teuthology.orchestra.run.smithi055.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-18T22:38:13.074 INFO:teuthology.orchestra.run.smithi055.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-18T22:38:13.074 INFO:teuthology.orchestra.run.smithi055.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-04-18T22:38:13.074 INFO:teuthology.orchestra.run.smithi055.stdout: python2.7-minimal 2024-04-18T22:38:13.074 INFO:teuthology.orchestra.run.smithi055.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-18T22:38:13.075 INFO:teuthology.orchestra.run.smithi055.stdout:The following additional packages will be installed: 2024-04-18T22:38:13.075 INFO:teuthology.orchestra.run.smithi055.stdout: linux-generic linux-headers-5.15.0-105 linux-headers-5.15.0-105-generic 2024-04-18T22:38:13.075 INFO:teuthology.orchestra.run.smithi055.stdout: linux-headers-generic linux-image-5.15.0-105-generic 2024-04-18T22:38:13.076 INFO:teuthology.orchestra.run.smithi055.stdout: linux-modules-5.15.0-105-generic linux-modules-extra-5.15.0-105-generic 2024-04-18T22:38:13.077 INFO:teuthology.orchestra.run.smithi055.stdout:Suggested packages: 2024-04-18T22:38:13.077 INFO:teuthology.orchestra.run.smithi055.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-04-18T22:38:13.077 INFO:teuthology.orchestra.run.smithi055.stdout:Recommended packages: 2024-04-18T22:38:13.077 INFO:teuthology.orchestra.run.smithi055.stdout: thermald 2024-04-18T22:38:13.128 INFO:teuthology.orchestra.run.smithi055.stdout:The following NEW packages will be installed: 2024-04-18T22:38:13.128 INFO:teuthology.orchestra.run.smithi055.stdout: linux-headers-5.15.0-105 linux-headers-5.15.0-105-generic 2024-04-18T22:38:13.128 INFO:teuthology.orchestra.run.smithi055.stdout: linux-image-5.15.0-105-generic linux-modules-5.15.0-105-generic 2024-04-18T22:38:13.129 INFO:teuthology.orchestra.run.smithi055.stdout: linux-modules-extra-5.15.0-105-generic 2024-04-18T22:38:13.130 INFO:teuthology.orchestra.run.smithi055.stdout:The following packages will be upgraded: 2024-04-18T22:38:13.130 INFO:teuthology.orchestra.run.smithi055.stdout: linux-generic linux-headers-generic linux-image-generic 2024-04-18T22:38:13.143 INFO:teuthology.orchestra.run.smithi069.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.105.102 [2,382 B] 2024-04-18T22:38:13.273 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-105-generic. 2024-04-18T22:38:13.293 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-04-18T22:38:13.312 INFO:teuthology.orchestra.run.smithi055.stdout:3 upgraded, 5 newly installed, 0 to remove and 315 not upgraded. 2024-04-18T22:38:13.312 INFO:teuthology.orchestra.run.smithi055.stdout:Need to get 113 MB of archives. 2024-04-18T22:38:13.312 INFO:teuthology.orchestra.run.smithi055.stdout:After this operation, 583 MB of additional disk space will be used. 2024-04-18T22:38:13.312 INFO:teuthology.orchestra.run.smithi055.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-105-generic amd64 5.15.0-105.115 [22.7 MB] 2024-04-18T22:38:13.334 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking linux-modules-extra-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-18T22:38:13.536 INFO:teuthology.orchestra.run.smithi069.stdout:Fetched 113 MB in 5s (21.7 MB/s) 2024-04-18T22:38:13.729 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package linux-modules-5.15.0-105-generic. 2024-04-18T22:38:14.718 INFO:teuthology.orchestra.run.smithi055.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-105-generic amd64 5.15.0-105.115 [11.5 MB] 2024-04-18T22:38:15.139 INFO:teuthology.orchestra.run.smithi055.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-105-generic amd64 5.15.0-105.115 [63.9 MB] 2024-04-18T22:38:15.749 INFO:teuthology.orchestra.run.smithi069.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-04-18T22:38:15.753 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../0-linux-modules-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-04-18T22:38:15.843 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking linux-modules-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-18T22:38:17.552 INFO:teuthology.orchestra.run.smithi055.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.105.102 [1,694 B] 2024-04-18T22:38:17.552 INFO:teuthology.orchestra.run.smithi055.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.105.102 [2,530 B] 2024-04-18T22:38:17.553 INFO:teuthology.orchestra.run.smithi055.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-105 all 5.15.0-105.115 [12.3 MB] 2024-04-18T22:38:17.995 INFO:teuthology.orchestra.run.smithi055.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-105-generic amd64 5.15.0-105.115 [2,857 kB] 2024-04-18T22:38:18.035 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package linux-image-5.15.0-105-generic. 2024-04-18T22:38:18.056 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../1-linux-image-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-04-18T22:38:18.078 INFO:teuthology.orchestra.run.smithi055.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.105.102 [2,382 B] 2024-04-18T22:38:18.141 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking linux-image-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-18T22:38:18.490 INFO:teuthology.orchestra.run.smithi055.stdout:Fetched 113 MB in 5s (22.9 MB/s) 2024-04-18T22:38:18.605 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-105-generic. 2024-04-18T22:38:18.626 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-04-18T22:38:18.663 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking linux-modules-extra-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-18T22:38:18.665 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package linux-modules-5.15.0-105-generic. 2024-04-18T22:38:20.192 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../3-linux-generic_5.15.0.105.102_amd64.deb ... 2024-04-18T22:38:20.292 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking linux-generic (5.15.0.105.102) over (5.15.0.56.54) ... 2024-04-18T22:38:20.641 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.105.102_amd64.deb ... 2024-04-18T22:38:20.726 INFO:teuthology.orchestra.run.smithi055.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-04-18T22:38:20.730 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../0-linux-modules-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-04-18T22:38:20.762 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking linux-image-generic (5.15.0.105.102) over (5.15.0.56.54) ... 2024-04-18T22:38:20.796 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking linux-modules-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-18T22:38:21.065 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package linux-headers-5.15.0-105. 2024-04-18T22:38:21.081 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../5-linux-headers-5.15.0-105_5.15.0-105.115_all.deb ... 2024-04-18T22:38:21.127 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking linux-headers-5.15.0-105 (5.15.0-105.115) ... 2024-04-18T22:38:22.806 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package linux-image-5.15.0-105-generic. 2024-04-18T22:38:22.827 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../1-linux-image-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-04-18T22:38:22.912 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking linux-image-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-18T22:38:23.375 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-105-generic. 2024-04-18T22:38:23.396 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-04-18T22:38:23.433 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking linux-modules-extra-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-18T22:38:25.528 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../3-linux-generic_5.15.0.105.102_amd64.deb ... 2024-04-18T22:38:25.663 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking linux-generic (5.15.0.105.102) over (5.15.0.56.54) ... 2024-04-18T22:38:25.997 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.105.102_amd64.deb ... 2024-04-18T22:38:26.125 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking linux-image-generic (5.15.0.105.102) over (5.15.0.56.54) ... 2024-04-18T22:38:26.445 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package linux-headers-5.15.0-105. 2024-04-18T22:38:26.467 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../5-linux-headers-5.15.0-105_5.15.0-105.115_all.deb ... 2024-04-18T22:38:26.511 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking linux-headers-5.15.0-105 (5.15.0-105.115) ... 2024-04-18T22:38:26.960 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package linux-headers-5.15.0-105-generic. 2024-04-18T22:38:26.996 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../6-linux-headers-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-04-18T22:38:27.034 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking linux-headers-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-18T22:38:29.765 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.105.102_amd64.deb ... 2024-04-18T22:38:29.888 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking linux-headers-generic (5.15.0.105.102) over (5.15.0.56.54) ... 2024-04-18T22:38:30.160 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../3-linux-generic_5.15.0.105.102_amd64.deb ... 2024-04-18T22:38:30.221 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up linux-headers-5.15.0-105 (5.15.0-105.115) ... 2024-04-18T22:38:30.284 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking linux-generic (5.15.0.105.102) over (5.15.0.56.54) ... 2024-04-18T22:38:30.343 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up linux-headers-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-18T22:38:30.469 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up linux-headers-generic (5.15.0.105.102) ... 2024-04-18T22:38:30.594 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.105.102_amd64.deb ... 2024-04-18T22:38:30.597 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up linux-image-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-18T22:38:30.705 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking linux-image-generic (5.15.0.105.102) over (5.15.0.56.54) ... 2024-04-18T22:38:31.133 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package linux-headers-5.15.0-105. 2024-04-18T22:38:31.155 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../5-linux-headers-5.15.0-105_5.15.0-105.115_all.deb ... 2024-04-18T22:38:31.199 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking linux-headers-5.15.0-105 (5.15.0-105.115) ... 2024-04-18T22:38:31.945 INFO:teuthology.orchestra.run.smithi016.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-04-18T22:38:31.945 INFO:teuthology.orchestra.run.smithi016.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-04-18T22:38:31.945 INFO:teuthology.orchestra.run.smithi016.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-105-generic 2024-04-18T22:38:31.945 INFO:teuthology.orchestra.run.smithi016.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-105-generic 2024-04-18T22:38:32.107 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up linux-modules-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-18T22:38:32.518 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package linux-headers-5.15.0-105-generic. 2024-04-18T22:38:32.555 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../6-linux-headers-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-04-18T22:38:32.674 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking linux-headers-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-18T22:38:33.843 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up linux-modules-extra-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-18T22:38:35.243 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up linux-image-generic (5.15.0.105.102) ... 2024-04-18T22:38:35.370 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up linux-generic (5.15.0.105.102) ... 2024-04-18T22:38:35.479 INFO:teuthology.orchestra.run.smithi016.stdout:Processing triggers for linux-image-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-18T22:38:35.555 INFO:teuthology.orchestra.run.smithi016.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-04-18T22:38:35.556 INFO:teuthology.orchestra.run.smithi016.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-105-generic 2024-04-18T22:38:35.837 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.105.102_amd64.deb ... 2024-04-18T22:38:35.987 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking linux-headers-generic (5.15.0.105.102) over (5.15.0.56.54) ... 2024-04-18T22:38:36.354 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up linux-headers-5.15.0-105 (5.15.0-105.115) ... 2024-04-18T22:38:36.484 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up linux-headers-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-18T22:38:36.610 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up linux-headers-generic (5.15.0.105.102) ... 2024-04-18T22:38:36.756 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up linux-image-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-18T22:38:37.699 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package linux-headers-5.15.0-105-generic. 2024-04-18T22:38:37.737 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../6-linux-headers-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-04-18T22:38:37.774 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking linux-headers-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-18T22:38:38.115 INFO:teuthology.orchestra.run.smithi069.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-04-18T22:38:38.115 INFO:teuthology.orchestra.run.smithi069.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-04-18T22:38:38.115 INFO:teuthology.orchestra.run.smithi069.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-105-generic 2024-04-18T22:38:38.116 INFO:teuthology.orchestra.run.smithi069.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-105-generic 2024-04-18T22:38:38.265 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up linux-modules-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-18T22:38:39.834 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up linux-modules-extra-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-18T22:38:40.423 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.105.102_amd64.deb ... 2024-04-18T22:38:40.535 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking linux-headers-generic (5.15.0.105.102) over (5.15.0.56.54) ... 2024-04-18T22:38:40.877 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up linux-headers-5.15.0-105 (5.15.0-105.115) ... 2024-04-18T22:38:40.998 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up linux-headers-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-18T22:38:41.124 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up linux-headers-generic (5.15.0.105.102) ... 2024-04-18T22:38:41.218 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up linux-image-generic (5.15.0.105.102) ... 2024-04-18T22:38:41.252 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up linux-image-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-18T22:38:41.360 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up linux-generic (5.15.0.105.102) ... 2024-04-18T22:38:41.487 INFO:teuthology.orchestra.run.smithi069.stdout:Processing triggers for linux-image-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-18T22:38:41.561 INFO:teuthology.orchestra.run.smithi069.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-04-18T22:38:41.562 INFO:teuthology.orchestra.run.smithi069.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-105-generic 2024-04-18T22:38:42.616 INFO:teuthology.orchestra.run.smithi055.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-04-18T22:38:42.616 INFO:teuthology.orchestra.run.smithi055.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-04-18T22:38:42.616 INFO:teuthology.orchestra.run.smithi055.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-105-generic 2024-04-18T22:38:42.616 INFO:teuthology.orchestra.run.smithi055.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-105-generic 2024-04-18T22:38:42.771 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up linux-modules-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-18T22:38:44.673 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up linux-modules-extra-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-18T22:38:46.082 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up linux-image-generic (5.15.0.105.102) ... 2024-04-18T22:38:46.216 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up linux-generic (5.15.0.105.102) ... 2024-04-18T22:38:46.343 INFO:teuthology.orchestra.run.smithi055.stdout:Processing triggers for linux-image-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-18T22:38:46.405 INFO:teuthology.orchestra.run.smithi055.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-04-18T22:38:46.405 INFO:teuthology.orchestra.run.smithi055.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-105-generic 2024-04-18T22:38:50.381 INFO:teuthology.orchestra.run.smithi016.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-04-18T22:38:50.381 INFO:teuthology.orchestra.run.smithi016.stdout:Sourcing file `/etc/default/grub' 2024-04-18T22:38:50.391 INFO:teuthology.orchestra.run.smithi016.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-18T22:38:50.412 INFO:teuthology.orchestra.run.smithi016.stdout:Generating grub configuration file ... 2024-04-18T22:38:50.668 INFO:teuthology.orchestra.run.smithi016.stdout:Found linux image: /boot/vmlinuz-5.15.0-105-generic 2024-04-18T22:38:50.686 INFO:teuthology.orchestra.run.smithi016.stdout:Found initrd image: /boot/initrd.img-5.15.0-105-generic 2024-04-18T22:38:50.977 INFO:teuthology.orchestra.run.smithi016.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-18T22:38:50.983 INFO:teuthology.orchestra.run.smithi016.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-18T22:38:51.059 INFO:teuthology.orchestra.run.smithi016.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-18T22:38:51.065 INFO:teuthology.orchestra.run.smithi016.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-18T22:38:51.226 INFO:teuthology.orchestra.run.smithi016.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-18T22:38:51.226 INFO:teuthology.orchestra.run.smithi016.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-04-18T22:38:51.227 INFO:teuthology.orchestra.run.smithi016.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-18T22:38:51.264 INFO:teuthology.orchestra.run.smithi016.stdout:done 2024-04-18T22:38:51.727 DEBUG:teuthology.orchestra.run.smithi016:> dpkg -s linux-image-generic 2024-04-18T22:38:51.748 INFO:teuthology.orchestra.run.smithi016.stdout:Package: linux-image-generic 2024-04-18T22:38:51.749 INFO:teuthology.orchestra.run.smithi016.stdout:Status: install ok installed 2024-04-18T22:38:51.749 INFO:teuthology.orchestra.run.smithi016.stdout:Priority: optional 2024-04-18T22:38:51.749 INFO:teuthology.orchestra.run.smithi016.stdout:Section: kernel 2024-04-18T22:38:51.749 INFO:teuthology.orchestra.run.smithi016.stdout:Installed-Size: 21 2024-04-18T22:38:51.749 INFO:teuthology.orchestra.run.smithi016.stdout:Maintainer: Ubuntu Kernel Team 2024-04-18T22:38:51.749 INFO:teuthology.orchestra.run.smithi016.stdout:Architecture: amd64 2024-04-18T22:38:51.749 INFO:teuthology.orchestra.run.smithi016.stdout:Source: linux-meta 2024-04-18T22:38:51.749 INFO:teuthology.orchestra.run.smithi016.stdout:Version: 5.15.0.105.102 2024-04-18T22:38:51.749 INFO:teuthology.orchestra.run.smithi016.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-105), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-04-18T22:38:51.749 INFO:teuthology.orchestra.run.smithi016.stdout:Depends: linux-image-5.15.0-105-generic, linux-modules-extra-5.15.0-105-generic, linux-firmware, intel-microcode, amd64-microcode 2024-04-18T22:38:51.749 INFO:teuthology.orchestra.run.smithi016.stdout:Recommends: thermald 2024-04-18T22:38:51.750 INFO:teuthology.orchestra.run.smithi016.stdout:Description: Generic Linux kernel image 2024-04-18T22:38:51.750 INFO:teuthology.orchestra.run.smithi016.stdout: This package will always depend on the latest generic kernel image 2024-04-18T22:38:51.750 INFO:teuthology.orchestra.run.smithi016.stdout: available. 2024-04-18T22:38:51.750 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-105-generic 2024-04-18T22:38:51.750 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-18T22:38:51.750 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-18T22:38:51.750 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-04-18T22:38:51.751 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi016.front.sepia.ceph.com, path=None, version=distro) 2024-04-18T22:38:51.751 DEBUG:teuthology.orchestra.run.smithi016:> sudo apt-get clean 2024-04-18T22:38:51.934 DEBUG:teuthology.orchestra.run.smithi016:> sudo apt-get update 2024-04-18T22:38:52.064 INFO:teuthology.orchestra.run.smithi016.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-18T22:38:52.065 INFO:teuthology.orchestra.run.smithi016.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-04-18T22:38:52.086 INFO:teuthology.orchestra.run.smithi016.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-04-18T22:38:52.167 INFO:teuthology.orchestra.run.smithi016.stdout:Hit:4 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-04-18T22:38:53.424 INFO:teuthology.orchestra.run.smithi016.stdout:Reading package lists... 2024-04-18T22:38:53.442 DEBUG:teuthology.orchestra.run.smithi016:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-18T22:38:53.497 INFO:teuthology.orchestra.run.smithi016.stdout:Reading package lists... 2024-04-18T22:38:53.678 INFO:teuthology.orchestra.run.smithi016.stdout:Building dependency tree... 2024-04-18T22:38:53.678 INFO:teuthology.orchestra.run.smithi016.stdout:Reading state information... 2024-04-18T22:38:53.840 INFO:teuthology.orchestra.run.smithi016.stdout:linux-image-generic is already the newest version (5.15.0.105.102). 2024-04-18T22:38:53.840 INFO:teuthology.orchestra.run.smithi016.stdout:The following packages were automatically installed and are no longer required: 2024-04-18T22:38:53.840 INFO:teuthology.orchestra.run.smithi016.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-18T22:38:53.840 INFO:teuthology.orchestra.run.smithi016.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-18T22:38:53.840 INFO:teuthology.orchestra.run.smithi016.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-18T22:38:53.840 INFO:teuthology.orchestra.run.smithi016.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-18T22:38:53.841 INFO:teuthology.orchestra.run.smithi016.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-18T22:38:53.841 INFO:teuthology.orchestra.run.smithi016.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-18T22:38:53.880 INFO:teuthology.orchestra.run.smithi016.stdout:0 upgraded, 0 newly installed, 0 to remove and 315 not upgraded. 2024-04-18T22:38:53.882 DEBUG:teuthology.orchestra.run.smithi016:> dpkg -s linux-image-generic 2024-04-18T22:38:53.939 INFO:teuthology.orchestra.run.smithi016.stdout:Package: linux-image-generic 2024-04-18T22:38:53.939 INFO:teuthology.orchestra.run.smithi016.stdout:Status: install ok installed 2024-04-18T22:38:53.939 INFO:teuthology.orchestra.run.smithi016.stdout:Priority: optional 2024-04-18T22:38:53.939 INFO:teuthology.orchestra.run.smithi016.stdout:Section: kernel 2024-04-18T22:38:53.939 INFO:teuthology.orchestra.run.smithi016.stdout:Installed-Size: 21 2024-04-18T22:38:53.939 INFO:teuthology.orchestra.run.smithi016.stdout:Maintainer: Ubuntu Kernel Team 2024-04-18T22:38:53.939 INFO:teuthology.orchestra.run.smithi016.stdout:Architecture: amd64 2024-04-18T22:38:53.939 INFO:teuthology.orchestra.run.smithi016.stdout:Source: linux-meta 2024-04-18T22:38:53.939 INFO:teuthology.orchestra.run.smithi016.stdout:Version: 5.15.0.105.102 2024-04-18T22:38:53.940 INFO:teuthology.orchestra.run.smithi016.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-105), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-04-18T22:38:53.940 INFO:teuthology.orchestra.run.smithi016.stdout:Depends: linux-image-5.15.0-105-generic, linux-modules-extra-5.15.0-105-generic, linux-firmware, intel-microcode, amd64-microcode 2024-04-18T22:38:53.940 INFO:teuthology.orchestra.run.smithi016.stdout:Recommends: thermald 2024-04-18T22:38:53.940 INFO:teuthology.orchestra.run.smithi016.stdout:Description: Generic Linux kernel image 2024-04-18T22:38:53.940 INFO:teuthology.orchestra.run.smithi016.stdout: This package will always depend on the latest generic kernel image 2024-04-18T22:38:53.940 INFO:teuthology.orchestra.run.smithi016.stdout: available. 2024-04-18T22:38:53.940 DEBUG:teuthology.orchestra.run.smithi016:> mktemp 2024-04-18T22:38:53.988 INFO:teuthology.orchestra.run.smithi016.stdout:/tmp/tmp.YrJbXJ0Gl6 2024-04-18T22:38:53.988 DEBUG:teuthology.orchestra.run.smithi016:> sudo cp /boot/grub/grub.cfg /tmp/tmp.YrJbXJ0Gl6 2024-04-18T22:38:54.044 DEBUG:teuthology.orchestra.run.smithi016:> sudo chmod 0666 /tmp/tmp.YrJbXJ0Gl6 2024-04-18T22:38:54.159 DEBUG:teuthology.orchestra.remote:smithi016:/tmp/tmp.YrJbXJ0Gl6 is 10KB 2024-04-18T22:38:54.173 DEBUG:teuthology.orchestra.run.smithi016:> rm -fr /tmp/tmp.YrJbXJ0Gl6 2024-04-18T22:38:54.178 DEBUG:teuthology.orchestra.run.smithi016:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-04-18T22:38:54.236 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-18T22:38:54.236 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-04-18T22:38:54.236 DEBUG:teuthology.orchestra.run.smithi016:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-04-18T22:38:54.309 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-105-generic 2024-04-18T22:38:54.309 DEBUG:teuthology.orchestra.run.smithi016:> sudo update-grub 2024-04-18T22:38:55.536 INFO:teuthology.orchestra.run.smithi016.stderr:Sourcing file `/etc/default/grub' 2024-04-18T22:38:55.536 INFO:teuthology.orchestra.run.smithi016.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-18T22:38:55.539 INFO:teuthology.orchestra.run.smithi016.stderr:Generating grub configuration file ... 2024-04-18T22:38:55.700 INFO:teuthology.orchestra.run.smithi016.stderr:Found linux image: /boot/vmlinuz-5.15.0-105-generic 2024-04-18T22:38:55.706 INFO:teuthology.orchestra.run.smithi016.stderr:Found initrd image: /boot/initrd.img-5.15.0-105-generic 2024-04-18T22:38:55.848 INFO:teuthology.orchestra.run.smithi069.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-04-18T22:38:55.848 INFO:teuthology.orchestra.run.smithi069.stdout:Sourcing file `/etc/default/grub' 2024-04-18T22:38:55.881 INFO:teuthology.orchestra.run.smithi069.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-18T22:38:55.911 INFO:teuthology.orchestra.run.smithi069.stdout:Generating grub configuration file ... 2024-04-18T22:38:55.922 INFO:teuthology.orchestra.run.smithi016.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-18T22:38:55.925 INFO:teuthology.orchestra.run.smithi016.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-18T22:38:55.966 INFO:teuthology.orchestra.run.smithi016.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-18T22:38:55.972 INFO:teuthology.orchestra.run.smithi016.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-18T22:38:56.114 INFO:teuthology.orchestra.run.smithi016.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-18T22:38:56.114 INFO:teuthology.orchestra.run.smithi016.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-04-18T22:38:56.114 INFO:teuthology.orchestra.run.smithi016.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-18T22:38:56.131 INFO:teuthology.orchestra.run.smithi016.stderr:done 2024-04-18T22:38:56.137 DEBUG:teuthology.orchestra.run.smithi016:> sudo shutdown -r now 2024-04-18T22:38:56.167 INFO:teuthology.orchestra.run.smithi069.stdout:Found linux image: /boot/vmlinuz-5.15.0-105-generic 2024-04-18T22:38:56.187 INFO:teuthology.orchestra.run.smithi069.stdout:Found initrd image: /boot/initrd.img-5.15.0-105-generic 2024-04-18T22:38:56.496 INFO:teuthology.orchestra.run.smithi069.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-18T22:38:56.502 INFO:teuthology.orchestra.run.smithi069.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-18T22:38:56.572 INFO:teuthology.orchestra.run.smithi069.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-18T22:38:56.578 INFO:teuthology.orchestra.run.smithi069.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-18T22:38:56.746 INFO:teuthology.orchestra.run.smithi069.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-18T22:38:56.746 INFO:teuthology.orchestra.run.smithi069.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-04-18T22:38:56.746 INFO:teuthology.orchestra.run.smithi069.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-18T22:38:56.793 INFO:teuthology.orchestra.run.smithi069.stdout:done 2024-04-18T22:38:57.280 DEBUG:teuthology.orchestra.run.smithi069:> dpkg -s linux-image-generic 2024-04-18T22:38:57.296 INFO:teuthology.orchestra.run.smithi069.stdout:Package: linux-image-generic 2024-04-18T22:38:57.296 INFO:teuthology.orchestra.run.smithi069.stdout:Status: install ok installed 2024-04-18T22:38:57.296 INFO:teuthology.orchestra.run.smithi069.stdout:Priority: optional 2024-04-18T22:38:57.296 INFO:teuthology.orchestra.run.smithi069.stdout:Section: kernel 2024-04-18T22:38:57.297 INFO:teuthology.orchestra.run.smithi069.stdout:Installed-Size: 21 2024-04-18T22:38:57.297 INFO:teuthology.orchestra.run.smithi069.stdout:Maintainer: Ubuntu Kernel Team 2024-04-18T22:38:57.297 INFO:teuthology.orchestra.run.smithi069.stdout:Architecture: amd64 2024-04-18T22:38:57.297 INFO:teuthology.orchestra.run.smithi069.stdout:Source: linux-meta 2024-04-18T22:38:57.297 INFO:teuthology.orchestra.run.smithi069.stdout:Version: 5.15.0.105.102 2024-04-18T22:38:57.297 INFO:teuthology.orchestra.run.smithi069.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-105), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-04-18T22:38:57.297 INFO:teuthology.orchestra.run.smithi069.stdout:Depends: linux-image-5.15.0-105-generic, linux-modules-extra-5.15.0-105-generic, linux-firmware, intel-microcode, amd64-microcode 2024-04-18T22:38:57.297 INFO:teuthology.orchestra.run.smithi069.stdout:Recommends: thermald 2024-04-18T22:38:57.297 INFO:teuthology.orchestra.run.smithi069.stdout:Description: Generic Linux kernel image 2024-04-18T22:38:57.297 INFO:teuthology.orchestra.run.smithi069.stdout: This package will always depend on the latest generic kernel image 2024-04-18T22:38:57.297 INFO:teuthology.orchestra.run.smithi069.stdout: available. 2024-04-18T22:38:57.297 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-105-generic 2024-04-18T22:38:57.298 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-18T22:38:57.298 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-18T22:38:57.298 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2024-04-18T22:38:57.298 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi069.front.sepia.ceph.com, path=None, version=distro) 2024-04-18T22:38:57.298 DEBUG:teuthology.orchestra.run.smithi069:> sudo apt-get clean 2024-04-18T22:38:57.484 DEBUG:teuthology.orchestra.run.smithi069:> sudo apt-get update 2024-04-18T22:38:57.638 INFO:teuthology.orchestra.run.smithi069.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-18T22:38:57.656 INFO:teuthology.orchestra.run.smithi069.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-04-18T22:38:57.663 INFO:teuthology.orchestra.run.smithi069.stdout:Hit:3 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-04-18T22:38:57.689 INFO:teuthology.orchestra.run.smithi069.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-04-18T22:38:59.017 INFO:teuthology.orchestra.run.smithi069.stdout:Reading package lists... 2024-04-18T22:38:59.033 DEBUG:teuthology.orchestra.run.smithi069:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-18T22:38:59.086 INFO:teuthology.orchestra.run.smithi069.stdout:Reading package lists... 2024-04-18T22:38:59.265 INFO:teuthology.orchestra.run.smithi069.stdout:Building dependency tree... 2024-04-18T22:38:59.266 INFO:teuthology.orchestra.run.smithi069.stdout:Reading state information... 2024-04-18T22:38:59.421 INFO:teuthology.orchestra.run.smithi069.stdout:linux-image-generic is already the newest version (5.15.0.105.102). 2024-04-18T22:38:59.421 INFO:teuthology.orchestra.run.smithi069.stdout:The following packages were automatically installed and are no longer required: 2024-04-18T22:38:59.421 INFO:teuthology.orchestra.run.smithi069.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-18T22:38:59.421 INFO:teuthology.orchestra.run.smithi069.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-18T22:38:59.421 INFO:teuthology.orchestra.run.smithi069.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-18T22:38:59.422 INFO:teuthology.orchestra.run.smithi069.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-18T22:38:59.422 INFO:teuthology.orchestra.run.smithi069.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-18T22:38:59.422 INFO:teuthology.orchestra.run.smithi069.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-18T22:38:59.460 INFO:teuthology.orchestra.run.smithi069.stdout:0 upgraded, 0 newly installed, 0 to remove and 315 not upgraded. 2024-04-18T22:38:59.462 DEBUG:teuthology.orchestra.run.smithi069:> dpkg -s linux-image-generic 2024-04-18T22:38:59.517 INFO:teuthology.orchestra.run.smithi069.stdout:Package: linux-image-generic 2024-04-18T22:38:59.517 INFO:teuthology.orchestra.run.smithi069.stdout:Status: install ok installed 2024-04-18T22:38:59.518 INFO:teuthology.orchestra.run.smithi069.stdout:Priority: optional 2024-04-18T22:38:59.518 INFO:teuthology.orchestra.run.smithi069.stdout:Section: kernel 2024-04-18T22:38:59.518 INFO:teuthology.orchestra.run.smithi069.stdout:Installed-Size: 21 2024-04-18T22:38:59.518 INFO:teuthology.orchestra.run.smithi069.stdout:Maintainer: Ubuntu Kernel Team 2024-04-18T22:38:59.518 INFO:teuthology.orchestra.run.smithi069.stdout:Architecture: amd64 2024-04-18T22:38:59.518 INFO:teuthology.orchestra.run.smithi069.stdout:Source: linux-meta 2024-04-18T22:38:59.518 INFO:teuthology.orchestra.run.smithi069.stdout:Version: 5.15.0.105.102 2024-04-18T22:38:59.518 INFO:teuthology.orchestra.run.smithi069.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-105), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-04-18T22:38:59.518 INFO:teuthology.orchestra.run.smithi069.stdout:Depends: linux-image-5.15.0-105-generic, linux-modules-extra-5.15.0-105-generic, linux-firmware, intel-microcode, amd64-microcode 2024-04-18T22:38:59.518 INFO:teuthology.orchestra.run.smithi069.stdout:Recommends: thermald 2024-04-18T22:38:59.518 INFO:teuthology.orchestra.run.smithi069.stdout:Description: Generic Linux kernel image 2024-04-18T22:38:59.518 INFO:teuthology.orchestra.run.smithi069.stdout: This package will always depend on the latest generic kernel image 2024-04-18T22:38:59.519 INFO:teuthology.orchestra.run.smithi069.stdout: available. 2024-04-18T22:38:59.519 DEBUG:teuthology.orchestra.run.smithi069:> mktemp 2024-04-18T22:38:59.563 INFO:teuthology.orchestra.run.smithi069.stdout:/tmp/tmp.2PKii4jaz6 2024-04-18T22:38:59.563 DEBUG:teuthology.orchestra.run.smithi069:> sudo cp /boot/grub/grub.cfg /tmp/tmp.2PKii4jaz6 2024-04-18T22:38:59.632 DEBUG:teuthology.orchestra.run.smithi069:> sudo chmod 0666 /tmp/tmp.2PKii4jaz6 2024-04-18T22:38:59.745 DEBUG:teuthology.orchestra.remote:smithi069:/tmp/tmp.2PKii4jaz6 is 10KB 2024-04-18T22:38:59.758 DEBUG:teuthology.orchestra.run.smithi069:> rm -fr /tmp/tmp.2PKii4jaz6 2024-04-18T22:38:59.763 DEBUG:teuthology.orchestra.run.smithi069:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-04-18T22:38:59.818 DEBUG:teuthology.orchestra.run.smithi069:> set -ex 2024-04-18T22:38:59.818 DEBUG:teuthology.orchestra.run.smithi069:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-04-18T22:38:59.818 DEBUG:teuthology.orchestra.run.smithi069:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-04-18T22:38:59.883 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-105-generic 2024-04-18T22:38:59.883 DEBUG:teuthology.orchestra.run.smithi069:> sudo update-grub 2024-04-18T22:39:00.978 INFO:teuthology.orchestra.run.smithi055.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-04-18T22:39:00.978 INFO:teuthology.orchestra.run.smithi055.stdout:Sourcing file `/etc/default/grub' 2024-04-18T22:39:00.994 INFO:teuthology.orchestra.run.smithi055.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-18T22:39:01.011 INFO:teuthology.orchestra.run.smithi055.stdout:Generating grub configuration file ... 2024-04-18T22:39:01.175 INFO:teuthology.orchestra.run.smithi069.stderr:Sourcing file `/etc/default/grub' 2024-04-18T22:39:01.176 INFO:teuthology.orchestra.run.smithi069.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-18T22:39:01.179 INFO:teuthology.orchestra.run.smithi069.stderr:Generating grub configuration file ... 2024-04-18T22:39:01.257 INFO:teuthology.orchestra.run.smithi055.stdout:Found linux image: /boot/vmlinuz-5.15.0-105-generic 2024-04-18T22:39:01.276 INFO:teuthology.orchestra.run.smithi055.stdout:Found initrd image: /boot/initrd.img-5.15.0-105-generic 2024-04-18T22:39:01.366 INFO:teuthology.orchestra.run.smithi069.stderr:Found linux image: /boot/vmlinuz-5.15.0-105-generic 2024-04-18T22:39:01.370 INFO:teuthology.orchestra.run.smithi069.stderr:Found initrd image: /boot/initrd.img-5.15.0-105-generic 2024-04-18T22:39:01.586 INFO:teuthology.orchestra.run.smithi069.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-18T22:39:01.589 INFO:teuthology.orchestra.run.smithi055.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-18T22:39:01.591 INFO:teuthology.orchestra.run.smithi069.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-18T22:39:01.595 INFO:teuthology.orchestra.run.smithi055.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-18T22:39:01.625 INFO:teuthology.orchestra.run.smithi069.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-18T22:39:01.629 INFO:teuthology.orchestra.run.smithi069.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-18T22:39:01.662 INFO:teuthology.orchestra.run.smithi055.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-18T22:39:01.668 INFO:teuthology.orchestra.run.smithi055.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-18T22:39:01.730 INFO:teuthology.orchestra.run.smithi069.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-18T22:39:01.731 INFO:teuthology.orchestra.run.smithi069.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-04-18T22:39:01.731 INFO:teuthology.orchestra.run.smithi069.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-18T22:39:01.747 INFO:teuthology.orchestra.run.smithi069.stderr:done 2024-04-18T22:39:01.749 DEBUG:teuthology.orchestra.run.smithi069:> sudo shutdown -r now 2024-04-18T22:39:01.836 INFO:teuthology.orchestra.run.smithi055.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-18T22:39:01.836 INFO:teuthology.orchestra.run.smithi055.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-04-18T22:39:01.836 INFO:teuthology.orchestra.run.smithi055.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-18T22:39:01.875 INFO:teuthology.orchestra.run.smithi055.stdout:done 2024-04-18T22:39:02.343 DEBUG:teuthology.orchestra.run.smithi055:> dpkg -s linux-image-generic 2024-04-18T22:39:02.365 INFO:teuthology.orchestra.run.smithi055.stdout:Package: linux-image-generic 2024-04-18T22:39:02.365 INFO:teuthology.orchestra.run.smithi055.stdout:Status: install ok installed 2024-04-18T22:39:02.365 INFO:teuthology.orchestra.run.smithi055.stdout:Priority: optional 2024-04-18T22:39:02.365 INFO:teuthology.orchestra.run.smithi055.stdout:Section: kernel 2024-04-18T22:39:02.365 INFO:teuthology.orchestra.run.smithi055.stdout:Installed-Size: 21 2024-04-18T22:39:02.365 INFO:teuthology.orchestra.run.smithi055.stdout:Maintainer: Ubuntu Kernel Team 2024-04-18T22:39:02.365 INFO:teuthology.orchestra.run.smithi055.stdout:Architecture: amd64 2024-04-18T22:39:02.365 INFO:teuthology.orchestra.run.smithi055.stdout:Source: linux-meta 2024-04-18T22:39:02.366 INFO:teuthology.orchestra.run.smithi055.stdout:Version: 5.15.0.105.102 2024-04-18T22:39:02.366 INFO:teuthology.orchestra.run.smithi055.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-105), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-04-18T22:39:02.366 INFO:teuthology.orchestra.run.smithi055.stdout:Depends: linux-image-5.15.0-105-generic, linux-modules-extra-5.15.0-105-generic, linux-firmware, intel-microcode, amd64-microcode 2024-04-18T22:39:02.366 INFO:teuthology.orchestra.run.smithi055.stdout:Recommends: thermald 2024-04-18T22:39:02.366 INFO:teuthology.orchestra.run.smithi055.stdout:Description: Generic Linux kernel image 2024-04-18T22:39:02.366 INFO:teuthology.orchestra.run.smithi055.stdout: This package will always depend on the latest generic kernel image 2024-04-18T22:39:02.366 INFO:teuthology.orchestra.run.smithi055.stdout: available. 2024-04-18T22:39:02.366 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-105-generic 2024-04-18T22:39:02.367 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-18T22:39:02.367 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-18T22:39:02.367 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-04-18T22:39:02.367 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi055.front.sepia.ceph.com, path=None, version=distro) 2024-04-18T22:39:02.367 DEBUG:teuthology.orchestra.run.smithi055:> sudo apt-get clean 2024-04-18T22:39:02.485 DEBUG:teuthology.orchestra.run.smithi055:> sudo apt-get update 2024-04-18T22:39:02.608 INFO:teuthology.orchestra.run.smithi055.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-18T22:39:02.608 INFO:teuthology.orchestra.run.smithi055.stdout:Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-04-18T22:39:02.619 INFO:teuthology.orchestra.run.smithi055.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-04-18T22:39:02.639 INFO:teuthology.orchestra.run.smithi055.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-04-18T22:39:03.967 INFO:teuthology.orchestra.run.smithi055.stdout:Reading package lists... 2024-04-18T22:39:03.985 DEBUG:teuthology.orchestra.run.smithi055:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-18T22:39:04.045 INFO:teuthology.orchestra.run.smithi055.stdout:Reading package lists... 2024-04-18T22:39:04.249 INFO:teuthology.orchestra.run.smithi055.stdout:Building dependency tree... 2024-04-18T22:39:04.249 INFO:teuthology.orchestra.run.smithi055.stdout:Reading state information... 2024-04-18T22:39:04.437 INFO:teuthology.orchestra.run.smithi055.stdout:linux-image-generic is already the newest version (5.15.0.105.102). 2024-04-18T22:39:04.437 INFO:teuthology.orchestra.run.smithi055.stdout:The following packages were automatically installed and are no longer required: 2024-04-18T22:39:04.437 INFO:teuthology.orchestra.run.smithi055.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-18T22:39:04.437 INFO:teuthology.orchestra.run.smithi055.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-18T22:39:04.437 INFO:teuthology.orchestra.run.smithi055.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-18T22:39:04.438 INFO:teuthology.orchestra.run.smithi055.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-18T22:39:04.438 INFO:teuthology.orchestra.run.smithi055.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-18T22:39:04.438 INFO:teuthology.orchestra.run.smithi055.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-18T22:39:04.478 INFO:teuthology.orchestra.run.smithi055.stdout:0 upgraded, 0 newly installed, 0 to remove and 315 not upgraded. 2024-04-18T22:39:04.480 DEBUG:teuthology.orchestra.run.smithi055:> dpkg -s linux-image-generic 2024-04-18T22:39:04.496 INFO:teuthology.orchestra.run.smithi055.stdout:Package: linux-image-generic 2024-04-18T22:39:04.496 INFO:teuthology.orchestra.run.smithi055.stdout:Status: install ok installed 2024-04-18T22:39:04.496 INFO:teuthology.orchestra.run.smithi055.stdout:Priority: optional 2024-04-18T22:39:04.496 INFO:teuthology.orchestra.run.smithi055.stdout:Section: kernel 2024-04-18T22:39:04.496 INFO:teuthology.orchestra.run.smithi055.stdout:Installed-Size: 21 2024-04-18T22:39:04.496 INFO:teuthology.orchestra.run.smithi055.stdout:Maintainer: Ubuntu Kernel Team 2024-04-18T22:39:04.496 INFO:teuthology.orchestra.run.smithi055.stdout:Architecture: amd64 2024-04-18T22:39:04.496 INFO:teuthology.orchestra.run.smithi055.stdout:Source: linux-meta 2024-04-18T22:39:04.496 INFO:teuthology.orchestra.run.smithi055.stdout:Version: 5.15.0.105.102 2024-04-18T22:39:04.496 INFO:teuthology.orchestra.run.smithi055.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-105), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-04-18T22:39:04.497 INFO:teuthology.orchestra.run.smithi055.stdout:Depends: linux-image-5.15.0-105-generic, linux-modules-extra-5.15.0-105-generic, linux-firmware, intel-microcode, amd64-microcode 2024-04-18T22:39:04.497 INFO:teuthology.orchestra.run.smithi055.stdout:Recommends: thermald 2024-04-18T22:39:04.497 INFO:teuthology.orchestra.run.smithi055.stdout:Description: Generic Linux kernel image 2024-04-18T22:39:04.497 INFO:teuthology.orchestra.run.smithi055.stdout: This package will always depend on the latest generic kernel image 2024-04-18T22:39:04.497 INFO:teuthology.orchestra.run.smithi055.stdout: available. 2024-04-18T22:39:04.497 DEBUG:teuthology.orchestra.run.smithi055:> mktemp 2024-04-18T22:39:04.542 INFO:teuthology.orchestra.run.smithi055.stdout:/tmp/tmp.cKKHUJ57DJ 2024-04-18T22:39:04.542 DEBUG:teuthology.orchestra.run.smithi055:> sudo cp /boot/grub/grub.cfg /tmp/tmp.cKKHUJ57DJ 2024-04-18T22:39:04.599 DEBUG:teuthology.orchestra.run.smithi055:> sudo chmod 0666 /tmp/tmp.cKKHUJ57DJ 2024-04-18T22:39:04.715 DEBUG:teuthology.orchestra.remote:smithi055:/tmp/tmp.cKKHUJ57DJ is 10KB 2024-04-18T22:39:04.728 DEBUG:teuthology.orchestra.run.smithi055:> rm -fr /tmp/tmp.cKKHUJ57DJ 2024-04-18T22:39:04.733 DEBUG:teuthology.orchestra.run.smithi055:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-04-18T22:39:04.786 DEBUG:teuthology.orchestra.run.smithi055:> set -ex 2024-04-18T22:39:04.786 DEBUG:teuthology.orchestra.run.smithi055:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-04-18T22:39:04.786 DEBUG:teuthology.orchestra.run.smithi055:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-04-18T22:39:04.865 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-105-generic 2024-04-18T22:39:04.866 DEBUG:teuthology.orchestra.run.smithi055:> sudo update-grub 2024-04-18T22:39:06.058 INFO:teuthology.orchestra.run.smithi055.stderr:Sourcing file `/etc/default/grub' 2024-04-18T22:39:06.060 INFO:teuthology.orchestra.run.smithi055.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-18T22:39:06.062 INFO:teuthology.orchestra.run.smithi055.stderr:Generating grub configuration file ... 2024-04-18T22:39:06.272 INFO:teuthology.orchestra.run.smithi055.stderr:Found linux image: /boot/vmlinuz-5.15.0-105-generic 2024-04-18T22:39:06.279 INFO:teuthology.orchestra.run.smithi055.stderr:Found initrd image: /boot/initrd.img-5.15.0-105-generic 2024-04-18T22:39:06.521 INFO:teuthology.orchestra.run.smithi055.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-18T22:39:06.526 INFO:teuthology.orchestra.run.smithi055.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-18T22:39:06.567 INFO:teuthology.orchestra.run.smithi055.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-18T22:39:06.573 INFO:teuthology.orchestra.run.smithi055.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-18T22:39:06.699 INFO:teuthology.orchestra.run.smithi055.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-18T22:39:06.699 INFO:teuthology.orchestra.run.smithi055.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-04-18T22:39:06.699 INFO:teuthology.orchestra.run.smithi055.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-18T22:39:06.735 INFO:teuthology.orchestra.run.smithi055.stderr:done 2024-04-18T22:39:06.743 DEBUG:teuthology.orchestra.run.smithi055:> sudo shutdown -r now 2024-04-18T22:39:26.158 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-04-18T22:39:26.159 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi016.front.sepia.ceph.com' 2024-04-18T22:39:26.160 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi016.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-18T22:39:31.755 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2024-04-18T22:39:31.755 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi069.front.sepia.ceph.com' 2024-04-18T22:39:31.756 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi069.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-18T22:39:36.750 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-04-18T22:39:36.750 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi055.front.sepia.ceph.com' 2024-04-18T22:39:36.751 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi055.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-18T22:39:44.674 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.16 2024-04-18T22:39:50.302 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.69 2024-04-18T22:39:53.678 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi016.front.sepia.ceph.com' 2024-04-18T22:39:53.679 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi016.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-18T22:39:55.166 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.55 2024-04-18T22:39:56.738 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.16 2024-04-18T22:39:59.306 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi069.front.sepia.ceph.com' 2024-04-18T22:39:59.307 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi069.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-18T22:40:02.366 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.69 2024-04-18T22:40:04.168 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi055.front.sepia.ceph.com' 2024-04-18T22:40:04.169 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi055.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-18T22:40:08.743 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi016.front.sepia.ceph.com' 2024-04-18T22:40:08.744 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi016.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-18T22:40:14.372 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi069.front.sepia.ceph.com' 2024-04-18T22:40:14.373 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi069.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-18T22:40:32.798 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.69 2024-04-18T22:40:41.222 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.16 2024-04-18T22:40:47.804 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi069.front.sepia.ceph.com' 2024-04-18T22:40:47.805 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi069.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-18T22:40:48.106 DEBUG:teuthology.orchestra.run.smithi069:> true 2024-04-18T22:40:48.761 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi069.front.sepia.ceph.com' 2024-04-18T22:40:48.761 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "5.15.0-105-generic"... 2024-04-18T22:40:48.761 DEBUG:teuthology.orchestra.run.smithi069:> uname -r 2024-04-18T22:40:48.807 INFO:teuthology.orchestra.run.smithi069.stdout:5.15.0-105-generic 2024-04-18T22:40:48.807 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-105-generic vs 5.15.0-105-generic 2024-04-18T22:40:48.807 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-18T22:40:48.807 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-04-18T22:40:49.808 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-04-18T22:40:49.808 DEBUG:teuthology.orchestra.run.smithi069:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-18T22:40:49.870 INFO:teuthology.orchestra.run.smithi069.stdout:ttyS1 2024-04-18T22:40:49.881 DEBUG:teuthology.parallel:result is None 2024-04-18T22:40:56.223 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi016.front.sepia.ceph.com' 2024-04-18T22:40:56.224 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi016.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-18T22:40:56.443 DEBUG:teuthology.orchestra.run.smithi016:> true 2024-04-18T22:40:57.088 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi016.front.sepia.ceph.com' 2024-04-18T22:40:57.089 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-105-generic"... 2024-04-18T22:40:57.089 DEBUG:teuthology.orchestra.run.smithi016:> uname -r 2024-04-18T22:40:57.134 INFO:teuthology.orchestra.run.smithi016.stdout:5.15.0-105-generic 2024-04-18T22:40:57.135 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-105-generic vs 5.15.0-105-generic 2024-04-18T22:40:57.135 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-18T22:40:57.135 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-04-18T22:40:58.135 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-04-18T22:40:58.136 DEBUG:teuthology.orchestra.run.smithi016:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-18T22:40:58.191 INFO:teuthology.orchestra.run.smithi016.stdout:ttyS1 2024-04-18T22:40:58.224 DEBUG:teuthology.parallel:result is None 2024-04-18T22:41:04.172 DEBUG:teuthology.orchestra.remote:timed out 2024-04-18T22:41:16.172 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi055.front.sepia.ceph.com' 2024-04-18T22:41:16.174 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi055.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-18T22:41:16.469 DEBUG:teuthology.orchestra.run.smithi055:> true 2024-04-18T22:41:17.046 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi055.front.sepia.ceph.com' 2024-04-18T22:41:17.046 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-105-generic"... 2024-04-18T22:41:17.047 DEBUG:teuthology.orchestra.run.smithi055:> uname -r 2024-04-18T22:41:17.095 INFO:teuthology.orchestra.run.smithi055.stdout:5.15.0-105-generic 2024-04-18T22:41:17.096 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-105-generic vs 5.15.0-105-generic 2024-04-18T22:41:17.096 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-18T22:41:17.096 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-04-18T22:41:18.096 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-04-18T22:41:18.097 DEBUG:teuthology.orchestra.run.smithi055:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-18T22:41:18.173 INFO:teuthology.orchestra.run.smithi055.stdout:ttyS1 2024-04-18T22:41:18.205 DEBUG:teuthology.parallel:result is None 2024-04-18T22:41:18.205 INFO:teuthology.run_tasks:Running task internal.base... 2024-04-18T22:41:18.212 INFO:teuthology.task.internal:Creating test directory... 2024-04-18T22:41:18.212 DEBUG:teuthology.orchestra.run.smithi016:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-18T22:41:18.215 DEBUG:teuthology.orchestra.run.smithi055:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-18T22:41:18.218 DEBUG:teuthology.orchestra.run.smithi069:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-18T22:41:18.224 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-04-18T22:41:18.232 INFO:teuthology.run_tasks:Running task internal.archive... 2024-04-18T22:41:18.243 INFO:teuthology.task.internal:Creating archive directory... 2024-04-18T22:41:18.243 DEBUG:teuthology.orchestra.run.smithi016:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-18T22:41:18.263 DEBUG:teuthology.orchestra.run.smithi055:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-18T22:41:18.265 DEBUG:teuthology.orchestra.run.smithi069:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-18T22:41:18.286 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-04-18T22:41:18.294 INFO:teuthology.task.internal:Enabling coredump saving... 2024-04-18T22:41:18.294 DEBUG:teuthology.orchestra.run.smithi016:> 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-04-18T22:41:18.319 DEBUG:teuthology.orchestra.run.smithi055:> 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-04-18T22:41:18.324 DEBUG:teuthology.orchestra.run.smithi069:> 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-04-18T22:41:18.334 INFO:teuthology.orchestra.run.smithi016.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-18T22:41:18.342 INFO:teuthology.orchestra.run.smithi016.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-18T22:41:18.345 INFO:teuthology.orchestra.run.smithi055.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-18T22:41:18.346 INFO:teuthology.orchestra.run.smithi069.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-18T22:41:18.354 INFO:teuthology.orchestra.run.smithi069.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-18T22:41:18.356 INFO:teuthology.orchestra.run.smithi055.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-18T22:41:18.357 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-04-18T22:41:18.364 INFO:teuthology.task.internal:Configuring sudo... 2024-04-18T22:41:18.365 DEBUG:teuthology.orchestra.run.smithi016:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-18T22:41:18.387 DEBUG:teuthology.orchestra.run.smithi055:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-18T22:41:18.400 DEBUG:teuthology.orchestra.run.smithi069:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-18T22:41:18.414 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-04-18T22:41:18.424 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-04-18T22:41:18.424 DEBUG:teuthology.orchestra.run.smithi016:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-18T22:41:18.443 DEBUG:teuthology.orchestra.run.smithi055:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-18T22:41:18.456 DEBUG:teuthology.orchestra.run.smithi069:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-18T22:41:18.467 DEBUG:teuthology.orchestra.run.smithi016:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-18T22:41:18.495 DEBUG:teuthology.orchestra.run.smithi016:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-18T22:41:18.543 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-18T22:41:18.543 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-18T22:41:18.606 DEBUG:teuthology.orchestra.run.smithi055:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-18T22:41:18.612 DEBUG:teuthology.orchestra.run.smithi055:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-18T22:41:18.659 DEBUG:teuthology.orchestra.run.smithi055:> set -ex 2024-04-18T22:41:18.660 DEBUG:teuthology.orchestra.run.smithi055:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-18T22:41:18.724 DEBUG:teuthology.orchestra.run.smithi069:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-18T22:41:18.729 DEBUG:teuthology.orchestra.run.smithi069:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-18T22:41:18.775 DEBUG:teuthology.orchestra.run.smithi069:> set -ex 2024-04-18T22:41:18.776 DEBUG:teuthology.orchestra.run.smithi069:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-18T22:41:18.847 DEBUG:teuthology.orchestra.run.smithi016:> sudo service rsyslog restart 2024-04-18T22:41:18.849 DEBUG:teuthology.orchestra.run.smithi055:> sudo service rsyslog restart 2024-04-18T22:41:18.852 DEBUG:teuthology.orchestra.run.smithi069:> sudo service rsyslog restart 2024-04-18T22:41:18.927 INFO:teuthology.run_tasks:Running task internal.timer... 2024-04-18T22:41:18.935 INFO:teuthology.task.internal:Starting timer... 2024-04-18T22:41:18.935 INFO:teuthology.run_tasks:Running task pcp... 2024-04-18T22:41:18.949 INFO:teuthology.run_tasks:Running task selinux... 2024-04-18T22:41:18.958 DEBUG:teuthology.task.selinux:Excluding smithi016: OS 'ubuntu' does not support SELinux 2024-04-18T22:41:18.958 DEBUG:teuthology.task.selinux:Excluding smithi055: OS 'ubuntu' does not support SELinux 2024-04-18T22:41:18.958 DEBUG:teuthology.task.selinux:Excluding smithi069: OS 'ubuntu' does not support SELinux 2024-04-18T22:41:18.958 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-04-18T22:41:18.958 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-04-18T22:41:18.959 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-04-18T22:41:18.959 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-04-18T22:41:18.968 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-04-18T22:41:18.985 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-04-18T22:41:18.986 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi016.front.sepia.ceph.com,smithi055.front.sepia.ceph.com,smithi069.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-04-18T22:48:29.326 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi016.front.sepia.ceph.com'), Remote(name='ubuntu@smithi055.front.sepia.ceph.com'), Remote(name='ubuntu@smithi069.front.sepia.ceph.com')] 2024-04-18T22:48:29.327 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi016.front.sepia.ceph.com' 2024-04-18T22:48:29.328 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi016.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-18T22:48:29.413 DEBUG:teuthology.orchestra.run.smithi016:> true 2024-04-18T22:48:29.494 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi016.front.sepia.ceph.com' 2024-04-18T22:48:29.495 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi055.front.sepia.ceph.com' 2024-04-18T22:48:29.495 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi055.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-18T22:48:29.575 DEBUG:teuthology.orchestra.run.smithi055:> true 2024-04-18T22:48:29.654 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi055.front.sepia.ceph.com' 2024-04-18T22:48:29.655 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi069.front.sepia.ceph.com' 2024-04-18T22:48:29.655 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi069.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-18T22:48:29.733 DEBUG:teuthology.orchestra.run.smithi069:> true 2024-04-18T22:48:29.810 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi069.front.sepia.ceph.com' 2024-04-18T22:48:29.811 INFO:teuthology.run_tasks:Running task clock... 2024-04-18T22:48:29.820 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-04-18T22:48:29.820 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-18T22:48:29.821 DEBUG:teuthology.orchestra.run.smithi016:> 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-04-18T22:48:29.823 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-18T22:48:29.823 DEBUG:teuthology.orchestra.run.smithi055:> 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-04-18T22:48:29.826 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-18T22:48:29.826 DEBUG:teuthology.orchestra.run.smithi069:> 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-04-18T22:48:29.853 INFO:teuthology.orchestra.run.smithi016.stdout:18 Apr 22:48:29 ntpd[17085]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-04-18T22:48:29.853 INFO:teuthology.orchestra.run.smithi016.stdout:18 Apr 22:48:29 ntpd[17085]: Command line: ntpd -gq 2024-04-18T22:48:29.853 INFO:teuthology.orchestra.run.smithi016.stdout:18 Apr 22:48:29 ntpd[17085]: ---------------------------------------------------- 2024-04-18T22:48:29.853 INFO:teuthology.orchestra.run.smithi016.stdout:18 Apr 22:48:29 ntpd[17085]: ntp-4 is maintained by Network Time Foundation, 2024-04-18T22:48:29.853 INFO:teuthology.orchestra.run.smithi016.stdout:18 Apr 22:48:29 ntpd[17085]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-04-18T22:48:29.853 INFO:teuthology.orchestra.run.smithi016.stdout:18 Apr 22:48:29 ntpd[17085]: corporation. Support and training for ntp-4 are 2024-04-18T22:48:29.853 INFO:teuthology.orchestra.run.smithi016.stdout:18 Apr 22:48:29 ntpd[17085]: available at https://www.nwtime.org/support 2024-04-18T22:48:29.853 INFO:teuthology.orchestra.run.smithi016.stdout:18 Apr 22:48:29 ntpd[17085]: ---------------------------------------------------- 2024-04-18T22:48:29.853 INFO:teuthology.orchestra.run.smithi016.stdout:18 Apr 22:48:29 ntpd[17085]: proto: precision = 0.045 usec (-24) 2024-04-18T22:48:29.853 INFO:teuthology.orchestra.run.smithi016.stdout:18 Apr 22:48:29 ntpd[17085]: basedate set to 2022-02-04 2024-04-18T22:48:29.853 INFO:teuthology.orchestra.run.smithi016.stdout:18 Apr 22:48:29 ntpd[17085]: gps base set to 2022-02-06 (week 2196) 2024-04-18T22:48:29.854 INFO:teuthology.orchestra.run.smithi016.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-18T22:48:29.854 INFO:teuthology.orchestra.run.smithi016.stdout:18 Apr 22:48:29 ntpd[17085]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-18T22:48:29.854 INFO:teuthology.orchestra.run.smithi016.stdout:18 Apr 22:48:29 ntpd[17085]: restrict ::: KOD does nothing without LIMITED. 2024-04-18T22:48:29.854 INFO:teuthology.orchestra.run.smithi016.stderr:restrict ::: KOD does nothing without LIMITED. 2024-04-18T22:48:29.855 INFO:teuthology.orchestra.run.smithi016.stdout:18 Apr 22:48:29 ntpd[17085]: Listen and drop on 0 v6wildcard [::]:123 2024-04-18T22:48:29.856 INFO:teuthology.orchestra.run.smithi016.stdout:18 Apr 22:48:29 ntpd[17085]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-04-18T22:48:29.856 INFO:teuthology.orchestra.run.smithi016.stdout:18 Apr 22:48:29 ntpd[17085]: Listen normally on 2 lo 127.0.0.1:123 2024-04-18T22:48:29.856 INFO:teuthology.orchestra.run.smithi016.stdout:18 Apr 22:48:29 ntpd[17085]: Listen normally on 3 ens1f0 172.21.15.16:123 2024-04-18T22:48:29.856 INFO:teuthology.orchestra.run.smithi016.stdout:18 Apr 22:48:29 ntpd[17085]: Listen normally on 4 lo [::1]:123 2024-04-18T22:48:29.856 INFO:teuthology.orchestra.run.smithi016.stdout:18 Apr 22:48:29 ntpd[17085]: Listen normally on 5 ens1f0 [fe80::ec4:7aff:febd:1564%4]:123 2024-04-18T22:48:29.856 INFO:teuthology.orchestra.run.smithi016.stdout:18 Apr 22:48:29 ntpd[17085]: Listening on routing socket on fd #22 for interface updates 2024-04-18T22:48:29.857 INFO:teuthology.orchestra.run.smithi055.stdout:18 Apr 22:48:29 ntpd[17076]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-04-18T22:48:29.857 INFO:teuthology.orchestra.run.smithi055.stdout:18 Apr 22:48:29 ntpd[17076]: Command line: ntpd -gq 2024-04-18T22:48:29.857 INFO:teuthology.orchestra.run.smithi055.stdout:18 Apr 22:48:29 ntpd[17076]: ---------------------------------------------------- 2024-04-18T22:48:29.857 INFO:teuthology.orchestra.run.smithi055.stdout:18 Apr 22:48:29 ntpd[17076]: ntp-4 is maintained by Network Time Foundation, 2024-04-18T22:48:29.857 INFO:teuthology.orchestra.run.smithi055.stdout:18 Apr 22:48:29 ntpd[17076]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-04-18T22:48:29.857 INFO:teuthology.orchestra.run.smithi055.stdout:18 Apr 22:48:29 ntpd[17076]: corporation. Support and training for ntp-4 are 2024-04-18T22:48:29.857 INFO:teuthology.orchestra.run.smithi055.stdout:18 Apr 22:48:29 ntpd[17076]: available at https://www.nwtime.org/support 2024-04-18T22:48:29.857 INFO:teuthology.orchestra.run.smithi055.stdout:18 Apr 22:48:29 ntpd[17076]: ---------------------------------------------------- 2024-04-18T22:48:29.857 INFO:teuthology.orchestra.run.smithi055.stdout:18 Apr 22:48:29 ntpd[17076]: proto: precision = 0.047 usec (-24) 2024-04-18T22:48:29.857 INFO:teuthology.orchestra.run.smithi055.stdout:18 Apr 22:48:29 ntpd[17076]: basedate set to 2022-02-04 2024-04-18T22:48:29.857 INFO:teuthology.orchestra.run.smithi055.stdout:18 Apr 22:48:29 ntpd[17076]: gps base set to 2022-02-06 (week 2196) 2024-04-18T22:48:29.858 INFO:teuthology.orchestra.run.smithi055.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-18T22:48:29.858 INFO:teuthology.orchestra.run.smithi055.stdout:18 Apr 22:48:29 ntpd[17076]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-18T22:48:29.858 INFO:teuthology.orchestra.run.smithi055.stdout:18 Apr 22:48:29 ntpd[17076]: restrict ::: KOD does nothing without LIMITED. 2024-04-18T22:48:29.858 INFO:teuthology.orchestra.run.smithi055.stderr:restrict ::: KOD does nothing without LIMITED. 2024-04-18T22:48:29.859 INFO:teuthology.orchestra.run.smithi055.stdout:18 Apr 22:48:29 ntpd[17076]: Listen and drop on 0 v6wildcard [::]:123 2024-04-18T22:48:29.859 INFO:teuthology.orchestra.run.smithi055.stdout:18 Apr 22:48:29 ntpd[17076]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-04-18T22:48:29.860 INFO:teuthology.orchestra.run.smithi055.stdout:18 Apr 22:48:29 ntpd[17076]: Listen normally on 2 lo 127.0.0.1:123 2024-04-18T22:48:29.860 INFO:teuthology.orchestra.run.smithi055.stdout:18 Apr 22:48:29 ntpd[17076]: Listen normally on 3 ens1f0 172.21.15.55:123 2024-04-18T22:48:29.860 INFO:teuthology.orchestra.run.smithi055.stdout:18 Apr 22:48:29 ntpd[17076]: Listen normally on 4 lo [::1]:123 2024-04-18T22:48:29.860 INFO:teuthology.orchestra.run.smithi055.stdout:18 Apr 22:48:29 ntpd[17076]: Listen normally on 5 ens1f0 [fe80::ae1f:6bff:fef8:2606%3]:123 2024-04-18T22:48:29.860 INFO:teuthology.orchestra.run.smithi055.stdout:18 Apr 22:48:29 ntpd[17076]: Listening on routing socket on fd #22 for interface updates 2024-04-18T22:48:29.886 INFO:teuthology.orchestra.run.smithi069.stdout:18 Apr 22:48:29 ntpd[17183]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-04-18T22:48:29.886 INFO:teuthology.orchestra.run.smithi069.stdout:18 Apr 22:48:29 ntpd[17183]: Command line: ntpd -gq 2024-04-18T22:48:29.886 INFO:teuthology.orchestra.run.smithi069.stdout:18 Apr 22:48:29 ntpd[17183]: ---------------------------------------------------- 2024-04-18T22:48:29.886 INFO:teuthology.orchestra.run.smithi069.stdout:18 Apr 22:48:29 ntpd[17183]: ntp-4 is maintained by Network Time Foundation, 2024-04-18T22:48:29.886 INFO:teuthology.orchestra.run.smithi069.stdout:18 Apr 22:48:29 ntpd[17183]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-04-18T22:48:29.886 INFO:teuthology.orchestra.run.smithi069.stdout:18 Apr 22:48:29 ntpd[17183]: corporation. Support and training for ntp-4 are 2024-04-18T22:48:29.886 INFO:teuthology.orchestra.run.smithi069.stdout:18 Apr 22:48:29 ntpd[17183]: available at https://www.nwtime.org/support 2024-04-18T22:48:29.886 INFO:teuthology.orchestra.run.smithi069.stdout:18 Apr 22:48:29 ntpd[17183]: ---------------------------------------------------- 2024-04-18T22:48:29.887 INFO:teuthology.orchestra.run.smithi069.stdout:18 Apr 22:48:29 ntpd[17183]: proto: precision = 0.043 usec (-24) 2024-04-18T22:48:29.887 INFO:teuthology.orchestra.run.smithi069.stdout:18 Apr 22:48:29 ntpd[17183]: basedate set to 2022-02-04 2024-04-18T22:48:29.887 INFO:teuthology.orchestra.run.smithi069.stdout:18 Apr 22:48:29 ntpd[17183]: gps base set to 2022-02-06 (week 2196) 2024-04-18T22:48:29.887 INFO:teuthology.orchestra.run.smithi069.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-18T22:48:29.888 INFO:teuthology.orchestra.run.smithi069.stdout:18 Apr 22:48:29 ntpd[17183]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-18T22:48:29.888 INFO:teuthology.orchestra.run.smithi069.stdout:18 Apr 22:48:29 ntpd[17183]: restrict ::: KOD does nothing without LIMITED. 2024-04-18T22:48:29.888 INFO:teuthology.orchestra.run.smithi069.stderr:restrict ::: KOD does nothing without LIMITED. 2024-04-18T22:48:29.889 INFO:teuthology.orchestra.run.smithi069.stdout:18 Apr 22:48:29 ntpd[17183]: Listen and drop on 0 v6wildcard [::]:123 2024-04-18T22:48:29.889 INFO:teuthology.orchestra.run.smithi069.stdout:18 Apr 22:48:29 ntpd[17183]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-04-18T22:48:29.889 INFO:teuthology.orchestra.run.smithi069.stdout:18 Apr 22:48:29 ntpd[17183]: Listen normally on 2 lo 127.0.0.1:123 2024-04-18T22:48:29.889 INFO:teuthology.orchestra.run.smithi069.stdout:18 Apr 22:48:29 ntpd[17183]: Listen normally on 3 enp3s0f1 172.21.15.69:123 2024-04-18T22:48:29.890 INFO:teuthology.orchestra.run.smithi069.stdout:18 Apr 22:48:29 ntpd[17183]: Listen normally on 4 lo [::1]:123 2024-04-18T22:48:29.890 INFO:teuthology.orchestra.run.smithi069.stdout:18 Apr 22:48:29 ntpd[17183]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe8f:d737%5]:123 2024-04-18T22:48:29.890 INFO:teuthology.orchestra.run.smithi069.stdout:18 Apr 22:48:29 ntpd[17183]: Listening on routing socket on fd #22 for interface updates 2024-04-18T22:48:30.854 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:30 ntpd[17076]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:30.854 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:30 ntpd[17076]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:30.854 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:30 ntpd[17076]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:30.854 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:30 ntpd[17076]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:30.854 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:30 ntpd[17076]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:30.854 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:30 ntpd[17076]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:30.854 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:30 ntpd[17076]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-18T22:48:30.854 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:30 ntpd[17076]: can't open /var/log/ntpstats/peerstats.20240418: Permission denied 2024-04-18T22:48:30.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:30 ntpd[17183]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:30.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:30 ntpd[17183]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:30.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:30 ntpd[17183]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:30.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:30 ntpd[17183]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:30.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:30 ntpd[17183]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:30.888 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:30 ntpd[17183]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:30.888 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:30 ntpd[17183]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:30.888 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:30 ntpd[17183]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:30.888 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:30 ntpd[17183]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-18T22:48:30.888 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:30 ntpd[17183]: can't open /var/log/ntpstats/peerstats.20240418: Permission denied 2024-04-18T22:48:30.888 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:30 ntpd[17183]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:30.888 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:30 ntpd[17183]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:30.888 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:30 ntpd[17183]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-18T22:48:30.888 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:30 ntpd[17183]: can't open /var/log/ntpstats/peerstats.20240418: Permission denied 2024-04-18T22:48:31.853 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:31 ntpd[17085]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:31.853 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:31 ntpd[17085]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:31.853 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:31 ntpd[17085]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:31.853 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:31 ntpd[17085]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:31.853 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:31 ntpd[17085]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:31.853 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:31 ntpd[17085]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:31.853 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:31 ntpd[17085]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-18T22:48:31.853 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:31 ntpd[17085]: can't open /var/log/ntpstats/peerstats.20240418: Permission denied 2024-04-18T22:48:31.854 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:31 ntpd[17085]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:31.854 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:31 ntpd[17085]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:31.854 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:31 ntpd[17085]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-18T22:48:31.854 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:31 ntpd[17085]: can't open /var/log/ntpstats/peerstats.20240418: Permission denied 2024-04-18T22:48:31.886 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:31 ntpd[17183]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:31.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:31 ntpd[17183]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:31.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:31 ntpd[17183]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:31.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:31 ntpd[17183]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:31.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:31 ntpd[17183]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-18T22:48:31.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:31 ntpd[17183]: can't open /var/log/ntpstats/peerstats.20240418: Permission denied 2024-04-18T22:48:32.852 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:32 ntpd[17085]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:32.852 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:32 ntpd[17085]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:32.853 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:32 ntpd[17076]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:32.853 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:32 ntpd[17076]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:32.853 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:32 ntpd[17076]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:32.853 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:32 ntpd[17076]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:32.853 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:32 ntpd[17076]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-18T22:48:32.853 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:32 ntpd[17076]: can't open /var/log/ntpstats/peerstats.20240418: Permission denied 2024-04-18T22:48:32.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:32 ntpd[17183]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:32.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:32 ntpd[17183]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:32.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:32 ntpd[17183]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:32.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:32 ntpd[17183]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:32.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:32 ntpd[17183]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:32.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:32 ntpd[17183]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:32.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:32 ntpd[17183]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-18T22:48:32.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:32 ntpd[17183]: can't open /var/log/ntpstats/peerstats.20240418: Permission denied 2024-04-18T22:48:32.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:32 ntpd[17183]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:32.888 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:32 ntpd[17183]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:32.888 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:32 ntpd[17183]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-18T22:48:32.888 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:32 ntpd[17183]: can't open /var/log/ntpstats/peerstats.20240418: Permission denied 2024-04-18T22:48:33.854 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:33 ntpd[17085]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:33.854 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:33 ntpd[17085]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:33.854 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:33 ntpd[17085]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:33.854 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:33 ntpd[17085]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:33.854 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:33 ntpd[17085]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:33.854 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:33 ntpd[17085]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:33.854 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:33 ntpd[17085]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:33.854 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:33 ntpd[17085]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:33.854 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:33 ntpd[17085]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-18T22:48:33.854 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:33 ntpd[17085]: can't open /var/log/ntpstats/peerstats.20240418: Permission denied 2024-04-18T22:48:33.855 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:33 ntpd[17085]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:33.855 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:33 ntpd[17085]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:33.855 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:33 ntpd[17085]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-18T22:48:33.855 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:33 ntpd[17085]: can't open /var/log/ntpstats/peerstats.20240418: Permission denied 2024-04-18T22:48:33.855 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:33 ntpd[17085]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:33.855 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:33 ntpd[17085]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:33.855 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:33 ntpd[17085]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-18T22:48:33.855 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:33 ntpd[17085]: can't open /var/log/ntpstats/peerstats.20240418: Permission denied 2024-04-18T22:48:33.856 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:33 ntpd[17076]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:33.856 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:33 ntpd[17076]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:33.857 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:33 ntpd[17076]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:33.857 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:33 ntpd[17076]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:33.857 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:33 ntpd[17076]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:33.857 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:33 ntpd[17076]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:33.857 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:33 ntpd[17076]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-18T22:48:33.857 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:33 ntpd[17076]: can't open /var/log/ntpstats/peerstats.20240418: Permission denied 2024-04-18T22:48:33.857 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:33 ntpd[17076]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:33.857 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:33 ntpd[17076]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:33.857 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:33 ntpd[17076]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-18T22:48:33.857 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:33 ntpd[17076]: can't open /var/log/ntpstats/peerstats.20240418: Permission denied 2024-04-18T22:48:33.886 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:33 ntpd[17183]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:33.886 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:33 ntpd[17183]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:33.886 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:33 ntpd[17183]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:33.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:33 ntpd[17183]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:33.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:33 ntpd[17183]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-18T22:48:33.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:33 ntpd[17183]: can't open /var/log/ntpstats/peerstats.20240418: Permission denied 2024-04-18T22:48:34.853 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:34 ntpd[17076]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:34.853 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:34 ntpd[17076]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:34.853 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:34 ntpd[17076]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:34.854 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:34 ntpd[17076]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:34.854 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:34 ntpd[17076]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-18T22:48:34.854 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:34 ntpd[17076]: can't open /var/log/ntpstats/peerstats.20240418: Permission denied 2024-04-18T22:48:34.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:34 ntpd[17183]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:34.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:34 ntpd[17183]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:34.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:34 ntpd[17183]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:34.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:34 ntpd[17183]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:34.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:34 ntpd[17183]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:34.888 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:34 ntpd[17183]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:34.888 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:34 ntpd[17183]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-18T22:48:34.888 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:34 ntpd[17183]: can't open /var/log/ntpstats/peerstats.20240418: Permission denied 2024-04-18T22:48:34.888 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:34 ntpd[17183]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:34.888 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:34 ntpd[17183]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:34.888 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:34 ntpd[17183]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-18T22:48:34.888 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:34 ntpd[17183]: can't open /var/log/ntpstats/peerstats.20240418: Permission denied 2024-04-18T22:48:35.853 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:35 ntpd[17085]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:35.854 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:35 ntpd[17085]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:35.854 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:35 ntpd[17085]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:35.854 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:35 ntpd[17085]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:35.854 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:35 ntpd[17085]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:35.854 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:35 ntpd[17085]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:35.854 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:35 ntpd[17085]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:35.854 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:35 ntpd[17085]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:35.854 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:35 ntpd[17085]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-18T22:48:35.854 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:35 ntpd[17085]: can't open /var/log/ntpstats/peerstats.20240418: Permission denied 2024-04-18T22:48:35.854 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:35 ntpd[17085]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:35.854 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:35 ntpd[17085]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:35.854 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:35 ntpd[17085]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-18T22:48:35.854 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:35 ntpd[17085]: can't open /var/log/ntpstats/peerstats.20240418: Permission denied 2024-04-18T22:48:35.855 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:35 ntpd[17085]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:35.855 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:35 ntpd[17085]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:35.855 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:35 ntpd[17085]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-18T22:48:35.855 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:35 ntpd[17085]: can't open /var/log/ntpstats/peerstats.20240418: Permission denied 2024-04-18T22:48:35.856 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:35 ntpd[17076]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:35.856 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:35 ntpd[17076]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:35.856 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:35 ntpd[17076]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:35.856 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:35 ntpd[17076]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:35.856 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:35 ntpd[17076]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:35.856 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:35 ntpd[17076]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:35.856 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:35 ntpd[17076]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-18T22:48:35.857 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:35 ntpd[17076]: can't open /var/log/ntpstats/peerstats.20240418: Permission denied 2024-04-18T22:48:35.857 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:35 ntpd[17076]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:35.857 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:35 ntpd[17076]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:35.857 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:35 ntpd[17076]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-18T22:48:35.857 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:35 ntpd[17076]: can't open /var/log/ntpstats/peerstats.20240418: Permission denied 2024-04-18T22:48:35.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:35 ntpd[17183]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:35.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:35 ntpd[17183]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:35.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:35 ntpd[17183]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:35.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:35 ntpd[17183]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:35.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:35 ntpd[17183]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-18T22:48:35.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:35 ntpd[17183]: can't open /var/log/ntpstats/peerstats.20240418: Permission denied 2024-04-18T22:48:36.853 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:36 ntpd[17076]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:36.854 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:36 ntpd[17076]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:36.854 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:36 ntpd[17076]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:36.854 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:36 ntpd[17076]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:36.854 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:36 ntpd[17076]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-18T22:48:36.854 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:36 ntpd[17076]: can't open /var/log/ntpstats/peerstats.20240418: Permission denied 2024-04-18T22:48:36.854 INFO:teuthology.orchestra.run.smithi055.stdout:18 Apr 22:48:36 ntpd[17076]: ntpd: time slew -0.001724 s 2024-04-18T22:48:36.854 INFO:teuthology.orchestra.run.smithi055.stdout:ntpd: time slew -0.001724s 2024-04-18T22:48:36.855 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:36 ntpd[17076]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-04-18T22:48:36.855 INFO:teuthology.orchestra.run.smithi055.stderr:18 Apr 22:48:36 ntpd[17076]: can't open /var/log/ntpstats/loopstats.20240418: Permission denied 2024-04-18T22:48:36.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:36 ntpd[17183]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:36.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:36 ntpd[17183]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:36.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:36 ntpd[17183]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:36.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:36 ntpd[17183]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:36.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:36 ntpd[17183]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:36.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:36 ntpd[17183]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:36.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:36 ntpd[17183]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-18T22:48:36.887 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:36 ntpd[17183]: can't open /var/log/ntpstats/peerstats.20240418: Permission denied 2024-04-18T22:48:36.888 INFO:teuthology.orchestra.run.smithi069.stdout:18 Apr 22:48:36 ntpd[17183]: ntpd: time slew -0.000910 s 2024-04-18T22:48:36.888 INFO:teuthology.orchestra.run.smithi069.stdout:ntpd: time slew -0.000910s 2024-04-18T22:48:36.888 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:36 ntpd[17183]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-04-18T22:48:36.888 INFO:teuthology.orchestra.run.smithi069.stderr:18 Apr 22:48:36 ntpd[17183]: can't open /var/log/ntpstats/loopstats.20240418: Permission denied 2024-04-18T22:48:36.909 INFO:teuthology.orchestra.run.smithi055.stdout: remote refid st t when poll reach delay offset jitter 2024-04-18T22:48:36.909 INFO:teuthology.orchestra.run.smithi055.stdout:============================================================================== 2024-04-18T22:48:36.909 INFO:teuthology.orchestra.run.smithi055.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-18T22:48:36.909 INFO:teuthology.orchestra.run.smithi055.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-18T22:48:36.910 INFO:teuthology.orchestra.run.smithi055.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-18T22:48:36.910 INFO:teuthology.orchestra.run.smithi055.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-18T22:48:36.933 INFO:teuthology.orchestra.run.smithi069.stdout: remote refid st t when poll reach delay offset jitter 2024-04-18T22:48:36.933 INFO:teuthology.orchestra.run.smithi069.stdout:============================================================================== 2024-04-18T22:48:36.934 INFO:teuthology.orchestra.run.smithi069.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-18T22:48:36.934 INFO:teuthology.orchestra.run.smithi069.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-18T22:48:36.934 INFO:teuthology.orchestra.run.smithi069.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-18T22:48:36.934 INFO:teuthology.orchestra.run.smithi069.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-18T22:48:37.853 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:37 ntpd[17085]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:37.853 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:37 ntpd[17085]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:37.853 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:37 ntpd[17085]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:37.853 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:37 ntpd[17085]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:37.853 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:37 ntpd[17085]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:37.854 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:37 ntpd[17085]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:37.854 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:37 ntpd[17085]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-18T22:48:37.854 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:37 ntpd[17085]: can't open /var/log/ntpstats/rawstats.20240418: Permission denied 2024-04-18T22:48:37.854 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:37 ntpd[17085]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-18T22:48:37.854 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:37 ntpd[17085]: can't open /var/log/ntpstats/peerstats.20240418: Permission denied 2024-04-18T22:48:37.854 INFO:teuthology.orchestra.run.smithi016.stdout:18 Apr 22:48:37 ntpd[17085]: ntpd: time slew +0.001077 s 2024-04-18T22:48:37.855 INFO:teuthology.orchestra.run.smithi016.stdout:ntpd: time slew +0.001077s 2024-04-18T22:48:37.855 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:37 ntpd[17085]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-04-18T22:48:37.855 INFO:teuthology.orchestra.run.smithi016.stderr:18 Apr 22:48:37 ntpd[17085]: can't open /var/log/ntpstats/loopstats.20240418: Permission denied 2024-04-18T22:48:37.905 INFO:teuthology.orchestra.run.smithi016.stdout: remote refid st t when poll reach delay offset jitter 2024-04-18T22:48:37.906 INFO:teuthology.orchestra.run.smithi016.stdout:============================================================================== 2024-04-18T22:48:37.906 INFO:teuthology.orchestra.run.smithi016.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-18T22:48:37.906 INFO:teuthology.orchestra.run.smithi016.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-18T22:48:37.906 INFO:teuthology.orchestra.run.smithi016.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-18T22:48:37.906 INFO:teuthology.orchestra.run.smithi016.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-18T22:48:37.906 INFO:teuthology.run_tasks:Running task install... 2024-04-18T22:48:37.916 DEBUG:teuthology.task.install:project ceph 2024-04-18T22:48:37.916 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': '1a6a3e742fd81c6d70be70552499bff767652c32'}} 2024-04-18T22:48:37.916 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': '1a6a3e742fd81c6d70be70552499bff767652c32'} 2024-04-18T22:48:37.916 INFO:teuthology.task.install:Using flavor: default 2024-04-18T22:48:37.922 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-04-18T22:48:37.922 INFO:teuthology.task.install:extra packages: [] 2024-04-18T22:48:37.923 DEBUG:teuthology.orchestra.run.smithi016:> sudo apt-key list | grep Ceph 2024-04-18T22:48:37.923 DEBUG:teuthology.orchestra.run.smithi055:> sudo apt-key list | grep Ceph 2024-04-18T22:48:37.924 DEBUG:teuthology.orchestra.run.smithi069:> sudo apt-key list | grep Ceph 2024-04-18T22:48:37.989 INFO:teuthology.orchestra.run.smithi055.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-04-18T22:48:37.989 INFO:teuthology.orchestra.run.smithi069.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-04-18T22:48:38.006 INFO:teuthology.orchestra.run.smithi016.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-04-18T22:48:38.020 INFO:teuthology.orchestra.run.smithi069.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-04-18T22:48:38.020 INFO:teuthology.orchestra.run.smithi069.stdout:uid [ unknown] Ceph.com (release key) 2024-04-18T22:48:38.021 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-04-18T22:48:38.021 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=1a6a3e742fd81c6d70be70552499bff767652c32 2024-04-18T22:48:38.026 INFO:teuthology.orchestra.run.smithi055.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-04-18T22:48:38.027 INFO:teuthology.orchestra.run.smithi055.stdout:uid [ unknown] Ceph.com (release key) 2024-04-18T22:48:38.027 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-04-18T22:48:38.027 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=1a6a3e742fd81c6d70be70552499bff767652c32 2024-04-18T22:48:38.034 INFO:teuthology.orchestra.run.smithi016.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-04-18T22:48:38.034 INFO:teuthology.orchestra.run.smithi016.stdout:uid [ unknown] Ceph.com (release key) 2024-04-18T22:48:38.034 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-04-18T22:48:38.035 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=1a6a3e742fd81c6d70be70552499bff767652c32 2024-04-18T22:48:38.185 INFO:teuthology.task.install.deb:Pulling from https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default/ 2024-04-18T22:48:38.185 INFO:teuthology.task.install.deb:Package version is 19.0.0-2369-g1a6a3e74-1jammy 2024-04-18T22:48:38.189 INFO:teuthology.task.install.deb:Pulling from https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default/ 2024-04-18T22:48:38.189 INFO:teuthology.task.install.deb:Package version is 19.0.0-2369-g1a6a3e74-1jammy 2024-04-18T22:48:38.190 INFO:teuthology.task.install.deb:Pulling from https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default/ 2024-04-18T22:48:38.190 INFO:teuthology.task.install.deb:Package version is 19.0.0-2369-g1a6a3e74-1jammy 2024-04-18T22:48:38.355 DEBUG:teuthology.orchestra.run.smithi069:> set -ex 2024-04-18T22:48:38.356 DEBUG:teuthology.orchestra.run.smithi069:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-04-18T22:48:38.360 DEBUG:teuthology.orchestra.run.smithi055:> set -ex 2024-04-18T22:48:38.360 DEBUG:teuthology.orchestra.run.smithi055:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-04-18T22:48:38.367 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-18T22:48:38.367 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-04-18T22:48:38.368 DEBUG:teuthology.orchestra.run.smithi069:> sudo apt-get update 2024-04-18T22:48:38.374 DEBUG:teuthology.orchestra.run.smithi055:> sudo apt-get update 2024-04-18T22:48:38.382 DEBUG:teuthology.orchestra.run.smithi016:> sudo apt-get update 2024-04-18T22:48:38.559 INFO:teuthology.orchestra.run.smithi016.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-18T22:48:38.559 INFO:teuthology.orchestra.run.smithi016.stdout:Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-04-18T22:48:38.563 INFO:teuthology.orchestra.run.smithi069.stdout:Hit:1 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-04-18T22:48:38.572 INFO:teuthology.orchestra.run.smithi016.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-04-18T22:48:38.592 INFO:teuthology.orchestra.run.smithi016.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-04-18T22:48:38.599 INFO:teuthology.orchestra.run.smithi055.stdout:Ign:1 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy InRelease 2024-04-18T22:48:38.620 INFO:teuthology.orchestra.run.smithi055.stdout:Get:2 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy Release [7,662 B] 2024-04-18T22:48:38.643 INFO:teuthology.orchestra.run.smithi055.stdout:Ign:3 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy Release.gpg 2024-04-18T22:48:38.647 INFO:teuthology.orchestra.run.smithi069.stdout:Ign:2 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy InRelease 2024-04-18T22:48:38.654 INFO:teuthology.orchestra.run.smithi069.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-18T22:48:38.667 INFO:teuthology.orchestra.run.smithi016.stdout:Ign:5 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy InRelease 2024-04-18T22:48:38.675 INFO:teuthology.orchestra.run.smithi055.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-18T22:48:38.676 INFO:teuthology.orchestra.run.smithi055.stdout:Get:5 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 Packages [17.9 kB] 2024-04-18T22:48:38.684 INFO:teuthology.orchestra.run.smithi055.stdout:Hit:6 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-04-18T22:48:38.684 INFO:teuthology.orchestra.run.smithi069.stdout:Get:4 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy Release [7,662 B] 2024-04-18T22:48:38.703 INFO:teuthology.orchestra.run.smithi016.stdout:Get:6 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy Release [7,662 B] 2024-04-18T22:48:38.705 INFO:teuthology.orchestra.run.smithi055.stdout:Get:7 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,425 B] 2024-04-18T22:48:38.721 INFO:teuthology.orchestra.run.smithi069.stdout:Ign:5 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy Release.gpg 2024-04-18T22:48:38.736 INFO:teuthology.orchestra.run.smithi069.stdout:Hit:6 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-04-18T22:48:38.740 INFO:teuthology.orchestra.run.smithi016.stdout:Ign:7 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy Release.gpg 2024-04-18T22:48:38.746 INFO:teuthology.orchestra.run.smithi055.stdout:Hit:8 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-04-18T22:48:38.757 INFO:teuthology.orchestra.run.smithi069.stdout:Get:7 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,425 B] 2024-04-18T22:48:38.776 INFO:teuthology.orchestra.run.smithi016.stdout:Get:8 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 Packages [17.9 kB] 2024-04-18T22:48:38.800 INFO:teuthology.orchestra.run.smithi069.stdout:Get:8 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 Packages [17.9 kB] 2024-04-18T22:48:38.817 INFO:teuthology.orchestra.run.smithi069.stdout:Hit:9 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-04-18T22:48:38.818 INFO:teuthology.orchestra.run.smithi016.stdout:Get:9 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,425 B] 2024-04-18T22:48:38.828 INFO:teuthology.orchestra.run.smithi055.stdout:Hit:9 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-04-18T22:48:38.936 INFO:teuthology.orchestra.run.smithi016.stdout:Fetched 29.0 kB in 0s (77.7 kB/s) 2024-04-18T22:48:38.957 INFO:teuthology.orchestra.run.smithi069.stdout:Fetched 29.0 kB in 0s (70.5 kB/s) 2024-04-18T22:48:39.067 INFO:teuthology.orchestra.run.smithi055.stdout:Fetched 29.0 kB in 1s (57.9 kB/s) 2024-04-18T22:48:39.883 INFO:teuthology.orchestra.run.smithi016.stdout:Reading package lists... 2024-04-18T22:48:39.899 DEBUG:teuthology.orchestra.run.smithi016:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=19.0.0-2369-g1a6a3e74-1jammy cephadm=19.0.0-2369-g1a6a3e74-1jammy ceph-mds=19.0.0-2369-g1a6a3e74-1jammy ceph-mgr=19.0.0-2369-g1a6a3e74-1jammy ceph-common=19.0.0-2369-g1a6a3e74-1jammy ceph-fuse=19.0.0-2369-g1a6a3e74-1jammy ceph-test=19.0.0-2369-g1a6a3e74-1jammy ceph-volume=19.0.0-2369-g1a6a3e74-1jammy radosgw=19.0.0-2369-g1a6a3e74-1jammy python3-rados=19.0.0-2369-g1a6a3e74-1jammy python3-rgw=19.0.0-2369-g1a6a3e74-1jammy python3-cephfs=19.0.0-2369-g1a6a3e74-1jammy python3-rbd=19.0.0-2369-g1a6a3e74-1jammy libcephfs2=19.0.0-2369-g1a6a3e74-1jammy libcephfs-dev=19.0.0-2369-g1a6a3e74-1jammy librados2=19.0.0-2369-g1a6a3e74-1jammy librbd1=19.0.0-2369-g1a6a3e74-1jammy rbd-fuse=19.0.0-2369-g1a6a3e74-1jammy 2024-04-18T22:48:39.918 INFO:teuthology.orchestra.run.smithi069.stdout:Reading package lists... 2024-04-18T22:48:39.935 DEBUG:teuthology.orchestra.run.smithi069:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=19.0.0-2369-g1a6a3e74-1jammy cephadm=19.0.0-2369-g1a6a3e74-1jammy ceph-mds=19.0.0-2369-g1a6a3e74-1jammy ceph-mgr=19.0.0-2369-g1a6a3e74-1jammy ceph-common=19.0.0-2369-g1a6a3e74-1jammy ceph-fuse=19.0.0-2369-g1a6a3e74-1jammy ceph-test=19.0.0-2369-g1a6a3e74-1jammy ceph-volume=19.0.0-2369-g1a6a3e74-1jammy radosgw=19.0.0-2369-g1a6a3e74-1jammy python3-rados=19.0.0-2369-g1a6a3e74-1jammy python3-rgw=19.0.0-2369-g1a6a3e74-1jammy python3-cephfs=19.0.0-2369-g1a6a3e74-1jammy python3-rbd=19.0.0-2369-g1a6a3e74-1jammy libcephfs2=19.0.0-2369-g1a6a3e74-1jammy libcephfs-dev=19.0.0-2369-g1a6a3e74-1jammy librados2=19.0.0-2369-g1a6a3e74-1jammy librbd1=19.0.0-2369-g1a6a3e74-1jammy rbd-fuse=19.0.0-2369-g1a6a3e74-1jammy 2024-04-18T22:48:39.961 INFO:teuthology.orchestra.run.smithi016.stdout:Reading package lists... 2024-04-18T22:48:39.996 INFO:teuthology.orchestra.run.smithi069.stdout:Reading package lists... 2024-04-18T22:48:40.017 INFO:teuthology.orchestra.run.smithi055.stdout:Reading package lists... 2024-04-18T22:48:40.034 DEBUG:teuthology.orchestra.run.smithi055:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=19.0.0-2369-g1a6a3e74-1jammy cephadm=19.0.0-2369-g1a6a3e74-1jammy ceph-mds=19.0.0-2369-g1a6a3e74-1jammy ceph-mgr=19.0.0-2369-g1a6a3e74-1jammy ceph-common=19.0.0-2369-g1a6a3e74-1jammy ceph-fuse=19.0.0-2369-g1a6a3e74-1jammy ceph-test=19.0.0-2369-g1a6a3e74-1jammy ceph-volume=19.0.0-2369-g1a6a3e74-1jammy radosgw=19.0.0-2369-g1a6a3e74-1jammy python3-rados=19.0.0-2369-g1a6a3e74-1jammy python3-rgw=19.0.0-2369-g1a6a3e74-1jammy python3-cephfs=19.0.0-2369-g1a6a3e74-1jammy python3-rbd=19.0.0-2369-g1a6a3e74-1jammy libcephfs2=19.0.0-2369-g1a6a3e74-1jammy libcephfs-dev=19.0.0-2369-g1a6a3e74-1jammy librados2=19.0.0-2369-g1a6a3e74-1jammy librbd1=19.0.0-2369-g1a6a3e74-1jammy rbd-fuse=19.0.0-2369-g1a6a3e74-1jammy 2024-04-18T22:48:40.088 INFO:teuthology.orchestra.run.smithi055.stdout:Reading package lists... 2024-04-18T22:48:40.166 INFO:teuthology.orchestra.run.smithi016.stdout:Building dependency tree... 2024-04-18T22:48:40.166 INFO:teuthology.orchestra.run.smithi016.stdout:Reading state information... 2024-04-18T22:48:40.196 INFO:teuthology.orchestra.run.smithi069.stdout:Building dependency tree... 2024-04-18T22:48:40.197 INFO:teuthology.orchestra.run.smithi069.stdout:Reading state information... 2024-04-18T22:48:40.269 INFO:teuthology.orchestra.run.smithi055.stdout:Building dependency tree... 2024-04-18T22:48:40.269 INFO:teuthology.orchestra.run.smithi055.stdout:Reading state information... 2024-04-18T22:48:40.369 INFO:teuthology.orchestra.run.smithi016.stdout:The following packages were automatically installed and are no longer required: 2024-04-18T22:48:40.369 INFO:teuthology.orchestra.run.smithi016.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-18T22:48:40.369 INFO:teuthology.orchestra.run.smithi016.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-18T22:48:40.369 INFO:teuthology.orchestra.run.smithi016.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-18T22:48:40.370 INFO:teuthology.orchestra.run.smithi016.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-18T22:48:40.370 INFO:teuthology.orchestra.run.smithi016.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-18T22:48:40.370 INFO:teuthology.orchestra.run.smithi016.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-18T22:48:40.371 INFO:teuthology.orchestra.run.smithi016.stdout:The following additional packages will be installed: 2024-04-18T22:48:40.371 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-04-18T22:48:40.371 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-04-18T22:48:40.371 INFO:teuthology.orchestra.run.smithi016.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev liboath0 libonig5 2024-04-18T22:48:40.371 INFO:teuthology.orchestra.run.smithi016.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-04-18T22:48:40.372 INFO:teuthology.orchestra.run.smithi016.stdout: librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 2024-04-18T22:48:40.372 INFO:teuthology.orchestra.run.smithi016.stdout: lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli pkg-config 2024-04-18T22:48:40.372 INFO:teuthology.orchestra.run.smithi016.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-04-18T22:48:40.372 INFO:teuthology.orchestra.run.smithi016.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-04-18T22:48:40.372 INFO:teuthology.orchestra.run.smithi016.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-04-18T22:48:40.373 INFO:teuthology.orchestra.run.smithi016.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-04-18T22:48:40.373 INFO:teuthology.orchestra.run.smithi016.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-04-18T22:48:40.373 INFO:teuthology.orchestra.run.smithi016.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-04-18T22:48:40.373 INFO:teuthology.orchestra.run.smithi016.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-04-18T22:48:40.373 INFO:teuthology.orchestra.run.smithi016.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-04-18T22:48:40.373 INFO:teuthology.orchestra.run.smithi016.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-04-18T22:48:40.373 INFO:teuthology.orchestra.run.smithi016.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-04-18T22:48:40.373 INFO:teuthology.orchestra.run.smithi016.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-04-18T22:48:40.373 INFO:teuthology.orchestra.run.smithi016.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-04-18T22:48:40.373 INFO:teuthology.orchestra.run.smithi016.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-04-18T22:48:40.373 INFO:teuthology.orchestra.run.smithi016.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-04-18T22:48:40.373 INFO:teuthology.orchestra.run.smithi016.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-04-18T22:48:40.373 INFO:teuthology.orchestra.run.smithi016.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-04-18T22:48:40.373 INFO:teuthology.orchestra.run.smithi016.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-04-18T22:48:40.374 INFO:teuthology.orchestra.run.smithi016.stdout: xmlstarlet zip 2024-04-18T22:48:40.374 INFO:teuthology.orchestra.run.smithi016.stdout:Suggested packages: 2024-04-18T22:48:40.374 INFO:teuthology.orchestra.run.smithi016.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-04-18T22:48:40.374 INFO:teuthology.orchestra.run.smithi016.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-04-18T22:48:40.374 INFO:teuthology.orchestra.run.smithi016.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-04-18T22:48:40.374 INFO:teuthology.orchestra.run.smithi016.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-04-18T22:48:40.374 INFO:teuthology.orchestra.run.smithi016.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-04-18T22:48:40.374 INFO:teuthology.orchestra.run.smithi016.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-04-18T22:48:40.374 INFO:teuthology.orchestra.run.smithi016.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-04-18T22:48:40.375 INFO:teuthology.orchestra.run.smithi016.stdout:Recommended packages: 2024-04-18T22:48:40.375 INFO:teuthology.orchestra.run.smithi016.stdout: btrfs-tools 2024-04-18T22:48:40.392 INFO:teuthology.orchestra.run.smithi069.stdout:The following packages were automatically installed and are no longer required: 2024-04-18T22:48:40.392 INFO:teuthology.orchestra.run.smithi069.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-18T22:48:40.392 INFO:teuthology.orchestra.run.smithi069.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-18T22:48:40.392 INFO:teuthology.orchestra.run.smithi069.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-18T22:48:40.393 INFO:teuthology.orchestra.run.smithi069.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-18T22:48:40.393 INFO:teuthology.orchestra.run.smithi069.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-18T22:48:40.393 INFO:teuthology.orchestra.run.smithi069.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-18T22:48:40.393 INFO:teuthology.orchestra.run.smithi069.stdout:The following additional packages will be installed: 2024-04-18T22:48:40.393 INFO:teuthology.orchestra.run.smithi069.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-04-18T22:48:40.394 INFO:teuthology.orchestra.run.smithi069.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-04-18T22:48:40.394 INFO:teuthology.orchestra.run.smithi069.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev liboath0 libonig5 2024-04-18T22:48:40.394 INFO:teuthology.orchestra.run.smithi069.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-04-18T22:48:40.395 INFO:teuthology.orchestra.run.smithi069.stdout: librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 2024-04-18T22:48:40.395 INFO:teuthology.orchestra.run.smithi069.stdout: lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli pkg-config 2024-04-18T22:48:40.395 INFO:teuthology.orchestra.run.smithi069.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-04-18T22:48:40.395 INFO:teuthology.orchestra.run.smithi069.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-04-18T22:48:40.395 INFO:teuthology.orchestra.run.smithi069.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-04-18T22:48:40.395 INFO:teuthology.orchestra.run.smithi069.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-04-18T22:48:40.395 INFO:teuthology.orchestra.run.smithi069.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-04-18T22:48:40.395 INFO:teuthology.orchestra.run.smithi069.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-04-18T22:48:40.395 INFO:teuthology.orchestra.run.smithi069.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-04-18T22:48:40.395 INFO:teuthology.orchestra.run.smithi069.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-04-18T22:48:40.395 INFO:teuthology.orchestra.run.smithi069.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-04-18T22:48:40.395 INFO:teuthology.orchestra.run.smithi069.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-04-18T22:48:40.396 INFO:teuthology.orchestra.run.smithi069.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-04-18T22:48:40.396 INFO:teuthology.orchestra.run.smithi069.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-04-18T22:48:40.396 INFO:teuthology.orchestra.run.smithi069.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-04-18T22:48:40.396 INFO:teuthology.orchestra.run.smithi069.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-04-18T22:48:40.396 INFO:teuthology.orchestra.run.smithi069.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-04-18T22:48:40.396 INFO:teuthology.orchestra.run.smithi069.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-04-18T22:48:40.396 INFO:teuthology.orchestra.run.smithi069.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-04-18T22:48:40.396 INFO:teuthology.orchestra.run.smithi069.stdout: xmlstarlet zip 2024-04-18T22:48:40.396 INFO:teuthology.orchestra.run.smithi069.stdout:Suggested packages: 2024-04-18T22:48:40.396 INFO:teuthology.orchestra.run.smithi069.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-04-18T22:48:40.396 INFO:teuthology.orchestra.run.smithi069.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-04-18T22:48:40.396 INFO:teuthology.orchestra.run.smithi069.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-04-18T22:48:40.397 INFO:teuthology.orchestra.run.smithi069.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-04-18T22:48:40.397 INFO:teuthology.orchestra.run.smithi069.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-04-18T22:48:40.397 INFO:teuthology.orchestra.run.smithi069.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-04-18T22:48:40.397 INFO:teuthology.orchestra.run.smithi069.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-04-18T22:48:40.397 INFO:teuthology.orchestra.run.smithi069.stdout:Recommended packages: 2024-04-18T22:48:40.397 INFO:teuthology.orchestra.run.smithi069.stdout: btrfs-tools 2024-04-18T22:48:40.450 INFO:teuthology.orchestra.run.smithi055.stdout:The following packages were automatically installed and are no longer required: 2024-04-18T22:48:40.450 INFO:teuthology.orchestra.run.smithi055.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-18T22:48:40.450 INFO:teuthology.orchestra.run.smithi055.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-18T22:48:40.450 INFO:teuthology.orchestra.run.smithi055.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-18T22:48:40.451 INFO:teuthology.orchestra.run.smithi055.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-18T22:48:40.451 INFO:teuthology.orchestra.run.smithi055.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-18T22:48:40.451 INFO:teuthology.orchestra.run.smithi055.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-18T22:48:40.452 INFO:teuthology.orchestra.run.smithi055.stdout:The following additional packages will be installed: 2024-04-18T22:48:40.452 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-04-18T22:48:40.453 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-04-18T22:48:40.453 INFO:teuthology.orchestra.run.smithi055.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev liboath0 libonig5 2024-04-18T22:48:40.453 INFO:teuthology.orchestra.run.smithi055.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-04-18T22:48:40.453 INFO:teuthology.orchestra.run.smithi055.stdout: librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 2024-04-18T22:48:40.453 INFO:teuthology.orchestra.run.smithi055.stdout: lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli pkg-config 2024-04-18T22:48:40.453 INFO:teuthology.orchestra.run.smithi055.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-04-18T22:48:40.453 INFO:teuthology.orchestra.run.smithi055.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-04-18T22:48:40.453 INFO:teuthology.orchestra.run.smithi055.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-04-18T22:48:40.453 INFO:teuthology.orchestra.run.smithi055.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-04-18T22:48:40.453 INFO:teuthology.orchestra.run.smithi055.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-04-18T22:48:40.453 INFO:teuthology.orchestra.run.smithi055.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-04-18T22:48:40.453 INFO:teuthology.orchestra.run.smithi055.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-04-18T22:48:40.453 INFO:teuthology.orchestra.run.smithi055.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-04-18T22:48:40.453 INFO:teuthology.orchestra.run.smithi055.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-04-18T22:48:40.453 INFO:teuthology.orchestra.run.smithi055.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-04-18T22:48:40.453 INFO:teuthology.orchestra.run.smithi055.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-04-18T22:48:40.454 INFO:teuthology.orchestra.run.smithi055.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-04-18T22:48:40.454 INFO:teuthology.orchestra.run.smithi055.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-04-18T22:48:40.454 INFO:teuthology.orchestra.run.smithi055.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-04-18T22:48:40.454 INFO:teuthology.orchestra.run.smithi055.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-04-18T22:48:40.454 INFO:teuthology.orchestra.run.smithi055.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-04-18T22:48:40.454 INFO:teuthology.orchestra.run.smithi055.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-04-18T22:48:40.454 INFO:teuthology.orchestra.run.smithi055.stdout: xmlstarlet zip 2024-04-18T22:48:40.454 INFO:teuthology.orchestra.run.smithi055.stdout:Suggested packages: 2024-04-18T22:48:40.454 INFO:teuthology.orchestra.run.smithi055.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-04-18T22:48:40.454 INFO:teuthology.orchestra.run.smithi055.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-04-18T22:48:40.455 INFO:teuthology.orchestra.run.smithi055.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-04-18T22:48:40.455 INFO:teuthology.orchestra.run.smithi055.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-04-18T22:48:40.455 INFO:teuthology.orchestra.run.smithi055.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-04-18T22:48:40.455 INFO:teuthology.orchestra.run.smithi055.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-04-18T22:48:40.455 INFO:teuthology.orchestra.run.smithi055.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-04-18T22:48:40.455 INFO:teuthology.orchestra.run.smithi055.stdout:Recommended packages: 2024-04-18T22:48:40.455 INFO:teuthology.orchestra.run.smithi055.stdout: btrfs-tools 2024-04-18T22:48:40.480 INFO:teuthology.orchestra.run.smithi016.stdout:The following NEW packages will be installed: 2024-04-18T22:48:40.480 INFO:teuthology.orchestra.run.smithi016.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-04-18T22:48:40.480 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-04-18T22:48:40.481 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-04-18T22:48:40.482 INFO:teuthology.orchestra.run.smithi016.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-04-18T22:48:40.482 INFO:teuthology.orchestra.run.smithi016.stdout: liblua5.3-dev liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 2024-04-18T22:48:40.482 INFO:teuthology.orchestra.run.smithi016.stdout: libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-04-18T22:48:40.482 INFO:teuthology.orchestra.run.smithi016.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-04-18T22:48:40.482 INFO:teuthology.orchestra.run.smithi016.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-04-18T22:48:40.482 INFO:teuthology.orchestra.run.smithi016.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-04-18T22:48:40.482 INFO:teuthology.orchestra.run.smithi016.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-04-18T22:48:40.482 INFO:teuthology.orchestra.run.smithi016.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-04-18T22:48:40.482 INFO:teuthology.orchestra.run.smithi016.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-04-18T22:48:40.482 INFO:teuthology.orchestra.run.smithi016.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-04-18T22:48:40.482 INFO:teuthology.orchestra.run.smithi016.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-04-18T22:48:40.482 INFO:teuthology.orchestra.run.smithi016.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-04-18T22:48:40.482 INFO:teuthology.orchestra.run.smithi016.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-04-18T22:48:40.482 INFO:teuthology.orchestra.run.smithi016.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-04-18T22:48:40.483 INFO:teuthology.orchestra.run.smithi016.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-04-18T22:48:40.483 INFO:teuthology.orchestra.run.smithi016.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-04-18T22:48:40.483 INFO:teuthology.orchestra.run.smithi016.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-04-18T22:48:40.483 INFO:teuthology.orchestra.run.smithi016.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-04-18T22:48:40.483 INFO:teuthology.orchestra.run.smithi016.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-04-18T22:48:40.483 INFO:teuthology.orchestra.run.smithi016.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-04-18T22:48:40.483 INFO:teuthology.orchestra.run.smithi016.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-04-18T22:48:40.483 INFO:teuthology.orchestra.run.smithi016.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-04-18T22:48:40.483 INFO:teuthology.orchestra.run.smithi016.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-04-18T22:48:40.496 INFO:teuthology.orchestra.run.smithi069.stdout:The following NEW packages will be installed: 2024-04-18T22:48:40.496 INFO:teuthology.orchestra.run.smithi069.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-04-18T22:48:40.496 INFO:teuthology.orchestra.run.smithi069.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-04-18T22:48:40.496 INFO:teuthology.orchestra.run.smithi069.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-04-18T22:48:40.496 INFO:teuthology.orchestra.run.smithi069.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-04-18T22:48:40.497 INFO:teuthology.orchestra.run.smithi069.stdout: liblua5.3-dev liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 2024-04-18T22:48:40.497 INFO:teuthology.orchestra.run.smithi069.stdout: libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-04-18T22:48:40.498 INFO:teuthology.orchestra.run.smithi069.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-04-18T22:48:40.498 INFO:teuthology.orchestra.run.smithi069.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-04-18T22:48:40.498 INFO:teuthology.orchestra.run.smithi069.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-04-18T22:48:40.498 INFO:teuthology.orchestra.run.smithi069.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-04-18T22:48:40.498 INFO:teuthology.orchestra.run.smithi069.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-04-18T22:48:40.498 INFO:teuthology.orchestra.run.smithi069.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-04-18T22:48:40.498 INFO:teuthology.orchestra.run.smithi069.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-04-18T22:48:40.498 INFO:teuthology.orchestra.run.smithi069.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-04-18T22:48:40.498 INFO:teuthology.orchestra.run.smithi069.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-04-18T22:48:40.498 INFO:teuthology.orchestra.run.smithi069.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-04-18T22:48:40.498 INFO:teuthology.orchestra.run.smithi069.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-04-18T22:48:40.499 INFO:teuthology.orchestra.run.smithi069.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-04-18T22:48:40.499 INFO:teuthology.orchestra.run.smithi069.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-04-18T22:48:40.499 INFO:teuthology.orchestra.run.smithi069.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-04-18T22:48:40.499 INFO:teuthology.orchestra.run.smithi069.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-04-18T22:48:40.499 INFO:teuthology.orchestra.run.smithi069.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-04-18T22:48:40.499 INFO:teuthology.orchestra.run.smithi069.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-04-18T22:48:40.499 INFO:teuthology.orchestra.run.smithi069.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-04-18T22:48:40.499 INFO:teuthology.orchestra.run.smithi069.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-04-18T22:48:40.499 INFO:teuthology.orchestra.run.smithi069.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-04-18T22:48:40.557 INFO:teuthology.orchestra.run.smithi055.stdout:The following NEW packages will be installed: 2024-04-18T22:48:40.557 INFO:teuthology.orchestra.run.smithi055.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-04-18T22:48:40.557 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-04-18T22:48:40.557 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-04-18T22:48:40.557 INFO:teuthology.orchestra.run.smithi055.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-04-18T22:48:40.557 INFO:teuthology.orchestra.run.smithi055.stdout: liblua5.3-dev liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 2024-04-18T22:48:40.557 INFO:teuthology.orchestra.run.smithi055.stdout: libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-04-18T22:48:40.558 INFO:teuthology.orchestra.run.smithi055.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-04-18T22:48:40.558 INFO:teuthology.orchestra.run.smithi055.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-04-18T22:48:40.558 INFO:teuthology.orchestra.run.smithi055.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-04-18T22:48:40.559 INFO:teuthology.orchestra.run.smithi055.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-04-18T22:48:40.559 INFO:teuthology.orchestra.run.smithi055.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-04-18T22:48:40.559 INFO:teuthology.orchestra.run.smithi055.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-04-18T22:48:40.559 INFO:teuthology.orchestra.run.smithi055.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-04-18T22:48:40.559 INFO:teuthology.orchestra.run.smithi055.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-04-18T22:48:40.559 INFO:teuthology.orchestra.run.smithi055.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-04-18T22:48:40.559 INFO:teuthology.orchestra.run.smithi055.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-04-18T22:48:40.559 INFO:teuthology.orchestra.run.smithi055.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-04-18T22:48:40.559 INFO:teuthology.orchestra.run.smithi055.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-04-18T22:48:40.559 INFO:teuthology.orchestra.run.smithi055.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-04-18T22:48:40.559 INFO:teuthology.orchestra.run.smithi055.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-04-18T22:48:40.559 INFO:teuthology.orchestra.run.smithi055.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-04-18T22:48:40.559 INFO:teuthology.orchestra.run.smithi055.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-04-18T22:48:40.559 INFO:teuthology.orchestra.run.smithi055.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-04-18T22:48:40.559 INFO:teuthology.orchestra.run.smithi055.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-04-18T22:48:40.560 INFO:teuthology.orchestra.run.smithi055.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-04-18T22:48:40.560 INFO:teuthology.orchestra.run.smithi055.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-04-18T22:48:40.563 INFO:teuthology.orchestra.run.smithi069.stdout:0 upgraded, 118 newly installed, 0 to remove and 302 not upgraded. 2024-04-18T22:48:40.563 INFO:teuthology.orchestra.run.smithi069.stdout:Need to get 179 MB of archives. 2024-04-18T22:48:40.563 INFO:teuthology.orchestra.run.smithi069.stdout:After this operation, 821 MB of additional disk space will be used. 2024-04-18T22:48:40.563 INFO:teuthology.orchestra.run.smithi069.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-04-18T22:48:40.624 INFO:teuthology.orchestra.run.smithi055.stdout:0 upgraded, 118 newly installed, 0 to remove and 302 not upgraded. 2024-04-18T22:48:40.624 INFO:teuthology.orchestra.run.smithi055.stdout:Need to get 179 MB of archives. 2024-04-18T22:48:40.624 INFO:teuthology.orchestra.run.smithi055.stdout:After this operation, 821 MB of additional disk space will be used. 2024-04-18T22:48:40.625 INFO:teuthology.orchestra.run.smithi055.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-04-18T22:48:40.639 INFO:teuthology.orchestra.run.smithi069.stdout:Get:2 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.0.0-2369-g1a6a3e74-1jammy [3,547 kB] 2024-04-18T22:48:40.667 INFO:teuthology.orchestra.run.smithi069.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-04-18T22:48:40.670 INFO:teuthology.orchestra.run.smithi069.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-04-18T22:48:40.672 INFO:teuthology.orchestra.run.smithi016.stdout:0 upgraded, 118 newly installed, 0 to remove and 302 not upgraded. 2024-04-18T22:48:40.672 INFO:teuthology.orchestra.run.smithi016.stdout:Need to get 179 MB of archives. 2024-04-18T22:48:40.672 INFO:teuthology.orchestra.run.smithi016.stdout:After this operation, 821 MB of additional disk space will be used. 2024-04-18T22:48:40.672 INFO:teuthology.orchestra.run.smithi016.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-04-18T22:48:40.690 INFO:teuthology.orchestra.run.smithi069.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-04-18T22:48:40.699 INFO:teuthology.orchestra.run.smithi055.stdout:Get:2 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.0.0-2369-g1a6a3e74-1jammy [3,547 kB] 2024-04-18T22:48:40.703 INFO:teuthology.orchestra.run.smithi016.stdout:Get:2 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.0.0-2369-g1a6a3e74-1jammy [3,547 kB] 2024-04-18T22:48:40.736 INFO:teuthology.orchestra.run.smithi055.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-04-18T22:48:40.740 INFO:teuthology.orchestra.run.smithi055.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-04-18T22:48:40.754 INFO:teuthology.orchestra.run.smithi069.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-04-18T22:48:40.759 INFO:teuthology.orchestra.run.smithi069.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-04-18T22:48:40.762 INFO:teuthology.orchestra.run.smithi055.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-04-18T22:48:40.771 INFO:teuthology.orchestra.run.smithi069.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-04-18T22:48:40.775 INFO:teuthology.orchestra.run.smithi069.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-04-18T22:48:40.776 INFO:teuthology.orchestra.run.smithi069.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-04-18T22:48:40.776 INFO:teuthology.orchestra.run.smithi069.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-04-18T22:48:40.785 INFO:teuthology.orchestra.run.smithi069.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline-dev amd64 8.1.2-1 [166 kB] 2024-04-18T22:48:40.787 INFO:teuthology.orchestra.run.smithi069.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblua5.3-dev amd64 5.3.6-1build1 [167 kB] 2024-04-18T22:48:40.789 INFO:teuthology.orchestra.run.smithi069.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua5.1 amd64 5.1.5-8.1build4 [94.6 kB] 2024-04-18T22:48:40.790 INFO:teuthology.orchestra.run.smithi069.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-04-18T22:48:40.801 INFO:teuthology.orchestra.run.smithi069.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-04-18T22:48:40.803 INFO:teuthology.orchestra.run.smithi069.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.2 [175 kB] 2024-04-18T22:48:40.805 INFO:teuthology.orchestra.run.smithi069.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy/universe amd64 luarocks all 3.8.0+dfsg1-1 [140 kB] 2024-04-18T22:48:40.807 INFO:teuthology.orchestra.run.smithi069.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-04-18T22:48:40.808 INFO:teuthology.orchestra.run.smithi069.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-04-18T22:48:40.821 INFO:teuthology.orchestra.run.smithi069.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-04-18T22:48:40.823 INFO:teuthology.orchestra.run.smithi069.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-04-18T22:48:40.823 INFO:teuthology.orchestra.run.smithi069.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-04-18T22:48:40.823 INFO:teuthology.orchestra.run.smithi069.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-04-18T22:48:40.823 INFO:teuthology.orchestra.run.smithi069.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-04-18T22:48:40.837 INFO:teuthology.orchestra.run.smithi055.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-04-18T22:48:40.842 INFO:teuthology.orchestra.run.smithi055.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-04-18T22:48:40.843 INFO:teuthology.orchestra.run.smithi069.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-04-18T22:48:40.843 INFO:teuthology.orchestra.run.smithi069.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-04-18T22:48:40.843 INFO:teuthology.orchestra.run.smithi069.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-04-18T22:48:40.845 INFO:teuthology.orchestra.run.smithi069.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-04-18T22:48:40.846 INFO:teuthology.orchestra.run.smithi069.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-04-18T22:48:40.855 INFO:teuthology.orchestra.run.smithi055.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-04-18T22:48:40.859 INFO:teuthology.orchestra.run.smithi055.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-04-18T22:48:40.860 INFO:teuthology.orchestra.run.smithi055.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-04-18T22:48:40.861 INFO:teuthology.orchestra.run.smithi055.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-04-18T22:48:40.862 INFO:teuthology.orchestra.run.smithi069.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-04-18T22:48:40.862 INFO:teuthology.orchestra.run.smithi069.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-04-18T22:48:40.864 INFO:teuthology.orchestra.run.smithi069.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-04-18T22:48:40.864 INFO:teuthology.orchestra.run.smithi069.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-04-18T22:48:40.864 INFO:teuthology.orchestra.run.smithi069.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webob all 1:1.8.6-1.1 [85.2 kB] 2024-04-18T22:48:40.870 INFO:teuthology.orchestra.run.smithi055.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline-dev amd64 8.1.2-1 [166 kB] 2024-04-18T22:48:40.872 INFO:teuthology.orchestra.run.smithi055.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblua5.3-dev amd64 5.3.6-1build1 [167 kB] 2024-04-18T22:48:40.874 INFO:teuthology.orchestra.run.smithi055.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua5.1 amd64 5.1.5-8.1build4 [94.6 kB] 2024-04-18T22:48:40.876 INFO:teuthology.orchestra.run.smithi055.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-04-18T22:48:40.882 INFO:teuthology.orchestra.run.smithi069.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-04-18T22:48:40.883 INFO:teuthology.orchestra.run.smithi069.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-04-18T22:48:40.883 INFO:teuthology.orchestra.run.smithi069.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-04-18T22:48:40.887 INFO:teuthology.orchestra.run.smithi055.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-04-18T22:48:40.889 INFO:teuthology.orchestra.run.smithi069.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-04-18T22:48:40.889 INFO:teuthology.orchestra.run.smithi069.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-04-18T22:48:40.890 INFO:teuthology.orchestra.run.smithi055.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.2 [175 kB] 2024-04-18T22:48:40.892 INFO:teuthology.orchestra.run.smithi055.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy/universe amd64 luarocks all 3.8.0+dfsg1-1 [140 kB] 2024-04-18T22:48:40.894 INFO:teuthology.orchestra.run.smithi055.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-04-18T22:48:40.902 INFO:teuthology.orchestra.run.smithi069.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-04-18T22:48:40.903 INFO:teuthology.orchestra.run.smithi069.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-04-18T22:48:40.904 INFO:teuthology.orchestra.run.smithi069.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-04-18T22:48:40.906 INFO:teuthology.orchestra.run.smithi069.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-idna all 3.3-1 [49.3 kB] 2024-04-18T22:48:40.907 INFO:teuthology.orchestra.run.smithi069.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-04-18T22:48:40.908 INFO:teuthology.orchestra.run.smithi055.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-04-18T22:48:40.909 INFO:teuthology.orchestra.run.smithi055.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-04-18T22:48:40.910 INFO:teuthology.orchestra.run.smithi055.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-04-18T22:48:40.910 INFO:teuthology.orchestra.run.smithi055.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-04-18T22:48:40.910 INFO:teuthology.orchestra.run.smithi055.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-04-18T22:48:40.911 INFO:teuthology.orchestra.run.smithi055.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-04-18T22:48:40.922 INFO:teuthology.orchestra.run.smithi069.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-04-18T22:48:40.923 INFO:teuthology.orchestra.run.smithi069.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-04-18T22:48:40.925 INFO:teuthology.orchestra.run.smithi069.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-04-18T22:48:40.926 INFO:teuthology.orchestra.run.smithi069.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-04-18T22:48:40.927 INFO:teuthology.orchestra.run.smithi069.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-04-18T22:48:40.929 INFO:teuthology.orchestra.run.smithi055.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-04-18T22:48:40.930 INFO:teuthology.orchestra.run.smithi055.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-04-18T22:48:40.930 INFO:teuthology.orchestra.run.smithi055.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-04-18T22:48:40.933 INFO:teuthology.orchestra.run.smithi055.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-04-18T22:48:40.942 INFO:teuthology.orchestra.run.smithi069.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-04-18T22:48:40.962 INFO:teuthology.orchestra.run.smithi055.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-04-18T22:48:40.962 INFO:teuthology.orchestra.run.smithi055.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-04-18T22:48:40.963 INFO:teuthology.orchestra.run.smithi055.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-04-18T22:48:40.964 INFO:teuthology.orchestra.run.smithi055.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-04-18T22:48:40.964 INFO:teuthology.orchestra.run.smithi055.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-04-18T22:48:40.965 INFO:teuthology.orchestra.run.smithi055.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webob all 1:1.8.6-1.1 [85.2 kB] 2024-04-18T22:48:40.972 INFO:teuthology.orchestra.run.smithi069.stdout:Get:52 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.0.0-2369-g1a6a3e74-1jammy [3,168 kB] 2024-04-18T22:48:40.997 INFO:teuthology.orchestra.run.smithi055.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-04-18T22:48:40.998 INFO:teuthology.orchestra.run.smithi069.stdout:Get:53 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-04-18T22:48:40.999 INFO:teuthology.orchestra.run.smithi069.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.1 [108 kB] 2024-04-18T22:48:40.999 INFO:teuthology.orchestra.run.smithi055.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-04-18T22:48:40.999 INFO:teuthology.orchestra.run.smithi055.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-04-18T22:48:41.002 INFO:teuthology.orchestra.run.smithi069.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-04-18T22:48:41.003 INFO:teuthology.orchestra.run.smithi069.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-04-18T22:48:41.005 INFO:teuthology.orchestra.run.smithi069.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-04-18T22:48:41.010 INFO:teuthology.orchestra.run.smithi055.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-04-18T22:48:41.029 INFO:teuthology.orchestra.run.smithi069.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-04-18T22:48:41.031 INFO:teuthology.orchestra.run.smithi069.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-04-18T22:48:41.031 INFO:teuthology.orchestra.run.smithi069.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-04-18T22:48:41.037 INFO:teuthology.orchestra.run.smithi055.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-04-18T22:48:41.038 INFO:teuthology.orchestra.run.smithi055.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-04-18T22:48:41.039 INFO:teuthology.orchestra.run.smithi055.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-04-18T22:48:41.040 INFO:teuthology.orchestra.run.smithi055.stdout:Get:43 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.0.0-2369-g1a6a3e74-1jammy [3,168 kB] 2024-04-18T22:48:41.042 INFO:teuthology.orchestra.run.smithi055.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-04-18T22:48:41.046 INFO:teuthology.orchestra.run.smithi055.stdout:Get:45 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-idna all 3.3-1 [49.3 kB] 2024-04-18T22:48:41.047 INFO:teuthology.orchestra.run.smithi055.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-04-18T22:48:41.054 INFO:teuthology.orchestra.run.smithi069.stdout:Get:61 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-04-18T22:48:41.054 INFO:teuthology.orchestra.run.smithi069.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-04-18T22:48:41.060 INFO:teuthology.orchestra.run.smithi055.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-04-18T22:48:41.062 INFO:teuthology.orchestra.run.smithi069.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-04-18T22:48:41.062 INFO:teuthology.orchestra.run.smithi055.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-04-18T22:48:41.062 INFO:teuthology.orchestra.run.smithi069.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-04-18T22:48:41.063 INFO:teuthology.orchestra.run.smithi069.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-04-18T22:48:41.064 INFO:teuthology.orchestra.run.smithi069.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-requests-oauthlib all 1.3.0+ds-0.1 [18.7 kB] 2024-04-18T22:48:41.064 INFO:teuthology.orchestra.run.smithi069.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-04-18T22:48:41.065 INFO:teuthology.orchestra.run.smithi069.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-04-18T22:48:41.067 INFO:teuthology.orchestra.run.smithi055.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-04-18T22:48:41.068 INFO:teuthology.orchestra.run.smithi055.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-04-18T22:48:41.068 INFO:teuthology.orchestra.run.smithi069.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-04-18T22:48:41.082 INFO:teuthology.orchestra.run.smithi055.stdout:Get:51 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-04-18T22:48:41.082 INFO:teuthology.orchestra.run.smithi069.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-04-18T22:48:41.084 INFO:teuthology.orchestra.run.smithi069.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-04-18T22:48:41.085 INFO:teuthology.orchestra.run.smithi069.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-04-18T22:48:41.086 INFO:teuthology.orchestra.run.smithi055.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-04-18T22:48:41.099 INFO:teuthology.orchestra.run.smithi016.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-04-18T22:48:41.111 INFO:teuthology.orchestra.run.smithi016.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-04-18T22:48:41.119 INFO:teuthology.orchestra.run.smithi069.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-04-18T22:48:41.123 INFO:teuthology.orchestra.run.smithi069.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-socket amd64 3.0~rc1+git+ac3201d-6 [78.9 kB] 2024-04-18T22:48:41.124 INFO:teuthology.orchestra.run.smithi069.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-04-18T22:48:41.124 INFO:teuthology.orchestra.run.smithi069.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.1 [474 kB] 2024-04-18T22:48:41.131 INFO:teuthology.orchestra.run.smithi069.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-04-18T22:48:41.131 INFO:teuthology.orchestra.run.smithi069.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-04-18T22:48:41.135 INFO:teuthology.orchestra.run.smithi069.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-04-18T22:48:41.154 INFO:teuthology.orchestra.run.smithi069.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-04-18T22:48:41.156 INFO:teuthology.orchestra.run.smithi069.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-04-18T22:48:41.156 INFO:teuthology.orchestra.run.smithi069.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-04-18T22:48:41.165 INFO:teuthology.orchestra.run.smithi055.stdout:Get:53 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-04-18T22:48:41.166 INFO:teuthology.orchestra.run.smithi055.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.1 [108 kB] 2024-04-18T22:48:41.168 INFO:teuthology.orchestra.run.smithi055.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-04-18T22:48:41.168 INFO:teuthology.orchestra.run.smithi055.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-04-18T22:48:41.169 INFO:teuthology.orchestra.run.smithi055.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-04-18T22:48:41.171 INFO:teuthology.orchestra.run.smithi069.stdout:Get:83 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.0.0-2369-g1a6a3e74-1jammy [711 kB] 2024-04-18T22:48:41.184 INFO:teuthology.orchestra.run.smithi069.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-04-18T22:48:41.185 INFO:teuthology.orchestra.run.smithi069.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-04-18T22:48:41.188 INFO:teuthology.orchestra.run.smithi055.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-04-18T22:48:41.193 INFO:teuthology.orchestra.run.smithi016.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-04-18T22:48:41.194 INFO:teuthology.orchestra.run.smithi055.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-04-18T22:48:41.195 INFO:teuthology.orchestra.run.smithi055.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-04-18T22:48:41.196 INFO:teuthology.orchestra.run.smithi069.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-04-18T22:48:41.196 INFO:teuthology.orchestra.run.smithi069.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-04-18T22:48:41.197 INFO:teuthology.orchestra.run.smithi069.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-04-18T22:48:41.200 INFO:teuthology.orchestra.run.smithi069.stdout:Get:89 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-04-18T22:48:41.201 INFO:teuthology.orchestra.run.smithi069.stdout:Get:90 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-04-18T22:48:41.211 INFO:teuthology.orchestra.run.smithi069.stdout:Get:91 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.0.0-2369-g1a6a3e74-1jammy [356 kB] 2024-04-18T22:48:41.233 INFO:teuthology.orchestra.run.smithi055.stdout:Get:61 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-04-18T22:48:41.233 INFO:teuthology.orchestra.run.smithi055.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-04-18T22:48:41.244 INFO:teuthology.orchestra.run.smithi055.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-04-18T22:48:41.245 INFO:teuthology.orchestra.run.smithi069.stdout:Get:92 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.0.0-2369-g1a6a3e74-1jammy [32.8 kB] 2024-04-18T22:48:41.245 INFO:teuthology.orchestra.run.smithi055.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-04-18T22:48:41.245 INFO:teuthology.orchestra.run.smithi055.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-04-18T22:48:41.246 INFO:teuthology.orchestra.run.smithi069.stdout:Get:93 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.0.0-2369-g1a6a3e74-1jammy [180 kB] 2024-04-18T22:48:41.246 INFO:teuthology.orchestra.run.smithi055.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-requests-oauthlib all 1.3.0+ds-0.1 [18.7 kB] 2024-04-18T22:48:41.247 INFO:teuthology.orchestra.run.smithi055.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-04-18T22:48:41.248 INFO:teuthology.orchestra.run.smithi055.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-04-18T22:48:41.251 INFO:teuthology.orchestra.run.smithi069.stdout:Get:94 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.0.0-2369-g1a6a3e74-1jammy [65.7 kB] 2024-04-18T22:48:41.253 INFO:teuthology.orchestra.run.smithi055.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-04-18T22:48:41.254 INFO:teuthology.orchestra.run.smithi069.stdout:Get:95 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.0.0-2369-g1a6a3e74-1jammy [330 kB] 2024-04-18T22:48:41.265 INFO:teuthology.orchestra.run.smithi055.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-04-18T22:48:41.267 INFO:teuthology.orchestra.run.smithi055.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-04-18T22:48:41.268 INFO:teuthology.orchestra.run.smithi055.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-04-18T22:48:41.276 INFO:teuthology.orchestra.run.smithi055.stdout:Get:73 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.0.0-2369-g1a6a3e74-1jammy [711 kB] 2024-04-18T22:48:41.286 INFO:teuthology.orchestra.run.smithi055.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-04-18T22:48:41.290 INFO:teuthology.orchestra.run.smithi069.stdout:Get:96 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.0.0-2369-g1a6a3e74-1jammy [6,775 kB] 2024-04-18T22:48:41.290 INFO:teuthology.orchestra.run.smithi055.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-socket amd64 3.0~rc1+git+ac3201d-6 [78.9 kB] 2024-04-18T22:48:41.291 INFO:teuthology.orchestra.run.smithi055.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-04-18T22:48:41.292 INFO:teuthology.orchestra.run.smithi055.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.1 [474 kB] 2024-04-18T22:48:41.300 INFO:teuthology.orchestra.run.smithi055.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-04-18T22:48:41.300 INFO:teuthology.orchestra.run.smithi055.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-04-18T22:48:41.306 INFO:teuthology.orchestra.run.smithi055.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-04-18T22:48:41.307 INFO:teuthology.orchestra.run.smithi055.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-04-18T22:48:41.308 INFO:teuthology.orchestra.run.smithi055.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-04-18T22:48:41.308 INFO:teuthology.orchestra.run.smithi055.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-04-18T22:48:41.327 INFO:teuthology.orchestra.run.smithi055.stdout:Get:84 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.0.0-2369-g1a6a3e74-1jammy [356 kB] 2024-04-18T22:48:41.328 INFO:teuthology.orchestra.run.smithi055.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-04-18T22:48:41.329 INFO:teuthology.orchestra.run.smithi055.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-04-18T22:48:41.340 INFO:teuthology.orchestra.run.smithi055.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-04-18T22:48:41.341 INFO:teuthology.orchestra.run.smithi055.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-04-18T22:48:41.341 INFO:teuthology.orchestra.run.smithi055.stdout:Get:89 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-04-18T22:48:41.345 INFO:teuthology.orchestra.run.smithi055.stdout:Get:90 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-04-18T22:48:41.346 INFO:teuthology.orchestra.run.smithi055.stdout:Get:91 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-04-18T22:48:41.369 INFO:teuthology.orchestra.run.smithi055.stdout:Get:92 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.0.0-2369-g1a6a3e74-1jammy [32.8 kB] 2024-04-18T22:48:41.370 INFO:teuthology.orchestra.run.smithi055.stdout:Get:93 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.0.0-2369-g1a6a3e74-1jammy [180 kB] 2024-04-18T22:48:41.376 INFO:teuthology.orchestra.run.smithi055.stdout:Get:94 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.0.0-2369-g1a6a3e74-1jammy [65.7 kB] 2024-04-18T22:48:41.378 INFO:teuthology.orchestra.run.smithi055.stdout:Get:95 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.0.0-2369-g1a6a3e74-1jammy [330 kB] 2024-04-18T22:48:41.421 INFO:teuthology.orchestra.run.smithi055.stdout:Get:96 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.0.0-2369-g1a6a3e74-1jammy [6,775 kB] 2024-04-18T22:48:41.423 INFO:teuthology.orchestra.run.smithi016.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-04-18T22:48:41.435 INFO:teuthology.orchestra.run.smithi016.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-04-18T22:48:41.465 INFO:teuthology.orchestra.run.smithi016.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-04-18T22:48:41.474 INFO:teuthology.orchestra.run.smithi016.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-04-18T22:48:41.475 INFO:teuthology.orchestra.run.smithi016.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-04-18T22:48:41.476 INFO:teuthology.orchestra.run.smithi016.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-04-18T22:48:41.495 INFO:teuthology.orchestra.run.smithi016.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline-dev amd64 8.1.2-1 [166 kB] 2024-04-18T22:48:41.663 INFO:teuthology.orchestra.run.smithi016.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblua5.3-dev amd64 5.3.6-1build1 [167 kB] 2024-04-18T22:48:41.752 INFO:teuthology.orchestra.run.smithi069.stdout:Get:97 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.0.0-2369-g1a6a3e74-1jammy [112 kB] 2024-04-18T22:48:41.754 INFO:teuthology.orchestra.run.smithi069.stdout:Get:98 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.0.0-2369-g1a6a3e74-1jammy [466 kB] 2024-04-18T22:48:41.769 INFO:teuthology.orchestra.run.smithi069.stdout:Get:99 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.0.0-2369-g1a6a3e74-1jammy [25.6 MB] 2024-04-18T22:48:41.805 INFO:teuthology.orchestra.run.smithi016.stdout:Get:14 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.0.0-2369-g1a6a3e74-1jammy [3,168 kB] 2024-04-18T22:48:41.947 INFO:teuthology.orchestra.run.smithi055.stdout:Get:97 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.0.0-2369-g1a6a3e74-1jammy [112 kB] 2024-04-18T22:48:41.950 INFO:teuthology.orchestra.run.smithi055.stdout:Get:98 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.0.0-2369-g1a6a3e74-1jammy [466 kB] 2024-04-18T22:48:42.073 INFO:teuthology.orchestra.run.smithi016.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua5.1 amd64 5.1.5-8.1build4 [94.6 kB] 2024-04-18T22:48:42.094 INFO:teuthology.orchestra.run.smithi055.stdout:Get:99 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.0.0-2369-g1a6a3e74-1jammy [25.6 MB] 2024-04-18T22:48:42.105 INFO:teuthology.orchestra.run.smithi016.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-04-18T22:48:42.107 INFO:teuthology.orchestra.run.smithi016.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-04-18T22:48:42.188 INFO:teuthology.orchestra.run.smithi016.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.2 [175 kB] 2024-04-18T22:48:42.239 INFO:teuthology.orchestra.run.smithi016.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy/universe amd64 luarocks all 3.8.0+dfsg1-1 [140 kB] 2024-04-18T22:48:42.261 INFO:teuthology.orchestra.run.smithi016.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-04-18T22:48:42.268 INFO:teuthology.orchestra.run.smithi016.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-04-18T22:48:42.269 INFO:teuthology.orchestra.run.smithi016.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-cheroot all 8.5.2+ds1-1ubuntu3.1 [71.1 kB] 2024-04-18T22:48:42.280 INFO:teuthology.orchestra.run.smithi016.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-04-18T22:48:42.281 INFO:teuthology.orchestra.run.smithi016.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-04-18T22:48:42.447 INFO:teuthology.orchestra.run.smithi016.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-04-18T22:48:42.451 INFO:teuthology.orchestra.run.smithi016.stdout:Get:26 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.0.0-2369-g1a6a3e74-1jammy [711 kB] 2024-04-18T22:48:42.530 INFO:teuthology.orchestra.run.smithi016.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-04-18T22:48:42.558 INFO:teuthology.orchestra.run.smithi016.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-04-18T22:48:42.563 INFO:teuthology.orchestra.run.smithi016.stdout:Get:29 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.0.0-2369-g1a6a3e74-1jammy [356 kB] 2024-04-18T22:48:42.575 INFO:teuthology.orchestra.run.smithi016.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-04-18T22:48:42.620 INFO:teuthology.orchestra.run.smithi016.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-04-18T22:48:42.622 INFO:teuthology.orchestra.run.smithi016.stdout:Get:32 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.0.0-2369-g1a6a3e74-1jammy [32.8 kB] 2024-04-18T22:48:42.628 INFO:teuthology.orchestra.run.smithi016.stdout:Get:33 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.0.0-2369-g1a6a3e74-1jammy [180 kB] 2024-04-18T22:48:42.659 INFO:teuthology.orchestra.run.smithi016.stdout:Get:34 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.0.0-2369-g1a6a3e74-1jammy [65.7 kB] 2024-04-18T22:48:42.679 INFO:teuthology.orchestra.run.smithi016.stdout:Get:35 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.0.0-2369-g1a6a3e74-1jammy [330 kB] 2024-04-18T22:48:42.720 INFO:teuthology.orchestra.run.smithi016.stdout:Get:36 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.0.0-2369-g1a6a3e74-1jammy [6,775 kB] 2024-04-18T22:48:42.835 INFO:teuthology.orchestra.run.smithi016.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-04-18T22:48:42.850 INFO:teuthology.orchestra.run.smithi016.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-04-18T22:48:42.856 INFO:teuthology.orchestra.run.smithi016.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-04-18T22:48:42.862 INFO:teuthology.orchestra.run.smithi016.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-mako all 1.1.3+ds1-2ubuntu0.1 [60.5 kB] 2024-04-18T22:48:42.883 INFO:teuthology.orchestra.run.smithi016.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-04-18T22:48:42.887 INFO:teuthology.orchestra.run.smithi016.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-04-18T22:48:43.053 INFO:teuthology.orchestra.run.smithi016.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webob all 1:1.8.6-1.1 [85.2 kB] 2024-04-18T22:48:43.370 INFO:teuthology.orchestra.run.smithi016.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-04-18T22:48:43.408 INFO:teuthology.orchestra.run.smithi016.stdout:Get:45 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-04-18T22:48:43.420 INFO:teuthology.orchestra.run.smithi016.stdout:Get:46 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-04-18T22:48:43.625 INFO:teuthology.orchestra.run.smithi016.stdout:Get:47 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-04-18T22:48:43.626 INFO:teuthology.orchestra.run.smithi016.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-04-18T22:48:43.631 INFO:teuthology.orchestra.run.smithi016.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-04-18T22:48:43.637 INFO:teuthology.orchestra.run.smithi016.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-04-18T22:48:43.651 INFO:teuthology.orchestra.run.smithi016.stdout:Get:51 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.0.0-2369-g1a6a3e74-1jammy [112 kB] 2024-04-18T22:48:43.653 INFO:teuthology.orchestra.run.smithi016.stdout:Get:52 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-04-18T22:48:43.654 INFO:teuthology.orchestra.run.smithi016.stdout:Get:53 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.0.0-2369-g1a6a3e74-1jammy [466 kB] 2024-04-18T22:48:43.673 INFO:teuthology.orchestra.run.smithi016.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-idna all 3.3-1 [49.3 kB] 2024-04-18T22:48:43.679 INFO:teuthology.orchestra.run.smithi016.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-04-18T22:48:43.719 INFO:teuthology.orchestra.run.smithi016.stdout:Get:56 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.0.0-2369-g1a6a3e74-1jammy [25.6 MB] 2024-04-18T22:48:43.854 INFO:teuthology.orchestra.run.smithi016.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-04-18T22:48:43.856 INFO:teuthology.orchestra.run.smithi069.stdout:Get:100 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.0.0-2369-g1a6a3e74-1jammy [5,084 kB] 2024-04-18T22:48:44.119 INFO:teuthology.orchestra.run.smithi016.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.1 [181 kB] 2024-04-18T22:48:44.207 INFO:teuthology.orchestra.run.smithi069.stdout:Get:101 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.0.0-2369-g1a6a3e74-1jammy [244 kB] 2024-04-18T22:48:44.233 INFO:teuthology.orchestra.run.smithi069.stdout:Get:102 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.0.0-2369-g1a6a3e74-1jammy [124 kB] 2024-04-18T22:48:44.238 INFO:teuthology.orchestra.run.smithi069.stdout:Get:103 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.0.0-2369-g1a6a3e74-1jammy [1,525 kB] 2024-04-18T22:48:44.296 INFO:teuthology.orchestra.run.smithi016.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-04-18T22:48:44.311 INFO:teuthology.orchestra.run.smithi016.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-04-18T22:48:44.331 INFO:teuthology.orchestra.run.smithi016.stdout:Get:61 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-04-18T22:48:44.363 INFO:teuthology.orchestra.run.smithi069.stdout:Get:104 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.0.0-2369-g1a6a3e74-1jammy [6,246 kB] 2024-04-18T22:48:44.395 INFO:teuthology.orchestra.run.smithi016.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-babel-localedata all 2.8.0+dfsg.1-7 [4,982 kB] 2024-04-18T22:48:44.439 INFO:teuthology.orchestra.run.smithi055.stdout:Get:100 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.0.0-2369-g1a6a3e74-1jammy [5,084 kB] 2024-04-18T22:48:44.682 INFO:teuthology.orchestra.run.smithi016.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-04-18T22:48:44.685 INFO:teuthology.orchestra.run.smithi016.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.1 [108 kB] 2024-04-18T22:48:44.687 INFO:teuthology.orchestra.run.smithi016.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-04-18T22:48:44.688 INFO:teuthology.orchestra.run.smithi016.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-04-18T22:48:44.690 INFO:teuthology.orchestra.run.smithi016.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-04-18T22:48:44.848 INFO:teuthology.orchestra.run.smithi055.stdout:Get:101 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.0.0-2369-g1a6a3e74-1jammy [244 kB] 2024-04-18T22:48:44.878 INFO:teuthology.orchestra.run.smithi055.stdout:Get:102 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.0.0-2369-g1a6a3e74-1jammy [124 kB] 2024-04-18T22:48:44.883 INFO:teuthology.orchestra.run.smithi069.stdout:Get:105 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.0.0-2369-g1a6a3e74-1jammy [22.7 MB] 2024-04-18T22:48:44.898 INFO:teuthology.orchestra.run.smithi055.stdout:Get:103 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.0.0-2369-g1a6a3e74-1jammy [1,525 kB] 2024-04-18T22:48:44.917 INFO:teuthology.orchestra.run.smithi016.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-04-18T22:48:45.059 INFO:teuthology.orchestra.run.smithi055.stdout:Get:104 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.0.0-2369-g1a6a3e74-1jammy [6,246 kB] 2024-04-18T22:48:45.361 INFO:teuthology.orchestra.run.smithi016.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-04-18T22:48:45.366 INFO:teuthology.orchestra.run.smithi016.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-04-18T22:48:45.656 INFO:teuthology.orchestra.run.smithi016.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-04-18T22:48:45.656 INFO:teuthology.orchestra.run.smithi016.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-04-18T22:48:45.658 INFO:teuthology.orchestra.run.smithi016.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-04-18T22:48:45.660 INFO:teuthology.orchestra.run.smithi016.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-04-18T22:48:45.661 INFO:teuthology.orchestra.run.smithi016.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-04-18T22:48:45.664 INFO:teuthology.orchestra.run.smithi016.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-requests-oauthlib all 1.3.0+ds-0.1 [18.7 kB] 2024-04-18T22:48:45.665 INFO:teuthology.orchestra.run.smithi016.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-04-18T22:48:45.666 INFO:teuthology.orchestra.run.smithi016.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-04-18T22:48:45.762 INFO:teuthology.orchestra.run.smithi055.stdout:Get:105 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.0.0-2369-g1a6a3e74-1jammy [22.7 MB] 2024-04-18T22:48:45.848 INFO:teuthology.orchestra.run.smithi016.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-04-18T22:48:46.264 INFO:teuthology.orchestra.run.smithi016.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-04-18T22:48:46.310 INFO:teuthology.orchestra.run.smithi016.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-04-18T22:48:46.346 INFO:teuthology.orchestra.run.smithi016.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-04-18T22:48:46.442 INFO:teuthology.orchestra.run.smithi016.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-04-18T22:48:46.482 INFO:teuthology.orchestra.run.smithi016.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-socket amd64 3.0~rc1+git+ac3201d-6 [78.9 kB] 2024-04-18T22:48:46.493 INFO:teuthology.orchestra.run.smithi016.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-04-18T22:48:46.499 INFO:teuthology.orchestra.run.smithi016.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.1 [474 kB] 2024-04-18T22:48:46.546 INFO:teuthology.orchestra.run.smithi016.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-04-18T22:48:46.549 INFO:teuthology.orchestra.run.smithi016.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-04-18T22:48:46.570 INFO:teuthology.orchestra.run.smithi016.stdout:Get:89 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-04-18T22:48:46.735 INFO:teuthology.orchestra.run.smithi016.stdout:Get:90 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-04-18T22:48:47.008 INFO:teuthology.orchestra.run.smithi016.stdout:Get:91 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-04-18T22:48:47.026 INFO:teuthology.orchestra.run.smithi016.stdout:Get:92 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-04-18T22:48:47.106 INFO:teuthology.orchestra.run.smithi069.stdout:Get:106 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.0.0-2369-g1a6a3e74-1jammy [14.0 kB] 2024-04-18T22:48:47.107 INFO:teuthology.orchestra.run.smithi069.stdout:Get:107 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.0.0-2369-g1a6a3e74-1jammy [869 kB] 2024-04-18T22:48:47.133 INFO:teuthology.orchestra.run.smithi069.stdout:Get:108 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.0.0-2369-g1a6a3e74-1jammy [2,435 kB] 2024-04-18T22:48:47.182 INFO:teuthology.orchestra.run.smithi016.stdout:Get:93 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-04-18T22:48:47.211 INFO:teuthology.orchestra.run.smithi016.stdout:Get:94 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-04-18T22:48:47.366 INFO:teuthology.orchestra.run.smithi069.stdout:Get:109 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.0.0-2369-g1a6a3e74-1jammy [791 kB] 2024-04-18T22:48:47.369 INFO:teuthology.orchestra.run.smithi016.stdout:Get:95 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-04-18T22:48:47.371 INFO:teuthology.orchestra.run.smithi016.stdout:Get:96 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-04-18T22:48:47.374 INFO:teuthology.orchestra.run.smithi016.stdout:Get:97 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-04-18T22:48:47.443 INFO:teuthology.orchestra.run.smithi069.stdout:Get:110 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.0.0-2369-g1a6a3e74-1jammy [147 kB] 2024-04-18T22:48:47.449 INFO:teuthology.orchestra.run.smithi069.stdout:Get:111 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.0.0-2369-g1a6a3e74-1jammy [2,295 kB] 2024-04-18T22:48:47.461 INFO:teuthology.orchestra.run.smithi016.stdout:Get:98 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-04-18T22:48:47.462 INFO:teuthology.orchestra.run.smithi016.stdout:Get:99 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-04-18T22:48:47.530 INFO:teuthology.orchestra.run.smithi016.stdout:Get:100 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.0.0-2369-g1a6a3e74-1jammy [5,084 kB] 2024-04-18T22:48:47.656 INFO:teuthology.orchestra.run.smithi069.stdout:Get:112 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.0.0-2369-g1a6a3e74-1jammy [8,625 kB] 2024-04-18T22:48:48.216 INFO:teuthology.orchestra.run.smithi016.stdout:Get:101 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.0.0-2369-g1a6a3e74-1jammy [244 kB] 2024-04-18T22:48:48.247 INFO:teuthology.orchestra.run.smithi016.stdout:Get:102 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.0.0-2369-g1a6a3e74-1jammy [124 kB] 2024-04-18T22:48:48.261 INFO:teuthology.orchestra.run.smithi016.stdout:Get:103 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.0.0-2369-g1a6a3e74-1jammy [1,525 kB] 2024-04-18T22:48:48.263 INFO:teuthology.orchestra.run.smithi055.stdout:Get:106 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.0.0-2369-g1a6a3e74-1jammy [14.0 kB] 2024-04-18T22:48:48.264 INFO:teuthology.orchestra.run.smithi055.stdout:Get:107 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.0.0-2369-g1a6a3e74-1jammy [869 kB] 2024-04-18T22:48:48.281 INFO:teuthology.orchestra.run.smithi055.stdout:Get:108 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.0.0-2369-g1a6a3e74-1jammy [2,435 kB] 2024-04-18T22:48:48.434 INFO:teuthology.orchestra.run.smithi069.stdout:Get:113 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.0.0-2369-g1a6a3e74-1jammy [14.2 kB] 2024-04-18T22:48:48.435 INFO:teuthology.orchestra.run.smithi069.stdout:Get:114 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.0.0-2369-g1a6a3e74-1jammy [50.7 MB] 2024-04-18T22:48:48.506 INFO:teuthology.orchestra.run.smithi016.stdout:Get:104 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.0.0-2369-g1a6a3e74-1jammy [6,246 kB] 2024-04-18T22:48:48.526 INFO:teuthology.orchestra.run.smithi055.stdout:Get:109 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.0.0-2369-g1a6a3e74-1jammy [791 kB] 2024-04-18T22:48:48.606 INFO:teuthology.orchestra.run.smithi055.stdout:Get:110 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.0.0-2369-g1a6a3e74-1jammy [147 kB] 2024-04-18T22:48:48.611 INFO:teuthology.orchestra.run.smithi055.stdout:Get:111 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.0.0-2369-g1a6a3e74-1jammy [2,295 kB] 2024-04-18T22:48:48.871 INFO:teuthology.orchestra.run.smithi055.stdout:Get:112 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.0.0-2369-g1a6a3e74-1jammy [8,625 kB] 2024-04-18T22:48:49.489 INFO:teuthology.orchestra.run.smithi016.stdout:Get:105 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.0.0-2369-g1a6a3e74-1jammy [22.7 MB] 2024-04-18T22:48:49.795 INFO:teuthology.orchestra.run.smithi055.stdout:Get:113 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.0.0-2369-g1a6a3e74-1jammy [14.2 kB] 2024-04-18T22:48:49.795 INFO:teuthology.orchestra.run.smithi055.stdout:Get:114 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.0.0-2369-g1a6a3e74-1jammy [50.7 MB] 2024-04-18T22:48:53.148 INFO:teuthology.orchestra.run.smithi016.stdout:Get:106 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.0.0-2369-g1a6a3e74-1jammy [14.0 kB] 2024-04-18T22:48:53.149 INFO:teuthology.orchestra.run.smithi016.stdout:Get:107 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.0.0-2369-g1a6a3e74-1jammy [869 kB] 2024-04-18T22:48:53.212 INFO:teuthology.orchestra.run.smithi016.stdout:Get:108 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.0.0-2369-g1a6a3e74-1jammy [2,435 kB] 2024-04-18T22:48:53.388 INFO:teuthology.orchestra.run.smithi069.stdout:Get:115 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.0.0-2369-g1a6a3e74-1jammy [121 kB] 2024-04-18T22:48:53.391 INFO:teuthology.orchestra.run.smithi069.stdout:Get:116 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.0.0-2369-g1a6a3e74-1jammy [38.9 kB] 2024-04-18T22:48:53.392 INFO:teuthology.orchestra.run.smithi069.stdout:Get:117 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.0.0-2369-g1a6a3e74-1jammy [13.4 MB] 2024-04-18T22:48:53.561 INFO:teuthology.orchestra.run.smithi016.stdout:Get:109 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.0.0-2369-g1a6a3e74-1jammy [791 kB] 2024-04-18T22:48:53.678 INFO:teuthology.orchestra.run.smithi016.stdout:Get:110 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.0.0-2369-g1a6a3e74-1jammy [147 kB] 2024-04-18T22:48:53.701 INFO:teuthology.orchestra.run.smithi016.stdout:Get:111 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.0.0-2369-g1a6a3e74-1jammy [2,295 kB] 2024-04-18T22:48:54.036 INFO:teuthology.orchestra.run.smithi016.stdout:Get:112 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.0.0-2369-g1a6a3e74-1jammy [8,625 kB] 2024-04-18T22:48:54.695 INFO:teuthology.orchestra.run.smithi069.stdout:Get:118 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.0.0-2369-g1a6a3e74-1jammy [91.4 kB] 2024-04-18T22:48:55.115 INFO:teuthology.orchestra.run.smithi016.stdout:Get:113 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.0.0-2369-g1a6a3e74-1jammy [14.2 kB] 2024-04-18T22:48:55.116 INFO:teuthology.orchestra.run.smithi016.stdout:Get:114 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.0.0-2369-g1a6a3e74-1jammy [50.7 MB] 2024-04-18T22:48:55.184 INFO:teuthology.orchestra.run.smithi055.stdout:Get:115 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.0.0-2369-g1a6a3e74-1jammy [121 kB] 2024-04-18T22:48:55.187 INFO:teuthology.orchestra.run.smithi055.stdout:Get:116 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.0.0-2369-g1a6a3e74-1jammy [38.9 kB] 2024-04-18T22:48:55.188 INFO:teuthology.orchestra.run.smithi055.stdout:Get:117 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.0.0-2369-g1a6a3e74-1jammy [13.4 MB] 2024-04-18T22:48:55.247 INFO:teuthology.orchestra.run.smithi069.stdout:Fetched 179 MB in 14s (12.6 MB/s) 2024-04-18T22:48:55.408 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-04-18T22:48:55.509 INFO:teuthology.orchestra.run.smithi069.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 ... 165995 files and directories currently installed.) 2024-04-18T22:48:55.514 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-04-18T22:48:55.598 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-04-18T22:48:55.939 INFO:teuthology.orchestra.run.smithi055.stdout:Get:118 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.0.0-2369-g1a6a3e74-1jammy [91.4 kB] 2024-04-18T22:48:55.952 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-04-18T22:48:55.978 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-04-18T22:48:56.019 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-04-18T22:48:56.305 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-04-18T22:48:56.331 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-04-18T22:48:56.371 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-04-18T22:48:56.518 INFO:teuthology.orchestra.run.smithi055.stdout:Fetched 179 MB in 15s (11.7 MB/s) 2024-04-18T22:48:56.712 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-04-18T22:48:56.815 INFO:teuthology.orchestra.run.smithi055.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 ... 165995 files and directories currently installed.) 2024-04-18T22:48:56.821 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-04-18T22:48:56.825 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-04-18T22:48:56.850 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-18T22:48:56.899 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-18T22:48:56.910 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-04-18T22:48:57.230 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-04-18T22:48:57.257 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-04-18T22:48:57.297 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-04-18T22:48:57.337 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-04-18T22:48:57.363 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-18T22:48:57.406 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-18T22:48:57.616 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-04-18T22:48:57.643 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-04-18T22:48:57.775 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-04-18T22:48:57.831 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-04-18T22:48:57.858 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-18T22:48:57.889 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-18T22:48:58.226 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-04-18T22:48:58.252 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-04-18T22:48:58.278 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-04-18T22:48:58.300 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-04-18T22:48:58.305 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-18T22:48:58.353 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-18T22:48:58.645 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package librados2. 2024-04-18T22:48:58.674 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../007-librados2_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:48:58.711 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking librados2 (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:48:58.731 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-04-18T22:48:58.758 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-18T22:48:58.788 INFO:teuthology.orchestra.run.smithi016.stdout:Get:115 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.0.0-2369-g1a6a3e74-1jammy [121 kB] 2024-04-18T22:48:58.789 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-18T22:48:58.791 INFO:teuthology.orchestra.run.smithi016.stdout:Get:116 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.0.0-2369-g1a6a3e74-1jammy [38.9 kB] 2024-04-18T22:48:58.792 INFO:teuthology.orchestra.run.smithi016.stdout:Get:117 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.0.0-2369-g1a6a3e74-1jammy [13.4 MB] 2024-04-18T22:48:59.118 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-04-18T22:48:59.144 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-18T22:48:59.147 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package librbd1. 2024-04-18T22:48:59.174 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../008-librbd1_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:48:59.184 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-18T22:48:59.214 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking librbd1 (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:48:59.492 INFO:teuthology.orchestra.run.smithi016.stdout:Get:118 https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.0.0-2369-g1a6a3e74-1jammy [91.4 kB] 2024-04-18T22:48:59.554 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-04-18T22:48:59.575 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package libcephfs2. 2024-04-18T22:48:59.581 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-04-18T22:48:59.590 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../009-libcephfs2_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:48:59.621 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-04-18T22:48:59.625 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking libcephfs2 (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:48:59.903 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-rados. 2024-04-18T22:48:59.915 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package librados2. 2024-04-18T22:48:59.929 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../010-python3-rados_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:48:59.942 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../007-librados2_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:48:59.969 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-rados (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:48:59.973 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking librados2 (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:00.075 INFO:teuthology.orchestra.run.smithi016.stdout:Fetched 179 MB in 19s (9,444 kB/s) 2024-04-18T22:49:00.297 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-04-18T22:49:00.316 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-04-18T22:49:00.323 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../011-python3-ceph-argparse_19.0.0-2369-g1a6a3e74-1jammy_all.deb ... 2024-04-18T22:49:00.363 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-ceph-argparse (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:00.421 INFO:teuthology.orchestra.run.smithi016.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 ... 165995 files and directories currently installed.) 2024-04-18T22:49:00.426 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-04-18T22:49:00.518 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-04-18T22:49:00.568 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package librbd1. 2024-04-18T22:49:00.594 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../008-librbd1_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:00.607 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-cephfs. 2024-04-18T22:49:00.623 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../012-python3-cephfs_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:00.634 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking librbd1 (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:00.657 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-cephfs (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:00.852 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-04-18T22:49:00.879 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-04-18T22:49:00.910 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-ceph-common. 2024-04-18T22:49:00.918 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-04-18T22:49:00.937 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../013-python3-ceph-common_19.0.0-2369-g1a6a3e74-1jammy_all.deb ... 2024-04-18T22:49:00.968 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-ceph-common (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:01.062 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package libcephfs2. 2024-04-18T22:49:01.089 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../009-libcephfs2_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:01.129 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking libcephfs2 (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:01.205 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-04-18T22:49:01.221 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-04-18T22:49:01.254 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-04-18T22:49:01.304 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-wcwidth. 2024-04-18T22:49:01.331 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../014-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-04-18T22:49:01.371 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-04-18T22:49:01.590 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-rados. 2024-04-18T22:49:01.616 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../010-python3-rados_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:01.648 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-prettytable. 2024-04-18T22:49:01.656 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-rados (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:01.664 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../015-python3-prettytable_2.5.0-2_all.deb ... 2024-04-18T22:49:01.698 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-04-18T22:49:01.700 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-04-18T22:49:01.727 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-18T22:49:01.774 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-18T22:49:01.954 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-rbd. 2024-04-18T22:49:01.954 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-04-18T22:49:01.967 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../016-python3-rbd_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:01.967 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../011-python3-ceph-argparse_19.0.0-2369-g1a6a3e74-1jammy_all.deb ... 2024-04-18T22:49:02.009 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-rbd (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:02.010 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-ceph-argparse (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:02.162 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-04-18T22:49:02.188 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-18T22:49:02.228 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-18T22:49:02.262 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-cephfs. 2024-04-18T22:49:02.277 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../012-python3-cephfs_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:02.320 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-cephfs (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:02.379 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-04-18T22:49:02.406 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../017-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-04-18T22:49:02.445 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-04-18T22:49:02.565 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-04-18T22:49:02.591 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-18T22:49:02.632 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-18T22:49:02.639 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-ceph-common. 2024-04-18T22:49:02.666 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../013-python3-ceph-common_19.0.0-2369-g1a6a3e74-1jammy_all.deb ... 2024-04-18T22:49:02.706 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-ceph-common (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:02.864 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-04-18T22:49:02.888 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../018-libreadline-dev_8.1.2-1_amd64.deb ... 2024-04-18T22:49:02.931 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-04-18T22:49:02.993 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-04-18T22:49:03.019 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-04-18T22:49:03.043 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-wcwidth. 2024-04-18T22:49:03.068 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-04-18T22:49:03.069 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../014-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-04-18T22:49:03.109 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-04-18T22:49:03.200 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-04-18T22:49:03.216 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../019-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-04-18T22:49:03.259 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-04-18T22:49:03.388 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package librados2. 2024-04-18T22:49:03.414 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../007-librados2_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:03.420 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-prettytable. 2024-04-18T22:49:03.447 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../015-python3-prettytable_2.5.0-2_all.deb ... 2024-04-18T22:49:03.454 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking librados2 (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:03.479 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-04-18T22:49:03.596 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package lua5.1. 2024-04-18T22:49:03.622 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../020-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-04-18T22:49:03.662 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-04-18T22:49:03.731 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-rbd. 2024-04-18T22:49:03.758 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../016-python3-rbd_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:03.798 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-rbd (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:03.857 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package librbd1. 2024-04-18T22:49:03.884 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../008-librbd1_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:03.932 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking librbd1 (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:03.998 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package lua-any. 2024-04-18T22:49:04.025 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../021-lua-any_27ubuntu1_all.deb ... 2024-04-18T22:49:04.065 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking lua-any (27ubuntu1) ... 2024-04-18T22:49:04.143 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-04-18T22:49:04.169 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../017-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-04-18T22:49:04.209 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-04-18T22:49:04.292 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package zip. 2024-04-18T22:49:04.308 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../022-zip_3.0-12build2_amd64.deb ... 2024-04-18T22:49:04.342 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking zip (3.0-12build2) ... 2024-04-18T22:49:04.385 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package libcephfs2. 2024-04-18T22:49:04.412 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../009-libcephfs2_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:04.452 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking libcephfs2 (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:04.528 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-04-18T22:49:04.544 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../018-libreadline-dev_8.1.2-1_amd64.deb ... 2024-04-18T22:49:04.587 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-04-18T22:49:04.621 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package unzip. 2024-04-18T22:49:04.647 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../023-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-04-18T22:49:04.687 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-04-18T22:49:04.746 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-rados. 2024-04-18T22:49:04.762 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../010-python3-rados_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:04.804 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-rados (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:04.881 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-04-18T22:49:04.897 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../019-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-04-18T22:49:04.931 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-04-18T22:49:05.082 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package luarocks. 2024-04-18T22:49:05.108 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../024-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-04-18T22:49:05.149 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-04-18T22:49:05.249 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-04-18T22:49:05.266 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../011-python3-ceph-argparse_19.0.0-2369-g1a6a3e74-1jammy_all.deb ... 2024-04-18T22:49:05.268 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package lua5.1. 2024-04-18T22:49:05.295 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../020-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-04-18T22:49:05.299 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-ceph-argparse (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:05.335 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-04-18T22:49:05.518 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-cephfs. 2024-04-18T22:49:05.532 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package librgw2. 2024-04-18T22:49:05.534 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../012-python3-cephfs_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:05.558 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../025-librgw2_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:05.576 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-cephfs (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:05.598 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking librgw2 (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:05.654 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package lua-any. 2024-04-18T22:49:05.681 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../021-lua-any_27ubuntu1_all.deb ... 2024-04-18T22:49:05.721 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking lua-any (27ubuntu1) ... 2024-04-18T22:49:05.888 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-ceph-common. 2024-04-18T22:49:05.914 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../013-python3-ceph-common_19.0.0-2369-g1a6a3e74-1jammy_all.deb ... 2024-04-18T22:49:05.954 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-ceph-common (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:05.956 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package zip. 2024-04-18T22:49:05.972 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../022-zip_3.0-12build2_amd64.deb ... 2024-04-18T22:49:06.007 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking zip (3.0-12build2) ... 2024-04-18T22:49:06.150 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-rgw. 2024-04-18T22:49:06.176 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../026-python3-rgw_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:06.208 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-rgw (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:06.282 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-wcwidth. 2024-04-18T22:49:06.285 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package unzip. 2024-04-18T22:49:06.309 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../014-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-04-18T22:49:06.312 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../023-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-04-18T22:49:06.349 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-04-18T22:49:06.352 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-04-18T22:49:06.536 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package liboath0:amd64. 2024-04-18T22:49:06.563 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../027-liboath0_2.6.7-3build1_amd64.deb ... 2024-04-18T22:49:06.603 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-04-18T22:49:06.677 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-prettytable. 2024-04-18T22:49:06.704 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../015-python3-prettytable_2.5.0-2_all.deb ... 2024-04-18T22:49:06.744 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-04-18T22:49:06.897 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package libradosstriper1. 2024-04-18T22:49:06.914 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package luarocks. 2024-04-18T22:49:06.924 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../028-libradosstriper1_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:06.940 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../024-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-04-18T22:49:06.964 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking libradosstriper1 (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:06.971 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-rbd. 2024-04-18T22:49:06.980 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-04-18T22:49:06.987 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../016-python3-rbd_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:07.021 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-rbd (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:07.363 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package librgw2. 2024-04-18T22:49:07.374 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-04-18T22:49:07.390 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../025-librgw2_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:07.392 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package ceph-common. 2024-04-18T22:49:07.401 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../017-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-04-18T22:49:07.419 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../029-ceph-common_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:07.429 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking librgw2 (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:07.441 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-04-18T22:49:07.458 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking ceph-common (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:07.753 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-04-18T22:49:07.779 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../018-libreadline-dev_8.1.2-1_amd64.deb ... 2024-04-18T22:49:07.819 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-04-18T22:49:07.990 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-rgw. 2024-04-18T22:49:08.006 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../026-python3-rgw_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:08.040 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-rgw (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:08.122 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-04-18T22:49:08.138 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../019-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-04-18T22:49:08.172 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-04-18T22:49:08.385 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package liboath0:amd64. 2024-04-18T22:49:08.412 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../027-liboath0_2.6.7-3build1_amd64.deb ... 2024-04-18T22:49:08.452 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-04-18T22:49:08.467 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package lua5.1. 2024-04-18T22:49:08.494 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../020-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-04-18T22:49:08.533 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-04-18T22:49:08.805 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package libradosstriper1. 2024-04-18T22:49:08.832 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../028-libradosstriper1_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:08.861 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package lua-any. 2024-04-18T22:49:08.871 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking libradosstriper1 (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:08.877 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../021-lua-any_27ubuntu1_all.deb ... 2024-04-18T22:49:08.888 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package ceph-base. 2024-04-18T22:49:08.915 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../030-ceph-base_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:08.921 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking lua-any (27ubuntu1) ... 2024-04-18T22:49:08.965 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking ceph-base (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:09.164 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package zip. 2024-04-18T22:49:09.180 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../022-zip_3.0-12build2_amd64.deb ... 2024-04-18T22:49:09.214 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking zip (3.0-12build2) ... 2024-04-18T22:49:09.308 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package ceph-common. 2024-04-18T22:49:09.338 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../029-ceph-common_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:09.374 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking ceph-common (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:09.484 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package unzip. 2024-04-18T22:49:09.500 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../023-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-04-18T22:49:09.526 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-04-18T22:49:09.534 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-04-18T22:49:09.553 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../031-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-04-18T22:49:09.601 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-04-18T22:49:09.854 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-cheroot. 2024-04-18T22:49:09.880 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../032-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-04-18T22:49:09.920 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-04-18T22:49:09.930 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package luarocks. 2024-04-18T22:49:09.957 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../024-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-04-18T22:49:09.997 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-04-18T22:49:10.265 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-04-18T22:49:10.291 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../033-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-04-18T22:49:10.331 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-04-18T22:49:10.346 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package librgw2. 2024-04-18T22:49:10.374 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../025-librgw2_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:10.413 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking librgw2 (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:10.609 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-jaraco.text. 2024-04-18T22:49:10.636 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../034-python3-jaraco.text_3.6.0-2_all.deb ... 2024-04-18T22:49:10.667 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-04-18T22:49:10.671 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package ceph-base. 2024-04-18T22:49:10.698 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../030-ceph-base_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:10.740 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking ceph-base (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:10.937 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-04-18T22:49:10.964 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../035-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-04-18T22:49:10.982 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-rgw. 2024-04-18T22:49:11.003 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-04-18T22:49:11.009 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../026-python3-rgw_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:11.049 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-rgw (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:11.284 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-04-18T22:49:11.300 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../031-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-04-18T22:49:11.306 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-tempora. 2024-04-18T22:49:11.332 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../036-python3-tempora_4.1.2-1_all.deb ... 2024-04-18T22:49:11.333 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-04-18T22:49:11.373 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-04-18T22:49:11.385 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package liboath0:amd64. 2024-04-18T22:49:11.412 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../027-liboath0_2.6.7-3build1_amd64.deb ... 2024-04-18T22:49:11.452 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-04-18T22:49:11.620 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-cheroot. 2024-04-18T22:49:11.647 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../032-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-04-18T22:49:11.675 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-portend. 2024-04-18T22:49:11.686 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-04-18T22:49:11.702 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../037-python3-portend_3.0.0-1_all.deb ... 2024-04-18T22:49:11.742 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-04-18T22:49:11.763 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package libradosstriper1. 2024-04-18T22:49:11.790 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../028-libradosstriper1_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:11.830 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking libradosstriper1 (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:12.011 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-04-18T22:49:12.027 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../038-python3-zc.lockfile_2.0-1_all.deb ... 2024-04-18T22:49:12.061 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-04-18T22:49:12.206 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-04-18T22:49:12.233 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../033-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-04-18T22:49:12.266 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package ceph-common. 2024-04-18T22:49:12.273 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-04-18T22:49:12.294 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../029-ceph-common_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:12.333 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking ceph-common (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:12.356 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-cherrypy3. 2024-04-18T22:49:12.383 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../039-python3-cherrypy3_18.6.1-4_all.deb ... 2024-04-18T22:49:12.422 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-04-18T22:49:12.576 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-jaraco.text. 2024-04-18T22:49:12.602 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../034-python3-jaraco.text_3.6.0-2_all.deb ... 2024-04-18T22:49:12.651 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-04-18T22:49:12.818 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-natsort. 2024-04-18T22:49:12.844 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../040-python3-natsort_8.0.2-1_all.deb ... 2024-04-18T22:49:13.418 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-04-18T22:49:13.696 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-04-18T22:49:13.723 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../035-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-04-18T22:49:13.730 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package ceph-base. 2024-04-18T22:49:13.754 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-04-18T22:49:13.757 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../030-ceph-base_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:13.807 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking ceph-base (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:13.979 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-logutils. 2024-04-18T22:49:14.005 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../041-python3-logutils_0.3.3-8_all.deb ... 2024-04-18T22:49:14.046 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-04-18T22:49:14.048 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-tempora. 2024-04-18T22:49:14.076 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../036-python3-tempora_4.1.2-1_all.deb ... 2024-04-18T22:49:14.115 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-04-18T22:49:14.348 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-markupsafe. 2024-04-18T22:49:14.375 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../042-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-04-18T22:49:14.415 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-04-18T22:49:14.426 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-portend. 2024-04-18T22:49:14.454 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../037-python3-portend_3.0.0-1_all.deb ... 2024-04-18T22:49:14.493 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-04-18T22:49:14.693 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-mako. 2024-04-18T22:49:14.720 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../043-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-04-18T22:49:14.759 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-04-18T22:49:14.771 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-04-18T22:49:14.798 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../038-python3-zc.lockfile_2.0-1_all.deb ... 2024-04-18T22:49:14.829 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-04-18T22:49:15.010 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-04-18T22:49:15.026 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../031-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-04-18T22:49:15.046 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-simplegeneric. 2024-04-18T22:49:15.062 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-04-18T22:49:15.072 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../044-python3-simplegeneric_0.8.1-3_all.deb ... 2024-04-18T22:49:15.099 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-cherrypy3. 2024-04-18T22:49:15.126 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../039-python3-cherrypy3_18.6.1-4_all.deb ... 2024-04-18T22:49:15.129 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-04-18T22:49:15.157 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-04-18T22:49:15.415 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-singledispatch. 2024-04-18T22:49:15.442 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../045-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-04-18T22:49:15.477 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-natsort. 2024-04-18T22:49:15.481 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-04-18T22:49:15.504 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../040-python3-natsort_8.0.2-1_all.deb ... 2024-04-18T22:49:15.536 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-04-18T22:49:15.596 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-cheroot. 2024-04-18T22:49:15.623 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../032-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-04-18T22:49:15.663 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-04-18T22:49:15.776 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-webob. 2024-04-18T22:49:15.802 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../046-python3-webob_1%3a1.8.6-1.1_all.deb ... 2024-04-18T22:49:15.842 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-webob (1:1.8.6-1.1) ... 2024-04-18T22:49:15.847 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-logutils. 2024-04-18T22:49:15.874 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../041-python3-logutils_0.3.3-8_all.deb ... 2024-04-18T22:49:15.913 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-04-18T22:49:15.991 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-04-18T22:49:16.018 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../033-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-04-18T22:49:16.057 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-04-18T22:49:16.164 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-waitress. 2024-04-18T22:49:16.191 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../047-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-04-18T22:49:16.216 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-markupsafe. 2024-04-18T22:49:16.234 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-04-18T22:49:16.243 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../042-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-04-18T22:49:16.283 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-04-18T22:49:16.360 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-jaraco.text. 2024-04-18T22:49:16.387 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../034-python3-jaraco.text_3.6.0-2_all.deb ... 2024-04-18T22:49:16.427 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-04-18T22:49:16.508 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-tempita. 2024-04-18T22:49:16.535 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../048-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-04-18T22:49:16.575 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-04-18T22:49:16.586 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-mako. 2024-04-18T22:49:16.612 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../043-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-04-18T22:49:16.652 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-04-18T22:49:16.680 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-04-18T22:49:16.696 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../035-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-04-18T22:49:16.730 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-04-18T22:49:16.861 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-paste. 2024-04-18T22:49:16.888 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../049-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-04-18T22:49:16.928 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-04-18T22:49:17.014 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-simplegeneric. 2024-04-18T22:49:17.025 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-tempora. 2024-04-18T22:49:17.041 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../044-python3-simplegeneric_0.8.1-3_all.deb ... 2024-04-18T22:49:17.052 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../036-python3-tempora_4.1.2-1_all.deb ... 2024-04-18T22:49:17.080 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-04-18T22:49:17.091 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-04-18T22:49:17.231 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-04-18T22:49:17.246 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../050-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-04-18T22:49:17.289 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-04-18T22:49:17.383 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-singledispatch. 2024-04-18T22:49:17.394 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-portend. 2024-04-18T22:49:17.410 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../045-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-04-18T22:49:17.421 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../037-python3-portend_3.0.0-1_all.deb ... 2024-04-18T22:49:17.450 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-04-18T22:49:17.469 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-04-18T22:49:17.592 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-pastedeploy. 2024-04-18T22:49:17.618 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../051-python3-pastedeploy_2.1.1-1_all.deb ... 2024-04-18T22:49:17.683 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-04-18T22:49:17.711 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-webob. 2024-04-18T22:49:17.734 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../046-python3-webob_1%3a1.8.6-1.1_all.deb ... 2024-04-18T22:49:17.747 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-04-18T22:49:17.769 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-webob (1:1.8.6-1.1) ... 2024-04-18T22:49:17.774 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../038-python3-zc.lockfile_2.0-1_all.deb ... 2024-04-18T22:49:17.805 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-04-18T22:49:17.986 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-webtest. 2024-04-18T22:49:18.013 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../052-python3-webtest_2.0.35-1_all.deb ... 2024-04-18T22:49:18.053 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-04-18T22:49:18.064 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-waitress. 2024-04-18T22:49:18.090 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../047-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-04-18T22:49:18.092 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-cherrypy3. 2024-04-18T22:49:18.119 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../039-python3-cherrypy3_18.6.1-4_all.deb ... 2024-04-18T22:49:18.134 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-04-18T22:49:18.158 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-04-18T22:49:18.450 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-tempita. 2024-04-18T22:49:18.477 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../048-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-04-18T22:49:18.495 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-natsort. 2024-04-18T22:49:18.498 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-pecan. 2024-04-18T22:49:18.511 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../040-python3-natsort_8.0.2-1_all.deb ... 2024-04-18T22:49:18.516 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-04-18T22:49:18.524 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../053-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-04-18T22:49:18.545 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-04-18T22:49:18.564 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-04-18T22:49:18.815 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-logutils. 2024-04-18T22:49:18.828 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-paste. 2024-04-18T22:49:18.832 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../041-python3-logutils_0.3.3-8_all.deb ... 2024-04-18T22:49:18.855 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../049-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-04-18T22:49:18.873 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-04-18T22:49:18.894 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-04-18T22:49:18.902 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-certifi. 2024-04-18T22:49:18.929 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../054-python3-certifi_2020.6.20-1_all.deb ... 2024-04-18T22:49:18.969 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-04-18T22:49:19.177 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-markupsafe. 2024-04-18T22:49:19.189 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-04-18T22:49:19.204 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../042-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-04-18T22:49:19.216 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../050-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-04-18T22:49:19.256 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-04-18T22:49:19.268 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-04-18T22:49:19.280 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-idna. 2024-04-18T22:49:19.306 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../055-python3-idna_3.3-1_all.deb ... 2024-04-18T22:49:19.346 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-idna (3.3-1) ... 2024-04-18T22:49:19.559 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-pastedeploy. 2024-04-18T22:49:19.563 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-mako. 2024-04-18T22:49:19.585 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../051-python3-pastedeploy_2.1.1-1_all.deb ... 2024-04-18T22:49:19.590 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../043-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-04-18T22:49:19.608 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-urllib3. 2024-04-18T22:49:19.625 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-04-18T22:49:19.629 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-04-18T22:49:19.634 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../056-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-04-18T22:49:19.674 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-04-18T22:49:19.949 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-simplegeneric. 2024-04-18T22:49:19.953 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-webtest. 2024-04-18T22:49:19.960 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-requests. 2024-04-18T22:49:19.977 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../044-python3-simplegeneric_0.8.1-3_all.deb ... 2024-04-18T22:49:19.980 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../052-python3-webtest_2.0.35-1_all.deb ... 2024-04-18T22:49:19.987 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../057-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-04-18T22:49:20.016 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-04-18T22:49:20.020 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-04-18T22:49:20.027 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-04-18T22:49:20.252 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-singledispatch. 2024-04-18T22:49:20.268 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../045-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-04-18T22:49:20.310 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-04-18T22:49:20.313 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-werkzeug. 2024-04-18T22:49:20.331 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-pecan. 2024-04-18T22:49:20.340 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../058-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.1_all.deb ... 2024-04-18T22:49:20.358 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../053-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-04-18T22:49:20.380 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-04-18T22:49:20.398 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-04-18T22:49:20.607 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-webob. 2024-04-18T22:49:20.634 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../046-python3-webob_1%3a1.8.6-1.1_all.deb ... 2024-04-18T22:49:20.649 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-04-18T22:49:20.665 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../059-ceph-mgr-modules-core_19.0.0-2369-g1a6a3e74-1jammy_all.deb ... 2024-04-18T22:49:20.673 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-webob (1:1.8.6-1.1) ... 2024-04-18T22:49:20.708 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking ceph-mgr-modules-core (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:20.769 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-certifi. 2024-04-18T22:49:20.796 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../054-python3-certifi_2020.6.20-1_all.deb ... 2024-04-18T22:49:20.836 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-04-18T22:49:21.043 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-waitress. 2024-04-18T22:49:21.071 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../047-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-04-18T22:49:21.113 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-04-18T22:49:21.113 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-04-18T22:49:21.122 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-idna. 2024-04-18T22:49:21.138 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../055-python3-idna_3.3-1_all.deb ... 2024-04-18T22:49:21.139 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../060-libsqlite3-mod-ceph_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:21.179 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking libsqlite3-mod-ceph (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:21.180 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-idna (3.3-1) ... 2024-04-18T22:49:21.396 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-tempita. 2024-04-18T22:49:21.412 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../048-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-04-18T22:49:21.446 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-04-18T22:49:21.457 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-bcrypt. 2024-04-18T22:49:21.472 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../061-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-04-18T22:49:21.508 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-urllib3. 2024-04-18T22:49:21.523 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-04-18T22:49:21.535 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../056-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-04-18T22:49:21.575 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-04-18T22:49:21.749 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-paste. 2024-04-18T22:49:21.776 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../049-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-04-18T22:49:21.801 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-openssl. 2024-04-18T22:49:21.815 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-04-18T22:49:21.828 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../062-python3-openssl_21.0.0-1_all.deb ... 2024-04-18T22:49:21.868 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-04-18T22:49:21.903 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-requests. 2024-04-18T22:49:21.930 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../057-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-04-18T22:49:21.969 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-04-18T22:49:22.127 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-04-18T22:49:22.143 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../050-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-04-18T22:49:22.171 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package ceph-mgr. 2024-04-18T22:49:22.176 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-04-18T22:49:22.197 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../063-ceph-mgr_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:22.237 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking ceph-mgr (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:22.281 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-werkzeug. 2024-04-18T22:49:22.308 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../058-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.1_all.deb ... 2024-04-18T22:49:22.347 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-04-18T22:49:22.438 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-pastedeploy. 2024-04-18T22:49:22.465 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../051-python3-pastedeploy_2.1.1-1_all.deb ... 2024-04-18T22:49:22.504 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-04-18T22:49:22.641 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package ceph-mon. 2024-04-18T22:49:22.667 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../064-ceph-mon_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:22.707 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking ceph-mon (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:22.808 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-webtest. 2024-04-18T22:49:22.809 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-04-18T22:49:22.825 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../059-ceph-mgr-modules-core_19.0.0-2369-g1a6a3e74-1jammy_all.deb ... 2024-04-18T22:49:22.835 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../052-python3-webtest_2.0.35-1_all.deb ... 2024-04-18T22:49:22.867 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking ceph-mgr-modules-core (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:22.874 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-04-18T22:49:23.211 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-pecan. 2024-04-18T22:49:23.238 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../053-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-04-18T22:49:23.264 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-04-18T22:49:23.277 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-04-18T22:49:23.291 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../060-libsqlite3-mod-ceph_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:23.330 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking libsqlite3-mod-ceph (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:23.461 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package ceph-osd. 2024-04-18T22:49:23.488 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../065-ceph-osd_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:23.527 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking ceph-osd (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:23.625 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-bcrypt. 2024-04-18T22:49:23.640 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../061-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-04-18T22:49:23.649 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-certifi. 2024-04-18T22:49:23.674 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-04-18T22:49:23.676 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../054-python3-certifi_2020.6.20-1_all.deb ... 2024-04-18T22:49:23.715 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-04-18T22:49:23.969 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-openssl. 2024-04-18T22:49:23.996 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../062-python3-openssl_21.0.0-1_all.deb ... 2024-04-18T22:49:24.026 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-idna. 2024-04-18T22:49:24.036 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-04-18T22:49:24.043 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../055-python3-idna_3.3-1_all.deb ... 2024-04-18T22:49:24.077 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-idna (3.3-1) ... 2024-04-18T22:49:24.363 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-urllib3. 2024-04-18T22:49:24.380 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package ceph-mgr. 2024-04-18T22:49:24.390 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../056-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-04-18T22:49:24.407 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../063-ceph-mgr_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:24.429 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-04-18T22:49:24.447 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking ceph-mgr (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:24.505 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package ceph. 2024-04-18T22:49:24.532 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../066-ceph_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:24.563 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking ceph (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:24.733 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-requests. 2024-04-18T22:49:24.760 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../057-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-04-18T22:49:24.799 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-04-18T22:49:24.850 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package ceph-mon. 2024-04-18T22:49:24.878 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../064-ceph-mon_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:24.883 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package ceph-fuse. 2024-04-18T22:49:24.910 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../067-ceph-fuse_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:24.917 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking ceph-mon (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:24.949 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking ceph-fuse (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:25.119 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-werkzeug. 2024-04-18T22:49:25.146 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../058-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.1_all.deb ... 2024-04-18T22:49:25.186 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-04-18T22:49:25.352 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package ceph-mds. 2024-04-18T22:49:25.379 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../068-ceph-mds_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:25.410 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking ceph-mds (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:25.455 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-04-18T22:49:25.471 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../059-ceph-mgr-modules-core_19.0.0-2369-g1a6a3e74-1jammy_all.deb ... 2024-04-18T22:49:25.513 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking ceph-mgr-modules-core (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:25.612 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package ceph-osd. 2024-04-18T22:49:25.640 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../065-ceph-osd_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:25.670 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking ceph-osd (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:25.805 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package cephadm. 2024-04-18T22:49:25.832 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../069-cephadm_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:25.872 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking cephadm (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:25.901 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-04-18T22:49:25.929 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../060-libsqlite3-mod-ceph_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:25.968 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking libsqlite3-mod-ceph (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:26.191 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-asyncssh. 2024-04-18T22:49:26.207 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../070-python3-asyncssh_2.5.0-1_all.deb ... 2024-04-18T22:49:26.238 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-bcrypt. 2024-04-18T22:49:26.249 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-04-18T22:49:26.265 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../061-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-04-18T22:49:26.295 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-04-18T22:49:26.582 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-openssl. 2024-04-18T22:49:26.585 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python-babel-localedata. 2024-04-18T22:49:26.601 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../071-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-04-18T22:49:26.609 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../062-python3-openssl_21.0.0-1_all.deb ... 2024-04-18T22:49:26.643 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-04-18T22:49:26.648 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-04-18T22:49:26.915 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package ceph. 2024-04-18T22:49:26.942 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../066-ceph_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:26.981 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking ceph (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:27.010 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package ceph-mgr. 2024-04-18T22:49:27.037 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../063-ceph-mgr_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:27.076 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking ceph-mgr (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:27.309 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package ceph-fuse. 2024-04-18T22:49:27.336 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../067-ceph-fuse_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:27.385 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking ceph-fuse (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:27.463 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package ceph-mon. 2024-04-18T22:49:27.490 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../064-ceph-mon_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:27.529 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking ceph-mon (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:27.682 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-babel. 2024-04-18T22:49:27.708 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../072-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-04-18T22:49:27.740 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-04-18T22:49:27.888 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package ceph-mds. 2024-04-18T22:49:27.915 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../068-ceph-mds_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:27.954 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking ceph-mds (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:28.034 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-jinja2. 2024-04-18T22:49:28.061 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../073-python3-jinja2_3.0.3-1ubuntu0.1_all.deb ... 2024-04-18T22:49:28.092 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-04-18T22:49:28.100 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package ceph-osd. 2024-04-18T22:49:28.127 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../065-ceph-osd_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:28.166 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking ceph-osd (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:28.290 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package cephadm. 2024-04-18T22:49:28.306 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../069-cephadm_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:28.340 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking cephadm (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:28.404 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-04-18T22:49:28.419 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../074-ceph-mgr-cephadm_19.0.0-2369-g1a6a3e74-1jammy_all.deb ... 2024-04-18T22:49:28.462 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking ceph-mgr-cephadm (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:28.676 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-asyncssh. 2024-04-18T22:49:28.703 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../070-python3-asyncssh_2.5.0-1_all.deb ... 2024-04-18T22:49:28.743 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-04-18T22:49:28.774 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-repoze.lru. 2024-04-18T22:49:28.800 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../075-python3-repoze.lru_0.7-2_all.deb ... 2024-04-18T22:49:28.840 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-04-18T22:49:29.073 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python-babel-localedata. 2024-04-18T22:49:29.089 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../071-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-04-18T22:49:29.126 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-routes. 2024-04-18T22:49:29.131 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-04-18T22:49:29.142 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../076-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-04-18T22:49:29.210 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-04-18T22:49:29.278 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package ceph. 2024-04-18T22:49:29.302 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../066-ceph_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:29.344 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking ceph (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:29.521 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-04-18T22:49:29.548 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../077-ceph-mgr-dashboard_19.0.0-2369-g1a6a3e74-1jammy_all.deb ... 2024-04-18T22:49:29.579 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking ceph-mgr-dashboard (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:29.647 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package ceph-fuse. 2024-04-18T22:49:29.674 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../067-ceph-fuse_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:29.713 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking ceph-fuse (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:30.067 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package ceph-mds. 2024-04-18T22:49:30.094 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../068-ceph-mds_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:30.125 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking ceph-mds (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:30.169 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-babel. 2024-04-18T22:49:30.186 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../072-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-04-18T22:49:30.219 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-04-18T22:49:30.520 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package cephadm. 2024-04-18T22:49:30.522 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-jinja2. 2024-04-18T22:49:30.538 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../073-python3-jinja2_3.0.3-1ubuntu0.1_all.deb ... 2024-04-18T22:49:30.546 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../069-cephadm_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:30.572 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-04-18T22:49:30.586 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking cephadm (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:30.866 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-04-18T22:49:30.883 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../074-ceph-mgr-cephadm_19.0.0-2369-g1a6a3e74-1jammy_all.deb ... 2024-04-18T22:49:30.916 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking ceph-mgr-cephadm (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:30.959 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-04-18T22:49:30.975 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../078-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-04-18T22:49:31.017 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-04-18T22:49:31.131 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-asyncssh. 2024-04-18T22:49:31.157 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../070-python3-asyncssh_2.5.0-1_all.deb ... 2024-04-18T22:49:31.197 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-04-18T22:49:31.245 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-repoze.lru. 2024-04-18T22:49:31.272 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../075-python3-repoze.lru_0.7-2_all.deb ... 2024-04-18T22:49:31.303 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-04-18T22:49:31.533 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python-babel-localedata. 2024-04-18T22:49:31.538 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-joblib. 2024-04-18T22:49:31.560 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../071-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-04-18T22:49:31.565 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../079-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-04-18T22:49:31.600 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-04-18T22:49:31.604 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-04-18T22:49:31.606 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-routes. 2024-04-18T22:49:31.633 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../076-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-04-18T22:49:31.672 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-04-18T22:49:31.932 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-04-18T22:49:31.948 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../080-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-04-18T22:49:31.982 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-04-18T22:49:32.017 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-04-18T22:49:32.045 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../077-ceph-mgr-dashboard_19.0.0-2369-g1a6a3e74-1jammy_all.deb ... 2024-04-18T22:49:32.084 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking ceph-mgr-dashboard (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:32.277 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-sklearn. 2024-04-18T22:49:32.304 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../081-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-04-18T22:49:32.343 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-04-18T22:49:32.746 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-babel. 2024-04-18T22:49:32.774 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../072-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-04-18T22:49:32.813 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-04-18T22:49:33.027 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-04-18T22:49:33.054 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../082-ceph-mgr-diskprediction-local_19.0.0-2369-g1a6a3e74-1jammy_all.deb ... 2024-04-18T22:49:33.149 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-jinja2. 2024-04-18T22:49:33.176 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../073-python3-jinja2_3.0.3-1ubuntu0.1_all.deb ... 2024-04-18T22:49:33.187 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking ceph-mgr-diskprediction-local (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:33.216 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-04-18T22:49:33.289 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-04-18T22:49:33.305 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../078-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-04-18T22:49:33.339 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-04-18T22:49:33.568 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-04-18T22:49:33.585 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../074-ceph-mgr-cephadm_19.0.0-2369-g1a6a3e74-1jammy_all.deb ... 2024-04-18T22:49:33.627 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking ceph-mgr-cephadm (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:33.817 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-joblib. 2024-04-18T22:49:33.845 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../079-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-04-18T22:49:33.885 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-04-18T22:49:33.972 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-repoze.lru. 2024-04-18T22:49:33.999 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../075-python3-repoze.lru_0.7-2_all.deb ... 2024-04-18T22:49:34.076 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-04-18T22:49:34.212 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-04-18T22:49:34.240 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../080-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-04-18T22:49:34.278 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-04-18T22:49:34.490 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-cachetools. 2024-04-18T22:49:34.491 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-routes. 2024-04-18T22:49:34.507 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../076-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-04-18T22:49:34.518 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../083-python3-cachetools_5.0.0-1_all.deb ... 2024-04-18T22:49:34.541 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-04-18T22:49:34.557 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-04-18T22:49:34.598 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-sklearn. 2024-04-18T22:49:34.625 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../081-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-04-18T22:49:34.664 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-04-18T22:49:34.860 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-pyasn1. 2024-04-18T22:49:34.886 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../084-python3-pyasn1_0.4.8-1_all.deb ... 2024-04-18T22:49:34.919 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-04-18T22:49:34.926 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-04-18T22:49:34.947 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../077-ceph-mgr-dashboard_19.0.0-2369-g1a6a3e74-1jammy_all.deb ... 2024-04-18T22:49:34.986 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking ceph-mgr-dashboard (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:35.246 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-04-18T22:49:35.262 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../085-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-04-18T22:49:35.296 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-04-18T22:49:35.440 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-04-18T22:49:35.468 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../082-ceph-mgr-diskprediction-local_19.0.0-2369-g1a6a3e74-1jammy_all.deb ... 2024-04-18T22:49:35.557 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-rsa. 2024-04-18T22:49:35.584 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../086-python3-rsa_4.8-1_all.deb ... 2024-04-18T22:49:35.592 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking ceph-mgr-diskprediction-local (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:35.624 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-rsa (4.8-1) ... 2024-04-18T22:49:35.944 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-google-auth. 2024-04-18T22:49:35.971 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../087-python3-google-auth_1.5.1-3_all.deb ... 2024-04-18T22:49:36.019 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-04-18T22:49:36.233 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-04-18T22:49:36.249 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../078-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-04-18T22:49:36.291 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-04-18T22:49:36.347 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-04-18T22:49:36.374 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../088-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-04-18T22:49:36.413 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-04-18T22:49:36.570 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-cachetools. 2024-04-18T22:49:36.598 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../083-python3-cachetools_5.0.0-1_all.deb ... 2024-04-18T22:49:36.637 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-04-18T22:49:36.725 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-websocket. 2024-04-18T22:49:36.754 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../089-python3-websocket_1.2.3-1_all.deb ... 2024-04-18T22:49:36.761 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-joblib. 2024-04-18T22:49:36.777 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../079-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-04-18T22:49:36.791 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-04-18T22:49:36.811 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-04-18T22:49:36.948 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-pyasn1. 2024-04-18T22:49:36.976 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../084-python3-pyasn1_0.4.8-1_all.deb ... 2024-04-18T22:49:37.015 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-04-18T22:49:37.111 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-kubernetes. 2024-04-18T22:49:37.138 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../090-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-04-18T22:49:37.156 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-04-18T22:49:37.169 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-04-18T22:49:37.184 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../080-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-04-18T22:49:37.222 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-04-18T22:49:37.334 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-04-18T22:49:37.359 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../085-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-04-18T22:49:37.393 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-04-18T22:49:37.534 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-sklearn. 2024-04-18T22:49:37.561 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../081-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-04-18T22:49:37.600 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-04-18T22:49:37.696 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-rsa. 2024-04-18T22:49:37.724 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../086-python3-rsa_4.8-1_all.deb ... 2024-04-18T22:49:37.762 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-rsa (4.8-1) ... 2024-04-18T22:49:37.883 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-04-18T22:49:37.911 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../091-ceph-mgr-k8sevents_19.0.0-2369-g1a6a3e74-1jammy_all.deb ... 2024-04-18T22:49:37.950 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking ceph-mgr-k8sevents (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:38.033 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-google-auth. 2024-04-18T22:49:38.049 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../087-python3-google-auth_1.5.1-3_all.deb ... 2024-04-18T22:49:38.083 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-04-18T22:49:38.269 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package libonig5:amd64. 2024-04-18T22:49:38.296 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../092-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-04-18T22:49:38.334 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-04-18T22:49:38.335 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-04-18T22:49:38.362 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../082-ceph-mgr-diskprediction-local_19.0.0-2369-g1a6a3e74-1jammy_all.deb ... 2024-04-18T22:49:38.377 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-04-18T22:49:38.405 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../088-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-04-18T22:49:38.444 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-04-18T22:49:38.519 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking ceph-mgr-diskprediction-local (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:38.673 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package libjq1:amd64. 2024-04-18T22:49:38.699 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../093-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-04-18T22:49:38.738 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-04-18T22:49:38.764 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-websocket. 2024-04-18T22:49:38.792 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../089-python3-websocket_1.2.3-1_all.deb ... 2024-04-18T22:49:38.830 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-04-18T22:49:38.974 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package jq. 2024-04-18T22:49:38.990 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../094-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-04-18T22:49:39.041 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-04-18T22:49:39.150 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-kubernetes. 2024-04-18T22:49:39.178 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../090-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-04-18T22:49:39.217 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-04-18T22:49:39.261 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package socat. 2024-04-18T22:49:39.288 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../095-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-04-18T22:49:39.327 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-04-18T22:49:39.506 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-cachetools. 2024-04-18T22:49:39.534 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../083-python3-cachetools_5.0.0-1_all.deb ... 2024-04-18T22:49:39.573 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-04-18T22:49:39.630 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package xmlstarlet. 2024-04-18T22:49:39.658 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../096-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-04-18T22:49:39.696 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-04-18T22:49:39.873 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-04-18T22:49:39.876 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-pyasn1. 2024-04-18T22:49:39.901 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../091-ceph-mgr-k8sevents_19.0.0-2369-g1a6a3e74-1jammy_all.deb ... 2024-04-18T22:49:39.903 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../084-python3-pyasn1_0.4.8-1_all.deb ... 2024-04-18T22:49:39.939 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking ceph-mgr-k8sevents (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:39.942 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-04-18T22:49:40.051 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package ceph-test. 2024-04-18T22:49:40.067 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../097-ceph-test_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:40.109 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking ceph-test (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:40.258 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package libonig5:amd64. 2024-04-18T22:49:40.271 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-04-18T22:49:40.286 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../092-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-04-18T22:49:40.298 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../085-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-04-18T22:49:40.325 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-04-18T22:49:40.337 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-04-18T22:49:40.657 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-rsa. 2024-04-18T22:49:40.661 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package libjq1:amd64. 2024-04-18T22:49:40.684 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../086-python3-rsa_4.8-1_all.deb ... 2024-04-18T22:49:40.689 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../093-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-04-18T22:49:40.723 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-rsa (4.8-1) ... 2024-04-18T22:49:40.727 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-04-18T22:49:40.947 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package jq. 2024-04-18T22:49:40.963 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../094-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-04-18T22:49:40.976 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-google-auth. 2024-04-18T22:49:40.993 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../087-python3-google-auth_1.5.1-3_all.deb ... 2024-04-18T22:49:41.005 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-04-18T22:49:41.026 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-04-18T22:49:41.250 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package socat. 2024-04-18T22:49:41.267 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../095-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-04-18T22:49:41.297 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-04-18T22:49:41.308 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-04-18T22:49:41.324 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../088-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-04-18T22:49:41.363 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-04-18T22:49:41.619 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package xmlstarlet. 2024-04-18T22:49:41.636 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../096-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-04-18T22:49:41.677 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-04-18T22:49:41.683 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-websocket. 2024-04-18T22:49:41.711 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../089-python3-websocket_1.2.3-1_all.deb ... 2024-04-18T22:49:41.749 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-04-18T22:49:42.040 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package ceph-test. 2024-04-18T22:49:42.068 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../097-ceph-test_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:42.086 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-kubernetes. 2024-04-18T22:49:42.106 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking ceph-test (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:42.114 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../090-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-04-18T22:49:42.152 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-04-18T22:49:42.472 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package ceph-volume. 2024-04-18T22:49:42.499 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../098-ceph-volume_19.0.0-2369-g1a6a3e74-1jammy_all.deb ... 2024-04-18T22:49:42.546 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking ceph-volume (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:42.850 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package libcephfs-dev. 2024-04-18T22:49:42.875 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-04-18T22:49:42.878 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../099-libcephfs-dev_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:42.904 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../091-ceph-mgr-k8sevents_19.0.0-2369-g1a6a3e74-1jammy_all.deb ... 2024-04-18T22:49:42.925 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking libcephfs-dev (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:42.941 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking ceph-mgr-k8sevents (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:43.269 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package libonig5:amd64. 2024-04-18T22:49:43.297 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package lua-socket:amd64. 2024-04-18T22:49:43.298 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../092-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-04-18T22:49:43.322 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../100-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-04-18T22:49:43.335 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-04-18T22:49:43.369 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-04-18T22:49:43.622 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package libjq1:amd64. 2024-04-18T22:49:43.650 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../093-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-04-18T22:49:43.680 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-04-18T22:49:43.741 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package lua-sec:amd64. 2024-04-18T22:49:43.768 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../101-lua-sec_1.0.2-1_amd64.deb ... 2024-04-18T22:49:43.807 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-04-18T22:49:43.933 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package jq. 2024-04-18T22:49:43.950 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../094-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-04-18T22:49:43.991 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-04-18T22:49:44.177 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package nvme-cli. 2024-04-18T22:49:44.205 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../102-nvme-cli_1.16-3ubuntu0.1_amd64.deb ... 2024-04-18T22:49:44.244 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package socat. 2024-04-18T22:49:44.244 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking nvme-cli (1.16-3ubuntu0.1) ... 2024-04-18T22:49:44.260 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../095-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-04-18T22:49:44.302 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-04-18T22:49:44.495 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package ceph-volume. 2024-04-18T22:49:44.523 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../098-ceph-volume_19.0.0-2369-g1a6a3e74-1jammy_all.deb ... 2024-04-18T22:49:44.561 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking ceph-volume (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:44.588 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package xmlstarlet. 2024-04-18T22:49:44.605 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../096-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-04-18T22:49:44.646 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-04-18T22:49:44.856 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package libcephfs-dev. 2024-04-18T22:49:44.866 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package pkg-config. 2024-04-18T22:49:44.873 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../099-libcephfs-dev_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:44.894 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../103-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-04-18T22:49:44.906 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking libcephfs-dev (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:44.932 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-04-18T22:49:45.009 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package ceph-test. 2024-04-18T22:49:45.037 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../097-ceph-test_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:45.075 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking ceph-test (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:45.151 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package lua-socket:amd64. 2024-04-18T22:49:45.178 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../100-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-04-18T22:49:45.194 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-04-18T22:49:45.217 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-04-18T22:49:45.221 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../104-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-04-18T22:49:45.260 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-04-18T22:49:45.555 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package lua-sec:amd64. 2024-04-18T22:49:45.583 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../101-lua-sec_1.0.2-1_amd64.deb ... 2024-04-18T22:49:45.621 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-04-18T22:49:45.689 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-iniconfig. 2024-04-18T22:49:45.716 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../105-python3-iniconfig_1.1.1-2_all.deb ... 2024-04-18T22:49:45.755 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-04-18T22:49:46.001 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package nvme-cli. 2024-04-18T22:49:46.024 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-pastescript. 2024-04-18T22:49:46.028 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../102-nvme-cli_1.16-3ubuntu0.1_amd64.deb ... 2024-04-18T22:49:46.040 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../106-python3-pastescript_2.0.2-4_all.deb ... 2024-04-18T22:49:46.067 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking nvme-cli (1.16-3ubuntu0.1) ... 2024-04-18T22:49:46.074 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-04-18T22:49:46.335 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-pluggy. 2024-04-18T22:49:46.363 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../107-python3-pluggy_0.13.0-7.1_all.deb ... 2024-04-18T22:49:46.393 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-04-18T22:49:46.447 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package pkg-config. 2024-04-18T22:49:46.475 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../103-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-04-18T22:49:46.542 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-04-18T22:49:46.705 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-psutil. 2024-04-18T22:49:46.733 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../108-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-04-18T22:49:46.780 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-04-18T22:49:46.809 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-04-18T22:49:46.826 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../104-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-04-18T22:49:46.866 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-04-18T22:49:47.099 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-py. 2024-04-18T22:49:47.127 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../109-python3-py_1.10.0-1_all.deb ... 2024-04-18T22:49:47.166 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-py (1.10.0-1) ... 2024-04-18T22:49:47.253 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-iniconfig. 2024-04-18T22:49:47.269 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../105-python3-iniconfig_1.1.1-2_all.deb ... 2024-04-18T22:49:47.303 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-04-18T22:49:47.461 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-pygments. 2024-04-18T22:49:47.472 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package ceph-volume. 2024-04-18T22:49:47.488 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../110-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-04-18T22:49:47.500 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../098-ceph-volume_19.0.0-2369-g1a6a3e74-1jammy_all.deb ... 2024-04-18T22:49:47.527 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-04-18T22:49:47.538 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking ceph-volume (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:47.589 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-pastescript. 2024-04-18T22:49:47.617 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../106-python3-pastescript_2.0.2-4_all.deb ... 2024-04-18T22:49:47.655 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-04-18T22:49:47.851 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package libcephfs-dev. 2024-04-18T22:49:47.867 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../099-libcephfs-dev_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:47.909 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking libcephfs-dev (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:47.976 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-pluggy. 2024-04-18T22:49:48.004 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../107-python3-pluggy_0.13.0-7.1_all.deb ... 2024-04-18T22:49:48.014 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-pyinotify. 2024-04-18T22:49:48.042 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-04-18T22:49:48.042 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../111-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-04-18T22:49:48.081 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-04-18T22:49:48.228 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package lua-socket:amd64. 2024-04-18T22:49:48.256 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../100-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-04-18T22:49:48.295 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-04-18T22:49:48.337 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-psutil. 2024-04-18T22:49:48.365 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../108-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-04-18T22:49:48.403 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-04-18T22:49:48.417 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-toml. 2024-04-18T22:49:48.444 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../112-python3-toml_0.10.2-1_all.deb ... 2024-04-18T22:49:48.483 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-04-18T22:49:48.633 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package lua-sec:amd64. 2024-04-18T22:49:48.661 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../101-lua-sec_1.0.2-1_amd64.deb ... 2024-04-18T22:49:48.699 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-04-18T22:49:48.748 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-py. 2024-04-18T22:49:48.753 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-pytest. 2024-04-18T22:49:48.775 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../109-python3-py_1.10.0-1_all.deb ... 2024-04-18T22:49:48.780 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../113-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-04-18T22:49:48.811 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-04-18T22:49:48.822 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-py (1.10.0-1) ... 2024-04-18T22:49:49.037 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package nvme-cli. 2024-04-18T22:49:49.065 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../102-nvme-cli_1.16-3ubuntu0.1_amd64.deb ... 2024-04-18T22:49:49.094 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking nvme-cli (1.16-3ubuntu0.1) ... 2024-04-18T22:49:49.143 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-pygments. 2024-04-18T22:49:49.164 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-simplejson. 2024-04-18T22:49:49.171 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../110-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-04-18T22:49:49.192 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../114-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-04-18T22:49:49.209 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-04-18T22:49:49.231 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-04-18T22:49:49.459 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package pkg-config. 2024-04-18T22:49:49.487 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../103-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-04-18T22:49:49.509 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-04-18T22:49:49.516 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-04-18T22:49:49.536 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../115-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-04-18T22:49:49.575 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-04-18T22:49:49.688 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-pyinotify. 2024-04-18T22:49:49.716 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../111-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-04-18T22:49:49.754 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-04-18T22:49:49.769 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-04-18T22:49:49.786 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../104-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-04-18T22:49:49.827 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-04-18T22:49:50.066 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-toml. 2024-04-18T22:49:50.094 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../112-python3-toml_0.10.2-1_all.deb ... 2024-04-18T22:49:50.132 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-04-18T22:49:50.256 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-iniconfig. 2024-04-18T22:49:50.262 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package radosgw. 2024-04-18T22:49:50.284 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../105-python3-iniconfig_1.1.1-2_all.deb ... 2024-04-18T22:49:50.290 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../116-radosgw_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:50.322 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-04-18T22:49:50.328 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking radosgw (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:50.435 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-pytest. 2024-04-18T22:49:50.463 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../113-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-04-18T22:49:50.501 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-04-18T22:49:50.634 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-pastescript. 2024-04-18T22:49:50.662 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../106-python3-pastescript_2.0.2-4_all.deb ... 2024-04-18T22:49:50.700 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-04-18T22:49:50.847 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package python3-simplejson. 2024-04-18T22:49:50.875 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../114-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-04-18T22:49:50.913 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-04-18T22:49:51.012 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-pluggy. 2024-04-18T22:49:51.040 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../107-python3-pluggy_0.13.0-7.1_all.deb ... 2024-04-18T22:49:51.078 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-04-18T22:49:51.132 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package rbd-fuse. 2024-04-18T22:49:51.148 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../117-rbd-fuse_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:51.182 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-04-18T22:49:51.190 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking rbd-fuse (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:51.199 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../115-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-04-18T22:49:51.241 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-04-18T22:49:51.348 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-psutil. 2024-04-18T22:49:51.376 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../108-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-04-18T22:49:51.406 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-04-18T22:49:51.502 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-04-18T22:49:51.751 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-py. 2024-04-18T22:49:51.761 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-04-18T22:49:51.778 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../109-python3-py_1.10.0-1_all.deb ... 2024-04-18T22:49:51.825 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-py (1.10.0-1) ... 2024-04-18T22:49:51.862 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up nvme-cli (1.16-3ubuntu0.1) ... 2024-04-18T22:49:52.003 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package radosgw. 2024-04-18T22:49:52.031 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../116-radosgw_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:52.069 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking radosgw (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:52.125 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-04-18T22:49:52.170 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-pygments. 2024-04-18T22:49:52.198 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../110-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-04-18T22:49:52.237 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-04-18T22:49:52.472 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-04-18T22:49:52.657 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-pyinotify. 2024-04-18T22:49:52.674 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../111-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-04-18T22:49:52.707 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-04-18T22:49:52.873 INFO:teuthology.orchestra.run.smithi069.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-04-18T22:49:52.931 INFO:teuthology.orchestra.run.smithi055.stdout:Selecting previously unselected package rbd-fuse. 2024-04-18T22:49:52.947 INFO:teuthology.orchestra.run.smithi055.stdout:Preparing to unpack .../117-rbd-fuse_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:52.972 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up cephadm (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:52.989 INFO:teuthology.orchestra.run.smithi055.stdout:Unpacking rbd-fuse (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:53.002 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-toml. 2024-04-18T22:49:53.030 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../112-python3-toml_0.10.2-1_all.deb ... 2024-04-18T22:49:53.068 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-04-18T22:49:53.286 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-04-18T22:49:53.371 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-pytest. 2024-04-18T22:49:53.388 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../113-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-04-18T22:49:53.429 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-04-18T22:49:53.548 INFO:teuthology.orchestra.run.smithi069.stdout:Adding system user cephadm....done 2024-04-18T22:49:53.585 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-04-18T22:49:53.711 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up nvme-cli (1.16-3ubuntu0.1) ... 2024-04-18T22:49:53.722 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-04-18T22:49:53.774 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package python3-simplejson. 2024-04-18T22:49:53.803 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../114-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-04-18T22:49:53.857 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-04-18T22:49:53.981 INFO:teuthology.orchestra.run.smithi055.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-04-18T22:49:54.135 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-04-18T22:49:54.157 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-04-18T22:49:54.164 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../115-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-04-18T22:49:54.202 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-04-18T22:49:54.309 INFO:teuthology.orchestra.run.smithi055.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-04-18T22:49:54.408 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-04-18T22:49:54.534 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-04-18T22:49:54.758 INFO:teuthology.orchestra.run.smithi055.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-04-18T22:49:54.793 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-04-18T22:49:54.830 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up cephadm (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:54.981 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package radosgw. 2024-04-18T22:49:55.009 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../116-radosgw_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:55.036 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-04-18T22:49:55.047 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking radosgw (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:55.154 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-py (1.10.0-1) ... 2024-04-18T22:49:55.342 INFO:teuthology.orchestra.run.smithi055.stdout:Adding system user cephadm....done 2024-04-18T22:49:55.464 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-04-18T22:49:55.494 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-04-18T22:49:55.771 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-04-18T22:49:55.824 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-04-18T22:49:55.884 INFO:teuthology.orchestra.run.smithi016.stdout:Selecting previously unselected package rbd-fuse. 2024-04-18T22:49:55.912 INFO:teuthology.orchestra.run.smithi016.stdout:Preparing to unpack .../117-rbd-fuse_19.0.0-2369-g1a6a3e74-1jammy_amd64.deb ... 2024-04-18T22:49:55.950 INFO:teuthology.orchestra.run.smithi016.stdout:Unpacking rbd-fuse (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:56.030 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-04-18T22:49:56.083 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-04-18T22:49:56.165 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-04-18T22:49:56.247 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-04-18T22:49:56.335 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-04-18T22:49:56.416 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-04-18T22:49:56.505 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-04-18T22:49:56.544 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-04-18T22:49:56.631 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up nvme-cli (1.16-3ubuntu0.1) ... 2024-04-18T22:49:56.659 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-04-18T22:49:56.760 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-py (1.10.0-1) ... 2024-04-18T22:49:56.804 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-04-18T22:49:56.897 INFO:teuthology.orchestra.run.smithi016.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-04-18T22:49:57.053 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-04-18T22:49:57.066 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-04-18T22:49:57.248 INFO:teuthology.orchestra.run.smithi016.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-04-18T22:49:57.382 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-ceph-argparse (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:57.414 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-04-18T22:49:57.673 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-04-18T22:49:57.674 INFO:teuthology.orchestra.run.smithi016.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-04-18T22:49:57.750 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up cephadm (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:57.750 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-04-18T22:49:57.877 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-04-18T22:49:57.933 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-04-18T22:49:57.978 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-04-18T22:49:58.078 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-04-18T22:49:58.209 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-04-18T22:49:58.250 INFO:teuthology.orchestra.run.smithi016.stdout:Adding system user cephadm....done 2024-04-18T22:49:58.321 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-04-18T22:49:58.380 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-04-18T22:49:58.602 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-04-18T22:49:58.673 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-04-18T22:49:58.692 INFO:teuthology.orchestra.run.smithi069.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-04-18T22:49:58.719 INFO:teuthology.orchestra.run.smithi069.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-04-18T22:49:58.791 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-04-18T22:49:58.862 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-04-18T22:49:58.908 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-04-18T22:49:58.917 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-04-18T22:49:59.018 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-04-18T22:49:59.121 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-ceph-argparse (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:49:59.260 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-04-18T22:49:59.277 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-04-18T22:49:59.361 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-04-18T22:49:59.397 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-04-18T22:49:59.523 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-04-18T22:49:59.536 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-04-18T22:49:59.663 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-py (1.10.0-1) ... 2024-04-18T22:49:59.720 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-04-18T22:49:59.799 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-04-18T22:49:59.900 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-04-18T22:50:00.006 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-04-18T22:50:00.151 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-04-18T22:50:00.263 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-04-18T22:50:00.375 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-04-18T22:50:00.521 INFO:teuthology.orchestra.run.smithi055.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-04-18T22:50:00.548 INFO:teuthology.orchestra.run.smithi055.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-04-18T22:50:00.564 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up zip (3.0-12build2) ... 2024-04-18T22:50:00.609 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-04-18T22:50:00.612 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-04-18T22:50:00.699 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-04-18T22:50:00.739 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-04-18T22:50:00.877 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-04-18T22:50:01.115 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-04-18T22:50:01.129 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-04-18T22:50:01.241 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-04-18T22:50:01.376 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-04-18T22:50:01.405 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-04-18T22:50:01.509 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-04-18T22:50:01.618 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-04-18T22:50:01.714 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-04-18T22:50:01.719 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-04-18T22:50:01.768 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-04-18T22:50:01.820 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-04-18T22:50:01.974 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-ceph-argparse (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:02.053 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up zip (3.0-12build2) ... 2024-04-18T22:50:02.096 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-04-18T22:50:02.178 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-04-18T22:50:02.376 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-04-18T22:50:02.481 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-04-18T22:50:02.524 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-04-18T22:50:02.732 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-04-18T22:50:02.905 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-04-18T22:50:02.937 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-04-18T22:50:03.063 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-04-18T22:50:03.101 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-04-18T22:50:03.174 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-04-18T22:50:03.275 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-04-18T22:50:03.322 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-04-18T22:50:03.375 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-04-18T22:50:03.384 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-04-18T22:50:03.692 INFO:teuthology.orchestra.run.smithi016.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-04-18T22:50:03.693 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-04-18T22:50:03.721 INFO:teuthology.orchestra.run.smithi016.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-04-18T22:50:03.744 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-04-18T22:50:03.776 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-04-18T22:50:03.910 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-04-18T22:50:03.979 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-04-18T22:50:04.094 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-04-18T22:50:04.104 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-ceph-common (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:04.278 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-04-18T22:50:04.345 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-04-18T22:50:04.404 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-04-18T22:50:04.405 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-idna (3.3-1) ... 2024-04-18T22:50:04.680 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-04-18T22:50:04.724 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-04-18T22:50:04.742 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-04-18T22:50:04.956 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-04-18T22:50:05.040 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-04-18T22:50:05.291 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up zip (3.0-12build2) ... 2024-04-18T22:50:05.408 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-04-18T22:50:05.416 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-04-18T22:50:05.642 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-04-18T22:50:05.793 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-ceph-common (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:05.854 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-04-18T22:50:06.097 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-18T22:50:06.103 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-idna (3.3-1) ... 2024-04-18T22:50:06.110 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-04-18T22:50:06.232 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-toml (0.10.2-1) ... 2024-04-18T22:50:06.378 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-04-18T22:50:06.421 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-04-18T22:50:06.499 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-04-18T22:50:06.504 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-04-18T22:50:06.617 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-04-18T22:50:06.646 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-04-18T22:50:06.718 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-04-18T22:50:06.948 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-04-18T22:50:07.011 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-04-18T22:50:07.270 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-04-18T22:50:07.349 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-04-18T22:50:07.521 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-18T22:50:07.592 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-04-18T22:50:07.635 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-04-18T22:50:07.672 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-04-18T22:50:07.878 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-18T22:50:07.960 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-04-18T22:50:07.982 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-04-18T22:50:08.012 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-toml (0.10.2-1) ... 2024-04-18T22:50:08.242 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-04-18T22:50:08.280 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-04-18T22:50:08.312 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-04-18T22:50:08.406 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-04-18T22:50:08.509 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-04-18T22:50:08.516 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-04-18T22:50:08.663 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-04-18T22:50:08.744 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-04-18T22:50:08.825 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-04-18T22:50:08.922 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-04-18T22:50:08.978 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-04-18T22:50:09.048 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-ceph-common (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:09.077 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-04-18T22:50:09.221 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-04-18T22:50:09.319 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-18T22:50:09.347 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-04-18T22:50:09.366 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-idna (3.3-1) ... 2024-04-18T22:50:09.445 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-04-18T22:50:09.640 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-04-18T22:50:09.675 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-04-18T22:50:09.755 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-04-18T22:50:09.765 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-04-18T22:50:10.023 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-04-18T22:50:10.058 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-webob (1:1.8.6-1.1) ... 2024-04-18T22:50:10.291 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-04-18T22:50:10.342 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-04-18T22:50:10.550 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-04-18T22:50:10.586 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-04-18T22:50:10.687 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-04-18T22:50:10.785 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-04-18T22:50:10.787 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-04-18T22:50:10.848 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-04-18T22:50:10.876 INFO:teuthology.orchestra.run.smithi069.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-04-18T22:50:11.044 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-04-18T22:50:11.114 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-04-18T22:50:11.116 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-18T22:50:11.170 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-04-18T22:50:11.225 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-toml (0.10.2-1) ... 2024-04-18T22:50:11.240 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-04-18T22:50:11.462 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-04-18T22:50:11.468 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-04-18T22:50:11.588 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-04-18T22:50:11.594 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-04-18T22:50:11.633 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-04-18T22:50:11.720 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-04-18T22:50:11.884 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up lua-any (27ubuntu1) ... 2024-04-18T22:50:11.898 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-webob (1:1.8.6-1.1) ... 2024-04-18T22:50:11.985 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-portend (3.0.0-1) ... 2024-04-18T22:50:12.030 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-04-18T22:50:12.199 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-04-18T22:50:12.219 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-18T22:50:12.289 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-04-18T22:50:12.320 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-04-18T22:50:12.442 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-04-18T22:50:12.540 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-18T22:50:12.543 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-04-18T22:50:12.630 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-04-18T22:50:12.650 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-04-18T22:50:12.652 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-04-18T22:50:12.742 INFO:teuthology.orchestra.run.smithi055.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-04-18T22:50:12.922 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-04-18T22:50:12.934 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-04-18T22:50:12.996 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-04-18T22:50:13.122 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-04-18T22:50:13.190 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-04-18T22:50:13.211 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-04-18T22:50:13.316 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-rsa (4.8-1) ... 2024-04-18T22:50:13.470 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-04-18T22:50:13.515 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-04-18T22:50:13.567 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-04-18T22:50:13.746 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-04-18T22:50:13.774 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up lua-any (27ubuntu1) ... 2024-04-18T22:50:13.818 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-04-18T22:50:13.875 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-portend (3.0.0-1) ... 2024-04-18T22:50:14.039 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-04-18T22:50:14.118 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-18T22:50:14.172 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-04-18T22:50:14.227 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-04-18T22:50:14.323 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-04-18T22:50:14.449 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-04-18T22:50:14.545 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-04-18T22:50:14.548 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-04-18T22:50:14.742 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-04-18T22:50:14.842 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-04-18T22:50:14.854 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-04-18T22:50:14.876 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-04-18T22:50:15.139 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-04-18T22:50:15.169 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-04-18T22:50:15.178 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-webob (1:1.8.6-1.1) ... 2024-04-18T22:50:15.265 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-rsa (4.8-1) ... 2024-04-18T22:50:15.320 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up librados2 (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:15.446 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up libsqlite3-mod-ceph (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:15.479 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-04-18T22:50:15.533 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-04-18T22:50:15.572 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-04-18T22:50:15.738 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-04-18T22:50:15.792 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-04-18T22:50:15.864 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-04-18T22:50:15.908 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up libcephfs2 (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:15.990 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-04-18T22:50:16.043 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up libradosstriper1 (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:16.078 INFO:teuthology.orchestra.run.smithi016.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-04-18T22:50:16.120 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-04-18T22:50:16.144 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-04-18T22:50:16.317 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-04-18T22:50:16.396 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up librbd1 (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:16.443 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-04-18T22:50:16.505 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-04-18T22:50:16.521 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up ceph-mgr-modules-core (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:16.647 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up ceph-fuse (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:16.802 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-04-18T22:50:16.859 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-04-18T22:50:16.867 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-04-18T22:50:16.867 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-04-18T22:50:17.129 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up lua-any (27ubuntu1) ... 2024-04-18T22:50:17.135 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-04-18T22:50:17.255 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-portend (3.0.0-1) ... 2024-04-18T22:50:17.302 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up librados2 (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:17.341 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up libcephfs-dev (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:17.445 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up libsqlite3-mod-ceph (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:17.466 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-rados (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:17.522 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-18T22:50:17.571 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-04-18T22:50:17.592 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up librgw2 (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:17.632 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-04-18T22:50:17.701 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-04-18T22:50:17.941 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-04-18T22:50:17.943 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up libcephfs2 (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:18.095 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up libradosstriper1 (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:18.237 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-04-18T22:50:18.351 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-04-18T22:50:18.514 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up librbd1 (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:18.642 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up ceph-mgr-modules-core (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:18.660 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-04-18T22:50:18.766 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up ceph-fuse (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:18.786 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-rsa (4.8-1) ... 2024-04-18T22:50:18.872 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-rbd (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:18.967 INFO:teuthology.orchestra.run.smithi055.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-04-18T22:50:18.967 INFO:teuthology.orchestra.run.smithi055.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-04-18T22:50:18.998 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up rbd-fuse (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:19.062 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-04-18T22:50:19.149 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-rgw (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:19.275 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-cephfs (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:19.338 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-04-18T22:50:19.401 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up ceph-common (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:19.468 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up libcephfs-dev (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:19.636 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-rados (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:19.708 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-04-18T22:50:19.787 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up librgw2 (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:19.868 INFO:teuthology.orchestra.run.smithi069.stdout:Adding group ceph....done 2024-04-18T22:50:19.913 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-04-18T22:50:20.094 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-04-18T22:50:20.279 INFO:teuthology.orchestra.run.smithi069.stdout:Adding system user ceph....done 2024-04-18T22:50:20.395 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-04-18T22:50:20.447 INFO:teuthology.orchestra.run.smithi069.stdout:Setting system user ceph properties....done 2024-04-18T22:50:20.462 INFO:teuthology.orchestra.run.smithi069.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-04-18T22:50:20.599 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-04-18T22:50:20.756 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-04-18T22:50:20.882 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up librados2 (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:20.926 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-04-18T22:50:21.000 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up libsqlite3-mod-ceph (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:21.101 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-04-18T22:50:21.184 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-rbd (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:21.302 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up rbd-fuse (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:21.385 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up ceph-test (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:21.420 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up libcephfs2 (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:21.428 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-rgw (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:21.486 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up radosgw (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:21.546 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up libradosstriper1 (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:21.554 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up python3-cephfs (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:21.672 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-04-18T22:50:21.680 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up ceph-common (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:21.957 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up librbd1 (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:21.961 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-04-18T22:50:21.961 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-04-18T22:50:22.075 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up ceph-mgr-modules-core (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:22.193 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up ceph-fuse (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:22.215 INFO:teuthology.orchestra.run.smithi055.stdout:Adding group ceph....done 2024-04-18T22:50:22.412 INFO:teuthology.orchestra.run.smithi016.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-04-18T22:50:22.412 INFO:teuthology.orchestra.run.smithi016.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-04-18T22:50:22.438 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up ceph-base (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:22.601 INFO:teuthology.orchestra.run.smithi055.stdout:Adding system user ceph....done 2024-04-18T22:50:22.762 INFO:teuthology.orchestra.run.smithi055.stdout:Setting system user ceph properties....done 2024-04-18T22:50:22.781 INFO:teuthology.orchestra.run.smithi055.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-04-18T22:50:22.800 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-04-18T22:50:22.895 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up libcephfs-dev (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:22.923 INFO:teuthology.orchestra.run.smithi055.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-04-18T22:50:23.037 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-rados (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:23.252 INFO:teuthology.orchestra.run.smithi055.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-04-18T22:50:23.256 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up ceph-mds (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:23.492 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-04-18T22:50:23.492 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-04-18T22:50:23.522 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up librgw2 (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:23.656 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-04-18T22:50:23.733 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up ceph-test (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:23.885 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up radosgw (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:23.983 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up ceph-mgr (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:24.193 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-04-18T22:50:24.194 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-04-18T22:50:24.417 INFO:teuthology.orchestra.run.smithi055.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-04-18T22:50:24.417 INFO:teuthology.orchestra.run.smithi055.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-04-18T22:50:24.693 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up ceph-osd (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:24.912 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up ceph-base (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:24.935 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-rbd (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:24.939 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-04-18T22:50:24.939 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-04-18T22:50:25.061 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up rbd-fuse (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:25.187 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-rgw (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:25.313 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up python3-cephfs (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:25.314 INFO:teuthology.orchestra.run.smithi055.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-04-18T22:50:25.436 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up ceph-mgr-k8sevents (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:25.439 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up ceph-common (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:25.562 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up ceph-mgr-diskprediction-local (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:25.714 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up ceph-mon (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:25.831 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up ceph-mds (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:25.932 INFO:teuthology.orchestra.run.smithi016.stdout:Adding group ceph....done 2024-04-18T22:50:25.940 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-04-18T22:50:25.940 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-04-18T22:50:26.078 INFO:teuthology.orchestra.run.smithi055.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-04-18T22:50:26.078 INFO:teuthology.orchestra.run.smithi055.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-04-18T22:50:26.268 INFO:teuthology.orchestra.run.smithi016.stdout:Adding system user ceph....done 2024-04-18T22:50:26.415 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up ceph-mgr-cephadm (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:26.427 INFO:teuthology.orchestra.run.smithi016.stdout:Setting system user ceph properties....done 2024-04-18T22:50:26.439 INFO:teuthology.orchestra.run.smithi016.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-04-18T22:50:26.567 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up ceph-mgr (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:26.582 INFO:teuthology.orchestra.run.smithi016.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-04-18T22:50:26.583 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up ceph (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:26.692 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up ceph-mgr-dashboard (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:26.797 INFO:teuthology.orchestra.run.smithi055.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-04-18T22:50:26.797 INFO:teuthology.orchestra.run.smithi055.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-04-18T22:50:26.843 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up ceph-volume (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:26.882 INFO:teuthology.orchestra.run.smithi016.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-04-18T22:50:27.179 INFO:teuthology.orchestra.run.smithi069.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-04-18T22:50:27.280 INFO:teuthology.orchestra.run.smithi069.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-04-18T22:50:27.301 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up ceph-osd (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:27.349 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up ceph-test (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:27.432 INFO:teuthology.orchestra.run.smithi069.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-04-18T22:50:27.450 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up radosgw (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:27.603 INFO:teuthology.orchestra.run.smithi055.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-04-18T22:50:27.603 INFO:teuthology.orchestra.run.smithi055.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-04-18T22:50:27.911 INFO:teuthology.orchestra.run.smithi016.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-04-18T22:50:27.911 INFO:teuthology.orchestra.run.smithi016.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-04-18T22:50:28.095 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up ceph-mgr-k8sevents (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:28.221 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up ceph-mgr-diskprediction-local (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:28.381 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up ceph-mon (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:28.427 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up ceph-base (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:28.558 INFO:teuthology.orchestra.run.smithi069.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-04-18T22:50:28.597 INFO:teuthology.orchestra.run.smithi055.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-04-18T22:50:28.597 INFO:teuthology.orchestra.run.smithi055.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-04-18T22:50:28.777 INFO:teuthology.orchestra.run.smithi016.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-04-18T22:50:29.107 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up ceph-mgr-cephadm (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:29.206 INFO:teuthology.orchestra.run.smithi069.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-04-18T22:50:29.211 DEBUG:teuthology.parallel:result is None 2024-04-18T22:50:29.237 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up ceph-mds (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:29.258 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up ceph (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:29.470 INFO:teuthology.orchestra.run.smithi016.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-04-18T22:50:29.471 INFO:teuthology.orchestra.run.smithi016.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-04-18T22:50:29.896 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up ceph-mgr-dashboard (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:29.931 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up ceph-mgr (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:30.047 INFO:teuthology.orchestra.run.smithi055.stdout:Setting up ceph-volume (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:30.146 INFO:teuthology.orchestra.run.smithi016.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-04-18T22:50:30.146 INFO:teuthology.orchestra.run.smithi016.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-04-18T22:50:30.400 INFO:teuthology.orchestra.run.smithi055.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-04-18T22:50:30.509 INFO:teuthology.orchestra.run.smithi055.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-04-18T22:50:30.598 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up ceph-osd (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:30.670 INFO:teuthology.orchestra.run.smithi055.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-04-18T22:50:30.866 INFO:teuthology.orchestra.run.smithi016.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-04-18T22:50:30.866 INFO:teuthology.orchestra.run.smithi016.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-04-18T22:50:31.333 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up ceph-mgr-k8sevents (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:31.434 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up ceph-mgr-diskprediction-local (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:31.569 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up ceph-mon (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:31.780 INFO:teuthology.orchestra.run.smithi016.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-04-18T22:50:31.780 INFO:teuthology.orchestra.run.smithi016.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-04-18T22:50:31.814 INFO:teuthology.orchestra.run.smithi055.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-04-18T22:50:32.262 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up ceph-mgr-cephadm (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:32.413 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up ceph (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:32.486 INFO:teuthology.orchestra.run.smithi055.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-04-18T22:50:32.491 DEBUG:teuthology.parallel:result is None 2024-04-18T22:50:32.539 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up ceph-mgr-dashboard (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:32.765 INFO:teuthology.orchestra.run.smithi016.stdout:Setting up ceph-volume (19.0.0-2369-g1a6a3e74-1jammy) ... 2024-04-18T22:50:33.243 INFO:teuthology.orchestra.run.smithi016.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-04-18T22:50:33.352 INFO:teuthology.orchestra.run.smithi016.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-04-18T22:50:33.686 INFO:teuthology.orchestra.run.smithi016.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-04-18T22:50:34.825 INFO:teuthology.orchestra.run.smithi016.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-04-18T22:50:35.497 INFO:teuthology.orchestra.run.smithi016.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-04-18T22:50:35.501 DEBUG:teuthology.parallel:result is None 2024-04-18T22:50:35.502 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=1a6a3e742fd81c6d70be70552499bff767652c32 2024-04-18T22:50:35.724 DEBUG:teuthology.orchestra.run.smithi016:> dpkg-query -W -f '${Version}' ceph 2024-04-18T22:50:35.745 INFO:teuthology.orchestra.run.smithi016.stdout:19.0.0-2369-g1a6a3e74-1jammy 2024-04-18T22:50:35.746 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-2369-g1a6a3e74-1jammy 2024-04-18T22:50:35.746 INFO:teuthology.task.install:The correct ceph version 19.0.0-2369-g1a6a3e74-1jammy is installed. 2024-04-18T22:50:35.748 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=1a6a3e742fd81c6d70be70552499bff767652c32 2024-04-18T22:50:35.889 DEBUG:teuthology.orchestra.run.smithi055:> dpkg-query -W -f '${Version}' ceph 2024-04-18T22:50:35.909 INFO:teuthology.orchestra.run.smithi055.stdout:19.0.0-2369-g1a6a3e74-1jammy 2024-04-18T22:50:35.910 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-2369-g1a6a3e74-1jammy 2024-04-18T22:50:35.910 INFO:teuthology.task.install:The correct ceph version 19.0.0-2369-g1a6a3e74-1jammy is installed. 2024-04-18T22:50:35.911 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=1a6a3e742fd81c6d70be70552499bff767652c32 2024-04-18T22:50:36.054 DEBUG:teuthology.orchestra.run.smithi069:> dpkg-query -W -f '${Version}' ceph 2024-04-18T22:50:36.073 INFO:teuthology.orchestra.run.smithi069.stdout:19.0.0-2369-g1a6a3e74-1jammy 2024-04-18T22:50:36.074 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-2369-g1a6a3e74-1jammy 2024-04-18T22:50:36.074 INFO:teuthology.task.install:The correct ceph version 19.0.0-2369-g1a6a3e74-1jammy is installed. 2024-04-18T22:50:36.076 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2024-04-18T22:50:36.076 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-18T22:50:36.076 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-18T22:50:36.092 DEBUG:teuthology.orchestra.run.smithi055:> set -ex 2024-04-18T22:50:36.092 DEBUG:teuthology.orchestra.run.smithi055:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-18T22:50:36.107 DEBUG:teuthology.orchestra.run.smithi069:> set -ex 2024-04-18T22:50:36.107 DEBUG:teuthology.orchestra.run.smithi069:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-18T22:50:36.131 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2024-04-18T22:50:36.131 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-18T22:50:36.131 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd of=/usr/bin/daemon-helper 2024-04-18T22:50:36.149 DEBUG:teuthology.orchestra.run.smithi016:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-18T22:50:36.204 DEBUG:teuthology.orchestra.run.smithi055:> set -ex 2024-04-18T22:50:36.205 DEBUG:teuthology.orchestra.run.smithi055:> sudo dd of=/usr/bin/daemon-helper 2024-04-18T22:50:36.219 DEBUG:teuthology.orchestra.run.smithi055:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-18T22:50:36.275 DEBUG:teuthology.orchestra.run.smithi069:> set -ex 2024-04-18T22:50:36.275 DEBUG:teuthology.orchestra.run.smithi069:> sudo dd of=/usr/bin/daemon-helper 2024-04-18T22:50:36.289 DEBUG:teuthology.orchestra.run.smithi069:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-18T22:50:36.343 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2024-04-18T22:50:36.343 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-18T22:50:36.343 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-18T22:50:36.357 DEBUG:teuthology.orchestra.run.smithi016:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-18T22:50:36.412 DEBUG:teuthology.orchestra.run.smithi055:> set -ex 2024-04-18T22:50:36.412 DEBUG:teuthology.orchestra.run.smithi055:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-18T22:50:36.426 DEBUG:teuthology.orchestra.run.smithi055:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-18T22:50:36.482 DEBUG:teuthology.orchestra.run.smithi069:> set -ex 2024-04-18T22:50:36.482 DEBUG:teuthology.orchestra.run.smithi069:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-18T22:50:36.495 DEBUG:teuthology.orchestra.run.smithi069:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-18T22:50:36.550 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2024-04-18T22:50:36.551 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-18T22:50:36.551 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd of=/usr/bin/stdin-killer 2024-04-18T22:50:36.565 DEBUG:teuthology.orchestra.run.smithi016:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-18T22:50:36.620 DEBUG:teuthology.orchestra.run.smithi055:> set -ex 2024-04-18T22:50:36.620 DEBUG:teuthology.orchestra.run.smithi055:> sudo dd of=/usr/bin/stdin-killer 2024-04-18T22:50:36.635 DEBUG:teuthology.orchestra.run.smithi055:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-18T22:50:36.690 DEBUG:teuthology.orchestra.run.smithi069:> set -ex 2024-04-18T22:50:36.690 DEBUG:teuthology.orchestra.run.smithi069:> sudo dd of=/usr/bin/stdin-killer 2024-04-18T22:50:36.703 DEBUG:teuthology.orchestra.run.smithi069:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-18T22:50:36.757 INFO:teuthology.run_tasks:Running task cephadm... 2024-04-18T22:50:36.861 INFO:tasks.cephadm:Config: {'conf': {'global': {'mon election default strategy': 1}, 'mgr': {'debug mgr': 20, 'debug ms': 1, 'mgr/cephadm/use_agent': False}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)', 'MON_DOWN'], 'log-only-match': ['CEPHADM_'], 'sha1': '1a6a3e742fd81c6d70be70552499bff767652c32'} 2024-04-18T22:50:36.862 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 2024-04-18T22:50:36.862 INFO:tasks.cephadm:Cluster fsid is 1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T22:50:36.862 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-04-18T22:50:36.862 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '172.21.15.16', 'mon.b': '172.21.15.55', 'mon.c': '172.21.15.69'} 2024-04-18T22:50:36.863 INFO:tasks.cephadm:First mon is mon.a on smithi016 2024-04-18T22:50:36.863 INFO:tasks.cephadm:First mgr is a 2024-04-18T22:50:36.863 INFO:tasks.cephadm:Normalizing hostnames... 2024-04-18T22:50:36.863 DEBUG:teuthology.orchestra.run.smithi016:> sudo hostname $(hostname -s) 2024-04-18T22:50:36.877 DEBUG:teuthology.orchestra.run.smithi055:> sudo hostname $(hostname -s) 2024-04-18T22:50:36.892 DEBUG:teuthology.orchestra.run.smithi069:> sudo hostname $(hostname -s) 2024-04-18T22:50:36.906 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-04-18T22:50:36.906 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=1a6a3e742fd81c6d70be70552499bff767652c32 2024-04-18T22:50:37.126 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': '1a6a3e742fd81c6d70be70552499bff767652c32', '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/54928/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.0.0-2369-g1a6a3e74', 'node_name': '172.21.2.13+braggi13', '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-2369-g1a6a3e74-1jammy'}, 'url': 'https://3.chacra.ceph.com/r/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default/', 'distro_codename': 'jammy', 'modified': '2024-04-18 01:26:06.022500', 'distro_version': '22.04', 'project': 'ceph', 'flavor': 'default', 'ref': 'squid', 'chacra_url': 'https://3.chacra.ceph.com/repos/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/flavors/default/', 'archs': ['x86_64'], 'distro': 'ubuntu'}] 2024-04-18T22:50:37.342 INFO:tasks.util.chacra:got chacra host 3.chacra.ceph.com, ref squid, sha1 1a6a3e742fd81c6d70be70552499bff767652c32 from https://shaman.ceph.com/api/search/?project=ceph&distros=ubuntu%2F22.04%2Fx86_64&flavor=default&sha1=1a6a3e742fd81c6d70be70552499bff767652c32 2024-04-18T22:50:37.343 INFO:tasks.cephadm:Discovered cachra url: https://3.chacra.ceph.com/binaries/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-04-18T22:50:37.343 DEBUG:teuthology.orchestra.run.smithi016:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-18T22:50:37.946 INFO:teuthology.orchestra.run.smithi016.stdout:-rw-rw-r-- 1 ubuntu ubuntu 788764 Apr 18 22:50 /home/ubuntu/cephtest/cephadm 2024-04-18T22:50:37.946 DEBUG:teuthology.orchestra.run.smithi055:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-18T22:50:38.626 INFO:teuthology.orchestra.run.smithi055.stdout:-rw-rw-r-- 1 ubuntu ubuntu 788764 Apr 18 22:50 /home/ubuntu/cephtest/cephadm 2024-04-18T22:50:38.627 DEBUG:teuthology.orchestra.run.smithi069:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/squid/1a6a3e742fd81c6d70be70552499bff767652c32/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-18T22:50:39.071 INFO:teuthology.orchestra.run.smithi069.stdout:-rw-rw-r-- 1 ubuntu ubuntu 788764 Apr 18 22:50 /home/ubuntu/cephtest/cephadm 2024-04-18T22:50:39.071 DEBUG:teuthology.orchestra.run.smithi016:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-18T22:50:39.080 DEBUG:teuthology.orchestra.run.smithi055:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-18T22:50:39.087 DEBUG:teuthology.orchestra.run.smithi069:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-18T22:50:39.108 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 on all hosts... 2024-04-18T22:50:39.108 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 pull 2024-04-18T22:50:39.125 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 pull 2024-04-18T22:50:39.130 DEBUG:teuthology.orchestra.run.smithi069:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 pull 2024-04-18T22:50:39.298 INFO:teuthology.orchestra.run.smithi016.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32... 2024-04-18T22:50:39.301 INFO:teuthology.orchestra.run.smithi055.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32... 2024-04-18T22:50:39.304 INFO:teuthology.orchestra.run.smithi069.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32... 2024-04-18T22:52:15.027 INFO:teuthology.orchestra.run.smithi069.stdout:{ 2024-04-18T22:52:15.028 INFO:teuthology.orchestra.run.smithi069.stdout: "ceph_version": "ceph version 19.0.0-2369-g1a6a3e74 (1a6a3e742fd81c6d70be70552499bff767652c32) squid (dev)", 2024-04-18T22:52:15.028 INFO:teuthology.orchestra.run.smithi069.stdout: "image_id": "adc0eab240f3833dc9a95e84035635dda8a2c78880e307ffd46bec6a045e065f", 2024-04-18T22:52:15.028 INFO:teuthology.orchestra.run.smithi069.stdout: "repo_digests": [ 2024-04-18T22:52:15.028 INFO:teuthology.orchestra.run.smithi069.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:10dfe16719e1e9750e7bc8b7d4f474b4b7f5bd2541f4fec161dd767c272bf9a0" 2024-04-18T22:52:15.028 INFO:teuthology.orchestra.run.smithi069.stdout: ] 2024-04-18T22:52:15.028 INFO:teuthology.orchestra.run.smithi069.stdout:} 2024-04-18T22:52:15.346 INFO:teuthology.orchestra.run.smithi055.stdout:{ 2024-04-18T22:52:15.347 INFO:teuthology.orchestra.run.smithi055.stdout: "ceph_version": "ceph version 19.0.0-2369-g1a6a3e74 (1a6a3e742fd81c6d70be70552499bff767652c32) squid (dev)", 2024-04-18T22:52:15.347 INFO:teuthology.orchestra.run.smithi055.stdout: "image_id": "adc0eab240f3833dc9a95e84035635dda8a2c78880e307ffd46bec6a045e065f", 2024-04-18T22:52:15.347 INFO:teuthology.orchestra.run.smithi055.stdout: "repo_digests": [ 2024-04-18T22:52:15.347 INFO:teuthology.orchestra.run.smithi055.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:10dfe16719e1e9750e7bc8b7d4f474b4b7f5bd2541f4fec161dd767c272bf9a0" 2024-04-18T22:52:15.347 INFO:teuthology.orchestra.run.smithi055.stdout: ] 2024-04-18T22:52:15.347 INFO:teuthology.orchestra.run.smithi055.stdout:} 2024-04-18T22:52:16.458 INFO:teuthology.orchestra.run.smithi016.stdout:{ 2024-04-18T22:52:16.459 INFO:teuthology.orchestra.run.smithi016.stdout: "ceph_version": "ceph version 19.0.0-2369-g1a6a3e74 (1a6a3e742fd81c6d70be70552499bff767652c32) squid (dev)", 2024-04-18T22:52:16.459 INFO:teuthology.orchestra.run.smithi016.stdout: "image_id": "adc0eab240f3833dc9a95e84035635dda8a2c78880e307ffd46bec6a045e065f", 2024-04-18T22:52:16.459 INFO:teuthology.orchestra.run.smithi016.stdout: "repo_digests": [ 2024-04-18T22:52:16.459 INFO:teuthology.orchestra.run.smithi016.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:10dfe16719e1e9750e7bc8b7d4f474b4b7f5bd2541f4fec161dd767c272bf9a0" 2024-04-18T22:52:16.459 INFO:teuthology.orchestra.run.smithi016.stdout: ] 2024-04-18T22:52:16.459 INFO:teuthology.orchestra.run.smithi016.stdout:} 2024-04-18T22:52:16.508 DEBUG:teuthology.orchestra.run.smithi016:> sudo mkdir -p /etc/ceph 2024-04-18T22:52:16.522 DEBUG:teuthology.orchestra.run.smithi055:> sudo mkdir -p /etc/ceph 2024-04-18T22:52:16.537 DEBUG:teuthology.orchestra.run.smithi069:> sudo mkdir -p /etc/ceph 2024-04-18T22:52:16.551 DEBUG:teuthology.orchestra.run.smithi016:> sudo chmod 777 /etc/ceph 2024-04-18T22:52:16.576 DEBUG:teuthology.orchestra.run.smithi055:> sudo chmod 777 /etc/ceph 2024-04-18T22:52:16.593 DEBUG:teuthology.orchestra.run.smithi069:> sudo chmod 777 /etc/ceph 2024-04-18T22:52:16.606 INFO:tasks.cephadm:Writing seed config... 2024-04-18T22:52:16.607 INFO:tasks.cephadm: override: [global] mon election default strategy = 1 2024-04-18T22:52:16.607 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-04-18T22:52:16.607 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-04-18T22:52:16.608 INFO:tasks.cephadm: override: [mgr] mgr/cephadm/use_agent = False 2024-04-18T22:52:16.608 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-04-18T22:52:16.608 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-04-18T22:52:16.608 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-04-18T22:52:16.608 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-04-18T22:52:16.608 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-04-18T22:52:16.608 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-18T22:52:16.609 DEBUG:teuthology.orchestra.run.smithi016:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-04-18T22:52:16.625 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 = 1266e2ee-fdd6-11ee-bc92-c7b262605968 mon election default strategy = 1 [osd] osd scrub load threshold = 5.0 osd scrub max interval = 600 osd mclock profile = high_recovery_ops osd recover clone overlap = true osd recovery max chunk = 1048576 osd deep scrub update digest min age = 30 osd map max advance = 10 osd memory target autotune = true # debugging osd debug shutdown = true osd debug op order = true osd debug verify stray on activate = true osd debug pg log writeout = true osd debug verify cached snaps = true osd debug verify missing on start = true osd debug misdirected ops = true osd op queue = debug_random osd op queue cut off = debug_random osd shutdown pgref assert = true bdev debug aio = true osd sloppy crc = true debug ms = 1 debug osd = 20 [mgr] mon reweight min pgs per osd = 4 mon reweight min bytes per osd = 10 mgr/telemetry/nag = false debug mgr = 20 debug ms = 1 mgr/cephadm/use_agent = False [mon] mon data avail warn = 5 mon mgr mkfs grace = 240 mon reweight min pgs per osd = 4 mon osd reporter subtree level = osd mon osd prime pg temp = true mon reweight min bytes per osd = 10 # rotate auth tickets quickly to exercise renewal paths auth mon ticket ttl = 660# 11m auth service ticket ttl = 240# 4m # don't complain about global id reclaim mon_warn_on_insecure_global_id_reclaim = false mon_warn_on_insecure_global_id_reclaim_allowed = false debug mon = 20 debug ms = 1 debug paxos = 20 [client.rgw] rgw cache enabled = true rgw enable ops log = true rgw enable usage log = true 2024-04-18T22:52:16.625 DEBUG:teuthology.orchestra.run.smithi016:mon.a> sudo journalctl -f -n 0 -u ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@mon.a.service 2024-04-18T22:52:16.670 DEBUG:teuthology.orchestra.run.smithi016:mgr.a> sudo journalctl -f -n 0 -u ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@mgr.a.service 2024-04-18T22:52:16.713 INFO:tasks.cephadm:Bootstrapping... 2024-04-18T22:52:16.713 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 -v bootstrap --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-id a --mgr-id a --orphan-initial-daemons --skip-monitoring-stack --mon-ip 172.21.15.16 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-04-18T22:52:16.927 INFO:teuthology.orchestra.run.smithi016.stdout:-------------------------------------------------------------------------------- 2024-04-18T22:52:16.928 INFO:teuthology.orchestra.run.smithi016.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32', '-v', 'bootstrap', '--fsid', '1266e2ee-fdd6-11ee-bc92-c7b262605968', '--config', '/home/ubuntu/cephtest/seed.ceph.conf', '--output-config', '/etc/ceph/ceph.conf', '--output-keyring', '/etc/ceph/ceph.client.admin.keyring', '--output-pub-ssh-key', '/home/ubuntu/cephtest/ceph.pub', '--mon-id', 'a', '--mgr-id', 'a', '--orphan-initial-daemons', '--skip-monitoring-stack', '--mon-ip', '172.21.15.16', '--skip-admin-label'] 2024-04-18T22:52:16.928 INFO:teuthology.orchestra.run.smithi016.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-04-18T22:52:16.928 INFO:teuthology.orchestra.run.smithi016.stdout:Verifying podman|docker is present... 2024-04-18T22:52:16.929 INFO:teuthology.orchestra.run.smithi016.stdout:Verifying lvm2 is present... 2024-04-18T22:52:16.929 INFO:teuthology.orchestra.run.smithi016.stdout:Verifying time synchronization is in place... 2024-04-18T22:52:16.935 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-04-18T22:52:16.935 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-04-18T22:52:16.939 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-04-18T22:52:16.939 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout inactive 2024-04-18T22:52:16.943 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-04-18T22:52:16.943 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-04-18T22:52:16.947 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-04-18T22:52:16.947 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout inactive 2024-04-18T22:52:16.950 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-04-18T22:52:16.950 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout masked 2024-04-18T22:52:16.954 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-04-18T22:52:16.954 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout inactive 2024-04-18T22:52:16.958 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-04-18T22:52:16.958 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-04-18T22:52:16.962 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-04-18T22:52:16.962 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout inactive 2024-04-18T22:52:16.966 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout enabled 2024-04-18T22:52:16.970 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout active 2024-04-18T22:52:16.970 INFO:teuthology.orchestra.run.smithi016.stdout:Unit ntp.service is enabled and running 2024-04-18T22:52:16.970 INFO:teuthology.orchestra.run.smithi016.stdout:Repeating the final host check... 2024-04-18T22:52:16.970 INFO:teuthology.orchestra.run.smithi016.stdout:docker (/usr/bin/docker) is present 2024-04-18T22:52:16.970 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl is present 2024-04-18T22:52:16.970 INFO:teuthology.orchestra.run.smithi016.stdout:lvcreate is present 2024-04-18T22:52:16.974 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-04-18T22:52:16.974 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-04-18T22:52:16.977 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-04-18T22:52:16.978 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout inactive 2024-04-18T22:52:16.981 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-04-18T22:52:16.981 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-04-18T22:52:16.985 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-04-18T22:52:16.985 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout inactive 2024-04-18T22:52:16.989 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-04-18T22:52:16.989 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout masked 2024-04-18T22:52:16.992 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-04-18T22:52:16.992 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout inactive 2024-04-18T22:52:16.995 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-04-18T22:52:16.995 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-04-18T22:52:16.999 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-04-18T22:52:16.999 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout inactive 2024-04-18T22:52:17.003 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout enabled 2024-04-18T22:52:17.007 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout active 2024-04-18T22:52:17.007 INFO:teuthology.orchestra.run.smithi016.stdout:Unit ntp.service is enabled and running 2024-04-18T22:52:17.007 INFO:teuthology.orchestra.run.smithi016.stdout:Host looks OK 2024-04-18T22:52:17.008 INFO:teuthology.orchestra.run.smithi016.stdout:Cluster fsid: 1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T22:52:17.008 INFO:teuthology.orchestra.run.smithi016.stdout:Acquiring lock 140706273011568 on /run/cephadm/1266e2ee-fdd6-11ee-bc92-c7b262605968.lock 2024-04-18T22:52:17.008 INFO:teuthology.orchestra.run.smithi016.stdout:Lock 140706273011568 acquired on /run/cephadm/1266e2ee-fdd6-11ee-bc92-c7b262605968.lock 2024-04-18T22:52:17.008 INFO:teuthology.orchestra.run.smithi016.stdout:Verifying IP 172.21.15.16 port 3300 ... 2024-04-18T22:52:17.008 INFO:teuthology.orchestra.run.smithi016.stdout:Verifying IP 172.21.15.16 port 6789 ... 2024-04-18T22:52:17.008 INFO:teuthology.orchestra.run.smithi016.stdout:Base mon IP(s) is [172.21.15.16:3300, 172.21.15.16:6789], mon addrv is [v2:172.21.15.16:3300,v1:172.21.15.16:6789] 2024-04-18T22:52:17.010 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev ens1f0 2024-04-18T22:52:17.010 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/sbin/ip: stdout 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-04-18T22:52:17.010 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/sbin/ip: stdout 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.16 2024-04-18T22:52:17.012 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-04-18T22:52:17.012 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/sbin/ip: stdout fe80::/64 dev ens1f0 proto kernel metric 256 pref medium 2024-04-18T22:52:17.012 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 1024 expires 1797sec hoplimit 64 pref medium 2024-04-18T22:52:17.014 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-04-18T22:52:17.014 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/sbin/ip: stdout inet6 ::1/128 scope host 2024-04-18T22:52:17.014 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-04-18T22:52:17.015 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/sbin/ip: stdout 4: ens1f0: mtu 1500 state UP qlen 1000 2024-04-18T22:52:17.015 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/sbin/ip: stdout inet6 fe80::ec4:7aff:febd:1564/64 scope link 2024-04-18T22:52:17.015 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-04-18T22:52:17.015 INFO:teuthology.orchestra.run.smithi016.stdout:Mon IP `172.21.15.16` is in CIDR network `172.21.0.0/20` 2024-04-18T22:52:17.015 INFO:teuthology.orchestra.run.smithi016.stdout:Mon IP `172.21.15.16` is in CIDR network `172.21.0.0/20` 2024-04-18T22:52:17.015 INFO:teuthology.orchestra.run.smithi016.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-04-18T22:52:17.016 INFO:teuthology.orchestra.run.smithi016.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-04-18T22:52:17.016 INFO:teuthology.orchestra.run.smithi016.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32... 2024-04-18T22:52:17.262 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/docker: stdout 1a6a3e742fd81c6d70be70552499bff767652c32: Pulling from ceph-ci/ceph 2024-04-18T22:52:17.262 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/docker: stdout Digest: sha256:10dfe16719e1e9750e7bc8b7d4f474b4b7f5bd2541f4fec161dd767c272bf9a0 2024-04-18T22:52:17.262 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/docker: stdout Status: Image is up to date for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 2024-04-18T22:52:17.262 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/docker: stdout quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 2024-04-18T22:52:18.730 INFO:teuthology.orchestra.run.smithi016.stdout:ceph: stdout ceph version 19.0.0-2369-g1a6a3e74 (1a6a3e742fd81c6d70be70552499bff767652c32) squid (dev) 2024-04-18T22:52:18.730 INFO:teuthology.orchestra.run.smithi016.stdout:Ceph version: ceph version 19.0.0-2369-g1a6a3e74 (1a6a3e742fd81c6d70be70552499bff767652c32) squid (dev) 2024-04-18T22:52:18.730 INFO:teuthology.orchestra.run.smithi016.stdout:Extracting ceph user uid/gid from container image... 2024-04-18T22:52:20.008 INFO:teuthology.orchestra.run.smithi016.stdout:stat: stdout 167 167 2024-04-18T22:52:20.008 INFO:teuthology.orchestra.run.smithi016.stdout:Creating initial keys... 2024-04-18T22:52:21.164 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-authtool: stdout AQAkpCFmPmmoIxAAqmV+5eDHba6flAY8GBguzQ== 2024-04-18T22:52:22.385 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-authtool: stdout AQAlpCFmsusaMBAAxtBDZMp1+FVrkvuocGkkpQ== 2024-04-18T22:52:23.682 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-authtool: stdout AQAnpCFmzc3JBxAAO/D5n75wahO4BsqclalIqQ== 2024-04-18T22:52:23.682 INFO:teuthology.orchestra.run.smithi016.stdout:Creating initial monmap... 2024-04-18T22:52:24.995 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-04-18T22:52:24.995 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-04-18T22:52:24.995 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T22:52:24.995 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-04-18T22:52:24.996 INFO:teuthology.orchestra.run.smithi016.stdout:monmaptool for a [v2:172.21.15.16:3300,v1:172.21.15.16:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-04-18T22:52:24.996 INFO:teuthology.orchestra.run.smithi016.stdout:setting min_mon_release = quincy 2024-04-18T22:52:24.996 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/monmaptool: set fsid to 1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T22:52:24.996 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-04-18T22:52:24.996 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-18T22:52:24.996 INFO:teuthology.orchestra.run.smithi016.stdout:Creating mon... 2024-04-18T22:52:26.364 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-04-18T22:52:26.364 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 1 imported monmap: 2024-04-18T22:52:26.365 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr epoch 0 2024-04-18T22:52:26.365 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T22:52:26.365 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr last_changed 2024-04-18T22:52:24.457677+0000 2024-04-18T22:52:26.365 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr created 2024-04-18T22:52:24.457677+0000 2024-04-18T22:52:26.365 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr min_mon_release 17 (quincy) 2024-04-18T22:52:26.365 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr election_strategy: 1 2024-04-18T22:52:26.365 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr 0: [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] mon.a 2024-04-18T22:52:26.365 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr 2024-04-18T22:52:26.365 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 0 /usr/bin/ceph-mon: set fsid to 1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T22:52:26.365 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: RocksDB version: 7.9.2 2024-04-18T22:52:26.365 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr 2024-04-18T22:52:26.365 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Git sha 0 2024-04-18T22:52:26.365 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Compile date 2024-04-18 10:33:32 2024-04-18T22:52:26.366 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: DB SUMMARY 2024-04-18T22:52:26.366 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr 2024-04-18T22:52:26.366 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: DB Session ID: MH57QREH0DOZ3E900EF8 2024-04-18T22:52:26.366 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr 2024-04-18T22:52:26.366 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 0, files: 2024-04-18T22:52:26.366 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr 2024-04-18T22:52:26.366 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 2024-04-18T22:52:26.366 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr 2024-04-18T22:52:26.366 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.error_if_exists: 0 2024-04-18T22:52:26.366 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.create_if_missing: 1 2024-04-18T22:52:26.366 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.paranoid_checks: 1 2024-04-18T22:52:26.366 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-04-18T22:52:26.366 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-04-18T22:52:26.367 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-04-18T22:52:26.367 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.env: 0x559c03915c60 2024-04-18T22:52:26.367 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.fs: PosixFileSystem 2024-04-18T22:52:26.367 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.info_log: 0x559c043f8d20 2024-04-18T22:52:26.367 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-04-18T22:52:26.367 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.statistics: (nil) 2024-04-18T22:52:26.367 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.use_fsync: 0 2024-04-18T22:52:26.367 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.max_log_file_size: 0 2024-04-18T22:52:26.367 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-04-18T22:52:26.367 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-04-18T22:52:26.367 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-04-18T22:52:26.367 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-04-18T22:52:26.367 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.allow_fallocate: 1 2024-04-18T22:52:26.367 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-04-18T22:52:26.368 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-04-18T22:52:26.368 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.use_direct_reads: 0 2024-04-18T22:52:26.368 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-04-18T22:52:26.368 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.create_missing_column_families: 0 2024-04-18T22:52:26.368 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.db_log_dir: 2024-04-18T22:52:26.368 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.wal_dir: 2024-04-18T22:52:26.368 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-04-18T22:52:26.368 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-04-18T22:52:26.368 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-04-18T22:52:26.368 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-04-18T22:52:26.368 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-04-18T22:52:26.374 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-04-18T22:52:26.375 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.advise_random_on_open: 1 2024-04-18T22:52:26.375 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-04-18T22:52:26.375 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.write_buffer_manager: 0x559c043cd360 2024-04-18T22:52:26.375 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-04-18T22:52:26.375 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-04-18T22:52:26.375 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-04-18T22:52:26.375 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.rate_limiter: (nil) 2024-04-18T22:52:26.375 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-04-18T22:52:26.375 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-04-18T22:52:26.375 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-04-18T22:52:26.375 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-04-18T22:52:26.375 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.unordered_write: 0 2024-04-18T22:52:26.376 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-04-18T22:52:26.376 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-04-18T22:52:26.376 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-04-18T22:52:26.376 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-04-18T22:52:26.376 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.row_cache: None 2024-04-18T22:52:26.376 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.wal_filter: None 2024-04-18T22:52:26.376 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-04-18T22:52:26.376 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-04-18T22:52:26.376 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.two_write_queues: 0 2024-04-18T22:52:26.376 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.manual_wal_flush: 0 2024-04-18T22:52:26.376 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.wal_compression: 0 2024-04-18T22:52:26.376 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.atomic_flush: 0 2024-04-18T22:52:26.376 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-04-18T22:52:26.376 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-04-18T22:52:26.376 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-04-18T22:52:26.377 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.log_readahead_size: 0 2024-04-18T22:52:26.377 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-04-18T22:52:26.377 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-04-18T22:52:26.377 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-04-18T22:52:26.377 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-04-18T22:52:26.377 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-04-18T22:52:26.377 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-04-18T22:52:26.377 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-04-18T22:52:26.377 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.max_background_jobs: 2 2024-04-18T22:52:26.377 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.max_background_compactions: -1 2024-04-18T22:52:26.377 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.max_subcompactions: 1 2024-04-18T22:52:26.377 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-04-18T22:52:26.377 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-04-18T22:52:26.377 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-04-18T22:52:26.378 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.max_total_wal_size: 0 2024-04-18T22:52:26.378 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-04-18T22:52:26.378 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-04-18T22:52:26.378 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-04-18T22:52:26.378 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-04-18T22:52:26.378 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.max_open_files: -1 2024-04-18T22:52:26.378 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.bytes_per_sync: 0 2024-04-18T22:52:26.378 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-04-18T22:52:26.378 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-04-18T22:52:26.378 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-04-18T22:52:26.378 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Options.max_background_flushes: -1 2024-04-18T22:52:26.378 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Compression algorithms supported: 2024-04-18T22:52:26.378 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-04-18T22:52:26.378 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: kZSTD supported: 0 2024-04-18T22:52:26.379 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: kXpressCompression supported: 0 2024-04-18T22:52:26.379 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-04-18T22:52:26.379 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: kZlibCompression supported: 1 2024-04-18T22:52:26.379 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: kSnappyCompression supported: 1 2024-04-18T22:52:26.379 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: kLZ4Compression supported: 1 2024-04-18T22:52:26.379 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: kBZip2Compression supported: 0 2024-04-18T22:52:26.379 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-04-18T22:52:26.386 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.766+0000 7f39519e9c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-04-18T22:52:26.386 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: [db/db_impl/db_impl_open.cc:317] Creating manifest 1 2024-04-18T22:52:26.386 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr 2024-04-18T22:52:26.386 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000001 2024-04-18T22:52:26.386 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr 2024-04-18T22:52:26.386 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-04-18T22:52:26.386 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr 2024-04-18T22:52:26.386 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-04-18T22:52:26.386 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.merge_operator: 2024-04-18T22:52:26.386 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.compaction_filter: None 2024-04-18T22:52:26.386 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.compaction_filter_factory: None 2024-04-18T22:52:26.386 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-04-18T22:52:26.387 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-04-18T22:52:26.387 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-04-18T22:52:26.387 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x559c043f8e20) 2024-04-18T22:52:26.387 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks: 1 2024-04-18T22:52:26.387 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks_with_high_priority: 0 2024-04-18T22:52:26.387 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr pin_l0_filter_and_index_blocks_in_cache: 0 2024-04-18T22:52:26.387 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr pin_top_level_index_and_filter: 1 2024-04-18T22:52:26.387 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr index_type: 0 2024-04-18T22:52:26.387 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr data_block_index_type: 0 2024-04-18T22:52:26.387 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr index_shortening: 1 2024-04-18T22:52:26.387 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr data_block_hash_table_util_ratio: 0.750000 2024-04-18T22:52:26.387 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr checksum: 4 2024-04-18T22:52:26.387 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr no_block_cache: 0 2024-04-18T22:52:26.387 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr block_cache: 0x559c043fd090 2024-04-18T22:52:26.388 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr block_cache_name: BinnedLRUCache 2024-04-18T22:52:26.388 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr block_cache_options: 2024-04-18T22:52:26.388 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr capacity : 536870912 2024-04-18T22:52:26.388 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr num_shard_bits : 4 2024-04-18T22:52:26.388 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr strict_capacity_limit : 0 2024-04-18T22:52:26.388 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr high_pri_pool_ratio: 0.000 2024-04-18T22:52:26.388 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr block_cache_compressed: (nil) 2024-04-18T22:52:26.388 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr persistent_cache: (nil) 2024-04-18T22:52:26.388 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr block_size: 4096 2024-04-18T22:52:26.388 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr block_size_deviation: 10 2024-04-18T22:52:26.388 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr block_restart_interval: 16 2024-04-18T22:52:26.388 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr index_block_restart_interval: 1 2024-04-18T22:52:26.388 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr metadata_block_size: 4096 2024-04-18T22:52:26.388 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr partition_filters: 0 2024-04-18T22:52:26.388 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr use_delta_encoding: 1 2024-04-18T22:52:26.389 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr filter_policy: bloomfilter 2024-04-18T22:52:26.389 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr whole_key_filtering: 1 2024-04-18T22:52:26.389 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr verify_compression: 0 2024-04-18T22:52:26.389 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr read_amp_bytes_per_bit: 0 2024-04-18T22:52:26.389 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr format_version: 5 2024-04-18T22:52:26.389 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr enable_index_compression: 1 2024-04-18T22:52:26.389 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr block_align: 0 2024-04-18T22:52:26.389 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr max_auto_readahead_size: 262144 2024-04-18T22:52:26.389 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr prepopulate_block_cache: 0 2024-04-18T22:52:26.389 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr initial_auto_readahead_size: 8192 2024-04-18T22:52:26.389 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr num_file_reads_for_auto_readahead: 2 2024-04-18T22:52:26.389 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr 2024-04-18T22:52:26.389 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-04-18T22:52:26.389 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-04-18T22:52:26.389 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.compression: NoCompression 2024-04-18T22:52:26.390 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-04-18T22:52:26.390 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-04-18T22:52:26.390 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-04-18T22:52:26.390 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.num_levels: 7 2024-04-18T22:52:26.390 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-04-18T22:52:26.390 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-04-18T22:52:26.390 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-04-18T22:52:26.390 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-04-18T22:52:26.390 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-04-18T22:52:26.390 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-04-18T22:52:26.390 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-04-18T22:52:26.397 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-04-18T22:52:26.397 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-04-18T22:52:26.397 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-04-18T22:52:26.397 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-04-18T22:52:26.397 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-04-18T22:52:26.397 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-04-18T22:52:26.397 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.compression_opts.level: 32767 2024-04-18T22:52:26.397 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-04-18T22:52:26.397 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-04-18T22:52:26.397 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-04-18T22:52:26.398 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-04-18T22:52:26.398 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-04-18T22:52:26.398 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.compression_opts.enabled: false 2024-04-18T22:52:26.398 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-04-18T22:52:26.398 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-04-18T22:52:26.398 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-04-18T22:52:26.398 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-04-18T22:52:26.398 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-04-18T22:52:26.398 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-04-18T22:52:26.398 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-04-18T22:52:26.398 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-04-18T22:52:26.398 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-04-18T22:52:26.398 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-04-18T22:52:26.398 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-04-18T22:52:26.399 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-04-18T22:52:26.399 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-04-18T22:52:26.399 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-04-18T22:52:26.399 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-04-18T22:52:26.399 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-04-18T22:52:26.399 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-04-18T22:52:26.399 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-04-18T22:52:26.399 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-04-18T22:52:26.399 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.arena_block_size: 1048576 2024-04-18T22:52:26.399 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-04-18T22:52:26.399 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-04-18T22:52:26.399 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-04-18T22:52:26.400 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-04-18T22:52:26.400 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-04-18T22:52:26.400 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-04-18T22:52:26.400 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-04-18T22:52:26.400 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-04-18T22:52:26.400 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-04-18T22:52:26.400 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-04-18T22:52:26.400 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-04-18T22:52:26.400 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-04-18T22:52:26.400 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-04-18T22:52:26.400 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.table_properties_collectors: 2024-04-18T22:52:26.400 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.inplace_update_support: 0 2024-04-18T22:52:26.400 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-04-18T22:52:26.400 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-04-18T22:52:26.401 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-04-18T22:52:26.401 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-04-18T22:52:26.401 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.bloom_locality: 0 2024-04-18T22:52:26.401 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.max_successive_merges: 0 2024-04-18T22:52:26.401 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-04-18T22:52:26.401 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-04-18T22:52:26.401 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.force_consistency_checks: 1 2024-04-18T22:52:26.401 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-04-18T22:52:26.401 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.ttl: 2592000 2024-04-18T22:52:26.401 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-04-18T22:52:26.401 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-04-18T22:52:26.401 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-04-18T22:52:26.401 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.enable_blob_files: false 2024-04-18T22:52:26.401 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.min_blob_size: 0 2024-04-18T22:52:26.402 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.blob_file_size: 268435456 2024-04-18T22:52:26.402 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-04-18T22:52:26.402 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-04-18T22:52:26.407 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-04-18T22:52:26.407 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-04-18T22:52:26.407 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-04-18T22:52:26.407 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-04-18T22:52:26.407 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-04-18T22:52:26.407 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 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-04-18T22:52:26.407 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr 2024-04-18T22:52:26.408 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-04-18T22:52:26.408 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr 2024-04-18T22:52:26.408 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: e01220b0-df89-4248-ace3-772fc9fc7d6c 2024-04-18T22:52:26.408 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr 2024-04-18T22:52:26.408 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 5 2024-04-18T22:52:26.408 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr 2024-04-18T22:52:26.408 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x559c044c8000 2024-04-18T22:52:26.408 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f39519e9c80 4 rocksdb: DB pointer 0x559c044b8000 2024-04-18T22:52:26.408 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f3941b53700 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-04-18T22:52:26.408 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.770+0000 7f3941b53700 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-04-18T22:52:26.408 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr ** DB Stats ** 2024-04-18T22:52:26.408 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-04-18T22:52:26.408 INFO:teuthology.orchestra.run.smithi016.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-04-18T22:52:26.409 INFO:teuthology.orchestra.run.smithi016.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-04-18T22:52:26.409 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-18T22:52:26.409 INFO:teuthology.orchestra.run.smithi016.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-04-18T22:52:26.409 INFO:teuthology.orchestra.run.smithi016.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-04-18T22:52:26.409 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-18T22:52:26.409 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr 2024-04-18T22:52:26.409 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-04-18T22:52:26.409 INFO:teuthology.orchestra.run.smithi016.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-04-18T22:52:26.409 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-04-18T22:52:26.409 INFO:teuthology.orchestra.run.smithi016.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-04-18T22:52:26.409 INFO:teuthology.orchestra.run.smithi016.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-04-18T22:52:26.409 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr 2024-04-18T22:52:26.409 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-04-18T22:52:26.409 INFO:teuthology.orchestra.run.smithi016.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-04-18T22:52:26.409 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-04-18T22:52:26.410 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr 2024-04-18T22:52:26.410 INFO:teuthology.orchestra.run.smithi016.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-04-18T22:52:26.410 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr 2024-04-18T22:52:26.410 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-04-18T22:52:26.410 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr Flush(GB): cumulative 0.000, interval 0.000 2024-04-18T22:52:26.410 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr AddFile(GB): cumulative 0.000, interval 0.000 2024-04-18T22:52:26.410 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr AddFile(Total Files): cumulative 0, interval 0 2024-04-18T22:52:26.410 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr AddFile(L0 Files): cumulative 0, interval 0 2024-04-18T22:52:26.410 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr AddFile(Keys): cumulative 0, interval 0 2024-04-18T22:52:26.410 INFO:teuthology.orchestra.run.smithi016.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-04-18T22:52:26.410 INFO:teuthology.orchestra.run.smithi016.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-04-18T22:52:26.410 INFO:teuthology.orchestra.run.smithi016.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-04-18T22:52:26.410 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr Block cache BinnedLRUCache@0x559c043fd090#7 capacity: 512.00 MB usage: 0.00 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.1e-05 secs_since: 0 2024-04-18T22:52:26.410 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) 2024-04-18T22:52:26.411 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr 2024-04-18T22:52:26.411 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr ** File Read Latency Histogram By Level [default] ** 2024-04-18T22:52:26.411 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr 2024-04-18T22:52:26.411 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.774+0000 7f39519e9c80 4 rocksdb: [db/db_impl/db_impl.cc:496] Shutdown: canceling all background work 2024-04-18T22:52:26.411 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.774+0000 7f39519e9c80 4 rocksdb: [db/db_impl/db_impl.cc:704] Shutdown complete 2024-04-18T22:52:26.411 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-18T22:52:25.774+0000 7f39519e9c80 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-a for mon.a 2024-04-18T22:52:26.411 INFO:teuthology.orchestra.run.smithi016.stdout:create mon.a on 2024-04-18T22:52:26.681 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Removed /etc/systemd/system/multi-user.target.wants/ceph.target. 2024-04-18T22:52:26.869 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2024-04-18T22:52:27.092 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968.target -> /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968.target. 2024-04-18T22:52:27.092 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968.target -> /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968.target. 2024-04-18T22:52:27.382 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@mon.a 2024-04-18T22:52:27.382 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Failed to reset failed state of unit ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@mon.a.service: Unit ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@mon.a.service not loaded. 2024-04-18T22:52:27.587 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968.target.wants/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@mon.a.service -> /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service. 2024-04-18T22:52:27.597 INFO:teuthology.orchestra.run.smithi016.stdout:firewalld does not appear to be present 2024-04-18T22:52:27.597 INFO:teuthology.orchestra.run.smithi016.stdout:Not possible to enable service . firewalld.service is not available 2024-04-18T22:52:27.598 INFO:teuthology.orchestra.run.smithi016.stdout:Waiting for mon to start... 2024-04-18T22:52:27.598 INFO:teuthology.orchestra.run.smithi016.stdout:Waiting for mon... 2024-04-18T22:52:29.165 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:28 smithi016 bash[20965]: cluster 2024-04-18T22:52:28.959454+0000 mon.a (mon.0) 1 : cluster 1 mon.a is new leader, mons a in quorum (ranks 0) 2024-04-18T22:52:29.753 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout cluster: 2024-04-18T22:52:29.753 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout id: 1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T22:52:29.753 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-04-18T22:52:29.753 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-18T22:52:29.753 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout services: 2024-04-18T22:52:29.753 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum a (age 0.190571s) 2024-04-18T22:52:29.753 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-04-18T22:52:29.753 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-04-18T22:52:29.754 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-18T22:52:29.754 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout data: 2024-04-18T22:52:29.754 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-04-18T22:52:29.754 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-04-18T22:52:29.754 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-04-18T22:52:29.754 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout pgs: 2024-04-18T22:52:29.755 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-18T22:52:29.755 INFO:teuthology.orchestra.run.smithi016.stdout:mon is available 2024-04-18T22:52:29.755 INFO:teuthology.orchestra.run.smithi016.stdout:Assimilating anything we can from ceph.conf... 2024-04-18T22:52:30.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:29 smithi016 bash[20965]: cluster 2024-04-18T22:52:28.962796+0000 mon.a (mon.0) 2 : cluster 1 mon.a is new leader, mons a in quorum (ranks 0) 2024-04-18T22:52:30.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:29 smithi016 bash[20965]: cluster 2024-04-18T22:52:28.962939+0000 mon.a (mon.0) 3 : cluster 0 monmap epoch 1 2024-04-18T22:52:30.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:29 smithi016 bash[20965]: cluster 2024-04-18T22:52:28.962955+0000 mon.a (mon.0) 4 : cluster 0 fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T22:52:30.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:29 smithi016 bash[20965]: cluster 2024-04-18T22:52:28.962965+0000 mon.a (mon.0) 5 : cluster 0 last_changed 2024-04-18T22:52:24.457677+0000 2024-04-18T22:52:30.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:29 smithi016 bash[20965]: cluster 2024-04-18T22:52:28.962973+0000 mon.a (mon.0) 6 : cluster 0 created 2024-04-18T22:52:24.457677+0000 2024-04-18T22:52:30.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:29 smithi016 bash[20965]: cluster 2024-04-18T22:52:28.962982+0000 mon.a (mon.0) 7 : cluster 0 min_mon_release 19 (squid) 2024-04-18T22:52:30.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:29 smithi016 bash[20965]: cluster 2024-04-18T22:52:28.962991+0000 mon.a (mon.0) 8 : cluster 0 election_strategy: 1 2024-04-18T22:52:30.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:29 smithi016 bash[20965]: cluster 2024-04-18T22:52:28.963022+0000 mon.a (mon.0) 9 : cluster 0 0: [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] mon.a 2024-04-18T22:52:30.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:29 smithi016 bash[20965]: cluster 2024-04-18T22:52:28.965074+0000 mon.a (mon.0) 10 : cluster 0 fsmap 2024-04-18T22:52:30.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:29 smithi016 bash[20965]: cluster 2024-04-18T22:52:28.967518+0000 mon.a (mon.0) 11 : cluster 0 osdmap e1: 0 total, 0 up, 0 in 2024-04-18T22:52:30.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:29 smithi016 bash[20965]: cluster 2024-04-18T22:52:28.968010+0000 mon.a (mon.0) 12 : cluster 0 mgrmap e1: no daemons active 2024-04-18T22:52:30.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:29 smithi016 bash[20965]: audit 2024-04-18T22:52:29.153290+0000 mon.a (mon.0) 13 : audit 0 from='client.? 172.21.15.16:0/2468389335' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-04-18T22:52:31.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:30 smithi016 bash[20965]: audit 2024-04-18T22:52:30.709044+0000 mon.a (mon.0) 14 : audit 1 from='client.? 172.21.15.16:0/4246600909' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-04-18T22:52:31.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:30 smithi016 bash[20965]: audit 2024-04-18T22:52:30.712117+0000 mon.a (mon.0) 15 : audit 1 from='client.? 172.21.15.16:0/4246600909' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-04-18T22:52:31.352 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-18T22:52:31.352 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout [global] 2024-04-18T22:52:31.353 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout fsid = 1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T22:52:31.353 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.16:3300,v1:172.21.15.16:6789] 2024-04-18T22:52:31.353 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-04-18T22:52:31.353 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-04-18T22:52:31.353 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-04-18T22:52:31.353 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-04-18T22:52:31.354 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-18T22:52:31.354 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout [mgr] 2024-04-18T22:52:31.354 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = False 2024-04-18T22:52:31.354 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-04-18T22:52:31.355 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-18T22:52:31.355 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout [osd] 2024-04-18T22:52:31.355 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-04-18T22:52:31.355 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-04-18T22:52:31.355 INFO:teuthology.orchestra.run.smithi016.stdout:Generating new minimal ceph.conf... 2024-04-18T22:52:32.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:32 smithi016 bash[20965]: audit 2024-04-18T22:52:32.399390+0000 mon.a (mon.0) 16 : audit 0 from='client.? 172.21.15.16:0/3757441576' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:52:33.012 INFO:teuthology.orchestra.run.smithi016.stdout:Restarting the monitor... 2024-04-18T22:52:33.377 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:33 smithi016 systemd[1]: Stopping Ceph mon.a for 1266e2ee-fdd6-11ee-bc92-c7b262605968... 2024-04-18T22:52:33.378 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:33 smithi016 bash[20965]: debug 2024-04-18T22:52:33.126+0000 7fe3100c1700 -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-04-18T22:52:33.378 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:33 smithi016 bash[20965]: debug 2024-04-18T22:52:33.126+0000 7fe3100c1700 -1 mon.a@0(leader) e1 *** Got Signal Terminated *** 2024-04-18T22:52:33.865 INFO:teuthology.orchestra.run.smithi016.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-04-18T22:52:33.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:33 smithi016 bash[21354]: ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968-mon-a 2024-04-18T22:52:33.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:33 smithi016 bash[21415]: Error response from daemon: No such container: ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968-mon-a 2024-04-18T22:52:33.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:33 smithi016 systemd[1]: ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@mon.a.service: Deactivated successfully. 2024-04-18T22:52:33.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:33 smithi016 systemd[1]: Stopped Ceph mon.a for 1266e2ee-fdd6-11ee-bc92-c7b262605968. 2024-04-18T22:52:33.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:33 smithi016 systemd[1]: Started Ceph mon.a for 1266e2ee-fdd6-11ee-bc92-c7b262605968. 2024-04-18T22:52:35.091 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.862+0000 7fad5b618c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-04-18T22:52:35.092 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.862+0000 7fad5b618c80 0 ceph version 19.0.0-2369-g1a6a3e74 (1a6a3e742fd81c6d70be70552499bff767652c32) squid (dev), process ceph-mon, pid 7 2024-04-18T22:52:35.092 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.866+0000 7fad5b618c80 0 pidfile_write: ignore empty --pid-file 2024-04-18T22:52:35.092 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 0 load: jerasure load: lrc 2024-04-18T22:52:35.092 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: RocksDB version: 7.9.2 2024-04-18T22:52:35.092 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Git sha 0 2024-04-18T22:52:35.092 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Compile date 2024-04-18 10:33:32 2024-04-18T22:52:35.092 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: DB SUMMARY 2024-04-18T22:52:35.092 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: DB Session ID: Z0HTB6SVRYV858590LUW 2024-04-18T22:52:35.092 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: CURRENT file: CURRENT 2024-04-18T22:52:35.092 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: IDENTITY file: IDENTITY 2024-04-18T22:52:35.092 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-04-18T22:52:35.092 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 1, files: 000008.sst 2024-04-18T22:52:35.093 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 000009.log size: 88765 ; 2024-04-18T22:52:35.093 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.error_if_exists: 0 2024-04-18T22:52:35.093 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.create_if_missing: 0 2024-04-18T22:52:35.093 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.paranoid_checks: 1 2024-04-18T22:52:35.093 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-04-18T22:52:35.093 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-04-18T22:52:35.093 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-04-18T22:52:35.093 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.env: 0x55da43007c60 2024-04-18T22:52:35.093 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.fs: PosixFileSystem 2024-04-18T22:52:35.093 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.info_log: 0x55da442dbae0 2024-04-18T22:52:35.093 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-04-18T22:52:35.093 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.statistics: (nil) 2024-04-18T22:52:35.093 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.use_fsync: 0 2024-04-18T22:52:35.093 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.max_log_file_size: 0 2024-04-18T22:52:35.094 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-04-18T22:52:35.094 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-04-18T22:52:35.094 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-04-18T22:52:35.094 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-04-18T22:52:35.094 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.allow_fallocate: 1 2024-04-18T22:52:35.094 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-04-18T22:52:35.094 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-04-18T22:52:35.094 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.use_direct_reads: 0 2024-04-18T22:52:35.094 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-04-18T22:52:35.094 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.create_missing_column_families: 0 2024-04-18T22:52:35.094 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.db_log_dir: 2024-04-18T22:52:35.094 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.wal_dir: 2024-04-18T22:52:35.094 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-04-18T22:52:35.094 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-04-18T22:52:35.094 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-04-18T22:52:35.095 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-04-18T22:52:35.095 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-04-18T22:52:35.095 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-04-18T22:52:35.095 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.advise_random_on_open: 1 2024-04-18T22:52:35.095 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-04-18T22:52:35.095 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.write_buffer_manager: 0x55da442ae1e0 2024-04-18T22:52:35.095 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-04-18T22:52:35.095 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-04-18T22:52:35.095 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-04-18T22:52:35.095 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.rate_limiter: (nil) 2024-04-18T22:52:35.095 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-04-18T22:52:35.095 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-04-18T22:52:35.095 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-04-18T22:52:35.095 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-04-18T22:52:35.095 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.unordered_write: 0 2024-04-18T22:52:35.096 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-04-18T22:52:35.096 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-04-18T22:52:35.096 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-04-18T22:52:35.096 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-04-18T22:52:35.096 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.row_cache: None 2024-04-18T22:52:35.096 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.wal_filter: None 2024-04-18T22:52:35.096 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-04-18T22:52:35.096 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-04-18T22:52:35.096 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.two_write_queues: 0 2024-04-18T22:52:35.096 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.manual_wal_flush: 0 2024-04-18T22:52:35.096 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.wal_compression: 0 2024-04-18T22:52:35.096 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.atomic_flush: 0 2024-04-18T22:52:35.096 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-04-18T22:52:35.096 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-04-18T22:52:35.096 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-04-18T22:52:35.097 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.log_readahead_size: 0 2024-04-18T22:52:35.097 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-04-18T22:52:35.097 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-04-18T22:52:35.097 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-04-18T22:52:35.097 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-04-18T22:52:35.097 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-04-18T22:52:35.097 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-04-18T22:52:35.097 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-04-18T22:52:35.097 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.max_background_jobs: 2 2024-04-18T22:52:35.097 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.max_background_compactions: -1 2024-04-18T22:52:35.097 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.max_subcompactions: 1 2024-04-18T22:52:35.097 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-04-18T22:52:35.097 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-04-18T22:52:35.097 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-04-18T22:52:35.098 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.max_total_wal_size: 0 2024-04-18T22:52:35.098 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-04-18T22:52:35.098 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-04-18T22:52:35.098 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-04-18T22:52:35.098 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-04-18T22:52:35.098 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.max_open_files: -1 2024-04-18T22:52:35.098 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.bytes_per_sync: 0 2024-04-18T22:52:35.098 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-04-18T22:52:35.098 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-04-18T22:52:35.098 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-04-18T22:52:35.098 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.max_background_flushes: -1 2024-04-18T22:52:35.098 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Compression algorithms supported: 2024-04-18T22:52:35.098 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-04-18T22:52:35.098 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: kZSTD supported: 0 2024-04-18T22:52:35.099 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: kXpressCompression supported: 0 2024-04-18T22:52:35.099 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-04-18T22:52:35.099 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: kZlibCompression supported: 1 2024-04-18T22:52:35.099 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: kSnappyCompression supported: 1 2024-04-18T22:52:35.099 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: kLZ4Compression supported: 1 2024-04-18T22:52:35.099 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: kBZip2Compression supported: 0 2024-04-18T22:52:35.099 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-04-18T22:52:35.099 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-04-18T22:52:35.099 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 2024-04-18T22:52:35.099 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-04-18T22:52:35.099 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-04-18T22:52:35.099 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.merge_operator: 2024-04-18T22:52:35.099 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.compaction_filter: None 2024-04-18T22:52:35.099 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.compaction_filter_factory: None 2024-04-18T22:52:35.100 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-04-18T22:52:35.100 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-04-18T22:52:35.100 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-04-18T22:52:35.100 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55da442dbbe0) 2024-04-18T22:52:35.100 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: cache_index_and_filter_blocks: 1 2024-04-18T22:52:35.100 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: cache_index_and_filter_blocks_with_high_priority: 0 2024-04-18T22:52:35.100 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-04-18T22:52:35.100 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: pin_top_level_index_and_filter: 1 2024-04-18T22:52:35.100 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: index_type: 0 2024-04-18T22:52:35.100 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: data_block_index_type: 0 2024-04-18T22:52:35.100 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: index_shortening: 1 2024-04-18T22:52:35.100 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: data_block_hash_table_util_ratio: 0.750000 2024-04-18T22:52:35.100 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: checksum: 4 2024-04-18T22:52:35.100 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: no_block_cache: 0 2024-04-18T22:52:35.101 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: block_cache: 0x55da442dd090 2024-04-18T22:52:35.101 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: block_cache_name: BinnedLRUCache 2024-04-18T22:52:35.101 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: block_cache_options: 2024-04-18T22:52:35.101 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: capacity : 536870912 2024-04-18T22:52:35.101 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: num_shard_bits : 4 2024-04-18T22:52:35.101 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: strict_capacity_limit : 0 2024-04-18T22:52:35.101 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: high_pri_pool_ratio: 0.000 2024-04-18T22:52:35.101 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: block_cache_compressed: (nil) 2024-04-18T22:52:35.101 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: persistent_cache: (nil) 2024-04-18T22:52:35.101 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: block_size: 4096 2024-04-18T22:52:35.101 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: block_size_deviation: 10 2024-04-18T22:52:35.101 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: block_restart_interval: 16 2024-04-18T22:52:35.101 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: index_block_restart_interval: 1 2024-04-18T22:52:35.101 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: metadata_block_size: 4096 2024-04-18T22:52:35.101 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: partition_filters: 0 2024-04-18T22:52:35.102 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: use_delta_encoding: 1 2024-04-18T22:52:35.102 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: filter_policy: bloomfilter 2024-04-18T22:52:35.102 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: whole_key_filtering: 1 2024-04-18T22:52:35.102 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: verify_compression: 0 2024-04-18T22:52:35.102 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: read_amp_bytes_per_bit: 0 2024-04-18T22:52:35.102 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: format_version: 5 2024-04-18T22:52:35.102 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: enable_index_compression: 1 2024-04-18T22:52:35.102 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: block_align: 0 2024-04-18T22:52:35.102 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: max_auto_readahead_size: 262144 2024-04-18T22:52:35.102 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: prepopulate_block_cache: 0 2024-04-18T22:52:35.102 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: initial_auto_readahead_size: 8192 2024-04-18T22:52:35.102 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: num_file_reads_for_auto_readahead: 2 2024-04-18T22:52:35.102 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-04-18T22:52:35.102 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-04-18T22:52:35.103 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.compression: NoCompression 2024-04-18T22:52:35.103 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-04-18T22:52:35.103 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-04-18T22:52:35.103 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-04-18T22:52:35.103 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.num_levels: 7 2024-04-18T22:52:35.103 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-04-18T22:52:35.103 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-04-18T22:52:35.103 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-04-18T22:52:35.103 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-04-18T22:52:35.103 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-04-18T22:52:35.103 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-04-18T22:52:35.103 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-04-18T22:52:35.103 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-04-18T22:52:35.103 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-04-18T22:52:35.103 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-04-18T22:52:35.104 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-04-18T22:52:35.104 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-04-18T22:52:35.104 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-04-18T22:52:35.104 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.compression_opts.level: 32767 2024-04-18T22:52:35.104 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-04-18T22:52:35.104 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-04-18T22:52:35.104 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-04-18T22:52:35.104 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-04-18T22:52:35.104 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-04-18T22:52:35.104 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.compression_opts.enabled: false 2024-04-18T22:52:35.104 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-04-18T22:52:35.104 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-04-18T22:52:35.104 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-04-18T22:52:35.104 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-04-18T22:52:35.104 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-04-18T22:52:35.105 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-04-18T22:52:35.105 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-04-18T22:52:35.105 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-04-18T22:52:35.105 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-04-18T22:52:35.105 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-04-18T22:52:35.105 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-04-18T22:52:35.105 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-04-18T22:52:35.105 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-04-18T22:52:35.105 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-04-18T22:52:35.105 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-04-18T22:52:35.105 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-04-18T22:52:35.105 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-04-18T22:52:35.105 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-04-18T22:52:35.105 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-04-18T22:52:35.105 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.arena_block_size: 1048576 2024-04-18T22:52:35.106 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-04-18T22:52:35.106 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-04-18T22:52:35.106 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-04-18T22:52:35.106 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-04-18T22:52:35.106 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-04-18T22:52:35.106 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-04-18T22:52:35.106 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-04-18T22:52:35.106 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-04-18T22:52:35.106 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-04-18T22:52:35.106 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-04-18T22:52:35.106 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-04-18T22:52:35.106 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-04-18T22:52:35.106 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-04-18T22:52:35.106 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.table_properties_collectors: 2024-04-18T22:52:35.107 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.inplace_update_support: 0 2024-04-18T22:52:35.107 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-04-18T22:52:35.107 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-04-18T22:52:35.107 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-04-18T22:52:35.107 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-04-18T22:52:35.107 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.bloom_locality: 0 2024-04-18T22:52:35.107 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.max_successive_merges: 0 2024-04-18T22:52:35.107 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-04-18T22:52:35.107 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-04-18T22:52:35.107 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.force_consistency_checks: 1 2024-04-18T22:52:35.107 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-04-18T22:52:35.107 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.ttl: 2592000 2024-04-18T22:52:35.107 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-04-18T22:52:35.107 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-04-18T22:52:35.107 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-04-18T22:52:35.108 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.enable_blob_files: false 2024-04-18T22:52:35.108 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.min_blob_size: 0 2024-04-18T22:52:35.108 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.blob_file_size: 268435456 2024-04-18T22:52:35.108 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-04-18T22:52:35.108 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-04-18T22:52:35.108 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-04-18T22:52:35.108 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-04-18T22:52:35.108 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-04-18T22:52:35.108 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-04-18T22:52:35.108 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.870+0000 7fad5b618c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-04-18T22:52:35.108 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.874+0000 7fad5b618c80 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-04-18T22:52:35.108 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.874+0000 7fad5b618c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-04-18T22:52:35.108 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.874+0000 7fad5b618c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: e01220b0-df89-4248-ace3-772fc9fc7d6c 2024-04-18T22:52:35.108 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.874+0000 7fad5b618c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1713480754875228, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-04-18T22:52:35.108 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.874+0000 7fad5b618c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-04-18T22:52:35.109 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.874+0000 7fad5b618c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1713480754876235, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 85356, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 258, "table_properties": {"data_size": 83529, "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": 77736, "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": 1713480754, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "e01220b0-df89-4248-ace3-772fc9fc7d6c", "db_session_id": "Z0HTB6SVRYV858590LUW", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-04-18T22:52:35.109 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.874+0000 7fad5b618c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1713480754876344, "job": 1, "event": "recovery_finished"} 2024-04-18T22:52:35.109 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.874+0000 7fad5b618c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-04-18T22:52:35.109 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.874+0000 7fad5b618c80 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-04-18T22:52:35.109 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.874+0000 7fad5b618c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55da443d2000 2024-04-18T22:52:35.109 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.874+0000 7fad5b618c80 4 rocksdb: DB pointer 0x55da443bc000 2024-04-18T22:52:35.109 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.874+0000 7fad49d7a700 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-04-18T22:52:35.109 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.874+0000 7fad49d7a700 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-04-18T22:52:35.109 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: ** DB Stats ** 2024-04-18T22:52:35.109 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: Uptime(secs): 0.0 total, 0.0 interval 2024-04-18T22:52:35.109 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-04-18T22:52:35.109 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-18T22:52:35.109 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-18T22:52:35.109 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-04-18T22:52:35.109 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-18T22:52:35.110 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-18T22:52:35.110 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: ** Compaction Stats [default] ** 2024-04-18T22:52:35.110 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: 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-04-18T22:52:35.110 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-04-18T22:52:35.110 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: L0 2/0 85.19 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 135.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-18T22:52:35.110 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: Sum 2/0 85.19 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 135.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-18T22:52:35.110 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 135.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-18T22:52:35.110 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: ** Compaction Stats [default] ** 2024-04-18T22:52:35.110 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: 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-04-18T22:52:35.110 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-04-18T22:52:35.110 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 135.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-18T22:52:35.110 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-04-18T22:52:35.110 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: Uptime(secs): 0.0 total, 0.0 interval 2024-04-18T22:52:35.110 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: Flush(GB): cumulative 0.000, interval 0.000 2024-04-18T22:52:35.111 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: AddFile(GB): cumulative 0.000, interval 0.000 2024-04-18T22:52:35.111 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: AddFile(Total Files): cumulative 0, interval 0 2024-04-18T22:52:35.111 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: AddFile(L0 Files): cumulative 0, interval 0 2024-04-18T22:52:35.111 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: AddFile(Keys): cumulative 0, interval 0 2024-04-18T22:52:35.111 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: Cumulative compaction: 0.00 GB write, 16.71 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-18T22:52:35.111 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: Interval compaction: 0.00 GB write, 16.71 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-18T22:52:35.111 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: 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-04-18T22:52:35.111 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: Block cache BinnedLRUCache@0x55da442dd090#7 capacity: 512.00 MB usage: 1.19 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.2e-05 secs_since: 0 2024-04-18T22:52:35.111 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: 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-04-18T22:52:35.111 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: ** File Read Latency Histogram By Level [default] ** 2024-04-18T22:52:35.111 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.874+0000 7fad5b618c80 0 starting mon.a rank 0 at public addrs [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] at bind addrs [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] mon_data /var/lib/ceph/mon/ceph-a fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T22:52:35.111 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.878+0000 7fad5b618c80 1 mon.a@-1(???) e1 preinit fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T22:52:35.111 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.878+0000 7fad5b618c80 0 mon.a@-1(???).mds e1 new map 2024-04-18T22:52:35.111 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.878+0000 7fad5b618c80 0 mon.a@-1(???).mds e1 print_map 2024-04-18T22:52:35.112 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: e1 2024-04-18T22:52:35.112 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: enable_multiple, ever_enabled_multiple: 1,1 2024-04-18T22:52:35.112 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: 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-04-18T22:52:35.112 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: legacy client fscid: -1 2024-04-18T22:52:35.112 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: 2024-04-18T22:52:35.112 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: No filesystems configured 2024-04-18T22:52:35.112 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.878+0000 7fad5b618c80 0 mon.a@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-04-18T22:52:35.112 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.878+0000 7fad5b618c80 0 mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-18T22:52:35.112 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.878+0000 7fad5b618c80 0 mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-18T22:52:35.112 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.878+0000 7fad5b618c80 0 mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-18T22:52:35.112 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:34 smithi016 bash[21452]: debug 2024-04-18T22:52:34.878+0000 7fad5b618c80 1 mon.a@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-04-18T22:52:35.706 INFO:teuthology.orchestra.run.smithi016.stdout:Wrote config to /etc/ceph/ceph.conf 2024-04-18T22:52:35.724 INFO:teuthology.orchestra.run.smithi016.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-04-18T22:52:35.724 INFO:teuthology.orchestra.run.smithi016.stdout:Creating mgr... 2024-04-18T22:52:35.724 INFO:teuthology.orchestra.run.smithi016.stdout:Verifying port 0.0.0.0:9283 ... 2024-04-18T22:52:35.724 INFO:teuthology.orchestra.run.smithi016.stdout:Verifying port 0.0.0.0:8765 ... 2024-04-18T22:52:36.049 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:35 smithi016 bash[21452]: cluster 2024-04-18T22:52:34.903485+0000 mon.a (mon.0) 1 : cluster 1 mon.a is new leader, mons a in quorum (ranks 0) 2024-04-18T22:52:36.049 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:35 smithi016 bash[21452]: cluster 2024-04-18T22:52:34.903554+0000 mon.a (mon.0) 2 : cluster 0 monmap epoch 1 2024-04-18T22:52:36.049 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:35 smithi016 bash[21452]: cluster 2024-04-18T22:52:34.903563+0000 mon.a (mon.0) 3 : cluster 0 fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T22:52:36.049 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:35 smithi016 bash[21452]: cluster 2024-04-18T22:52:34.903572+0000 mon.a (mon.0) 4 : cluster 0 last_changed 2024-04-18T22:52:24.457677+0000 2024-04-18T22:52:36.050 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:35 smithi016 bash[21452]: cluster 2024-04-18T22:52:34.903579+0000 mon.a (mon.0) 5 : cluster 0 created 2024-04-18T22:52:24.457677+0000 2024-04-18T22:52:36.050 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:35 smithi016 bash[21452]: cluster 2024-04-18T22:52:34.903595+0000 mon.a (mon.0) 6 : cluster 0 min_mon_release 19 (squid) 2024-04-18T22:52:36.050 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:35 smithi016 bash[21452]: cluster 2024-04-18T22:52:34.903604+0000 mon.a (mon.0) 7 : cluster 0 election_strategy: 1 2024-04-18T22:52:36.050 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:35 smithi016 bash[21452]: cluster 2024-04-18T22:52:34.903615+0000 mon.a (mon.0) 8 : cluster 0 0: [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] mon.a 2024-04-18T22:52:36.050 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:35 smithi016 bash[21452]: cluster 2024-04-18T22:52:34.904028+0000 mon.a (mon.0) 9 : cluster 0 fsmap 2024-04-18T22:52:36.051 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:35 smithi016 bash[21452]: cluster 2024-04-18T22:52:34.904053+0000 mon.a (mon.0) 10 : cluster 0 osdmap e1: 0 total, 0 up, 0 in 2024-04-18T22:52:36.051 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:35 smithi016 bash[21452]: cluster 2024-04-18T22:52:34.904418+0000 mon.a (mon.0) 11 : cluster 0 mgrmap e1: no daemons active 2024-04-18T22:52:36.051 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:35 smithi016 bash[21452]: audit 2024-04-18T22:52:35.075472+0000 mon.a (mon.0) 12 : audit 1 from='client.? 172.21.15.16:0/118235792' entity='client.admin' 2024-04-18T22:52:36.051 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:35 smithi016 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:52:36.051 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:36 smithi016 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:52:36.052 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:36 smithi016 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:52:36.056 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@mgr.a 2024-04-18T22:52:36.056 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Failed to reset failed state of unit ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@mgr.a.service: Unit ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@mgr.a.service not loaded. 2024-04-18T22:52:36.267 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968.target.wants/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@mgr.a.service -> /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service. 2024-04-18T22:52:36.275 INFO:teuthology.orchestra.run.smithi016.stdout:firewalld does not appear to be present 2024-04-18T22:52:36.275 INFO:teuthology.orchestra.run.smithi016.stdout:Not possible to enable service . firewalld.service is not available 2024-04-18T22:52:36.275 INFO:teuthology.orchestra.run.smithi016.stdout:firewalld does not appear to be present 2024-04-18T22:52:36.275 INFO:teuthology.orchestra.run.smithi016.stdout:Not possible to open ports <[9283, 8765]>. firewalld.service is not available 2024-04-18T22:52:36.275 INFO:teuthology.orchestra.run.smithi016.stdout:Waiting for mgr to start... 2024-04-18T22:52:36.275 INFO:teuthology.orchestra.run.smithi016.stdout:Waiting for mgr... 2024-04-18T22:52:36.315 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:36 smithi016 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:52:36.315 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:36 smithi016 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:52:36.315 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:36 smithi016 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:52:36.315 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:36 smithi016 systemd[1]: Started Ceph mgr.a for 1266e2ee-fdd6-11ee-bc92-c7b262605968. 2024-04-18T22:52:38.027 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:37 smithi016 bash[21452]: audit 2024-04-18T22:52:37.864776+0000 mon.a (mon.0) 13 : audit 0 from='client.? 172.21.15.16:0/830388558' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-18T22:52:38.028 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:37 smithi016 bash[21706]: debug 2024-04-18T22:52:37.758+0000 7fcae314b200 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-04-18T22:52:38.501 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-18T22:52:38.501 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout { 2024-04-18T22:52:38.501 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "fsid": "1266e2ee-fdd6-11ee-bc92-c7b262605968", 2024-04-18T22:52:38.502 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "health": { 2024-04-18T22:52:38.502 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-18T22:52:38.502 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-18T22:52:38.502 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-18T22:52:38.502 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-18T22:52:38.502 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-18T22:52:38.502 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-18T22:52:38.502 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 0 2024-04-18T22:52:38.502 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout ], 2024-04-18T22:52:38.502 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-18T22:52:38.502 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "a" 2024-04-18T22:52:38.502 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout ], 2024-04-18T22:52:38.502 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2024-04-18T22:52:38.502 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-18T22:52:38.502 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-18T22:52:38.503 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-18T22:52:38.503 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-18T22:52:38.503 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-18T22:52:38.503 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-18T22:52:38.503 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-18T22:52:38.503 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-18T22:52:38.503 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-18T22:52:38.503 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-18T22:52:38.503 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-18T22:52:38.503 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-18T22:52:38.503 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-18T22:52:38.506 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-18T22:52:38.506 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-18T22:52:38.506 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-18T22:52:38.506 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-18T22:52:38.506 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-18T22:52:38.506 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-18T22:52:38.507 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-18T22:52:38.507 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-18T22:52:38.507 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-18T22:52:38.507 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-18T22:52:38.507 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-18T22:52:38.507 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-18T22:52:38.507 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-18T22:52:38.507 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-18T22:52:38.507 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-18T22:52:38.507 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-18T22:52:38.507 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-18T22:52:38.507 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-18T22:52:38.507 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-18T22:52:38.507 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-18T22:52:38.507 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-18T22:52:38.507 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-18T22:52:38.507 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "restful" 2024-04-18T22:52:38.508 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout ], 2024-04-18T22:52:38.508 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-18T22:52:38.508 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-18T22:52:38.508 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-18T22:52:38.508 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-18T22:52:38.508 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "modified": "2024-04-18T22:52:28.964117+0000", 2024-04-18T22:52:38.508 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-18T22:52:38.508 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-18T22:52:38.508 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-18T22:52:38.508 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout } 2024-04-18T22:52:38.508 INFO:teuthology.orchestra.run.smithi016.stdout:mgr not available, waiting (1/15)... 2024-04-18T22:52:39.670 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:39 smithi016 bash[21706]: debug 2024-04-18T22:52:39.386+0000 7fcae314b200 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-04-18T22:52:39.671 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:39 smithi016 bash[21706]: debug 2024-04-18T22:52:39.486+0000 7fcae314b200 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-04-18T22:52:40.170 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:39 smithi016 bash[21706]: debug 2024-04-18T22:52:39.738+0000 7fcae314b200 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-04-18T22:52:40.786 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:40 smithi016 bash[21706]: debug 2024-04-18T22:52:40.566+0000 7fcae314b200 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-04-18T22:52:40.786 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:40 smithi016 bash[21706]: debug 2024-04-18T22:52:40.678+0000 7fcae314b200 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-04-18T22:52:40.786 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:40 smithi016 bash[21706]: debug 2024-04-18T22:52:40.786+0000 7fcae314b200 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-04-18T22:52:41.420 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:41 smithi016 bash[21706]: debug 2024-04-18T22:52:41.154+0000 7fcae314b200 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-04-18T22:52:41.420 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:41 smithi016 bash[21706]: debug 2024-04-18T22:52:41.278+0000 7fcae314b200 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-04-18T22:52:41.420 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:41 smithi016 bash[21706]: debug 2024-04-18T22:52:41.386+0000 7fcae314b200 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-04-18T22:52:41.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:41 smithi016 bash[21452]: audit 2024-04-18T22:52:41.640829+0000 mon.a (mon.0) 14 : audit 0 from='client.? 172.21.15.16:0/3965643246' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-18T22:52:41.921 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:41 smithi016 bash[21706]: debug 2024-04-18T22:52:41.754+0000 7fcae314b200 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-04-18T22:52:42.226 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-18T22:52:42.226 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout { 2024-04-18T22:52:42.226 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "fsid": "1266e2ee-fdd6-11ee-bc92-c7b262605968", 2024-04-18T22:52:42.226 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "health": { 2024-04-18T22:52:42.226 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-18T22:52:42.226 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-18T22:52:42.227 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-18T22:52:42.227 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-18T22:52:42.227 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-18T22:52:42.227 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-18T22:52:42.227 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 0 2024-04-18T22:52:42.227 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout ], 2024-04-18T22:52:42.227 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-18T22:52:42.227 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "a" 2024-04-18T22:52:42.227 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout ], 2024-04-18T22:52:42.227 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "quorum_age": 6, 2024-04-18T22:52:42.227 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-18T22:52:42.227 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-18T22:52:42.227 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-18T22:52:42.227 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-18T22:52:42.227 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-18T22:52:42.227 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-18T22:52:42.228 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-18T22:52:42.228 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-18T22:52:42.228 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-18T22:52:42.228 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-18T22:52:42.228 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-18T22:52:42.228 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-18T22:52:42.228 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-18T22:52:42.228 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-18T22:52:42.228 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-18T22:52:42.228 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-18T22:52:42.228 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-18T22:52:42.228 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-18T22:52:42.228 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-18T22:52:42.228 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-18T22:52:42.228 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-18T22:52:42.229 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-18T22:52:42.229 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-18T22:52:42.229 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-18T22:52:42.229 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-18T22:52:42.229 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-18T22:52:42.229 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-18T22:52:42.229 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-18T22:52:42.229 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-18T22:52:42.229 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-18T22:52:42.229 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-18T22:52:42.229 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-18T22:52:42.229 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-18T22:52:42.229 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-18T22:52:42.229 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-18T22:52:42.229 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "restful" 2024-04-18T22:52:42.229 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout ], 2024-04-18T22:52:42.230 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-18T22:52:42.230 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-18T22:52:42.230 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-18T22:52:42.230 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-18T22:52:42.230 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "modified": "2024-04-18T22:52:28.964117+0000", 2024-04-18T22:52:42.230 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-18T22:52:42.230 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-18T22:52:42.230 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-18T22:52:42.230 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout } 2024-04-18T22:52:42.230 INFO:teuthology.orchestra.run.smithi016.stdout:mgr not available, waiting (2/15)... 2024-04-18T22:52:42.271 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:42 smithi016 bash[21706]: debug 2024-04-18T22:52:42.002+0000 7fcae314b200 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-04-18T22:52:42.669 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:42 smithi016 bash[21706]: debug 2024-04-18T22:52:42.270+0000 7fcae314b200 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-04-18T22:52:42.669 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:42 smithi016 bash[21706]: debug 2024-04-18T22:52:42.386+0000 7fcae314b200 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-04-18T22:52:42.920 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:42 smithi016 bash[21706]: debug 2024-04-18T22:52:42.666+0000 7fcae314b200 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-04-18T22:52:43.420 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:43 smithi016 bash[21706]: debug 2024-04-18T22:52:43.090+0000 7fcae314b200 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-04-18T22:52:43.420 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:43 smithi016 bash[21706]: debug 2024-04-18T22:52:43.330+0000 7fcae314b200 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-04-18T22:52:43.710 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:43 smithi016 bash[21706]: debug 2024-04-18T22:52:43.454+0000 7fcae314b200 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-04-18T22:52:44.670 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:43 smithi016 bash[21706]: debug 2024-04-18T22:52:43.710+0000 7fcae314b200 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-04-18T22:52:45.170 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:44 smithi016 bash[21706]: debug 2024-04-18T22:52:44.746+0000 7fcae314b200 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-04-18T22:52:45.170 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:44 smithi016 bash[21706]: debug 2024-04-18T22:52:44.866+0000 7fcae314b200 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-04-18T22:52:45.501 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:45 smithi016 bash[21706]: debug 2024-04-18T22:52:45.182+0000 7fcae314b200 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-04-18T22:52:45.501 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:45 smithi016 bash[21706]: debug 2024-04-18T22:52:45.302+0000 7fcae314b200 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-04-18T22:52:45.501 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:45 smithi016 bash[21452]: audit 2024-04-18T22:52:45.274132+0000 mon.a (mon.0) 15 : audit 0 from='client.? 172.21.15.16:0/3674150626' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-18T22:52:45.873 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-18T22:52:45.873 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout { 2024-04-18T22:52:45.873 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "fsid": "1266e2ee-fdd6-11ee-bc92-c7b262605968", 2024-04-18T22:52:45.873 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "health": { 2024-04-18T22:52:45.873 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-18T22:52:45.874 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-18T22:52:45.874 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-18T22:52:45.874 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-18T22:52:45.874 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-18T22:52:45.874 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-18T22:52:45.874 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 0 2024-04-18T22:52:45.874 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout ], 2024-04-18T22:52:45.874 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-18T22:52:45.874 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "a" 2024-04-18T22:52:45.874 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout ], 2024-04-18T22:52:45.874 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "quorum_age": 10, 2024-04-18T22:52:45.874 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-18T22:52:45.874 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-18T22:52:45.874 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-18T22:52:45.875 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-18T22:52:45.875 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-18T22:52:45.875 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-18T22:52:45.875 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-18T22:52:45.875 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-18T22:52:45.875 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-18T22:52:45.875 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-18T22:52:45.875 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-18T22:52:45.875 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-18T22:52:45.875 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-18T22:52:45.875 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-18T22:52:45.875 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-18T22:52:45.875 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-18T22:52:45.875 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-18T22:52:45.875 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-18T22:52:45.876 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-18T22:52:45.876 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-18T22:52:45.876 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-18T22:52:45.876 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-18T22:52:45.876 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-18T22:52:45.876 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-18T22:52:45.876 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-18T22:52:45.876 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-18T22:52:45.876 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-18T22:52:45.876 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-18T22:52:45.876 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-18T22:52:45.876 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-18T22:52:45.876 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-18T22:52:45.876 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-18T22:52:45.876 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-18T22:52:45.877 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-18T22:52:45.877 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-18T22:52:45.877 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "restful" 2024-04-18T22:52:45.877 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout ], 2024-04-18T22:52:45.877 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-18T22:52:45.877 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-18T22:52:45.877 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-18T22:52:45.877 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-18T22:52:45.877 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "modified": "2024-04-18T22:52:28.964117+0000", 2024-04-18T22:52:45.877 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-18T22:52:45.877 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-18T22:52:45.877 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-18T22:52:45.877 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout } 2024-04-18T22:52:45.877 INFO:teuthology.orchestra.run.smithi016.stdout:mgr not available, waiting (3/15)... 2024-04-18T22:52:46.170 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:45 smithi016 bash[21706]: debug 2024-04-18T22:52:45.766+0000 7fcae314b200 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-04-18T22:52:46.171 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:45 smithi016 bash[21706]: debug 2024-04-18T22:52:45.890+0000 7fcae314b200 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-04-18T22:52:46.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:46 smithi016 bash[21452]: cluster 2024-04-18T22:52:45.894257+0000 mon.a (mon.0) 16 : cluster 1 Activating manager daemon a 2024-04-18T22:52:46.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:46 smithi016 bash[21452]: cluster 2024-04-18T22:52:45.900794+0000 mon.a (mon.0) 17 : cluster 0 mgrmap e2: a(active, starting, since 0.00671392s) 2024-04-18T22:52:46.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:46 smithi016 bash[21452]: audit 2024-04-18T22:52:45.901625+0000 mon.a (mon.0) 18 : audit 0 from='mgr.14100 172.21.15.16:0/1715217950' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-18T22:52:46.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:46 smithi016 bash[21452]: audit 2024-04-18T22:52:45.901848+0000 mon.a (mon.0) 19 : audit 0 from='mgr.14100 172.21.15.16:0/1715217950' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-18T22:52:46.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:46 smithi016 bash[21452]: audit 2024-04-18T22:52:45.902049+0000 mon.a (mon.0) 20 : audit 0 from='mgr.14100 172.21.15.16:0/1715217950' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-18T22:52:46.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:46 smithi016 bash[21452]: audit 2024-04-18T22:52:45.902258+0000 mon.a (mon.0) 21 : audit 0 from='mgr.14100 172.21.15.16:0/1715217950' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-18T22:52:46.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:46 smithi016 bash[21452]: audit 2024-04-18T22:52:45.903228+0000 mon.a (mon.0) 22 : audit 0 from='mgr.14100 172.21.15.16:0/1715217950' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-04-18T22:52:46.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:46 smithi016 bash[21452]: cluster 2024-04-18T22:52:45.928967+0000 mon.a (mon.0) 23 : cluster 1 Manager daemon a is now available 2024-04-18T22:52:46.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:46 smithi016 bash[21452]: audit 2024-04-18T22:52:45.941228+0000 mon.a (mon.0) 24 : audit 1 from='mgr.14100 172.21.15.16:0/1715217950' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-04-18T22:52:46.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:46 smithi016 bash[21452]: audit 2024-04-18T22:52:45.944101+0000 mon.a (mon.0) 25 : audit 1 from='mgr.14100 172.21.15.16:0/1715217950' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-04-18T22:52:46.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:46 smithi016 bash[21452]: audit 2024-04-18T22:52:45.946826+0000 mon.a (mon.0) 26 : audit 1 from='mgr.14100 172.21.15.16:0/1715217950' entity='mgr.a' 2024-04-18T22:52:46.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:46 smithi016 bash[21452]: audit 2024-04-18T22:52:45.949282+0000 mon.a (mon.0) 27 : audit 1 from='mgr.14100 172.21.15.16:0/1715217950' entity='mgr.a' 2024-04-18T22:52:46.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:46 smithi016 bash[21452]: audit 2024-04-18T22:52:45.951297+0000 mon.a (mon.0) 28 : audit 1 from='mgr.14100 172.21.15.16:0/1715217950' entity='mgr.a' 2024-04-18T22:52:48.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:47 smithi016 bash[21452]: cluster 2024-04-18T22:52:46.907797+0000 mon.a (mon.0) 29 : cluster 0 mgrmap e3: a(active, since 1.01371s) 2024-04-18T22:52:49.993 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-18T22:52:49.993 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout { 2024-04-18T22:52:49.993 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "fsid": "1266e2ee-fdd6-11ee-bc92-c7b262605968", 2024-04-18T22:52:49.994 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "health": { 2024-04-18T22:52:49.994 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-18T22:52:49.994 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-18T22:52:49.994 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-18T22:52:49.994 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-18T22:52:49.994 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-18T22:52:49.994 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-18T22:52:49.994 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 0 2024-04-18T22:52:49.994 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout ], 2024-04-18T22:52:49.994 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-18T22:52:49.994 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "a" 2024-04-18T22:52:49.995 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout ], 2024-04-18T22:52:49.995 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "quorum_age": 14, 2024-04-18T22:52:49.995 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-18T22:52:49.995 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-18T22:52:49.995 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-18T22:52:49.995 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-18T22:52:49.995 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-18T22:52:49.995 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-18T22:52:49.995 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-18T22:52:49.995 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-18T22:52:49.995 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-18T22:52:49.995 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-18T22:52:49.995 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-18T22:52:49.995 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-18T22:52:49.995 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-18T22:52:49.999 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-18T22:52:49.999 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-18T22:52:49.999 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-18T22:52:49.999 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-18T22:52:49.999 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-18T22:52:50.000 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-18T22:52:50.000 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-18T22:52:50.000 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-18T22:52:50.000 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-18T22:52:50.000 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-18T22:52:50.000 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-18T22:52:50.000 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-18T22:52:50.000 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-18T22:52:50.000 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-18T22:52:50.000 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-18T22:52:50.000 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-18T22:52:50.000 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-18T22:52:50.000 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-18T22:52:50.000 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-18T22:52:50.000 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-18T22:52:50.001 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-18T22:52:50.001 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-18T22:52:50.001 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "restful" 2024-04-18T22:52:50.001 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout ], 2024-04-18T22:52:50.001 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-18T22:52:50.001 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-18T22:52:50.001 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-18T22:52:50.001 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-18T22:52:50.001 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "modified": "2024-04-18T22:52:28.964117+0000", 2024-04-18T22:52:50.001 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-18T22:52:50.001 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-18T22:52:50.001 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-18T22:52:50.001 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout } 2024-04-18T22:52:50.002 INFO:teuthology.orchestra.run.smithi016.stdout:mgr is available 2024-04-18T22:52:50.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:49 smithi016 bash[21452]: cluster 2024-04-18T22:52:48.905488+0000 mon.a (mon.0) 30 : cluster 0 mgrmap e4: a(active, since 3s) 2024-04-18T22:52:50.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:49 smithi016 bash[21452]: audit 2024-04-18T22:52:49.390318+0000 mon.a (mon.0) 31 : audit 0 from='client.? 172.21.15.16:0/2887802535' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-18T22:52:51.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:51 smithi016 bash[21452]: audit 2024-04-18T22:52:51.360623+0000 mon.a (mon.0) 32 : audit 1 from='client.? 172.21.15.16:0/3915535247' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-04-18T22:52:51.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:51 smithi016 bash[21452]: audit 2024-04-18T22:52:51.362679+0000 mon.a (mon.0) 33 : audit 1 from='client.? 172.21.15.16:0/3915535247' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-04-18T22:52:52.013 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-18T22:52:52.014 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout [global] 2024-04-18T22:52:52.014 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout fsid = 1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T22:52:52.014 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-04-18T22:52:52.014 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-04-18T22:52:52.014 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-04-18T22:52:52.014 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-04-18T22:52:52.015 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-18T22:52:52.015 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout [mgr] 2024-04-18T22:52:52.015 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-04-18T22:52:52.015 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-18T22:52:52.015 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout [osd] 2024-04-18T22:52:52.015 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-04-18T22:52:52.015 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-04-18T22:52:52.016 INFO:teuthology.orchestra.run.smithi016.stdout:Enabling cephadm module... 2024-04-18T22:52:53.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:53 smithi016 bash[21452]: audit 2024-04-18T22:52:53.413982+0000 mon.a (mon.0) 34 : audit 1 from='client.? 172.21.15.16:0/2536758328' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-04-18T22:52:53.921 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:53 smithi016 bash[21706]: ignoring --setuser ceph since I am not root 2024-04-18T22:52:53.921 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:53 smithi016 bash[21706]: ignoring --setgroup ceph since I am not root 2024-04-18T22:52:53.921 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:53 smithi016 bash[21706]: debug 2024-04-18T22:52:53.653+0000 7f42792d2200 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-04-18T22:52:54.803 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:54 smithi016 bash[21452]: audit 2024-04-18T22:52:53.466013+0000 mon.a (mon.0) 35 : audit 1 from='client.? 172.21.15.16:0/2536758328' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-04-18T22:52:54.803 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:54 smithi016 bash[21452]: cluster 2024-04-18T22:52:53.472415+0000 mon.a (mon.0) 36 : cluster 0 mgrmap e5: a(active, since 7s) 2024-04-18T22:52:55.550 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:55 smithi016 bash[21706]: debug 2024-04-18T22:52:55.277+0000 7f42792d2200 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-04-18T22:52:55.550 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:55 smithi016 bash[21706]: debug 2024-04-18T22:52:55.377+0000 7f42792d2200 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-04-18T22:52:55.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:52:55 smithi016 bash[21452]: audit 2024-04-18T22:52:55.503969+0000 mon.a (mon.0) 37 : audit 0 from='client.? 172.21.15.16:0/1946263030' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-04-18T22:52:55.920 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:55 smithi016 bash[21706]: debug 2024-04-18T22:52:55.637+0000 7f42792d2200 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-04-18T22:52:56.082 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout { 2024-04-18T22:52:56.082 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-04-18T22:52:56.082 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-18T22:52:56.082 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-04-18T22:52:56.082 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-04-18T22:52:56.082 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout } 2024-04-18T22:52:56.083 INFO:teuthology.orchestra.run.smithi016.stdout:Waiting for the mgr to restart... 2024-04-18T22:52:56.083 INFO:teuthology.orchestra.run.smithi016.stdout:Waiting for mgr epoch 5... 2024-04-18T22:52:56.744 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:56 smithi016 bash[21706]: debug 2024-04-18T22:52:56.461+0000 7f42792d2200 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-04-18T22:52:56.744 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:56 smithi016 bash[21706]: debug 2024-04-18T22:52:56.577+0000 7f42792d2200 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-04-18T22:52:56.744 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:56 smithi016 bash[21706]: debug 2024-04-18T22:52:56.685+0000 7f42792d2200 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-04-18T22:52:57.420 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:57 smithi016 bash[21706]: debug 2024-04-18T22:52:57.049+0000 7f42792d2200 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-04-18T22:52:57.421 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:57 smithi016 bash[21706]: debug 2024-04-18T22:52:57.169+0000 7f42792d2200 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-04-18T22:52:57.421 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:57 smithi016 bash[21706]: debug 2024-04-18T22:52:57.273+0000 7f42792d2200 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-04-18T22:52:57.920 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:57 smithi016 bash[21706]: debug 2024-04-18T22:52:57.645+0000 7f42792d2200 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-04-18T22:52:57.920 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:57 smithi016 bash[21706]: debug 2024-04-18T22:52:57.889+0000 7f42792d2200 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-04-18T22:52:58.420 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:58 smithi016 bash[21706]: debug 2024-04-18T22:52:58.157+0000 7f42792d2200 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-04-18T22:52:58.421 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:58 smithi016 bash[21706]: debug 2024-04-18T22:52:58.273+0000 7f42792d2200 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-04-18T22:52:58.920 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:58 smithi016 bash[21706]: debug 2024-04-18T22:52:58.557+0000 7f42792d2200 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-04-18T22:52:59.356 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:58 smithi016 bash[21706]: debug 2024-04-18T22:52:58.985+0000 7f42792d2200 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-04-18T22:52:59.356 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:59 smithi016 bash[21706]: debug 2024-04-18T22:52:59.229+0000 7f42792d2200 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-04-18T22:52:59.920 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:59 smithi016 bash[21706]: debug 2024-04-18T22:52:59.353+0000 7f42792d2200 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-04-18T22:52:59.921 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:52:59 smithi016 bash[21706]: debug 2024-04-18T22:52:59.609+0000 7f42792d2200 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-04-18T22:53:01.114 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:00 smithi016 bash[21706]: debug 2024-04-18T22:53:00.693+0000 7f42792d2200 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-04-18T22:53:01.114 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:00 smithi016 bash[21706]: debug 2024-04-18T22:53:00.809+0000 7f42792d2200 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-04-18T22:53:01.420 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:01 smithi016 bash[21706]: debug 2024-04-18T22:53:01.113+0000 7f42792d2200 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-04-18T22:53:01.421 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:01 smithi016 bash[21706]: debug 2024-04-18T22:53:01.229+0000 7f42792d2200 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-04-18T22:53:02.170 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:01 smithi016 bash[21706]: debug 2024-04-18T22:53:01.697+0000 7f42792d2200 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-04-18T22:53:02.171 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:01 smithi016 bash[21706]: debug 2024-04-18T22:53:01.821+0000 7f42792d2200 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-04-18T22:53:02.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:01 smithi016 bash[21452]: cluster 2024-04-18T22:53:01.844947+0000 mon.a (mon.0) 38 : cluster 1 Active manager daemon a restarted 2024-04-18T22:53:02.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:01 smithi016 bash[21452]: cluster 2024-04-18T22:53:01.845207+0000 mon.a (mon.0) 39 : cluster 1 Activating manager daemon a 2024-04-18T22:53:02.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:01 smithi016 bash[21452]: cluster 2024-04-18T22:53:01.851825+0000 mon.a (mon.0) 40 : cluster 0 osdmap e2: 0 total, 0 up, 0 in 2024-04-18T22:53:02.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:01 smithi016 bash[21452]: cluster 2024-04-18T22:53:01.852067+0000 mon.a (mon.0) 41 : cluster 0 mgrmap e6: a(active, starting, since 0.00695363s) 2024-04-18T22:53:02.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:01 smithi016 bash[21452]: audit 2024-04-18T22:53:01.853080+0000 mon.a (mon.0) 42 : audit 0 from='mgr.14120 172.21.15.16:0/2894708767' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-18T22:53:02.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:01 smithi016 bash[21452]: audit 2024-04-18T22:53:01.855055+0000 mon.a (mon.0) 43 : audit 0 from='mgr.14120 172.21.15.16:0/2894708767' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-04-18T22:53:02.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:01 smithi016 bash[21452]: audit 2024-04-18T22:53:01.856222+0000 mon.a (mon.0) 44 : audit 0 from='mgr.14120 172.21.15.16:0/2894708767' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-18T22:53:02.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:01 smithi016 bash[21452]: audit 2024-04-18T22:53:01.856339+0000 mon.a (mon.0) 45 : audit 0 from='mgr.14120 172.21.15.16:0/2894708767' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-18T22:53:02.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:01 smithi016 bash[21452]: audit 2024-04-18T22:53:01.856477+0000 mon.a (mon.0) 46 : audit 0 from='mgr.14120 172.21.15.16:0/2894708767' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-18T22:53:02.172 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:01 smithi016 bash[21452]: cluster 2024-04-18T22:53:01.880978+0000 mon.a (mon.0) 47 : cluster 1 Manager daemon a is now available 2024-04-18T22:53:03.048 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:02 smithi016 bash[21452]: cephadm 2024-04-18T22:53:01.899460+0000 mgr.a (mgr.14120) 1 : cephadm 1 Found migration_current of "None". Setting to last migration. 2024-04-18T22:53:03.048 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:02 smithi016 bash[21452]: audit 2024-04-18T22:53:01.901163+0000 mon.a (mon.0) 48 : audit 1 from='mgr.14120 172.21.15.16:0/2894708767' entity='mgr.a' 2024-04-18T22:53:03.049 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:02 smithi016 bash[21452]: audit 2024-04-18T22:53:01.903861+0000 mon.a (mon.0) 49 : audit 1 from='mgr.14120 172.21.15.16:0/2894708767' entity='mgr.a' 2024-04-18T22:53:03.049 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:02 smithi016 bash[21452]: audit 2024-04-18T22:53:01.907202+0000 mon.a (mon.0) 50 : audit 0 from='mgr.14120 172.21.15.16:0/2894708767' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:53:03.049 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:02 smithi016 bash[21452]: audit 2024-04-18T22:53:01.910702+0000 mon.a (mon.0) 51 : audit 0 from='mgr.14120 172.21.15.16:0/2894708767' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:53:03.049 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:02 smithi016 bash[21452]: audit 2024-04-18T22:53:01.925602+0000 mon.a (mon.0) 52 : audit 1 from='mgr.14120 172.21.15.16:0/2894708767' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-04-18T22:53:03.049 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:02 smithi016 bash[21452]: audit 2024-04-18T22:53:01.927190+0000 mon.a (mon.0) 53 : audit 1 from='mgr.14120 172.21.15.16:0/2894708767' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-04-18T22:53:03.049 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:02 smithi016 bash[21452]: audit 2024-04-18T22:53:02.677435+0000 mon.a (mon.0) 54 : audit 1 from='mgr.14120 172.21.15.16:0/2894708767' entity='mgr.a' 2024-04-18T22:53:03.049 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:02 smithi016 bash[21452]: audit 2024-04-18T22:53:02.682810+0000 mon.a (mon.0) 55 : audit 1 from='mgr.14120 172.21.15.16:0/2894708767' entity='mgr.a' 2024-04-18T22:53:03.049 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:02 smithi016 bash[21452]: cluster 2024-04-18T22:53:02.856871+0000 mon.a (mon.0) 56 : cluster 0 mgrmap e7: a(active, since 1.01175s) 2024-04-18T22:53:03.470 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout { 2024-04-18T22:53:03.470 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-04-18T22:53:03.470 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "initialized": true 2024-04-18T22:53:03.470 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout } 2024-04-18T22:53:03.471 INFO:teuthology.orchestra.run.smithi016.stdout:mgr epoch 5 is available 2024-04-18T22:53:03.471 INFO:teuthology.orchestra.run.smithi016.stdout:Setting orchestrator backend to cephadm... 2024-04-18T22:53:04.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:03 smithi016 bash[21452]: audit 2024-04-18T22:53:02.854526+0000 mgr.a (mgr.14120) 2 : audit 0 from='client.14124 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-04-18T22:53:04.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:03 smithi016 bash[21452]: audit 2024-04-18T22:53:02.867206+0000 mgr.a (mgr.14120) 3 : audit 0 from='client.14124 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-04-18T22:53:04.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:03 smithi016 bash[21452]: audit 2024-04-18T22:53:03.833067+0000 mon.a (mon.0) 57 : audit 0 from='mgr.14120 172.21.15.16:0/2894708767' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:53:05.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:04 smithi016 bash[21452]: cephadm 2024-04-18T22:53:03.610626+0000 mgr.a (mgr.14120) 4 : cephadm 1 [18/Apr/2024:22:53:03] ENGINE Bus STARTING 2024-04-18T22:53:05.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:04 smithi016 bash[21452]: cephadm 2024-04-18T22:53:03.728747+0000 mgr.a (mgr.14120) 5 : cephadm 1 [18/Apr/2024:22:53:03] ENGINE Serving on https://172.21.15.16:7150 2024-04-18T22:53:05.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:04 smithi016 bash[21452]: cephadm 2024-04-18T22:53:03.830186+0000 mgr.a (mgr.14120) 6 : cephadm 1 [18/Apr/2024:22:53:03] ENGINE Serving on http://172.21.15.16:8765 2024-04-18T22:53:05.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:04 smithi016 bash[21452]: cephadm 2024-04-18T22:53:03.830297+0000 mgr.a (mgr.14120) 7 : cephadm 1 [18/Apr/2024:22:53:03] ENGINE Bus STARTED 2024-04-18T22:53:05.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:04 smithi016 bash[21452]: cluster 2024-04-18T22:53:03.908137+0000 mon.a (mon.0) 58 : cluster 0 mgrmap e8: a(active, since 2s) 2024-04-18T22:53:05.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:04 smithi016 bash[21452]: audit 2024-04-18T22:53:04.802366+0000 mon.a (mon.0) 59 : audit 1 from='mgr.14120 172.21.15.16:0/2894708767' entity='mgr.a' 2024-04-18T22:53:05.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:04 smithi016 bash[21452]: audit 2024-04-18T22:53:04.852342+0000 mon.a (mon.0) 60 : audit 0 from='mgr.14120 172.21.15.16:0/2894708767' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:53:06.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:05 smithi016 bash[21452]: audit 2024-04-18T22:53:04.794945+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-04-18T22:53:07.232 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout value unchanged 2024-04-18T22:53:07.232 INFO:teuthology.orchestra.run.smithi016.stdout:Generating ssh key... 2024-04-18T22:53:07.919 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:07 smithi016 bash[21452]: audit 2024-04-18T22:53:06.672169+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-04-18T22:53:08.897 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:08 smithi016 bash[21452]: audit 2024-04-18T22:53:08.509441+0000 mgr.a (mgr.14120) 10 : audit 0 from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T22:53:08.897 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:08 smithi016 bash[21452]: cephadm 2024-04-18T22:53:08.509731+0000 mgr.a (mgr.14120) 11 : cephadm 1 Generating ssh key... 2024-04-18T22:53:09.171 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:08 smithi016 bash[21706]: Generating public/private rsa key pair. 2024-04-18T22:53:09.171 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:08 smithi016 bash[21706]: Your identification has been saved in /tmp/tmp1t6vmbsy/key. 2024-04-18T22:53:09.171 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:08 smithi016 bash[21706]: Your public key has been saved in /tmp/tmp1t6vmbsy/key.pub. 2024-04-18T22:53:09.171 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:08 smithi016 bash[21706]: The key fingerprint is: 2024-04-18T22:53:09.171 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:08 smithi016 bash[21706]: SHA256:ZBY3EFrXSPfta8DdfUK1U3OOO4OnGIrbfGZFqKIx2bw ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T22:53:09.172 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:08 smithi016 bash[21706]: The key's randomart image is: 2024-04-18T22:53:09.172 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:08 smithi016 bash[21706]: +---[RSA 3072]----+ 2024-04-18T22:53:09.172 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:08 smithi016 bash[21706]: | =+=o. .+| 2024-04-18T22:53:09.172 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:08 smithi016 bash[21706]: | o +.o.. ==| 2024-04-18T22:53:09.172 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:08 smithi016 bash[21706]: | . + . +oo| 2024-04-18T22:53:09.172 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:08 smithi016 bash[21706]: | + . oo.o+| 2024-04-18T22:53:09.172 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:08 smithi016 bash[21706]: | + S....o*.=| 2024-04-18T22:53:09.172 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:08 smithi016 bash[21706]: | + +... o.o.+o| 2024-04-18T22:53:09.172 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:08 smithi016 bash[21706]: | +.o. ... o | 2024-04-18T22:53:09.172 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:08 smithi016 bash[21706]: | . E+ + . | 2024-04-18T22:53:09.172 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:08 smithi016 bash[21706]: | . o+ | 2024-04-18T22:53:09.172 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:08 smithi016 bash[21706]: +----[SHA256]-----+ 2024-04-18T22:53:10.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:09 smithi016 bash[21452]: audit 2024-04-18T22:53:08.906169+0000 mon.a (mon.0) 61 : audit 1 from='mgr.14120 172.21.15.16:0/2894708767' entity='mgr.a' 2024-04-18T22:53:10.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:09 smithi016 bash[21452]: audit 2024-04-18T22:53:08.910715+0000 mon.a (mon.0) 62 : audit 1 from='mgr.14120 172.21.15.16:0/2894708767' entity='mgr.a' 2024-04-18T22:53:11.417 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDdLJUQHmOPFnCxIPR8ZsG5cH+44c2QlP/mCLMcy4g891MzkjER6DySpixHcgHPVIhzC+4BOXH2HEMzGaGXR8qPyyA59AbaZPfb+vwbHyTyizpXpeh2j8pko5MFV8SgCxm3MSO+snabu59OpDObL0n6Ar1apPR+MSLPTH1N/8SwNEcGwHbiYS4PW4zAERdIjdzRAqlMC9mJvEZF+uoPIZ2lba79rg+kzWt9Hpo4vE1g/PeeMLE4YX3vw6YtXz3SpxDpScSz3Xhh1TvidMZy9xlI7l180w6/eG2kEJdiaDHwOLEwKHw/V/esCB1OwsXcJo+c9duV1mZBUu+WGrp7a7Ie31py1J9mUgVo/j2OSN8c56vvO3GeXk11g93czGcMhYyEqjFtyO0r1BTYqgUAanboZgqp3qPkIAchmGLGgky25D34g+OB861CiCxldSodqPLrNJNTi6i8pOsmr0dWslAbmaBaj1BY7WSYtWI1CGU2DFI1O4Ach4Ro2XIIMXide1E= ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T22:53:11.418 INFO:teuthology.orchestra.run.smithi016.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-04-18T22:53:11.418 INFO:teuthology.orchestra.run.smithi016.stdout:Adding key to root@localhost authorized_keys... 2024-04-18T22:53:11.418 INFO:teuthology.orchestra.run.smithi016.stdout:Adding host smithi016... 2024-04-18T22:53:11.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:11 smithi016 bash[21452]: audit 2024-04-18T22:53:10.787232+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-04-18T22:53:13.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:13 smithi016 bash[21452]: audit 2024-04-18T22:53:12.681338+0000 mgr.a (mgr.14120) 13 : audit 0 from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi016", "addr": "172.21.15.16", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T22:53:13.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:13 smithi016 bash[21452]: cephadm 2024-04-18T22:53:13.299254+0000 mgr.a (mgr.14120) 14 : cephadm 1 Deploying cephadm binary to smithi016 2024-04-18T22:53:19.283 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout Added host 'smithi016' with addr '172.21.15.16' 2024-04-18T22:53:19.284 INFO:teuthology.orchestra.run.smithi016.stdout:Deploying unmanaged mon service... 2024-04-18T22:53:19.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:19 smithi016 bash[21452]: audit 2024-04-18T22:53:18.448543+0000 mon.a (mon.0) 63 : audit 1 from='mgr.14120 172.21.15.16:0/2894708767' entity='mgr.a' 2024-04-18T22:53:19.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:19 smithi016 bash[21452]: cephadm 2024-04-18T22:53:18.449049+0000 mgr.a (mgr.14120) 15 : cephadm 1 Added host smithi016 2024-04-18T22:53:19.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:19 smithi016 bash[21452]: audit 2024-04-18T22:53:18.495506+0000 mon.a (mon.0) 64 : audit 0 from='mgr.14120 172.21.15.16:0/2894708767' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:53:21.978 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-04-18T22:53:21.978 INFO:teuthology.orchestra.run.smithi016.stdout:Deploying unmanaged mgr service... 2024-04-18T22:53:22.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:22 smithi016 bash[21452]: audit 2024-04-18T22:53:21.203923+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-04-18T22:53:22.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:22 smithi016 bash[21452]: cephadm 2024-04-18T22:53:21.207193+0000 mgr.a (mgr.14120) 17 : cephadm 1 Saving service mon spec with placement count:5 2024-04-18T22:53:22.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:22 smithi016 bash[21452]: audit 2024-04-18T22:53:21.211937+0000 mon.a (mon.0) 65 : audit 1 from='mgr.14120 172.21.15.16:0/2894708767' entity='mgr.a' 2024-04-18T22:53:22.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:22 smithi016 bash[21452]: audit 2024-04-18T22:53:21.621942+0000 mon.a (mon.0) 66 : audit 1 from='mgr.14120 172.21.15.16:0/2894708767' entity='mgr.a' 2024-04-18T22:53:22.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:22 smithi016 bash[21452]: audit 2024-04-18T22:53:22.118228+0000 mon.a (mon.0) 67 : audit 1 from='mgr.14120 172.21.15.16:0/2894708767' entity='mgr.a' 2024-04-18T22:53:23.547 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:23 smithi016 bash[21452]: cluster 2024-04-18T22:53:21.857889+0000 mgr.a (mgr.14120) 18 : cluster 0 pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:53:24.034 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-04-18T22:53:24.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:24 smithi016 bash[21452]: audit 2024-04-18T22:53:23.317676+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-04-18T22:53:24.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:24 smithi016 bash[21452]: cephadm 2024-04-18T22:53:23.319351+0000 mgr.a (mgr.14120) 20 : cephadm 1 Saving service mgr spec with placement count:2 2024-04-18T22:53:24.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:24 smithi016 bash[21452]: audit 2024-04-18T22:53:23.323604+0000 mon.a (mon.0) 68 : audit 1 from='mgr.14120 172.21.15.16:0/2894708767' entity='mgr.a' 2024-04-18T22:53:25.587 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:25 smithi016 bash[21452]: cluster 2024-04-18T22:53:23.858347+0000 mgr.a (mgr.14120) 21 : cluster 0 pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:53:26.659 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:26 smithi016 bash[21452]: audit 2024-04-18T22:53:25.360245+0000 mon.a (mon.0) 69 : audit 1 from='client.? 172.21.15.16:0/1125068955' entity='client.admin' 2024-04-18T22:53:27.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:27 smithi016 bash[21452]: cluster 2024-04-18T22:53:25.858810+0000 mgr.a (mgr.14120) 22 : cluster 0 pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:53:27.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:27 smithi016 bash[21452]: audit 2024-04-18T22:53:27.258459+0000 mon.a (mon.0) 70 : audit 1 from='client.? 172.21.15.16:0/1923332018' entity='client.admin' 2024-04-18T22:53:27.830 INFO:teuthology.orchestra.run.smithi016.stdout:Enabling the dashboard module... 2024-04-18T22:53:29.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:29 smithi016 bash[21452]: cluster 2024-04-18T22:53:27.859167+0000 mgr.a (mgr.14120) 23 : cluster 0 pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:53:29.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:29 smithi016 bash[21452]: audit 2024-04-18T22:53:29.261071+0000 mon.a (mon.0) 71 : audit 1 from='client.? 172.21.15.16:0/1711266573' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-04-18T22:53:29.671 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:29 smithi016 bash[21706]: ignoring --setuser ceph since I am not root 2024-04-18T22:53:29.671 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:29 smithi016 bash[21706]: ignoring --setgroup ceph since I am not root 2024-04-18T22:53:29.671 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:29 smithi016 bash[21706]: debug 2024-04-18T22:53:29.561+0000 7f44144c1200 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-04-18T22:53:30.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:30 smithi016 bash[21452]: audit 2024-04-18T22:53:29.366189+0000 mon.a (mon.0) 72 : audit 1 from='client.? 172.21.15.16:0/1711266573' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-04-18T22:53:30.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:30 smithi016 bash[21452]: cluster 2024-04-18T22:53:29.370436+0000 mon.a (mon.0) 73 : cluster 0 mgrmap e9: a(active, since 27s) 2024-04-18T22:53:31.494 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:31 smithi016 bash[21706]: debug 2024-04-18T22:53:31.225+0000 7f44144c1200 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-04-18T22:53:31.495 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:31 smithi016 bash[21706]: debug 2024-04-18T22:53:31.329+0000 7f44144c1200 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-04-18T22:53:31.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:31 smithi016 bash[21452]: audit 2024-04-18T22:53:31.481341+0000 mon.a (mon.0) 74 : audit 0 from='client.? 172.21.15.16:0/901223792' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-04-18T22:53:31.921 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:31 smithi016 bash[21706]: debug 2024-04-18T22:53:31.589+0000 7f44144c1200 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-04-18T22:53:32.174 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout { 2024-04-18T22:53:32.175 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-04-18T22:53:32.175 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-18T22:53:32.175 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-04-18T22:53:32.175 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-04-18T22:53:32.175 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout } 2024-04-18T22:53:32.175 INFO:teuthology.orchestra.run.smithi016.stdout:Waiting for the mgr to restart... 2024-04-18T22:53:32.175 INFO:teuthology.orchestra.run.smithi016.stdout:Waiting for mgr epoch 9... 2024-04-18T22:53:32.541 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:32 smithi016 bash[21706]: debug 2024-04-18T22:53:32.421+0000 7f44144c1200 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-04-18T22:53:32.865 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:32 smithi016 bash[21706]: debug 2024-04-18T22:53:32.537+0000 7f44144c1200 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-04-18T22:53:32.865 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:32 smithi016 bash[21706]: debug 2024-04-18T22:53:32.649+0000 7f44144c1200 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-04-18T22:53:33.140 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:33 smithi016 bash[21706]: debug 2024-04-18T22:53:33.021+0000 7f44144c1200 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-04-18T22:53:33.421 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:33 smithi016 bash[21706]: debug 2024-04-18T22:53:33.137+0000 7f44144c1200 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-04-18T22:53:33.421 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:33 smithi016 bash[21706]: debug 2024-04-18T22:53:33.249+0000 7f44144c1200 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-04-18T22:53:33.921 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:33 smithi016 bash[21706]: debug 2024-04-18T22:53:33.621+0000 7f44144c1200 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-04-18T22:53:33.921 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:33 smithi016 bash[21706]: debug 2024-04-18T22:53:33.865+0000 7f44144c1200 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-04-18T22:53:34.421 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:34 smithi016 bash[21706]: debug 2024-04-18T22:53:34.137+0000 7f44144c1200 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-04-18T22:53:34.421 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:34 smithi016 bash[21706]: debug 2024-04-18T22:53:34.253+0000 7f44144c1200 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-04-18T22:53:34.921 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:34 smithi016 bash[21706]: debug 2024-04-18T22:53:34.541+0000 7f44144c1200 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-04-18T22:53:35.338 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:34 smithi016 bash[21706]: debug 2024-04-18T22:53:34.965+0000 7f44144c1200 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-04-18T22:53:35.338 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:35 smithi016 bash[21706]: debug 2024-04-18T22:53:35.209+0000 7f44144c1200 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-04-18T22:53:35.338 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:35 smithi016 bash[21706]: debug 2024-04-18T22:53:35.337+0000 7f44144c1200 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-04-18T22:53:35.921 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:35 smithi016 bash[21706]: debug 2024-04-18T22:53:35.593+0000 7f44144c1200 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-04-18T22:53:36.921 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:36 smithi016 bash[21706]: debug 2024-04-18T22:53:36.633+0000 7f44144c1200 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-04-18T22:53:36.921 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:36 smithi016 bash[21706]: debug 2024-04-18T22:53:36.753+0000 7f44144c1200 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-04-18T22:53:37.421 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:37 smithi016 bash[21706]: debug 2024-04-18T22:53:37.057+0000 7f44144c1200 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-04-18T22:53:37.421 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:37 smithi016 bash[21706]: debug 2024-04-18T22:53:37.177+0000 7f44144c1200 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-04-18T22:53:37.909 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:37 smithi016 bash[21706]: debug 2024-04-18T22:53:37.649+0000 7f44144c1200 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-04-18T22:53:37.910 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:53:37 smithi016 bash[21706]: debug 2024-04-18T22:53:37.777+0000 7f44144c1200 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-04-18T22:53:37.910 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:37 smithi016 bash[21452]: cluster 2024-04-18T22:53:37.800626+0000 mon.a (mon.0) 75 : cluster 1 Active manager daemon a restarted 2024-04-18T22:53:37.910 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:37 smithi016 bash[21452]: cluster 2024-04-18T22:53:37.801270+0000 mon.a (mon.0) 76 : cluster 1 Activating manager daemon a 2024-04-18T22:53:37.910 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:37 smithi016 bash[21452]: cluster 2024-04-18T22:53:37.807959+0000 mon.a (mon.0) 77 : cluster 0 osdmap e3: 0 total, 0 up, 0 in 2024-04-18T22:53:37.910 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:37 smithi016 bash[21452]: cluster 2024-04-18T22:53:37.808212+0000 mon.a (mon.0) 78 : cluster 0 mgrmap e10: a(active, starting, since 0.00714789s) 2024-04-18T22:53:37.910 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:37 smithi016 bash[21452]: audit 2024-04-18T22:53:37.810748+0000 mon.a (mon.0) 79 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-18T22:53:37.910 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:37 smithi016 bash[21452]: audit 2024-04-18T22:53:37.812277+0000 mon.a (mon.0) 80 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-04-18T22:53:37.911 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:37 smithi016 bash[21452]: audit 2024-04-18T22:53:37.813430+0000 mon.a (mon.0) 81 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-18T22:53:37.911 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:37 smithi016 bash[21452]: audit 2024-04-18T22:53:37.813774+0000 mon.a (mon.0) 82 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-18T22:53:37.911 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:37 smithi016 bash[21452]: audit 2024-04-18T22:53:37.814078+0000 mon.a (mon.0) 83 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-18T22:53:37.911 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:37 smithi016 bash[21452]: cluster 2024-04-18T22:53:37.837106+0000 mon.a (mon.0) 84 : cluster 1 Manager daemon a is now available 2024-04-18T22:53:39.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:38 smithi016 bash[21452]: audit 2024-04-18T22:53:37.862030+0000 mon.a (mon.0) 85 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:53:39.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:38 smithi016 bash[21452]: audit 2024-04-18T22:53:37.883575+0000 mon.a (mon.0) 86 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-04-18T22:53:39.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:38 smithi016 bash[21452]: audit 2024-04-18T22:53:37.886277+0000 mon.a (mon.0) 87 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-04-18T22:53:39.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:38 smithi016 bash[21452]: cephadm 2024-04-18T22:53:38.201658+0000 mgr.a (mgr.14152) 1 : cephadm 1 [18/Apr/2024:22:53:38] ENGINE Bus STARTING 2024-04-18T22:53:39.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:38 smithi016 bash[21452]: cephadm 2024-04-18T22:53:38.325248+0000 mgr.a (mgr.14152) 2 : cephadm 1 [18/Apr/2024:22:53:38] ENGINE Serving on https://172.21.15.16:7150 2024-04-18T22:53:39.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:38 smithi016 bash[21452]: cephadm 2024-04-18T22:53:38.426667+0000 mgr.a (mgr.14152) 3 : cephadm 1 [18/Apr/2024:22:53:38] ENGINE Serving on http://172.21.15.16:8765 2024-04-18T22:53:39.172 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:38 smithi016 bash[21452]: cephadm 2024-04-18T22:53:38.426791+0000 mgr.a (mgr.14152) 4 : cephadm 1 [18/Apr/2024:22:53:38] ENGINE Bus STARTED 2024-04-18T22:53:39.172 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:38 smithi016 bash[21452]: cluster 2024-04-18T22:53:38.814402+0000 mon.a (mon.0) 88 : cluster 0 mgrmap e11: a(active, since 1.01333s) 2024-04-18T22:53:39.514 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout { 2024-04-18T22:53:39.514 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-04-18T22:53:39.514 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "initialized": true 2024-04-18T22:53:39.514 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout } 2024-04-18T22:53:39.514 INFO:teuthology.orchestra.run.smithi016.stdout:mgr epoch 9 is available 2024-04-18T22:53:39.514 INFO:teuthology.orchestra.run.smithi016.stdout:Generating a dashboard self-signed certificate... 2024-04-18T22:53:40.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:39 smithi016 bash[21452]: audit 2024-04-18T22:53:38.812779+0000 mgr.a (mgr.14152) 5 : audit 0 from='client.14156 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-04-18T22:53:40.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:39 smithi016 bash[21452]: audit 2024-04-18T22:53:38.826641+0000 mgr.a (mgr.14152) 6 : audit 0 from='client.14156 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-04-18T22:53:41.135 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:40 smithi016 bash[21452]: cluster 2024-04-18T22:53:39.862005+0000 mon.a (mon.0) 89 : cluster 0 mgrmap e12: a(active, since 2s) 2024-04-18T22:53:41.495 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout Self-signed certificate created 2024-04-18T22:53:41.495 INFO:teuthology.orchestra.run.smithi016.stdout:Creating initial admin user... 2024-04-18T22:53:42.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:41 smithi016 bash[21452]: audit 2024-04-18T22:53:40.829340+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-04-18T22:53:42.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:41 smithi016 bash[21452]: audit 2024-04-18T22:53:40.921826+0000 mon.a (mon.0) 90 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:53:42.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:41 smithi016 bash[21452]: audit 2024-04-18T22:53:40.926509+0000 mon.a (mon.0) 91 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:53:43.750 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$j7Tz0anFsm61YuH1sdE.mugl8cT9Ti/.vT3lVBBxz5G8u1xZ7x9IK", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1713480823, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-04-18T22:53:43.750 INFO:teuthology.orchestra.run.smithi016.stdout:Fetching dashboard port number... 2024-04-18T22:53:44.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:44 smithi016 bash[21452]: audit 2024-04-18T22:53:42.847830+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-04-18T22:53:44.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:44 smithi016 bash[21452]: audit 2024-04-18T22:53:43.123723+0000 mon.a (mon.0) 92 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:53:45.360 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:45 smithi016 bash[21452]: cluster 2024-04-18T22:53:44.134241+0000 mon.a (mon.0) 93 : cluster 0 mgrmap e13: a(active, since 6s) 2024-04-18T22:53:45.360 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:45 smithi016 bash[21452]: audit 2024-04-18T22:53:44.719569+0000 mon.a (mon.0) 94 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:53:45.360 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:45 smithi016 bash[21452]: audit 2024-04-18T22:53:45.009176+0000 mon.a (mon.0) 95 : audit 0 from='client.? 172.21.15.16:0/864795710' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-04-18T22:53:45.662 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 8443 2024-04-18T22:53:45.662 INFO:teuthology.orchestra.run.smithi016.stdout:firewalld does not appear to be present 2024-04-18T22:53:45.662 INFO:teuthology.orchestra.run.smithi016.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-04-18T22:53:45.663 INFO:teuthology.orchestra.run.smithi016.stdout:Ceph Dashboard is now available at: 2024-04-18T22:53:45.663 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-18T22:53:45.664 INFO:teuthology.orchestra.run.smithi016.stdout: URL: https://smithi016.front.sepia.ceph.com:8443/ 2024-04-18T22:53:45.664 INFO:teuthology.orchestra.run.smithi016.stdout: User: admin 2024-04-18T22:53:45.664 INFO:teuthology.orchestra.run.smithi016.stdout: Password: 0p0kgmzt23 2024-04-18T22:53:45.664 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-18T22:53:45.664 INFO:teuthology.orchestra.run.smithi016.stdout:Saving cluster configuration to /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/config directory 2024-04-18T22:53:45.664 INFO:teuthology.orchestra.run.smithi016.stdout:Enabling autotune for osd_memory_target 2024-04-18T22:53:47.029 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:46 smithi016 bash[21452]: audit 2024-04-18T22:53:45.703823+0000 mon.a (mon.0) 96 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:53:49.785 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-04-18T22:53:49.785 INFO:teuthology.orchestra.run.smithi016.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-04-18T22:53:49.785 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-18T22:53:49.785 INFO:teuthology.orchestra.run.smithi016.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-04-18T22:53:49.785 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-18T22:53:49.785 INFO:teuthology.orchestra.run.smithi016.stdout:Or, if you are only running a single cluster on this host: 2024-04-18T22:53:49.785 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-18T22:53:49.785 INFO:teuthology.orchestra.run.smithi016.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-04-18T22:53:49.786 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-18T22:53:49.786 INFO:teuthology.orchestra.run.smithi016.stdout:Please consider enabling telemetry to help improve Ceph: 2024-04-18T22:53:49.786 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-18T22:53:49.786 INFO:teuthology.orchestra.run.smithi016.stdout: ceph telemetry on 2024-04-18T22:53:49.786 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-18T22:53:49.786 INFO:teuthology.orchestra.run.smithi016.stdout:For more information see: 2024-04-18T22:53:49.786 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-18T22:53:49.786 INFO:teuthology.orchestra.run.smithi016.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-04-18T22:53:49.786 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-18T22:53:49.786 INFO:teuthology.orchestra.run.smithi016.stdout:Bootstrap complete. 2024-04-18T22:53:49.835 INFO:tasks.cephadm:Fetching config... 2024-04-18T22:53:49.836 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-18T22:53:49.836 DEBUG:teuthology.orchestra.run.smithi016:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-04-18T22:53:49.842 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-04-18T22:53:49.842 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-18T22:53:49.842 DEBUG:teuthology.orchestra.run.smithi016:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-04-18T22:53:49.890 INFO:tasks.cephadm:Fetching mon keyring... 2024-04-18T22:53:49.890 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-18T22:53:49.890 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd if=/var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/keyring of=/dev/stdout 2024-04-18T22:53:49.946 INFO:tasks.cephadm:Fetching pub ssh key... 2024-04-18T22:53:49.946 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-18T22:53:49.946 DEBUG:teuthology.orchestra.run.smithi016:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-04-18T22:53:49.997 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-04-18T22:53:49.998 DEBUG:teuthology.orchestra.run.smithi016:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDdLJUQHmOPFnCxIPR8ZsG5cH+44c2QlP/mCLMcy4g891MzkjER6DySpixHcgHPVIhzC+4BOXH2HEMzGaGXR8qPyyA59AbaZPfb+vwbHyTyizpXpeh2j8pko5MFV8SgCxm3MSO+snabu59OpDObL0n6Ar1apPR+MSLPTH1N/8SwNEcGwHbiYS4PW4zAERdIjdzRAqlMC9mJvEZF+uoPIZ2lba79rg+kzWt9Hpo4vE1g/PeeMLE4YX3vw6YtXz3SpxDpScSz3Xhh1TvidMZy9xlI7l180w6/eG2kEJdiaDHwOLEwKHw/V/esCB1OwsXcJo+c9duV1mZBUu+WGrp7a7Ie31py1J9mUgVo/j2OSN8c56vvO3GeXk11g93czGcMhYyEqjFtyO0r1BTYqgUAanboZgqp3qPkIAchmGLGgky25D34g+OB861CiCxldSodqPLrNJNTi6i8pOsmr0dWslAbmaBaj1BY7WSYtWI1CGU2DFI1O4Ach4Ro2XIIMXide1E= ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-04-18T22:53:50.064 INFO:teuthology.orchestra.run.smithi016.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDdLJUQHmOPFnCxIPR8ZsG5cH+44c2QlP/mCLMcy4g891MzkjER6DySpixHcgHPVIhzC+4BOXH2HEMzGaGXR8qPyyA59AbaZPfb+vwbHyTyizpXpeh2j8pko5MFV8SgCxm3MSO+snabu59OpDObL0n6Ar1apPR+MSLPTH1N/8SwNEcGwHbiYS4PW4zAERdIjdzRAqlMC9mJvEZF+uoPIZ2lba79rg+kzWt9Hpo4vE1g/PeeMLE4YX3vw6YtXz3SpxDpScSz3Xhh1TvidMZy9xlI7l180w6/eG2kEJdiaDHwOLEwKHw/V/esCB1OwsXcJo+c9duV1mZBUu+WGrp7a7Ie31py1J9mUgVo/j2OSN8c56vvO3GeXk11g93czGcMhYyEqjFtyO0r1BTYqgUAanboZgqp3qPkIAchmGLGgky25D34g+OB861CiCxldSodqPLrNJNTi6i8pOsmr0dWslAbmaBaj1BY7WSYtWI1CGU2DFI1O4Ach4Ro2XIIMXide1E= ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T22:53:50.074 DEBUG:teuthology.orchestra.run.smithi055:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDdLJUQHmOPFnCxIPR8ZsG5cH+44c2QlP/mCLMcy4g891MzkjER6DySpixHcgHPVIhzC+4BOXH2HEMzGaGXR8qPyyA59AbaZPfb+vwbHyTyizpXpeh2j8pko5MFV8SgCxm3MSO+snabu59OpDObL0n6Ar1apPR+MSLPTH1N/8SwNEcGwHbiYS4PW4zAERdIjdzRAqlMC9mJvEZF+uoPIZ2lba79rg+kzWt9Hpo4vE1g/PeeMLE4YX3vw6YtXz3SpxDpScSz3Xhh1TvidMZy9xlI7l180w6/eG2kEJdiaDHwOLEwKHw/V/esCB1OwsXcJo+c9duV1mZBUu+WGrp7a7Ie31py1J9mUgVo/j2OSN8c56vvO3GeXk11g93czGcMhYyEqjFtyO0r1BTYqgUAanboZgqp3qPkIAchmGLGgky25D34g+OB861CiCxldSodqPLrNJNTi6i8pOsmr0dWslAbmaBaj1BY7WSYtWI1CGU2DFI1O4Ach4Ro2XIIMXide1E= ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-04-18T22:53:50.099 INFO:teuthology.orchestra.run.smithi055.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDdLJUQHmOPFnCxIPR8ZsG5cH+44c2QlP/mCLMcy4g891MzkjER6DySpixHcgHPVIhzC+4BOXH2HEMzGaGXR8qPyyA59AbaZPfb+vwbHyTyizpXpeh2j8pko5MFV8SgCxm3MSO+snabu59OpDObL0n6Ar1apPR+MSLPTH1N/8SwNEcGwHbiYS4PW4zAERdIjdzRAqlMC9mJvEZF+uoPIZ2lba79rg+kzWt9Hpo4vE1g/PeeMLE4YX3vw6YtXz3SpxDpScSz3Xhh1TvidMZy9xlI7l180w6/eG2kEJdiaDHwOLEwKHw/V/esCB1OwsXcJo+c9duV1mZBUu+WGrp7a7Ie31py1J9mUgVo/j2OSN8c56vvO3GeXk11g93czGcMhYyEqjFtyO0r1BTYqgUAanboZgqp3qPkIAchmGLGgky25D34g+OB861CiCxldSodqPLrNJNTi6i8pOsmr0dWslAbmaBaj1BY7WSYtWI1CGU2DFI1O4Ach4Ro2XIIMXide1E= ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T22:53:50.109 DEBUG:teuthology.orchestra.run.smithi069:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDdLJUQHmOPFnCxIPR8ZsG5cH+44c2QlP/mCLMcy4g891MzkjER6DySpixHcgHPVIhzC+4BOXH2HEMzGaGXR8qPyyA59AbaZPfb+vwbHyTyizpXpeh2j8pko5MFV8SgCxm3MSO+snabu59OpDObL0n6Ar1apPR+MSLPTH1N/8SwNEcGwHbiYS4PW4zAERdIjdzRAqlMC9mJvEZF+uoPIZ2lba79rg+kzWt9Hpo4vE1g/PeeMLE4YX3vw6YtXz3SpxDpScSz3Xhh1TvidMZy9xlI7l180w6/eG2kEJdiaDHwOLEwKHw/V/esCB1OwsXcJo+c9duV1mZBUu+WGrp7a7Ie31py1J9mUgVo/j2OSN8c56vvO3GeXk11g93czGcMhYyEqjFtyO0r1BTYqgUAanboZgqp3qPkIAchmGLGgky25D34g+OB861CiCxldSodqPLrNJNTi6i8pOsmr0dWslAbmaBaj1BY7WSYtWI1CGU2DFI1O4Ach4Ro2XIIMXide1E= ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-04-18T22:53:50.130 INFO:teuthology.orchestra.run.smithi069.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDdLJUQHmOPFnCxIPR8ZsG5cH+44c2QlP/mCLMcy4g891MzkjER6DySpixHcgHPVIhzC+4BOXH2HEMzGaGXR8qPyyA59AbaZPfb+vwbHyTyizpXpeh2j8pko5MFV8SgCxm3MSO+snabu59OpDObL0n6Ar1apPR+MSLPTH1N/8SwNEcGwHbiYS4PW4zAERdIjdzRAqlMC9mJvEZF+uoPIZ2lba79rg+kzWt9Hpo4vE1g/PeeMLE4YX3vw6YtXz3SpxDpScSz3Xhh1TvidMZy9xlI7l180w6/eG2kEJdiaDHwOLEwKHw/V/esCB1OwsXcJo+c9duV1mZBUu+WGrp7a7Ie31py1J9mUgVo/j2OSN8c56vvO3GeXk11g93czGcMhYyEqjFtyO0r1BTYqgUAanboZgqp3qPkIAchmGLGgky25D34g+OB861CiCxldSodqPLrNJNTi6i8pOsmr0dWslAbmaBaj1BY7WSYtWI1CGU2DFI1O4Ach4Ro2XIIMXide1E= ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T22:53:50.139 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-04-18T22:53:50.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:50 smithi016 bash[21452]: audit 2024-04-18T22:53:49.189832+0000 mon.a (mon.0) 97 : audit 1 from='client.? 172.21.15.16:0/2972786669' entity='client.admin' 2024-04-18T22:53:54.335 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T22:53:58.400 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-04-18T22:53:58.401 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-04-18T22:53:58.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:58 smithi016 bash[21452]: audit 2024-04-18T22:53:57.350168+0000 mon.a (mon.0) 98 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:53:58.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:58 smithi016 bash[21452]: audit 2024-04-18T22:53:57.352959+0000 mon.a (mon.0) 99 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:53:58.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:58 smithi016 bash[21452]: audit 2024-04-18T22:53:57.353885+0000 mon.a (mon.0) 100 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi016", "name": "osd_memory_target"}]: dispatch 2024-04-18T22:53:58.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:58 smithi016 bash[21452]: audit 2024-04-18T22:53:57.358822+0000 mon.a (mon.0) 101 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:53:58.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:58 smithi016 bash[21452]: audit 2024-04-18T22:53:57.392720+0000 mon.a (mon.0) 102 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:53:58.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:58 smithi016 bash[21452]: audit 2024-04-18T22:53:57.397222+0000 mon.a (mon.0) 103 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:53:58.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:58 smithi016 bash[21452]: audit 2024-04-18T22:53:57.743162+0000 mon.a (mon.0) 104 : audit 1 from='client.? 172.21.15.16:0/129960892' entity='client.admin' 2024-04-18T22:53:58.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:58 smithi016 bash[21452]: audit 2024-04-18T22:53:57.794983+0000 mon.a (mon.0) 105 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:53:58.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:58 smithi016 bash[21452]: audit 2024-04-18T22:53:57.798977+0000 mon.a (mon.0) 106 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:53:59.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:53:59 smithi016 bash[21452]: cluster 2024-04-18T22:53:57.815246+0000 mgr.a (mgr.14152) 9 : cluster 0 pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:54:01.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:01 smithi016 bash[21452]: cluster 2024-04-18T22:53:59.815584+0000 mgr.a (mgr.14152) 10 : cluster 0 pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:54:03.116 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T22:54:03.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:03 smithi016 bash[21452]: cluster 2024-04-18T22:54:01.816009+0000 mgr.a (mgr.14152) 11 : cluster 0 pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:54:05.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:05 smithi016 bash[21452]: cluster 2024-04-18T22:54:03.816405+0000 mgr.a (mgr.14152) 12 : cluster 0 pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:54:06.465 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi055 2024-04-18T22:54:06.465 DEBUG:teuthology.orchestra.run.smithi055:> set -ex 2024-04-18T22:54:06.465 DEBUG:teuthology.orchestra.run.smithi055:> dd of=/etc/ceph/ceph.conf 2024-04-18T22:54:06.472 DEBUG:teuthology.orchestra.run.smithi055:> set -ex 2024-04-18T22:54:06.472 DEBUG:teuthology.orchestra.run.smithi055:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-18T22:54:06.518 INFO:tasks.cephadm:Adding host smithi055 to orchestrator... 2024-04-18T22:54:06.518 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph orch host add smithi055 2024-04-18T22:54:07.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:06 smithi016 bash[21452]: audit 2024-04-18T22:54:05.753661+0000 mgr.a (mgr.14152) 13 : 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-04-18T22:54:07.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:06 smithi016 bash[21452]: audit 2024-04-18T22:54:05.757614+0000 mon.a (mon.0) 107 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:54:07.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:06 smithi016 bash[21452]: audit 2024-04-18T22:54:05.800225+0000 mon.a (mon.0) 108 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:54:07.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:06 smithi016 bash[21452]: audit 2024-04-18T22:54:05.801647+0000 mon.a (mon.0) 109 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:54:07.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:06 smithi016 bash[21452]: audit 2024-04-18T22:54:05.802376+0000 mon.a (mon.0) 110 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:54:07.172 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:06 smithi016 bash[21452]: cephadm 2024-04-18T22:54:05.803546+0000 mgr.a (mgr.14152) 14 : cephadm 1 Updating smithi016:/etc/ceph/ceph.conf 2024-04-18T22:54:07.172 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:06 smithi016 bash[21452]: cluster 2024-04-18T22:54:05.816671+0000 mgr.a (mgr.14152) 15 : cluster 0 pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:54:07.172 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:06 smithi016 bash[21452]: cephadm 2024-04-18T22:54:05.917728+0000 mgr.a (mgr.14152) 16 : cephadm 1 Updating smithi016:/var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/config/ceph.conf 2024-04-18T22:54:07.172 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:06 smithi016 bash[21452]: cephadm 2024-04-18T22:54:06.032955+0000 mgr.a (mgr.14152) 17 : cephadm 1 Updating smithi016:/etc/ceph/ceph.client.admin.keyring 2024-04-18T22:54:07.172 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:06 smithi016 bash[21452]: cephadm 2024-04-18T22:54:06.147391+0000 mgr.a (mgr.14152) 18 : cephadm 1 Updating smithi016:/var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/config/ceph.client.admin.keyring 2024-04-18T22:54:07.172 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:06 smithi016 bash[21452]: audit 2024-04-18T22:54:06.264774+0000 mon.a (mon.0) 111 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:54:07.172 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:06 smithi016 bash[21452]: audit 2024-04-18T22:54:06.267531+0000 mon.a (mon.0) 112 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:54:07.172 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:06 smithi016 bash[21452]: audit 2024-04-18T22:54:06.270253+0000 mon.a (mon.0) 113 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:54:09.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:08 smithi016 bash[21452]: cluster 2024-04-18T22:54:07.817023+0000 mgr.a (mgr.14152) 19 : cluster 0 pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:54:11.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:10 smithi016 bash[21452]: cluster 2024-04-18T22:54:09.817485+0000 mgr.a (mgr.14152) 20 : cluster 0 pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:54:11.232 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T22:54:13.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:12 smithi016 bash[21452]: cluster 2024-04-18T22:54:11.817891+0000 mgr.a (mgr.14152) 21 : cluster 0 pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:54:15.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:14 smithi016 bash[21452]: cluster 2024-04-18T22:54:13.818161+0000 mgr.a (mgr.14152) 22 : cluster 0 pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:54:15.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:14 smithi016 bash[21452]: audit 2024-04-18T22:54:14.009979+0000 mgr.a (mgr.14152) 23 : audit 0 from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi055", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T22:54:16.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:15 smithi016 bash[21452]: cephadm 2024-04-18T22:54:14.692394+0000 mgr.a (mgr.14152) 24 : cephadm 1 Deploying cephadm binary to smithi055 2024-04-18T22:54:17.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:16 smithi016 bash[21452]: cluster 2024-04-18T22:54:15.818558+0000 mgr.a (mgr.14152) 25 : cluster 0 pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:54:19.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:18 smithi016 bash[21452]: cluster 2024-04-18T22:54:17.818924+0000 mgr.a (mgr.14152) 26 : cluster 0 pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:54:20.054 INFO:teuthology.orchestra.run.smithi016.stdout:Added host 'smithi055' with addr '172.21.15.55' 2024-04-18T22:54:20.681 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph orch host ls --format=json 2024-04-18T22:54:21.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:21 smithi016 bash[21452]: cluster 2024-04-18T22:54:19.819418+0000 mgr.a (mgr.14152) 27 : cluster 0 pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:54:21.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:21 smithi016 bash[21452]: audit 2024-04-18T22:54:20.054003+0000 mon.a (mon.0) 114 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:54:21.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:21 smithi016 bash[21452]: cephadm 2024-04-18T22:54:20.054882+0000 mgr.a (mgr.14152) 28 : cephadm 1 Added host smithi055 2024-04-18T22:54:21.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:21 smithi016 bash[21452]: audit 2024-04-18T22:54:20.100506+0000 mon.a (mon.0) 115 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:54:21.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:21 smithi016 bash[21452]: audit 2024-04-18T22:54:20.623425+0000 mon.a (mon.0) 116 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:54:23.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:23 smithi016 bash[21452]: cluster 2024-04-18T22:54:21.819817+0000 mgr.a (mgr.14152) 29 : cluster 0 pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:54:23.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:23 smithi016 bash[21452]: audit 2024-04-18T22:54:22.149578+0000 mon.a (mon.0) 117 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:54:24.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:24 smithi016 bash[21452]: audit 2024-04-18T22:54:23.349129+0000 mon.a (mon.0) 118 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:54:25.393 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T22:54:25.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:25 smithi016 bash[21452]: cluster 2024-04-18T22:54:23.820212+0000 mgr.a (mgr.14152) 30 : cluster 0 pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:54:27.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:27 smithi016 bash[21452]: cluster 2024-04-18T22:54:25.820621+0000 mgr.a (mgr.14152) 31 : cluster 0 pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:54:28.426 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-18T22:54:28.427 INFO:teuthology.orchestra.run.smithi016.stdout:[{"addr": "172.21.15.16", "hostname": "smithi016", "labels": [], "status": ""}, {"addr": "172.21.15.55", "hostname": "smithi055", "labels": [], "status": ""}] 2024-04-18T22:54:29.018 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi069 2024-04-18T22:54:29.019 DEBUG:teuthology.orchestra.run.smithi069:> set -ex 2024-04-18T22:54:29.019 DEBUG:teuthology.orchestra.run.smithi069:> dd of=/etc/ceph/ceph.conf 2024-04-18T22:54:29.025 DEBUG:teuthology.orchestra.run.smithi069:> set -ex 2024-04-18T22:54:29.025 DEBUG:teuthology.orchestra.run.smithi069:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-18T22:54:29.072 INFO:tasks.cephadm:Adding host smithi069 to orchestrator... 2024-04-18T22:54:29.072 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph orch host add smithi069 2024-04-18T22:54:29.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:29 smithi016 bash[21452]: cluster 2024-04-18T22:54:27.821010+0000 mgr.a (mgr.14152) 32 : cluster 0 pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:54:29.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:29 smithi016 bash[21452]: audit 2024-04-18T22:54:28.427182+0000 mgr.a (mgr.14152) 33 : audit 0 from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-18T22:54:29.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:29 smithi016 bash[21452]: audit 2024-04-18T22:54:28.885915+0000 mon.a (mon.0) 119 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:54:29.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:29 smithi016 bash[21452]: audit 2024-04-18T22:54:28.891230+0000 mon.a (mon.0) 120 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:54:29.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:29 smithi016 bash[21452]: audit 2024-04-18T22:54:28.897913+0000 mon.a (mon.0) 121 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:54:29.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:29 smithi016 bash[21452]: audit 2024-04-18T22:54:28.903200+0000 mon.a (mon.0) 122 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:54:29.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:29 smithi016 bash[21452]: audit 2024-04-18T22:54:28.904778+0000 mon.a (mon.0) 123 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi055", "name": "osd_memory_target"}]: dispatch 2024-04-18T22:54:29.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:29 smithi016 bash[21452]: audit 2024-04-18T22:54:28.906840+0000 mon.a (mon.0) 124 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:54:29.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:29 smithi016 bash[21452]: audit 2024-04-18T22:54:28.908604+0000 mon.a (mon.0) 125 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:54:30.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:30 smithi016 bash[21452]: cephadm 2024-04-18T22:54:28.911357+0000 mgr.a (mgr.14152) 34 : cephadm 1 Updating smithi055:/etc/ceph/ceph.conf 2024-04-18T22:54:30.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:30 smithi016 bash[21452]: cephadm 2024-04-18T22:54:29.127253+0000 mgr.a (mgr.14152) 35 : cephadm 1 Updating smithi055:/var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/config/ceph.conf 2024-04-18T22:54:30.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:30 smithi016 bash[21452]: cephadm 2024-04-18T22:54:29.291972+0000 mgr.a (mgr.14152) 36 : cephadm 1 Updating smithi055:/etc/ceph/ceph.client.admin.keyring 2024-04-18T22:54:30.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:30 smithi016 bash[21452]: audit 2024-04-18T22:54:29.626932+0000 mon.a (mon.0) 126 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:54:30.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:30 smithi016 bash[21452]: audit 2024-04-18T22:54:29.632348+0000 mon.a (mon.0) 127 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:54:30.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:30 smithi016 bash[21452]: audit 2024-04-18T22:54:29.638055+0000 mon.a (mon.0) 128 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:54:31.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:31 smithi016 bash[21452]: cephadm 2024-04-18T22:54:29.457052+0000 mgr.a (mgr.14152) 37 : cephadm 1 Updating smithi055:/var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/config/ceph.client.admin.keyring 2024-04-18T22:54:31.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:31 smithi016 bash[21452]: cluster 2024-04-18T22:54:29.821417+0000 mgr.a (mgr.14152) 38 : cluster 0 pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:54:33.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:33 smithi016 bash[21452]: cluster 2024-04-18T22:54:31.821773+0000 mgr.a (mgr.14152) 39 : cluster 0 pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:54:33.794 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T22:54:35.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:35 smithi016 bash[21452]: cluster 2024-04-18T22:54:33.822036+0000 mgr.a (mgr.14152) 40 : cluster 0 pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:54:37.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:37 smithi016 bash[21452]: cluster 2024-04-18T22:54:35.822414+0000 mgr.a (mgr.14152) 41 : cluster 0 pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:54:38.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:38 smithi016 bash[21452]: audit 2024-04-18T22:54:36.546642+0000 mgr.a (mgr.14152) 42 : audit 0 from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi069", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T22:54:38.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:38 smithi016 bash[21452]: cephadm 2024-04-18T22:54:37.306073+0000 mgr.a (mgr.14152) 43 : cephadm 1 Deploying cephadm binary to smithi069 2024-04-18T22:54:39.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:39 smithi016 bash[21452]: cluster 2024-04-18T22:54:37.822845+0000 mgr.a (mgr.14152) 44 : cluster 0 pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:54:41.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:41 smithi016 bash[21452]: cluster 2024-04-18T22:54:39.823268+0000 mgr.a (mgr.14152) 45 : cluster 0 pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:54:42.715 INFO:teuthology.orchestra.run.smithi016.stdout:Added host 'smithi069' with addr '172.21.15.69' 2024-04-18T22:54:43.386 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph orch host ls --format=json 2024-04-18T22:54:43.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:43 smithi016 bash[21452]: cluster 2024-04-18T22:54:41.823619+0000 mgr.a (mgr.14152) 46 : cluster 0 pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:54:43.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:43 smithi016 bash[21452]: audit 2024-04-18T22:54:42.715605+0000 mon.a (mon.0) 129 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:54:43.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:43 smithi016 bash[21452]: audit 2024-04-18T22:54:42.745921+0000 mon.a (mon.0) 130 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:54:43.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:43 smithi016 bash[21452]: audit 2024-04-18T22:54:43.219198+0000 mon.a (mon.0) 131 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:54:44.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:44 smithi016 bash[21452]: cephadm 2024-04-18T22:54:42.716504+0000 mgr.a (mgr.14152) 47 : cephadm 1 Added host smithi069 2024-04-18T22:54:45.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:45 smithi016 bash[21452]: cluster 2024-04-18T22:54:43.824014+0000 mgr.a (mgr.14152) 48 : cluster 0 pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:54:45.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:45 smithi016 bash[21452]: audit 2024-04-18T22:54:44.696058+0000 mon.a (mon.0) 132 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:54:47.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:46 smithi016 bash[21452]: cluster 2024-04-18T22:54:45.824433+0000 mgr.a (mgr.14152) 49 : cluster 0 pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:54:47.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:46 smithi016 bash[21452]: audit 2024-04-18T22:54:45.846915+0000 mon.a (mon.0) 133 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:54:48.107 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T22:54:49.100 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:48 smithi016 bash[21452]: cluster 2024-04-18T22:54:47.824859+0000 mgr.a (mgr.14152) 50 : cluster 0 pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:54:50.794 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-18T22:54:50.794 INFO:teuthology.orchestra.run.smithi016.stdout:[{"addr": "172.21.15.16", "hostname": "smithi016", "labels": [], "status": ""}, {"addr": "172.21.15.55", "hostname": "smithi055", "labels": [], "status": ""}, {"addr": "172.21.15.69", "hostname": "smithi069", "labels": [], "status": ""}] 2024-04-18T22:54:51.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:50 smithi016 bash[21452]: cluster 2024-04-18T22:54:49.825297+0000 mgr.a (mgr.14152) 51 : cluster 0 pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:54:51.431 INFO:tasks.cephadm:Setting crush tunables to default 2024-04-18T22:54:51.431 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph osd crush tunables default 2024-04-18T22:54:52.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:52 smithi016 bash[21452]: audit 2024-04-18T22:54:50.794009+0000 mgr.a (mgr.14152) 52 : audit 0 from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-18T22:54:52.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:52 smithi016 bash[21452]: audit 2024-04-18T22:54:51.181586+0000 mon.a (mon.0) 134 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:54:52.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:52 smithi016 bash[21452]: audit 2024-04-18T22:54:51.186728+0000 mon.a (mon.0) 135 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:54:52.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:52 smithi016 bash[21452]: audit 2024-04-18T22:54:51.192809+0000 mon.a (mon.0) 136 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:54:52.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:52 smithi016 bash[21452]: audit 2024-04-18T22:54:51.197888+0000 mon.a (mon.0) 137 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:54:52.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:52 smithi016 bash[21452]: audit 2024-04-18T22:54:51.199377+0000 mon.a (mon.0) 138 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi069", "name": "osd_memory_target"}]: dispatch 2024-04-18T22:54:52.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:52 smithi016 bash[21452]: audit 2024-04-18T22:54:51.201362+0000 mon.a (mon.0) 139 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:54:52.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:52 smithi016 bash[21452]: audit 2024-04-18T22:54:51.203164+0000 mon.a (mon.0) 140 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:54:52.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:52 smithi016 bash[21452]: cephadm 2024-04-18T22:54:51.206207+0000 mgr.a (mgr.14152) 53 : cephadm 1 Updating smithi069:/etc/ceph/ceph.conf 2024-04-18T22:54:52.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:52 smithi016 bash[21452]: cephadm 2024-04-18T22:54:51.422656+0000 mgr.a (mgr.14152) 54 : cephadm 1 Updating smithi069:/var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/config/ceph.conf 2024-04-18T22:54:53.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:53 smithi016 bash[21452]: cephadm 2024-04-18T22:54:51.587665+0000 mgr.a (mgr.14152) 55 : cephadm 1 Updating smithi069:/etc/ceph/ceph.client.admin.keyring 2024-04-18T22:54:53.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:53 smithi016 bash[21452]: cluster 2024-04-18T22:54:51.825709+0000 mgr.a (mgr.14152) 56 : cluster 0 pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:54:53.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:53 smithi016 bash[21452]: cephadm 2024-04-18T22:54:52.049910+0000 mgr.a (mgr.14152) 57 : cephadm 1 Updating smithi069:/var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/config/ceph.client.admin.keyring 2024-04-18T22:54:53.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:53 smithi016 bash[21452]: audit 2024-04-18T22:54:52.270082+0000 mon.a (mon.0) 141 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:54:53.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:53 smithi016 bash[21452]: audit 2024-04-18T22:54:52.275534+0000 mon.a (mon.0) 142 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:54:53.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:53 smithi016 bash[21452]: audit 2024-04-18T22:54:52.281320+0000 mon.a (mon.0) 143 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:54:55.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:55 smithi016 bash[21452]: cluster 2024-04-18T22:54:53.826124+0000 mgr.a (mgr.14152) 58 : cluster 0 pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:54:56.152 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T22:54:57.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:57 smithi016 bash[21452]: cluster 2024-04-18T22:54:55.826530+0000 mgr.a (mgr.14152) 59 : cluster 0 pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:54:59.277 INFO:teuthology.orchestra.run.smithi016.stderr:adjusted tunables profile to default 2024-04-18T22:54:59.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:59 smithi016 bash[21452]: cluster 2024-04-18T22:54:57.826881+0000 mgr.a (mgr.14152) 60 : cluster 0 pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:54:59.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:54:59 smithi016 bash[21452]: audit 2024-04-18T22:54:58.969535+0000 mon.a (mon.0) 144 : audit 1 from='client.? 172.21.15.16:0/1358467641' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-04-18T22:54:59.915 INFO:tasks.cephadm:Adding mon.a on smithi016 2024-04-18T22:54:59.915 INFO:tasks.cephadm:Adding mon.b on smithi055 2024-04-18T22:54:59.915 INFO:tasks.cephadm:Adding mon.c on smithi069 2024-04-18T22:54:59.916 DEBUG:teuthology.orchestra.run.smithi069:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph orch apply mon '3;smithi016:172.21.15.16=a;smithi055:172.21.15.55=b;smithi069:172.21.15.69=c' 2024-04-18T22:55:00.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:00 smithi016 bash[21452]: audit 2024-04-18T22:54:59.273716+0000 mon.a (mon.0) 145 : audit 1 from='client.? 172.21.15.16:0/1358467641' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-04-18T22:55:00.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:00 smithi016 bash[21452]: cluster 2024-04-18T22:54:59.277664+0000 mon.a (mon.0) 146 : cluster 0 osdmap e4: 0 total, 0 up, 0 in 2024-04-18T22:55:01.125 INFO:teuthology.orchestra.run.smithi069.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/config/ceph.conf 2024-04-18T22:55:01.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:01 smithi016 bash[21452]: cluster 2024-04-18T22:54:59.827315+0000 mgr.a (mgr.14152) 61 : cluster 0 pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:03.593 INFO:teuthology.orchestra.run.smithi069.stdout:Scheduled mon update... 2024-04-18T22:55:03.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:03 smithi016 bash[21452]: cluster 2024-04-18T22:55:01.827690+0000 mgr.a (mgr.14152) 62 : cluster 0 pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:04.120 DEBUG:teuthology.orchestra.run.smithi055:mon.b> sudo journalctl -f -n 0 -u ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@mon.b.service 2024-04-18T22:55:04.123 DEBUG:teuthology.orchestra.run.smithi069:mon.c> sudo journalctl -f -n 0 -u ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@mon.c.service 2024-04-18T22:55:04.125 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-04-18T22:55:04.126 DEBUG:teuthology.orchestra.run.smithi069:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph mon dump -f json 2024-04-18T22:55:04.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:04 smithi016 bash[21452]: audit 2024-04-18T22:55:03.582654+0000 mgr.a (mgr.14152) 63 : audit 0 from='client.14188 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi016:172.21.15.16=a;smithi055:172.21.15.55=b;smithi069:172.21.15.69=c", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T22:55:04.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:04 smithi016 bash[21452]: cephadm 2024-04-18T22:55:03.588171+0000 mgr.a (mgr.14152) 64 : cephadm 1 Saving service mon spec with placement smithi016:172.21.15.16=a;smithi055:172.21.15.55=b;smithi069:172.21.15.69=c;count:3 2024-04-18T22:55:04.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:04 smithi016 bash[21452]: audit 2024-04-18T22:55:03.593522+0000 mon.a (mon.0) 147 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:04.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:04 smithi016 bash[21452]: audit 2024-04-18T22:55:03.626178+0000 mon.a (mon.0) 148 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:55:04.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:04 smithi016 bash[21452]: cluster 2024-04-18T22:55:03.828056+0000 mgr.a (mgr.14152) 65 : cluster 0 pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:04.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:04 smithi016 bash[21452]: audit 2024-04-18T22:55:04.303050+0000 mon.a (mon.0) 149 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:04.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:04 smithi016 bash[21452]: audit 2024-04-18T22:55:04.304896+0000 mon.a (mon.0) 150 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:55:04.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:04 smithi016 bash[21452]: audit 2024-04-18T22:55:04.312976+0000 mon.a (mon.0) 151 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:04.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:04 smithi016 bash[21452]: audit 2024-04-18T22:55:04.317013+0000 mon.a (mon.0) 152 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-18T22:55:04.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:04 smithi016 bash[21452]: audit 2024-04-18T22:55:04.318617+0000 mon.a (mon.0) 153 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:04.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:04 smithi016 bash[21452]: cephadm 2024-04-18T22:55:04.320200+0000 mgr.a (mgr.14152) 66 : cephadm 1 Deploying daemon mon.c on smithi069 2024-04-18T22:55:05.371 INFO:teuthology.orchestra.run.smithi069.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/config/ceph.conf 2024-04-18T22:55:07.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:06 smithi016 bash[21452]: cluster 2024-04-18T22:55:05.828459+0000 mgr.a (mgr.14152) 67 : cluster 0 pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:09.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:08 smithi016 bash[21452]: cluster 2024-04-18T22:55:07.828857+0000 mgr.a (mgr.14152) 68 : cluster 0 pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:09.670 INFO:teuthology.orchestra.run.smithi069.stdout: 2024-04-18T22:55:09.670 INFO:teuthology.orchestra.run.smithi069.stdout:{"epoch":1,"fsid":"1266e2ee-fdd6-11ee-bc92-c7b262605968","modified":"2024-04-18T22:52:24.457677Z","created":"2024-04-18T22:52:24.457677Z","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.16:3300","nonce":0},{"type":"v1","addr":"172.21.15.16:6789","nonce":0}]},"addr":"172.21.15.16:6789/0","public_addr":"172.21.15.16:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-18T22:55:09.673 INFO:teuthology.orchestra.run.smithi069.stderr:dumped monmap epoch 1 2024-04-18T22:55:10.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:09 smithi016 bash[21452]: audit 2024-04-18T22:55:09.671370+0000 mon.a (mon.0) 154 : audit 0 from='client.? 172.21.15.69:0/1432615914' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-18T22:55:11.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:11 smithi016 bash[21452]: cluster 2024-04-18T22:55:09.829271+0000 mgr.a (mgr.14152) 69 : cluster 0 pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:11.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:11 smithi016 bash[21452]: audit 2024-04-18T22:55:10.020433+0000 mon.a (mon.0) 155 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:11.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:11 smithi016 bash[21452]: audit 2024-04-18T22:55:10.024277+0000 mon.a (mon.0) 156 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:11.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:11 smithi016 bash[21452]: audit 2024-04-18T22:55:10.055892+0000 mon.a (mon.0) 157 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:11.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:11 smithi016 bash[21452]: audit 2024-04-18T22:55:10.057442+0000 mon.a (mon.0) 158 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-18T22:55:11.422 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:11 smithi016 bash[21452]: audit 2024-04-18T22:55:10.059325+0000 mon.a (mon.0) 159 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:11.422 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:11 smithi016 bash[21452]: cephadm 2024-04-18T22:55:10.061387+0000 mgr.a (mgr.14152) 70 : cephadm 1 Deploying daemon mon.b on smithi055 2024-04-18T22:55:11.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:11 smithi069 bash[23476]: debug 2024-04-18T22:55:11.490+0000 7ff4d4e39700 1 mon.c@-1(synchronizing).paxosservice(auth 1..3) refresh upgraded, format 0 -> 3 2024-04-18T22:55:11.962 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-04-18T22:55:11.962 DEBUG:teuthology.orchestra.run.smithi069:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph mon dump -f json 2024-04-18T22:55:15.662 INFO:teuthology.orchestra.run.smithi069.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.c/config 2024-04-18T22:55:15.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:15 smithi055 bash[23198]: debug 2024-04-18T22:55:15.518+0000 7f657790a700 1 mon.b@-1(synchronizing).paxosservice(auth 1..3) refresh upgraded, format 0 -> 3 2024-04-18T22:55:16.860 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:16 smithi069 bash[23476]: audit 2024-04-18T22:55:11.504508+0000 mon.a (mon.0) 161 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-18T22:55:16.861 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:16 smithi069 bash[23476]: cluster 2024-04-18T22:55:11.504987+0000 mon.a (mon.0) 162 : cluster 1 mon.a calling monitor election 2024-04-18T22:55:16.861 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:16 smithi069 bash[23476]: audit 2024-04-18T22:55:11.524468+0000 mon.a (mon.0) 163 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-18T22:55:16.861 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:16 smithi069 bash[23476]: cluster 2024-04-18T22:55:11.829733+0000 mgr.a (mgr.14152) 71 : cluster 0 pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:16.861 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:16 smithi069 bash[23476]: audit 2024-04-18T22:55:12.499633+0000 mon.a (mon.0) 164 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-18T22:55:16.861 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:16 smithi069 bash[23476]: audit 2024-04-18T22:55:13.499641+0000 mon.a (mon.0) 165 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-18T22:55:16.861 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:16 smithi069 bash[23476]: cluster 2024-04-18T22:55:13.502785+0000 mon.c (mon.1) 1 : cluster 1 mon.c calling monitor election 2024-04-18T22:55:16.861 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:16 smithi069 bash[23476]: cluster 2024-04-18T22:55:13.830134+0000 mgr.a (mgr.14152) 72 : cluster 0 pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:16.861 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:16 smithi069 bash[23476]: audit 2024-04-18T22:55:14.499841+0000 mon.a (mon.0) 166 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-18T22:55:16.861 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:16 smithi069 bash[23476]: audit 2024-04-18T22:55:15.500130+0000 mon.a (mon.0) 167 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-18T22:55:16.861 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:16 smithi069 bash[23476]: audit 2024-04-18T22:55:15.525867+0000 mon.a (mon.0) 168 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:55:16.861 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:16 smithi069 bash[23476]: cluster 2024-04-18T22:55:15.830546+0000 mgr.a (mgr.14152) 73 : cluster 0 pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:16.861 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:16 smithi069 bash[23476]: audit 2024-04-18T22:55:16.500249+0000 mon.a (mon.0) 169 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-18T22:55:16.862 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:16 smithi069 bash[23476]: audit 2024-04-18T22:55:16.548097+0000 mon.a (mon.0) 170 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:55:16.862 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:16 smithi069 bash[23476]: cluster 2024-04-18T22:55:16.548845+0000 mon.a (mon.0) 171 : cluster 1 mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-04-18T22:55:16.862 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:16 smithi069 bash[23476]: cluster 2024-04-18T22:55:16.555089+0000 mon.a (mon.0) 172 : cluster 0 monmap epoch 2 2024-04-18T22:55:16.862 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:16 smithi069 bash[23476]: cluster 2024-04-18T22:55:16.555131+0000 mon.a (mon.0) 173 : cluster 0 fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T22:55:16.862 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:16 smithi069 bash[23476]: cluster 2024-04-18T22:55:16.555180+0000 mon.a (mon.0) 174 : cluster 0 last_changed 2024-04-18T22:55:11.499314+0000 2024-04-18T22:55:16.862 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:16 smithi069 bash[23476]: cluster 2024-04-18T22:55:16.555203+0000 mon.a (mon.0) 175 : cluster 0 created 2024-04-18T22:52:24.457677+0000 2024-04-18T22:55:16.862 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:16 smithi069 bash[23476]: cluster 2024-04-18T22:55:16.555223+0000 mon.a (mon.0) 176 : cluster 0 min_mon_release 19 (squid) 2024-04-18T22:55:16.862 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:16 smithi069 bash[23476]: cluster 2024-04-18T22:55:16.555244+0000 mon.a (mon.0) 177 : cluster 0 election_strategy: 1 2024-04-18T22:55:16.862 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:16 smithi069 bash[23476]: cluster 2024-04-18T22:55:16.555265+0000 mon.a (mon.0) 178 : cluster 0 0: [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] mon.a 2024-04-18T22:55:16.862 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:16 smithi069 bash[23476]: cluster 2024-04-18T22:55:16.555287+0000 mon.a (mon.0) 179 : cluster 0 1: [v2:172.21.15.69:3300/0,v1:172.21.15.69:6789/0] mon.c 2024-04-18T22:55:16.862 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:16 smithi069 bash[23476]: cluster 2024-04-18T22:55:16.575881+0000 mon.a (mon.0) 180 : cluster 0 fsmap 2024-04-18T22:55:16.862 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:16 smithi069 bash[23476]: cluster 2024-04-18T22:55:16.575972+0000 mon.a (mon.0) 181 : cluster 0 osdmap e4: 0 total, 0 up, 0 in 2024-04-18T22:55:16.863 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:16 smithi069 bash[23476]: cluster 2024-04-18T22:55:16.576254+0000 mon.a (mon.0) 182 : cluster 0 mgrmap e13: a(active, since 98s) 2024-04-18T22:55:16.863 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:16 smithi069 bash[23476]: cluster 2024-04-18T22:55:16.576509+0000 mon.a (mon.0) 183 : cluster 1 overall HEALTH_OK 2024-04-18T22:55:16.863 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:16 smithi069 bash[23476]: audit 2024-04-18T22:55:16.583619+0000 mon.a (mon.0) 184 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:16.863 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:16 smithi069 bash[23476]: audit 2024-04-18T22:55:16.590554+0000 mon.a (mon.0) 185 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:16.863 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:16 smithi069 bash[23476]: audit 2024-04-18T22:55:16.600434+0000 mon.a (mon.0) 186 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:16.863 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:16 smithi069 bash[23476]: audit 2024-04-18T22:55:16.607266+0000 mon.a (mon.0) 187 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:16.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:16 smithi016 bash[21452]: audit 2024-04-18T22:55:11.504508+0000 mon.a (mon.0) 161 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-18T22:55:16.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:16 smithi016 bash[21452]: cluster 2024-04-18T22:55:11.504987+0000 mon.a (mon.0) 162 : cluster 1 mon.a calling monitor election 2024-04-18T22:55:16.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:16 smithi016 bash[21452]: audit 2024-04-18T22:55:11.524468+0000 mon.a (mon.0) 163 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-18T22:55:16.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:16 smithi016 bash[21452]: cluster 2024-04-18T22:55:11.829733+0000 mgr.a (mgr.14152) 71 : cluster 0 pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:16.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:16 smithi016 bash[21452]: audit 2024-04-18T22:55:12.499633+0000 mon.a (mon.0) 164 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-18T22:55:16.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:16 smithi016 bash[21452]: audit 2024-04-18T22:55:13.499641+0000 mon.a (mon.0) 165 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-18T22:55:16.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:16 smithi016 bash[21452]: cluster 2024-04-18T22:55:13.502785+0000 mon.c (mon.1) 1 : cluster 1 mon.c calling monitor election 2024-04-18T22:55:16.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:16 smithi016 bash[21452]: cluster 2024-04-18T22:55:13.830134+0000 mgr.a (mgr.14152) 72 : cluster 0 pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:16.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:16 smithi016 bash[21452]: audit 2024-04-18T22:55:14.499841+0000 mon.a (mon.0) 166 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-18T22:55:16.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:16 smithi016 bash[21452]: audit 2024-04-18T22:55:15.500130+0000 mon.a (mon.0) 167 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-18T22:55:16.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:16 smithi016 bash[21452]: audit 2024-04-18T22:55:15.525867+0000 mon.a (mon.0) 168 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:55:16.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:16 smithi016 bash[21452]: cluster 2024-04-18T22:55:15.830546+0000 mgr.a (mgr.14152) 73 : cluster 0 pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:16.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:16 smithi016 bash[21452]: audit 2024-04-18T22:55:16.500249+0000 mon.a (mon.0) 169 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-18T22:55:16.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:16 smithi016 bash[21452]: audit 2024-04-18T22:55:16.548097+0000 mon.a (mon.0) 170 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:55:16.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:16 smithi016 bash[21452]: cluster 2024-04-18T22:55:16.548845+0000 mon.a (mon.0) 171 : cluster 1 mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-04-18T22:55:16.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:16 smithi016 bash[21452]: cluster 2024-04-18T22:55:16.555089+0000 mon.a (mon.0) 172 : cluster 0 monmap epoch 2 2024-04-18T22:55:16.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:16 smithi016 bash[21452]: cluster 2024-04-18T22:55:16.555131+0000 mon.a (mon.0) 173 : cluster 0 fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T22:55:16.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:16 smithi016 bash[21452]: cluster 2024-04-18T22:55:16.555180+0000 mon.a (mon.0) 174 : cluster 0 last_changed 2024-04-18T22:55:11.499314+0000 2024-04-18T22:55:16.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:16 smithi016 bash[21452]: cluster 2024-04-18T22:55:16.555203+0000 mon.a (mon.0) 175 : cluster 0 created 2024-04-18T22:52:24.457677+0000 2024-04-18T22:55:16.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:16 smithi016 bash[21452]: cluster 2024-04-18T22:55:16.555223+0000 mon.a (mon.0) 176 : cluster 0 min_mon_release 19 (squid) 2024-04-18T22:55:16.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:16 smithi016 bash[21452]: cluster 2024-04-18T22:55:16.555244+0000 mon.a (mon.0) 177 : cluster 0 election_strategy: 1 2024-04-18T22:55:16.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:16 smithi016 bash[21452]: cluster 2024-04-18T22:55:16.555265+0000 mon.a (mon.0) 178 : cluster 0 0: [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] mon.a 2024-04-18T22:55:16.924 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:16 smithi016 bash[21452]: cluster 2024-04-18T22:55:16.555287+0000 mon.a (mon.0) 179 : cluster 0 1: [v2:172.21.15.69:3300/0,v1:172.21.15.69:6789/0] mon.c 2024-04-18T22:55:16.924 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:16 smithi016 bash[21452]: cluster 2024-04-18T22:55:16.575881+0000 mon.a (mon.0) 180 : cluster 0 fsmap 2024-04-18T22:55:16.924 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:16 smithi016 bash[21452]: cluster 2024-04-18T22:55:16.575972+0000 mon.a (mon.0) 181 : cluster 0 osdmap e4: 0 total, 0 up, 0 in 2024-04-18T22:55:16.924 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:16 smithi016 bash[21452]: cluster 2024-04-18T22:55:16.576254+0000 mon.a (mon.0) 182 : cluster 0 mgrmap e13: a(active, since 98s) 2024-04-18T22:55:16.924 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:16 smithi016 bash[21452]: cluster 2024-04-18T22:55:16.576509+0000 mon.a (mon.0) 183 : cluster 1 overall HEALTH_OK 2024-04-18T22:55:16.924 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:16 smithi016 bash[21452]: audit 2024-04-18T22:55:16.583619+0000 mon.a (mon.0) 184 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:16.924 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:16 smithi016 bash[21452]: audit 2024-04-18T22:55:16.590554+0000 mon.a (mon.0) 185 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:16.924 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:16 smithi016 bash[21452]: audit 2024-04-18T22:55:16.600434+0000 mon.a (mon.0) 186 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:16.924 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:16 smithi016 bash[21452]: audit 2024-04-18T22:55:16.607266+0000 mon.a (mon.0) 187 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:22.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: audit 2024-04-18T22:55:17.533326+0000 mon.a (mon.0) 191 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-18T22:55:22.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: cluster 2024-04-18T22:55:17.533613+0000 mon.c (mon.1) 2 : cluster 1 mon.c calling monitor election 2024-04-18T22:55:22.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: cluster 2024-04-18T22:55:17.533977+0000 mon.a (mon.0) 192 : cluster 1 mon.a calling monitor election 2024-04-18T22:55:22.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: audit 2024-04-18T22:55:17.552497+0000 mon.a (mon.0) 193 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:55:22.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: audit 2024-04-18T22:55:17.552756+0000 mon.a (mon.0) 194 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-18T22:55:22.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: cluster 2024-04-18T22:55:17.830928+0000 mgr.a (mgr.14152) 74 : cluster 0 pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:22.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: audit 2024-04-18T22:55:18.526514+0000 mon.a (mon.0) 195 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:55:22.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: audit 2024-04-18T22:55:19.526727+0000 mon.a (mon.0) 196 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:55:22.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: cluster 2024-04-18T22:55:19.831314+0000 mgr.a (mgr.14152) 75 : cluster 0 pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:22.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: audit 2024-04-18T22:55:20.526775+0000 mon.a (mon.0) 197 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:55:22.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: audit 2024-04-18T22:55:21.527076+0000 mon.a (mon.0) 198 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:55:22.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: cluster 2024-04-18T22:55:21.831696+0000 mgr.a (mgr.14152) 76 : cluster 0 pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:22.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: audit 2024-04-18T22:55:22.527263+0000 mon.a (mon.0) 199 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:55:22.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: cluster 2024-04-18T22:55:22.552454+0000 mon.a (mon.0) 200 : cluster 1 mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-04-18T22:55:22.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: cluster 2024-04-18T22:55:22.558709+0000 mon.a (mon.0) 201 : cluster 0 monmap epoch 3 2024-04-18T22:55:22.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: cluster 2024-04-18T22:55:22.558747+0000 mon.a (mon.0) 202 : cluster 0 fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T22:55:22.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: cluster 2024-04-18T22:55:22.558771+0000 mon.a (mon.0) 203 : cluster 0 last_changed 2024-04-18T22:55:17.526846+0000 2024-04-18T22:55:22.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: cluster 2024-04-18T22:55:22.558798+0000 mon.a (mon.0) 204 : cluster 0 created 2024-04-18T22:52:24.457677+0000 2024-04-18T22:55:22.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: cluster 2024-04-18T22:55:22.558823+0000 mon.a (mon.0) 205 : cluster 0 min_mon_release 19 (squid) 2024-04-18T22:55:22.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: cluster 2024-04-18T22:55:22.558849+0000 mon.a (mon.0) 206 : cluster 0 election_strategy: 1 2024-04-18T22:55:22.924 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: cluster 2024-04-18T22:55:22.558871+0000 mon.a (mon.0) 207 : cluster 0 0: [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] mon.a 2024-04-18T22:55:22.924 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: cluster 2024-04-18T22:55:22.558896+0000 mon.a (mon.0) 208 : cluster 0 1: [v2:172.21.15.69:3300/0,v1:172.21.15.69:6789/0] mon.c 2024-04-18T22:55:22.924 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: cluster 2024-04-18T22:55:22.558918+0000 mon.a (mon.0) 209 : cluster 0 2: [v2:172.21.15.55:3300/0,v1:172.21.15.55:6789/0] mon.b 2024-04-18T22:55:22.924 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: cluster 2024-04-18T22:55:22.579996+0000 mon.a (mon.0) 210 : cluster 0 fsmap 2024-04-18T22:55:22.924 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: cluster 2024-04-18T22:55:22.580052+0000 mon.a (mon.0) 211 : cluster 0 osdmap e4: 0 total, 0 up, 0 in 2024-04-18T22:55:22.924 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: cluster 2024-04-18T22:55:22.580328+0000 mon.a (mon.0) 212 : cluster 0 mgrmap e13: a(active, since 104s) 2024-04-18T22:55:22.924 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: cluster 2024-04-18T22:55:22.580646+0000 mon.a (mon.0) 213 : cluster 3 Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-04-18T22:55:22.924 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: cluster 2024-04-18T22:55:22.588301+0000 mon.a (mon.0) 214 : cluster 3 Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-04-18T22:55:22.924 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: cluster 2024-04-18T22:55:22.588341+0000 mon.a (mon.0) 215 : cluster 3 [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-04-18T22:55:22.924 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: cluster 2024-04-18T22:55:22.588363+0000 mon.a (mon.0) 216 : cluster 3 mon.b (rank 2) addr [v2:172.21.15.55:3300/0,v1:172.21.15.55:6789/0] is down (out of quorum) 2024-04-18T22:55:22.924 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: audit 2024-04-18T22:55:22.593073+0000 mon.a (mon.0) 217 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:22.924 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: audit 2024-04-18T22:55:22.599319+0000 mon.a (mon.0) 218 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:22.924 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: audit 2024-04-18T22:55:22.618570+0000 mon.a (mon.0) 219 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:22.924 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: audit 2024-04-18T22:55:22.624085+0000 mon.a (mon.0) 220 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:22.924 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: audit 2024-04-18T22:55:22.629603+0000 mon.a (mon.0) 221 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:22.925 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:22 smithi016 bash[21452]: audit 2024-04-18T22:55:22.631279+0000 mon.a (mon.0) 222 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:22.925 INFO:teuthology.orchestra.run.smithi069.stdout: 2024-04-18T22:55:22.925 INFO:teuthology.orchestra.run.smithi069.stdout:{"epoch":3,"fsid":"1266e2ee-fdd6-11ee-bc92-c7b262605968","modified":"2024-04-18T22:55:17.526846Z","created":"2024-04-18T22:52:24.457677Z","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.16:3300","nonce":0},{"type":"v1","addr":"172.21.15.16:6789","nonce":0}]},"addr":"172.21.15.16:6789/0","public_addr":"172.21.15.16:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.69:3300","nonce":0},{"type":"v1","addr":"172.21.15.69:6789","nonce":0}]},"addr":"172.21.15.69:6789/0","public_addr":"172.21.15.69:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":2,"name":"b","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:3300","nonce":0},{"type":"v1","addr":"172.21.15.55:6789","nonce":0}]},"addr":"172.21.15.55:6789/0","public_addr":"172.21.15.55:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-04-18T22:55:22.928 INFO:teuthology.orchestra.run.smithi069.stderr:dumped monmap epoch 3 2024-04-18T22:55:22.940 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: audit 2024-04-18T22:55:17.533326+0000 mon.a (mon.0) 191 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-18T22:55:22.940 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: cluster 2024-04-18T22:55:17.533613+0000 mon.c (mon.1) 2 : cluster 1 mon.c calling monitor election 2024-04-18T22:55:22.941 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: cluster 2024-04-18T22:55:17.533977+0000 mon.a (mon.0) 192 : cluster 1 mon.a calling monitor election 2024-04-18T22:55:22.941 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: audit 2024-04-18T22:55:17.552497+0000 mon.a (mon.0) 193 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:55:22.941 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: audit 2024-04-18T22:55:17.552756+0000 mon.a (mon.0) 194 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-18T22:55:22.941 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: cluster 2024-04-18T22:55:17.830928+0000 mgr.a (mgr.14152) 74 : cluster 0 pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:22.941 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: audit 2024-04-18T22:55:18.526514+0000 mon.a (mon.0) 195 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:55:22.941 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: audit 2024-04-18T22:55:19.526727+0000 mon.a (mon.0) 196 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:55:22.941 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: cluster 2024-04-18T22:55:19.831314+0000 mgr.a (mgr.14152) 75 : cluster 0 pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:22.941 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: audit 2024-04-18T22:55:20.526775+0000 mon.a (mon.0) 197 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:55:22.941 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: audit 2024-04-18T22:55:21.527076+0000 mon.a (mon.0) 198 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:55:22.941 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: cluster 2024-04-18T22:55:21.831696+0000 mgr.a (mgr.14152) 76 : cluster 0 pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:22.941 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: audit 2024-04-18T22:55:22.527263+0000 mon.a (mon.0) 199 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:55:22.941 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: cluster 2024-04-18T22:55:22.552454+0000 mon.a (mon.0) 200 : cluster 1 mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-04-18T22:55:22.941 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: cluster 2024-04-18T22:55:22.558709+0000 mon.a (mon.0) 201 : cluster 0 monmap epoch 3 2024-04-18T22:55:22.942 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: cluster 2024-04-18T22:55:22.558747+0000 mon.a (mon.0) 202 : cluster 0 fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T22:55:22.942 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: cluster 2024-04-18T22:55:22.558771+0000 mon.a (mon.0) 203 : cluster 0 last_changed 2024-04-18T22:55:17.526846+0000 2024-04-18T22:55:22.942 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: cluster 2024-04-18T22:55:22.558798+0000 mon.a (mon.0) 204 : cluster 0 created 2024-04-18T22:52:24.457677+0000 2024-04-18T22:55:22.942 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: cluster 2024-04-18T22:55:22.558823+0000 mon.a (mon.0) 205 : cluster 0 min_mon_release 19 (squid) 2024-04-18T22:55:22.942 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: cluster 2024-04-18T22:55:22.558849+0000 mon.a (mon.0) 206 : cluster 0 election_strategy: 1 2024-04-18T22:55:22.942 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: cluster 2024-04-18T22:55:22.558871+0000 mon.a (mon.0) 207 : cluster 0 0: [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] mon.a 2024-04-18T22:55:22.942 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: cluster 2024-04-18T22:55:22.558896+0000 mon.a (mon.0) 208 : cluster 0 1: [v2:172.21.15.69:3300/0,v1:172.21.15.69:6789/0] mon.c 2024-04-18T22:55:22.942 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: cluster 2024-04-18T22:55:22.558918+0000 mon.a (mon.0) 209 : cluster 0 2: [v2:172.21.15.55:3300/0,v1:172.21.15.55:6789/0] mon.b 2024-04-18T22:55:22.942 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: cluster 2024-04-18T22:55:22.579996+0000 mon.a (mon.0) 210 : cluster 0 fsmap 2024-04-18T22:55:22.942 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: cluster 2024-04-18T22:55:22.580052+0000 mon.a (mon.0) 211 : cluster 0 osdmap e4: 0 total, 0 up, 0 in 2024-04-18T22:55:22.942 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: cluster 2024-04-18T22:55:22.580328+0000 mon.a (mon.0) 212 : cluster 0 mgrmap e13: a(active, since 104s) 2024-04-18T22:55:22.942 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: cluster 2024-04-18T22:55:22.580646+0000 mon.a (mon.0) 213 : cluster 3 Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-04-18T22:55:22.942 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: cluster 2024-04-18T22:55:22.588301+0000 mon.a (mon.0) 214 : cluster 3 Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-04-18T22:55:22.942 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: cluster 2024-04-18T22:55:22.588341+0000 mon.a (mon.0) 215 : cluster 3 [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-04-18T22:55:22.942 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: cluster 2024-04-18T22:55:22.588363+0000 mon.a (mon.0) 216 : cluster 3 mon.b (rank 2) addr [v2:172.21.15.55:3300/0,v1:172.21.15.55:6789/0] is down (out of quorum) 2024-04-18T22:55:22.943 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: audit 2024-04-18T22:55:22.593073+0000 mon.a (mon.0) 217 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:22.943 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: audit 2024-04-18T22:55:22.599319+0000 mon.a (mon.0) 218 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:22.943 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: audit 2024-04-18T22:55:22.618570+0000 mon.a (mon.0) 219 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:22.943 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: audit 2024-04-18T22:55:22.624085+0000 mon.a (mon.0) 220 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:22.943 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: audit 2024-04-18T22:55:22.629603+0000 mon.a (mon.0) 221 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:22.943 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:22 smithi069 bash[23476]: audit 2024-04-18T22:55:22.631279+0000 mon.a (mon.0) 222 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:23.680 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-04-18T22:55:23.681 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph config generate-minimal-conf 2024-04-18T22:55:23.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:23 smithi016 bash[21452]: audit 2024-04-18T22:55:22.633603+0000 mon.a (mon.0) 223 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:55:23.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:23 smithi016 bash[21452]: cephadm 2024-04-18T22:55:22.649186+0000 mgr.a (mgr.14152) 77 : cephadm 1 Updating smithi016:/etc/ceph/ceph.conf 2024-04-18T22:55:23.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:23 smithi016 bash[21452]: cephadm 2024-04-18T22:55:22.649995+0000 mgr.a (mgr.14152) 78 : cephadm 1 Updating smithi055:/etc/ceph/ceph.conf 2024-04-18T22:55:23.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:23 smithi016 bash[21452]: cephadm 2024-04-18T22:55:22.650401+0000 mgr.a (mgr.14152) 79 : cephadm 1 Updating smithi069:/etc/ceph/ceph.conf 2024-04-18T22:55:23.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:23 smithi016 bash[21452]: audit 2024-04-18T22:55:22.926448+0000 mon.a (mon.0) 224 : audit 0 from='client.? 172.21.15.69:0/107281758' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-18T22:55:23.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:23 smithi016 bash[21452]: cephadm 2024-04-18T22:55:23.016833+0000 mgr.a (mgr.14152) 80 : cephadm 1 Updating smithi055:/var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/config/ceph.conf 2024-04-18T22:55:23.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:23 smithi016 bash[21452]: cephadm 2024-04-18T22:55:23.017622+0000 mgr.a (mgr.14152) 81 : cephadm 1 Updating smithi069:/var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/config/ceph.conf 2024-04-18T22:55:23.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:23 smithi016 bash[21452]: cephadm 2024-04-18T22:55:23.018240+0000 mgr.a (mgr.14152) 82 : cephadm 1 Updating smithi016:/var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/config/ceph.conf 2024-04-18T22:55:23.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:23 smithi016 bash[21452]: audit 2024-04-18T22:55:23.239085+0000 mon.a (mon.0) 225 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:23.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:23 smithi016 bash[21452]: audit 2024-04-18T22:55:23.244433+0000 mon.a (mon.0) 226 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:23.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:23 smithi016 bash[21452]: audit 2024-04-18T22:55:23.249899+0000 mon.a (mon.0) 227 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:23.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:23 smithi016 bash[21452]: audit 2024-04-18T22:55:23.255426+0000 mon.a (mon.0) 228 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:23.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:23 smithi016 bash[21452]: audit 2024-04-18T22:55:23.389640+0000 mon.a (mon.0) 229 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:23.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:23 smithi016 bash[21452]: audit 2024-04-18T22:55:23.396432+0000 mon.a (mon.0) 230 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:23.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:23 smithi016 bash[21452]: audit 2024-04-18T22:55:23.403287+0000 mon.a (mon.0) 231 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:23.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:23 smithi016 bash[21452]: audit 2024-04-18T22:55:23.509080+0000 mon.a (mon.0) 232 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:23.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:23 smithi016 bash[21452]: audit 2024-04-18T22:55:23.514618+0000 mon.a (mon.0) 233 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:23.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:23 smithi016 bash[21452]: audit 2024-04-18T22:55:23.520397+0000 mon.a (mon.0) 234 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:23.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:23 smithi016 bash[21452]: audit 2024-04-18T22:55:23.526209+0000 mon.a (mon.0) 235 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:23.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:23 smithi016 bash[21452]: audit 2024-04-18T22:55:23.527745+0000 mon.a (mon.0) 236 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:55:23.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:23 smithi016 bash[21452]: audit 2024-04-18T22:55:23.528048+0000 mon.a (mon.0) 237 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-18T22:55:23.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:23 smithi016 bash[21452]: audit 2024-04-18T22:55:23.529638+0000 mon.a (mon.0) 238 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-18T22:55:23.923 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:23 smithi016 bash[21452]: audit 2024-04-18T22:55:23.531360+0000 mon.a (mon.0) 239 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:24.003 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:23 smithi069 bash[23476]: audit 2024-04-18T22:55:22.633603+0000 mon.a (mon.0) 223 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:55:24.003 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:23 smithi069 bash[23476]: cephadm 2024-04-18T22:55:22.649186+0000 mgr.a (mgr.14152) 77 : cephadm 1 Updating smithi016:/etc/ceph/ceph.conf 2024-04-18T22:55:24.003 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:23 smithi069 bash[23476]: cephadm 2024-04-18T22:55:22.649995+0000 mgr.a (mgr.14152) 78 : cephadm 1 Updating smithi055:/etc/ceph/ceph.conf 2024-04-18T22:55:24.003 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:23 smithi069 bash[23476]: cephadm 2024-04-18T22:55:22.650401+0000 mgr.a (mgr.14152) 79 : cephadm 1 Updating smithi069:/etc/ceph/ceph.conf 2024-04-18T22:55:24.003 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:23 smithi069 bash[23476]: audit 2024-04-18T22:55:22.926448+0000 mon.a (mon.0) 224 : audit 0 from='client.? 172.21.15.69:0/107281758' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-18T22:55:24.003 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:23 smithi069 bash[23476]: cephadm 2024-04-18T22:55:23.016833+0000 mgr.a (mgr.14152) 80 : cephadm 1 Updating smithi055:/var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/config/ceph.conf 2024-04-18T22:55:24.003 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:23 smithi069 bash[23476]: cephadm 2024-04-18T22:55:23.017622+0000 mgr.a (mgr.14152) 81 : cephadm 1 Updating smithi069:/var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/config/ceph.conf 2024-04-18T22:55:24.003 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:23 smithi069 bash[23476]: cephadm 2024-04-18T22:55:23.018240+0000 mgr.a (mgr.14152) 82 : cephadm 1 Updating smithi016:/var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/config/ceph.conf 2024-04-18T22:55:24.003 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:23 smithi069 bash[23476]: audit 2024-04-18T22:55:23.239085+0000 mon.a (mon.0) 225 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:24.003 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:23 smithi069 bash[23476]: audit 2024-04-18T22:55:23.244433+0000 mon.a (mon.0) 226 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:24.003 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:23 smithi069 bash[23476]: audit 2024-04-18T22:55:23.249899+0000 mon.a (mon.0) 227 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:24.003 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:23 smithi069 bash[23476]: audit 2024-04-18T22:55:23.255426+0000 mon.a (mon.0) 228 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:24.004 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:23 smithi069 bash[23476]: audit 2024-04-18T22:55:23.389640+0000 mon.a (mon.0) 229 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:24.004 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:23 smithi069 bash[23476]: audit 2024-04-18T22:55:23.396432+0000 mon.a (mon.0) 230 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:24.004 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:23 smithi069 bash[23476]: audit 2024-04-18T22:55:23.403287+0000 mon.a (mon.0) 231 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:24.004 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:23 smithi069 bash[23476]: audit 2024-04-18T22:55:23.509080+0000 mon.a (mon.0) 232 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:24.004 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:23 smithi069 bash[23476]: audit 2024-04-18T22:55:23.514618+0000 mon.a (mon.0) 233 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:24.004 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:23 smithi069 bash[23476]: audit 2024-04-18T22:55:23.520397+0000 mon.a (mon.0) 234 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:24.004 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:23 smithi069 bash[23476]: audit 2024-04-18T22:55:23.526209+0000 mon.a (mon.0) 235 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:24.004 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:23 smithi069 bash[23476]: audit 2024-04-18T22:55:23.527745+0000 mon.a (mon.0) 236 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:55:24.004 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:23 smithi069 bash[23476]: audit 2024-04-18T22:55:23.528048+0000 mon.a (mon.0) 237 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-18T22:55:24.004 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:23 smithi069 bash[23476]: audit 2024-04-18T22:55:23.529638+0000 mon.a (mon.0) 238 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-18T22:55:24.004 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:23 smithi069 bash[23476]: audit 2024-04-18T22:55:23.531360+0000 mon.a (mon.0) 239 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:24.915 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:24 smithi016 bash[21452]: cluster 2024-04-18T22:55:19.529455+0000 mon.b (mon.2) 1 : cluster 1 mon.b calling monitor election 2024-04-18T22:55:24.915 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:24 smithi016 bash[21452]: cluster 2024-04-18T22:55:24.573147+0000 mon.b (mon.2) 2 : cluster 1 mon.b calling monitor election 2024-04-18T22:55:24.915 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:24 smithi016 bash[21452]: cluster 2024-04-18T22:55:24.573653+0000 mon.a (mon.0) 241 : cluster 1 mon.a calling monitor election 2024-04-18T22:55:24.915 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:24 smithi016 bash[21452]: cluster 2024-04-18T22:55:24.574268+0000 mon.c (mon.1) 3 : cluster 1 mon.c calling monitor election 2024-04-18T22:55:24.915 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:24 smithi016 bash[21452]: cluster 2024-04-18T22:55:24.595901+0000 mon.a (mon.0) 242 : cluster 1 mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-04-18T22:55:24.915 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:24 smithi016 bash[21452]: cluster 2024-04-18T22:55:24.606947+0000 mon.a (mon.0) 243 : cluster 0 monmap epoch 3 2024-04-18T22:55:24.915 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:24 smithi016 bash[21452]: cluster 2024-04-18T22:55:24.607015+0000 mon.a (mon.0) 244 : cluster 0 fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T22:55:24.915 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:24 smithi016 bash[21452]: cluster 2024-04-18T22:55:24.607063+0000 mon.a (mon.0) 245 : cluster 0 last_changed 2024-04-18T22:55:17.526846+0000 2024-04-18T22:55:24.915 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:24 smithi016 bash[21452]: cluster 2024-04-18T22:55:24.607117+0000 mon.a (mon.0) 246 : cluster 0 created 2024-04-18T22:52:24.457677+0000 2024-04-18T22:55:24.915 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:24 smithi016 bash[21452]: cluster 2024-04-18T22:55:24.607160+0000 mon.a (mon.0) 247 : cluster 0 min_mon_release 19 (squid) 2024-04-18T22:55:24.915 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:24 smithi016 bash[21452]: cluster 2024-04-18T22:55:24.607206+0000 mon.a (mon.0) 248 : cluster 0 election_strategy: 1 2024-04-18T22:55:24.915 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:24 smithi016 bash[21452]: cluster 2024-04-18T22:55:24.607250+0000 mon.a (mon.0) 249 : cluster 0 0: [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] mon.a 2024-04-18T22:55:24.915 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:24 smithi016 bash[21452]: cluster 2024-04-18T22:55:24.607293+0000 mon.a (mon.0) 250 : cluster 0 1: [v2:172.21.15.69:3300/0,v1:172.21.15.69:6789/0] mon.c 2024-04-18T22:55:24.916 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:24 smithi016 bash[21452]: cluster 2024-04-18T22:55:24.607336+0000 mon.a (mon.0) 251 : cluster 0 2: [v2:172.21.15.55:3300/0,v1:172.21.15.55:6789/0] mon.b 2024-04-18T22:55:24.916 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:24 smithi016 bash[21452]: cluster 2024-04-18T22:55:24.608391+0000 mon.a (mon.0) 252 : cluster 0 fsmap 2024-04-18T22:55:24.916 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:24 smithi016 bash[21452]: cluster 2024-04-18T22:55:24.608485+0000 mon.a (mon.0) 253 : cluster 0 osdmap e4: 0 total, 0 up, 0 in 2024-04-18T22:55:24.916 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:24 smithi016 bash[21452]: cluster 2024-04-18T22:55:24.608827+0000 mon.a (mon.0) 254 : cluster 0 mgrmap e13: a(active, since 106s) 2024-04-18T22:55:24.916 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:24 smithi016 bash[21452]: cluster 2024-04-18T22:55:24.609224+0000 mon.a (mon.0) 255 : cluster 1 Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-04-18T22:55:24.916 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:24 smithi016 bash[21452]: cluster 2024-04-18T22:55:24.609285+0000 mon.a (mon.0) 256 : cluster 1 Cluster is now healthy 2024-04-18T22:55:24.916 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:24 smithi016 bash[21452]: cluster 2024-04-18T22:55:24.616725+0000 mon.a (mon.0) 257 : cluster 1 overall HEALTH_OK 2024-04-18T22:55:24.955 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:11.504508+0000 mon.a (mon.0) 161 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-18T22:55:24.955 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:11.504987+0000 mon.a (mon.0) 162 : cluster 1 mon.a calling monitor election 2024-04-18T22:55:24.955 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:11.524468+0000 mon.a (mon.0) 163 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-18T22:55:24.955 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:11.829733+0000 mgr.a (mgr.14152) 71 : cluster 0 pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:24.955 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:12.499633+0000 mon.a (mon.0) 164 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-18T22:55:24.955 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:13.499641+0000 mon.a (mon.0) 165 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-18T22:55:24.955 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:13.502785+0000 mon.c (mon.1) 1 : cluster 1 mon.c calling monitor election 2024-04-18T22:55:24.955 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:13.830134+0000 mgr.a (mgr.14152) 72 : cluster 0 pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:24.955 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:14.499841+0000 mon.a (mon.0) 166 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-18T22:55:24.955 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:15.500130+0000 mon.a (mon.0) 167 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-18T22:55:24.955 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:15.525867+0000 mon.a (mon.0) 168 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:55:24.955 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:15.830546+0000 mgr.a (mgr.14152) 73 : cluster 0 pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:24.956 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:16.500249+0000 mon.a (mon.0) 169 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-18T22:55:24.956 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:16.548097+0000 mon.a (mon.0) 170 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:55:24.956 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:16.548845+0000 mon.a (mon.0) 171 : cluster 1 mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-04-18T22:55:24.956 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:16.555089+0000 mon.a (mon.0) 172 : cluster 0 monmap epoch 2 2024-04-18T22:55:24.956 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:16.555131+0000 mon.a (mon.0) 173 : cluster 0 fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T22:55:24.956 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:16.555180+0000 mon.a (mon.0) 174 : cluster 0 last_changed 2024-04-18T22:55:11.499314+0000 2024-04-18T22:55:24.956 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:16.555203+0000 mon.a (mon.0) 175 : cluster 0 created 2024-04-18T22:52:24.457677+0000 2024-04-18T22:55:24.956 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:16.555223+0000 mon.a (mon.0) 176 : cluster 0 min_mon_release 19 (squid) 2024-04-18T22:55:24.956 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:16.555244+0000 mon.a (mon.0) 177 : cluster 0 election_strategy: 1 2024-04-18T22:55:24.956 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:16.555265+0000 mon.a (mon.0) 178 : cluster 0 0: [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] mon.a 2024-04-18T22:55:24.956 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:16.555287+0000 mon.a (mon.0) 179 : cluster 0 1: [v2:172.21.15.69:3300/0,v1:172.21.15.69:6789/0] mon.c 2024-04-18T22:55:24.957 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:16.575881+0000 mon.a (mon.0) 180 : cluster 0 fsmap 2024-04-18T22:55:24.957 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:16.575972+0000 mon.a (mon.0) 181 : cluster 0 osdmap e4: 0 total, 0 up, 0 in 2024-04-18T22:55:24.957 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:16.576254+0000 mon.a (mon.0) 182 : cluster 0 mgrmap e13: a(active, since 98s) 2024-04-18T22:55:24.957 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:16.576509+0000 mon.a (mon.0) 183 : cluster 1 overall HEALTH_OK 2024-04-18T22:55:24.957 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:16.583619+0000 mon.a (mon.0) 184 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:24.957 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:16.590554+0000 mon.a (mon.0) 185 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:24.958 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:16.600434+0000 mon.a (mon.0) 186 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:24.958 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:16.607266+0000 mon.a (mon.0) 187 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:24.958 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:17.533326+0000 mon.a (mon.0) 191 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-18T22:55:24.958 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:17.533613+0000 mon.c (mon.1) 2 : cluster 1 mon.c calling monitor election 2024-04-18T22:55:24.958 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:17.533977+0000 mon.a (mon.0) 192 : cluster 1 mon.a calling monitor election 2024-04-18T22:55:24.958 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:17.552497+0000 mon.a (mon.0) 193 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:55:24.958 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:17.552756+0000 mon.a (mon.0) 194 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-18T22:55:24.958 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:17.830928+0000 mgr.a (mgr.14152) 74 : cluster 0 pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:24.958 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:18.526514+0000 mon.a (mon.0) 195 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:55:24.958 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:19.526727+0000 mon.a (mon.0) 196 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:55:24.958 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:19.831314+0000 mgr.a (mgr.14152) 75 : cluster 0 pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:24.958 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:20.526775+0000 mon.a (mon.0) 197 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:55:24.958 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:21.527076+0000 mon.a (mon.0) 198 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:55:24.959 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:21.831696+0000 mgr.a (mgr.14152) 76 : cluster 0 pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:24.959 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:22.527263+0000 mon.a (mon.0) 199 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:55:24.959 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:22.552454+0000 mon.a (mon.0) 200 : cluster 1 mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-04-18T22:55:24.959 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:22.558709+0000 mon.a (mon.0) 201 : cluster 0 monmap epoch 3 2024-04-18T22:55:24.959 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:22.558747+0000 mon.a (mon.0) 202 : cluster 0 fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T22:55:24.959 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:22.558771+0000 mon.a (mon.0) 203 : cluster 0 last_changed 2024-04-18T22:55:17.526846+0000 2024-04-18T22:55:24.959 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:22.558798+0000 mon.a (mon.0) 204 : cluster 0 created 2024-04-18T22:52:24.457677+0000 2024-04-18T22:55:24.959 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:22.558823+0000 mon.a (mon.0) 205 : cluster 0 min_mon_release 19 (squid) 2024-04-18T22:55:24.959 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:22.558849+0000 mon.a (mon.0) 206 : cluster 0 election_strategy: 1 2024-04-18T22:55:24.959 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:22.558871+0000 mon.a (mon.0) 207 : cluster 0 0: [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] mon.a 2024-04-18T22:55:24.959 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:22.558896+0000 mon.a (mon.0) 208 : cluster 0 1: [v2:172.21.15.69:3300/0,v1:172.21.15.69:6789/0] mon.c 2024-04-18T22:55:24.959 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:22.558918+0000 mon.a (mon.0) 209 : cluster 0 2: [v2:172.21.15.55:3300/0,v1:172.21.15.55:6789/0] mon.b 2024-04-18T22:55:24.959 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:22.579996+0000 mon.a (mon.0) 210 : cluster 0 fsmap 2024-04-18T22:55:24.959 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:22.580052+0000 mon.a (mon.0) 211 : cluster 0 osdmap e4: 0 total, 0 up, 0 in 2024-04-18T22:55:24.960 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:22.580328+0000 mon.a (mon.0) 212 : cluster 0 mgrmap e13: a(active, since 104s) 2024-04-18T22:55:24.960 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:22.580646+0000 mon.a (mon.0) 213 : cluster 3 Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-04-18T22:55:24.960 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:22.588301+0000 mon.a (mon.0) 214 : cluster 3 Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-04-18T22:55:24.960 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:22.588341+0000 mon.a (mon.0) 215 : cluster 3 [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-04-18T22:55:24.960 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:22.588363+0000 mon.a (mon.0) 216 : cluster 3 mon.b (rank 2) addr [v2:172.21.15.55:3300/0,v1:172.21.15.55:6789/0] is down (out of quorum) 2024-04-18T22:55:24.960 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:22.593073+0000 mon.a (mon.0) 217 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:24.960 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:22.599319+0000 mon.a (mon.0) 218 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:24.960 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:22.618570+0000 mon.a (mon.0) 219 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:24.960 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:22.624085+0000 mon.a (mon.0) 220 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:24.960 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:22.629603+0000 mon.a (mon.0) 221 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:24.960 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:22.631279+0000 mon.a (mon.0) 222 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:24.960 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:22.633603+0000 mon.a (mon.0) 223 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:55:24.960 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cephadm 2024-04-18T22:55:22.649186+0000 mgr.a (mgr.14152) 77 : cephadm 1 Updating smithi016:/etc/ceph/ceph.conf 2024-04-18T22:55:24.961 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cephadm 2024-04-18T22:55:22.649995+0000 mgr.a (mgr.14152) 78 : cephadm 1 Updating smithi055:/etc/ceph/ceph.conf 2024-04-18T22:55:24.961 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cephadm 2024-04-18T22:55:22.650401+0000 mgr.a (mgr.14152) 79 : cephadm 1 Updating smithi069:/etc/ceph/ceph.conf 2024-04-18T22:55:24.961 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:22.926448+0000 mon.a (mon.0) 224 : audit 0 from='client.? 172.21.15.69:0/107281758' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-18T22:55:24.961 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cephadm 2024-04-18T22:55:23.016833+0000 mgr.a (mgr.14152) 80 : cephadm 1 Updating smithi055:/var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/config/ceph.conf 2024-04-18T22:55:24.961 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cephadm 2024-04-18T22:55:23.017622+0000 mgr.a (mgr.14152) 81 : cephadm 1 Updating smithi069:/var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/config/ceph.conf 2024-04-18T22:55:24.961 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cephadm 2024-04-18T22:55:23.018240+0000 mgr.a (mgr.14152) 82 : cephadm 1 Updating smithi016:/var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/config/ceph.conf 2024-04-18T22:55:24.961 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:23.239085+0000 mon.a (mon.0) 225 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:24.961 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:23.244433+0000 mon.a (mon.0) 226 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:24.961 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:23.249899+0000 mon.a (mon.0) 227 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:24.961 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:23.255426+0000 mon.a (mon.0) 228 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:24.961 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:23.389640+0000 mon.a (mon.0) 229 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:24.961 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:23.396432+0000 mon.a (mon.0) 230 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:24.961 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:23.403287+0000 mon.a (mon.0) 231 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:24.961 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:23.509080+0000 mon.a (mon.0) 232 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:24.961 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:23.514618+0000 mon.a (mon.0) 233 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:24.962 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:23.520397+0000 mon.a (mon.0) 234 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:24.962 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:23.526209+0000 mon.a (mon.0) 235 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:24.962 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:23.527745+0000 mon.a (mon.0) 236 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:55:24.962 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:23.528048+0000 mon.a (mon.0) 237 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-18T22:55:24.962 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:23.529638+0000 mon.a (mon.0) 238 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-18T22:55:24.962 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: audit 2024-04-18T22:55:23.531360+0000 mon.a (mon.0) 239 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:24.962 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:19.529455+0000 mon.b (mon.2) 1 : cluster 1 mon.b calling monitor election 2024-04-18T22:55:24.962 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:24.573147+0000 mon.b (mon.2) 2 : cluster 1 mon.b calling monitor election 2024-04-18T22:55:24.962 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:24.573653+0000 mon.a (mon.0) 241 : cluster 1 mon.a calling monitor election 2024-04-18T22:55:24.962 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:24.574268+0000 mon.c (mon.1) 3 : cluster 1 mon.c calling monitor election 2024-04-18T22:55:24.962 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:24.595901+0000 mon.a (mon.0) 242 : cluster 1 mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-04-18T22:55:24.962 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:24.606947+0000 mon.a (mon.0) 243 : cluster 0 monmap epoch 3 2024-04-18T22:55:24.962 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:24.607015+0000 mon.a (mon.0) 244 : cluster 0 fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T22:55:24.962 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:24.607063+0000 mon.a (mon.0) 245 : cluster 0 last_changed 2024-04-18T22:55:17.526846+0000 2024-04-18T22:55:24.962 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:24.607117+0000 mon.a (mon.0) 246 : cluster 0 created 2024-04-18T22:52:24.457677+0000 2024-04-18T22:55:24.963 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:24.607160+0000 mon.a (mon.0) 247 : cluster 0 min_mon_release 19 (squid) 2024-04-18T22:55:24.963 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:24.607206+0000 mon.a (mon.0) 248 : cluster 0 election_strategy: 1 2024-04-18T22:55:24.963 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:24.607250+0000 mon.a (mon.0) 249 : cluster 0 0: [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] mon.a 2024-04-18T22:55:24.963 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:24.607293+0000 mon.a (mon.0) 250 : cluster 0 1: [v2:172.21.15.69:3300/0,v1:172.21.15.69:6789/0] mon.c 2024-04-18T22:55:24.963 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:24.607336+0000 mon.a (mon.0) 251 : cluster 0 2: [v2:172.21.15.55:3300/0,v1:172.21.15.55:6789/0] mon.b 2024-04-18T22:55:24.963 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:24.608391+0000 mon.a (mon.0) 252 : cluster 0 fsmap 2024-04-18T22:55:24.963 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:24.608485+0000 mon.a (mon.0) 253 : cluster 0 osdmap e4: 0 total, 0 up, 0 in 2024-04-18T22:55:24.963 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:24.608827+0000 mon.a (mon.0) 254 : cluster 0 mgrmap e13: a(active, since 106s) 2024-04-18T22:55:24.963 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:24.609224+0000 mon.a (mon.0) 255 : cluster 1 Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-04-18T22:55:24.963 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:24.609285+0000 mon.a (mon.0) 256 : cluster 1 Cluster is now healthy 2024-04-18T22:55:24.963 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:24 smithi055 bash[23198]: cluster 2024-04-18T22:55:24.616725+0000 mon.a (mon.0) 257 : cluster 1 overall HEALTH_OK 2024-04-18T22:55:25.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:24 smithi069 bash[23476]: cluster 2024-04-18T22:55:19.529455+0000 mon.b (mon.2) 1 : cluster 1 mon.b calling monitor election 2024-04-18T22:55:25.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:24 smithi069 bash[23476]: cluster 2024-04-18T22:55:24.573147+0000 mon.b (mon.2) 2 : cluster 1 mon.b calling monitor election 2024-04-18T22:55:25.003 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:24 smithi069 bash[23476]: cluster 2024-04-18T22:55:24.573653+0000 mon.a (mon.0) 241 : cluster 1 mon.a calling monitor election 2024-04-18T22:55:25.003 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:24 smithi069 bash[23476]: cluster 2024-04-18T22:55:24.574268+0000 mon.c (mon.1) 3 : cluster 1 mon.c calling monitor election 2024-04-18T22:55:25.003 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:24 smithi069 bash[23476]: cluster 2024-04-18T22:55:24.595901+0000 mon.a (mon.0) 242 : cluster 1 mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-04-18T22:55:25.003 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:24 smithi069 bash[23476]: cluster 2024-04-18T22:55:24.606947+0000 mon.a (mon.0) 243 : cluster 0 monmap epoch 3 2024-04-18T22:55:25.003 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:24 smithi069 bash[23476]: cluster 2024-04-18T22:55:24.607015+0000 mon.a (mon.0) 244 : cluster 0 fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T22:55:25.003 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:24 smithi069 bash[23476]: cluster 2024-04-18T22:55:24.607063+0000 mon.a (mon.0) 245 : cluster 0 last_changed 2024-04-18T22:55:17.526846+0000 2024-04-18T22:55:25.003 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:24 smithi069 bash[23476]: cluster 2024-04-18T22:55:24.607117+0000 mon.a (mon.0) 246 : cluster 0 created 2024-04-18T22:52:24.457677+0000 2024-04-18T22:55:25.003 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:24 smithi069 bash[23476]: cluster 2024-04-18T22:55:24.607160+0000 mon.a (mon.0) 247 : cluster 0 min_mon_release 19 (squid) 2024-04-18T22:55:25.003 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:24 smithi069 bash[23476]: cluster 2024-04-18T22:55:24.607206+0000 mon.a (mon.0) 248 : cluster 0 election_strategy: 1 2024-04-18T22:55:25.003 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:24 smithi069 bash[23476]: cluster 2024-04-18T22:55:24.607250+0000 mon.a (mon.0) 249 : cluster 0 0: [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] mon.a 2024-04-18T22:55:25.003 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:24 smithi069 bash[23476]: cluster 2024-04-18T22:55:24.607293+0000 mon.a (mon.0) 250 : cluster 0 1: [v2:172.21.15.69:3300/0,v1:172.21.15.69:6789/0] mon.c 2024-04-18T22:55:25.003 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:24 smithi069 bash[23476]: cluster 2024-04-18T22:55:24.607336+0000 mon.a (mon.0) 251 : cluster 0 2: [v2:172.21.15.55:3300/0,v1:172.21.15.55:6789/0] mon.b 2024-04-18T22:55:25.003 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:24 smithi069 bash[23476]: cluster 2024-04-18T22:55:24.608391+0000 mon.a (mon.0) 252 : cluster 0 fsmap 2024-04-18T22:55:25.003 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:24 smithi069 bash[23476]: cluster 2024-04-18T22:55:24.608485+0000 mon.a (mon.0) 253 : cluster 0 osdmap e4: 0 total, 0 up, 0 in 2024-04-18T22:55:25.003 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:24 smithi069 bash[23476]: cluster 2024-04-18T22:55:24.608827+0000 mon.a (mon.0) 254 : cluster 0 mgrmap e13: a(active, since 106s) 2024-04-18T22:55:25.004 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:24 smithi069 bash[23476]: cluster 2024-04-18T22:55:24.609224+0000 mon.a (mon.0) 255 : cluster 1 Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-04-18T22:55:25.004 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:24 smithi069 bash[23476]: cluster 2024-04-18T22:55:24.609285+0000 mon.a (mon.0) 256 : cluster 1 Cluster is now healthy 2024-04-18T22:55:25.004 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:24 smithi069 bash[23476]: cluster 2024-04-18T22:55:24.616725+0000 mon.a (mon.0) 257 : cluster 1 overall HEALTH_OK 2024-04-18T22:55:26.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:26 smithi069 bash[23476]: audit 2024-04-18T22:55:25.527815+0000 mon.a (mon.0) 258 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:55:26.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:26 smithi069 bash[23476]: audit 2024-04-18T22:55:25.660088+0000 mon.a (mon.0) 259 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:26.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:26 smithi069 bash[23476]: audit 2024-04-18T22:55:25.668324+0000 mon.a (mon.0) 260 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:26.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:26 smithi069 bash[23476]: cephadm 2024-04-18T22:55:25.702899+0000 mgr.a (mgr.14152) 86 : cephadm 1 Reconfiguring mon.b (monmap changed)... 2024-04-18T22:55:26.753 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:26 smithi069 bash[23476]: audit 2024-04-18T22:55:25.703646+0000 mon.a (mon.0) 261 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-18T22:55:26.753 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:26 smithi069 bash[23476]: audit 2024-04-18T22:55:25.705568+0000 mon.a (mon.0) 262 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-18T22:55:26.753 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:26 smithi069 bash[23476]: audit 2024-04-18T22:55:25.707419+0000 mon.a (mon.0) 263 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:26.753 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:26 smithi069 bash[23476]: cephadm 2024-04-18T22:55:25.709516+0000 mgr.a (mgr.14152) 87 : cephadm 1 Reconfiguring daemon mon.b on smithi055 2024-04-18T22:55:26.753 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:26 smithi069 bash[23476]: cluster 2024-04-18T22:55:25.832527+0000 mgr.a (mgr.14152) 88 : cluster 0 pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:26.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:26 smithi016 bash[21452]: audit 2024-04-18T22:55:25.527815+0000 mon.a (mon.0) 258 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:55:26.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:26 smithi016 bash[21452]: audit 2024-04-18T22:55:25.660088+0000 mon.a (mon.0) 259 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:26.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:26 smithi016 bash[21452]: audit 2024-04-18T22:55:25.668324+0000 mon.a (mon.0) 260 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:26.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:26 smithi016 bash[21452]: cephadm 2024-04-18T22:55:25.702899+0000 mgr.a (mgr.14152) 86 : cephadm 1 Reconfiguring mon.b (monmap changed)... 2024-04-18T22:55:26.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:26 smithi016 bash[21452]: audit 2024-04-18T22:55:25.703646+0000 mon.a (mon.0) 261 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-18T22:55:26.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:26 smithi016 bash[21452]: audit 2024-04-18T22:55:25.705568+0000 mon.a (mon.0) 262 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-18T22:55:26.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:26 smithi016 bash[21452]: audit 2024-04-18T22:55:25.707419+0000 mon.a (mon.0) 263 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:26.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:26 smithi016 bash[21452]: cephadm 2024-04-18T22:55:25.709516+0000 mgr.a (mgr.14152) 87 : cephadm 1 Reconfiguring daemon mon.b on smithi055 2024-04-18T22:55:26.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:26 smithi016 bash[21452]: cluster 2024-04-18T22:55:25.832527+0000 mgr.a (mgr.14152) 88 : cluster 0 pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:26.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:26 smithi055 bash[23198]: audit 2024-04-18T22:55:25.527815+0000 mon.a (mon.0) 258 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:55:26.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:26 smithi055 bash[23198]: audit 2024-04-18T22:55:25.660088+0000 mon.a (mon.0) 259 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:26.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:26 smithi055 bash[23198]: audit 2024-04-18T22:55:25.668324+0000 mon.a (mon.0) 260 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:26.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:26 smithi055 bash[23198]: cephadm 2024-04-18T22:55:25.702899+0000 mgr.a (mgr.14152) 86 : cephadm 1 Reconfiguring mon.b (monmap changed)... 2024-04-18T22:55:26.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:26 smithi055 bash[23198]: audit 2024-04-18T22:55:25.703646+0000 mon.a (mon.0) 261 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-18T22:55:26.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:26 smithi055 bash[23198]: audit 2024-04-18T22:55:25.705568+0000 mon.a (mon.0) 262 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-18T22:55:26.955 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:26 smithi055 bash[23198]: audit 2024-04-18T22:55:25.707419+0000 mon.a (mon.0) 263 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:26.955 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:26 smithi055 bash[23198]: cephadm 2024-04-18T22:55:25.709516+0000 mgr.a (mgr.14152) 87 : cephadm 1 Reconfiguring daemon mon.b on smithi055 2024-04-18T22:55:26.955 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:26 smithi055 bash[23198]: cluster 2024-04-18T22:55:25.832527+0000 mgr.a (mgr.14152) 88 : cluster 0 pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:28.397 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T22:55:28.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:28 smithi016 bash[21452]: audit 2024-04-18T22:55:27.638890+0000 mon.a (mon.0) 264 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:28.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:28 smithi016 bash[21452]: audit 2024-04-18T22:55:27.646416+0000 mon.a (mon.0) 265 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:28.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:28 smithi016 bash[21452]: cephadm 2024-04-18T22:55:27.679747+0000 mgr.a (mgr.14152) 89 : cephadm 1 Reconfiguring mon.c (monmap changed)... 2024-04-18T22:55:28.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:28 smithi016 bash[21452]: audit 2024-04-18T22:55:27.680457+0000 mon.a (mon.0) 266 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-18T22:55:28.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:28 smithi016 bash[21452]: audit 2024-04-18T22:55:27.682350+0000 mon.a (mon.0) 267 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-18T22:55:28.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:28 smithi016 bash[21452]: audit 2024-04-18T22:55:27.684224+0000 mon.a (mon.0) 268 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:28.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:28 smithi016 bash[21452]: cephadm 2024-04-18T22:55:27.686360+0000 mgr.a (mgr.14152) 90 : cephadm 1 Reconfiguring daemon mon.c on smithi069 2024-04-18T22:55:28.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:28 smithi016 bash[21452]: cluster 2024-04-18T22:55:27.833042+0000 mgr.a (mgr.14152) 91 : cluster 0 pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:28.904 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:28 smithi069 bash[23476]: audit 2024-04-18T22:55:27.638890+0000 mon.a (mon.0) 264 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:28.904 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:28 smithi069 bash[23476]: audit 2024-04-18T22:55:27.646416+0000 mon.a (mon.0) 265 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:28.904 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:28 smithi069 bash[23476]: cephadm 2024-04-18T22:55:27.679747+0000 mgr.a (mgr.14152) 89 : cephadm 1 Reconfiguring mon.c (monmap changed)... 2024-04-18T22:55:28.904 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:28 smithi069 bash[23476]: audit 2024-04-18T22:55:27.680457+0000 mon.a (mon.0) 266 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-18T22:55:28.904 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:28 smithi069 bash[23476]: audit 2024-04-18T22:55:27.682350+0000 mon.a (mon.0) 267 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-18T22:55:28.904 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:28 smithi069 bash[23476]: audit 2024-04-18T22:55:27.684224+0000 mon.a (mon.0) 268 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:28.904 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:28 smithi069 bash[23476]: cephadm 2024-04-18T22:55:27.686360+0000 mgr.a (mgr.14152) 90 : cephadm 1 Reconfiguring daemon mon.c on smithi069 2024-04-18T22:55:28.904 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:28 smithi069 bash[23476]: cluster 2024-04-18T22:55:27.833042+0000 mgr.a (mgr.14152) 91 : cluster 0 pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:28.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:28 smithi055 bash[23198]: audit 2024-04-18T22:55:27.638890+0000 mon.a (mon.0) 264 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:28.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:28 smithi055 bash[23198]: audit 2024-04-18T22:55:27.646416+0000 mon.a (mon.0) 265 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:28.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:28 smithi055 bash[23198]: cephadm 2024-04-18T22:55:27.679747+0000 mgr.a (mgr.14152) 89 : cephadm 1 Reconfiguring mon.c (monmap changed)... 2024-04-18T22:55:28.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:28 smithi055 bash[23198]: audit 2024-04-18T22:55:27.680457+0000 mon.a (mon.0) 266 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-18T22:55:28.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:28 smithi055 bash[23198]: audit 2024-04-18T22:55:27.682350+0000 mon.a (mon.0) 267 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-18T22:55:28.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:28 smithi055 bash[23198]: audit 2024-04-18T22:55:27.684224+0000 mon.a (mon.0) 268 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:28.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:28 smithi055 bash[23198]: cephadm 2024-04-18T22:55:27.686360+0000 mgr.a (mgr.14152) 90 : cephadm 1 Reconfiguring daemon mon.c on smithi069 2024-04-18T22:55:28.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:28 smithi055 bash[23198]: cluster 2024-04-18T22:55:27.833042+0000 mgr.a (mgr.14152) 91 : cluster 0 pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:30.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:30 smithi016 bash[21452]: audit 2024-04-18T22:55:29.594616+0000 mon.a (mon.0) 269 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:30.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:30 smithi016 bash[21452]: audit 2024-04-18T22:55:29.602504+0000 mon.a (mon.0) 270 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:30.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:30 smithi016 bash[21452]: audit 2024-04-18T22:55:29.606493+0000 mon.a (mon.0) 271 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:55:30.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:30 smithi016 bash[21452]: cluster 2024-04-18T22:55:29.833478+0000 mgr.a (mgr.14152) 92 : cluster 0 pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:30.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:30 smithi016 bash[21452]: audit 2024-04-18T22:55:30.339450+0000 mon.a (mon.0) 272 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:30.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:30 smithi016 bash[21452]: audit 2024-04-18T22:55:30.341405+0000 mon.a (mon.0) 273 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:55:30.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:30 smithi016 bash[21452]: audit 2024-04-18T22:55:30.351192+0000 mon.a (mon.0) 274 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:30.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:30 smithi055 bash[23198]: audit 2024-04-18T22:55:29.594616+0000 mon.a (mon.0) 269 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:30.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:30 smithi055 bash[23198]: audit 2024-04-18T22:55:29.602504+0000 mon.a (mon.0) 270 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:30.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:30 smithi055 bash[23198]: audit 2024-04-18T22:55:29.606493+0000 mon.a (mon.0) 271 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:55:30.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:30 smithi055 bash[23198]: cluster 2024-04-18T22:55:29.833478+0000 mgr.a (mgr.14152) 92 : cluster 0 pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:30.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:30 smithi055 bash[23198]: audit 2024-04-18T22:55:30.339450+0000 mon.a (mon.0) 272 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:30.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:30 smithi055 bash[23198]: audit 2024-04-18T22:55:30.341405+0000 mon.a (mon.0) 273 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:55:30.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:30 smithi055 bash[23198]: audit 2024-04-18T22:55:30.351192+0000 mon.a (mon.0) 274 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:31.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:30 smithi069 bash[23476]: audit 2024-04-18T22:55:29.594616+0000 mon.a (mon.0) 269 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:31.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:30 smithi069 bash[23476]: audit 2024-04-18T22:55:29.602504+0000 mon.a (mon.0) 270 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:31.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:30 smithi069 bash[23476]: audit 2024-04-18T22:55:29.606493+0000 mon.a (mon.0) 271 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:55:31.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:30 smithi069 bash[23476]: cluster 2024-04-18T22:55:29.833478+0000 mgr.a (mgr.14152) 92 : cluster 0 pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:31.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:30 smithi069 bash[23476]: audit 2024-04-18T22:55:30.339450+0000 mon.a (mon.0) 272 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:31.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:30 smithi069 bash[23476]: audit 2024-04-18T22:55:30.341405+0000 mon.a (mon.0) 273 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:55:31.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:30 smithi069 bash[23476]: audit 2024-04-18T22:55:30.351192+0000 mon.a (mon.0) 274 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:31.108 INFO:teuthology.orchestra.run.smithi016.stdout:# minimal ceph.conf for 1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T22:55:31.109 INFO:teuthology.orchestra.run.smithi016.stdout:[global] 2024-04-18T22:55:31.109 INFO:teuthology.orchestra.run.smithi016.stdout: fsid = 1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T22:55:31.109 INFO:teuthology.orchestra.run.smithi016.stdout: mon_host = [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] [v2:172.21.15.55:3300/0,v1:172.21.15.55:6789/0] [v2:172.21.15.69:3300/0,v1:172.21.15.69:6789/0] 2024-04-18T22:55:31.776 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-04-18T22:55:31.776 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-18T22:55:31.776 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd of=/etc/ceph/ceph.conf 2024-04-18T22:55:31.790 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-18T22:55:31.790 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-18T22:55:31.846 DEBUG:teuthology.orchestra.run.smithi055:> set -ex 2024-04-18T22:55:31.846 DEBUG:teuthology.orchestra.run.smithi055:> sudo dd of=/etc/ceph/ceph.conf 2024-04-18T22:55:31.857 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:31 smithi055 bash[23198]: audit 2024-04-18T22:55:31.109721+0000 mon.a (mon.0) 275 : audit 0 from='client.? 172.21.15.16:0/3281507711' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:31.861 DEBUG:teuthology.orchestra.run.smithi055:> set -ex 2024-04-18T22:55:31.861 DEBUG:teuthology.orchestra.run.smithi055:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-18T22:55:31.918 DEBUG:teuthology.orchestra.run.smithi069:> set -ex 2024-04-18T22:55:31.918 DEBUG:teuthology.orchestra.run.smithi069:> sudo dd of=/etc/ceph/ceph.conf 2024-04-18T22:55:31.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:31 smithi016 bash[21452]: audit 2024-04-18T22:55:31.109721+0000 mon.a (mon.0) 275 : audit 0 from='client.? 172.21.15.16:0/3281507711' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:31.929 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:31 smithi069 bash[23476]: audit 2024-04-18T22:55:31.109721+0000 mon.a (mon.0) 275 : audit 0 from='client.? 172.21.15.16:0/3281507711' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:31.932 DEBUG:teuthology.orchestra.run.smithi069:> set -ex 2024-04-18T22:55:31.933 DEBUG:teuthology.orchestra.run.smithi069:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-18T22:55:31.988 INFO:tasks.cephadm:Adding mgr.a on smithi016 2024-04-18T22:55:31.988 INFO:tasks.cephadm:Adding mgr.b on smithi055 2024-04-18T22:55:31.988 DEBUG:teuthology.orchestra.run.smithi069:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph orch apply mgr '2;smithi016=a;smithi055=b' 2024-04-18T22:55:32.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:32 smithi016 bash[21452]: cluster 2024-04-18T22:55:31.833853+0000 mgr.a (mgr.14152) 93 : cluster 0 pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:32.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:32 smithi055 bash[23198]: cluster 2024-04-18T22:55:31.833853+0000 mgr.a (mgr.14152) 93 : cluster 0 pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:33.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:32 smithi069 bash[23476]: cluster 2024-04-18T22:55:31.833853+0000 mgr.a (mgr.14152) 93 : cluster 0 pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:35.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:34 smithi016 bash[21452]: cluster 2024-04-18T22:55:33.834299+0000 mgr.a (mgr.14152) 94 : cluster 0 pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:35.204 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:34 smithi055 bash[23198]: cluster 2024-04-18T22:55:33.834299+0000 mgr.a (mgr.14152) 94 : cluster 0 pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:35.252 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:34 smithi069 bash[23476]: cluster 2024-04-18T22:55:33.834299+0000 mgr.a (mgr.14152) 94 : cluster 0 pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:35.731 INFO:teuthology.orchestra.run.smithi069.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.c/config 2024-04-18T22:55:37.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:36 smithi016 bash[21452]: cluster 2024-04-18T22:55:35.834797+0000 mgr.a (mgr.14152) 95 : cluster 0 pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:37.204 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:36 smithi055 bash[23198]: cluster 2024-04-18T22:55:35.834797+0000 mgr.a (mgr.14152) 95 : cluster 0 pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:37.252 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:36 smithi069 bash[23476]: cluster 2024-04-18T22:55:35.834797+0000 mgr.a (mgr.14152) 95 : cluster 0 pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:38.344 INFO:teuthology.orchestra.run.smithi069.stdout:Scheduled mgr update... 2024-04-18T22:55:38.965 DEBUG:teuthology.orchestra.run.smithi055:mgr.b> sudo journalctl -f -n 0 -u ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@mgr.b.service 2024-04-18T22:55:38.967 INFO:tasks.cephadm:Deploying OSDs... 2024-04-18T22:55:38.968 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-18T22:55:38.968 DEBUG:teuthology.orchestra.run.smithi016:> dd if=/scratch_devs of=/dev/stdout 2024-04-18T22:55:38.974 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-04-18T22:55:38.974 DEBUG:teuthology.orchestra.run.smithi016:> stat /dev/vg_nvme/lv_1 2024-04-18T22:55:39.022 INFO:teuthology.orchestra.run.smithi016.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-18T22:55:39.023 INFO:teuthology.orchestra.run.smithi016.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-18T22:55:39.023 INFO:teuthology.orchestra.run.smithi016.stdout:Device: 5h/5d Inode: 874 Links: 1 2024-04-18T22:55:39.023 INFO:teuthology.orchestra.run.smithi016.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-18T22:55:39.023 INFO:teuthology.orchestra.run.smithi016.stdout:Access: 2024-04-18 22:45:09.773836453 +0000 2024-04-18T22:55:39.023 INFO:teuthology.orchestra.run.smithi016.stdout:Modify: 2024-04-18 22:45:09.501838883 +0000 2024-04-18T22:55:39.023 INFO:teuthology.orchestra.run.smithi016.stdout:Change: 2024-04-18 22:45:09.501838883 +0000 2024-04-18T22:55:39.023 INFO:teuthology.orchestra.run.smithi016.stdout: Birth: - 2024-04-18T22:55:39.023 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-18T22:55:39.076 INFO:teuthology.orchestra.run.smithi016.stderr:1+0 records in 2024-04-18T22:55:39.077 INFO:teuthology.orchestra.run.smithi016.stderr:1+0 records out 2024-04-18T22:55:39.077 INFO:teuthology.orchestra.run.smithi016.stderr:512 bytes copied, 0.000209762 s, 2.4 MB/s 2024-04-18T22:55:39.078 DEBUG:teuthology.orchestra.run.smithi016:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-18T22:55:39.128 DEBUG:teuthology.orchestra.run.smithi016:> stat /dev/vg_nvme/lv_2 2024-04-18T22:55:39.174 INFO:teuthology.orchestra.run.smithi016.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-18T22:55:39.174 INFO:teuthology.orchestra.run.smithi016.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-18T22:55:39.174 INFO:teuthology.orchestra.run.smithi016.stdout:Device: 5h/5d Inode: 897 Links: 1 2024-04-18T22:55:39.174 INFO:teuthology.orchestra.run.smithi016.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-18T22:55:39.175 INFO:teuthology.orchestra.run.smithi016.stdout:Access: 2024-04-18 22:45:10.001834417 +0000 2024-04-18T22:55:39.175 INFO:teuthology.orchestra.run.smithi016.stdout:Modify: 2024-04-18 22:45:09.997834453 +0000 2024-04-18T22:55:39.175 INFO:teuthology.orchestra.run.smithi016.stdout:Change: 2024-04-18 22:45:09.997834453 +0000 2024-04-18T22:55:39.175 INFO:teuthology.orchestra.run.smithi016.stdout: Birth: - 2024-04-18T22:55:39.175 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-18T22:55:39.228 INFO:teuthology.orchestra.run.smithi016.stderr:1+0 records in 2024-04-18T22:55:39.229 INFO:teuthology.orchestra.run.smithi016.stderr:1+0 records out 2024-04-18T22:55:39.229 INFO:teuthology.orchestra.run.smithi016.stderr:512 bytes copied, 0.00030989 s, 1.7 MB/s 2024-04-18T22:55:39.230 DEBUG:teuthology.orchestra.run.smithi016:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-18T22:55:39.279 DEBUG:teuthology.orchestra.run.smithi016:> stat /dev/vg_nvme/lv_3 2024-04-18T22:55:39.326 INFO:teuthology.orchestra.run.smithi016.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-18T22:55:39.326 INFO:teuthology.orchestra.run.smithi016.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-18T22:55:39.326 INFO:teuthology.orchestra.run.smithi016.stdout:Device: 5h/5d Inode: 915 Links: 1 2024-04-18T22:55:39.326 INFO:teuthology.orchestra.run.smithi016.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-18T22:55:39.326 INFO:teuthology.orchestra.run.smithi016.stdout:Access: 2024-04-18 22:45:10.777827485 +0000 2024-04-18T22:55:39.327 INFO:teuthology.orchestra.run.smithi016.stdout:Modify: 2024-04-18 22:45:10.477830164 +0000 2024-04-18T22:55:39.327 INFO:teuthology.orchestra.run.smithi016.stdout:Change: 2024-04-18 22:45:10.477830164 +0000 2024-04-18T22:55:39.327 INFO:teuthology.orchestra.run.smithi016.stdout: Birth: - 2024-04-18T22:55:39.327 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-18T22:55:39.381 INFO:teuthology.orchestra.run.smithi016.stderr:1+0 records in 2024-04-18T22:55:39.381 INFO:teuthology.orchestra.run.smithi016.stderr:1+0 records out 2024-04-18T22:55:39.381 INFO:teuthology.orchestra.run.smithi016.stderr:512 bytes copied, 0.000340513 s, 1.5 MB/s 2024-04-18T22:55:39.382 DEBUG:teuthology.orchestra.run.smithi016:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-18T22:55:39.431 DEBUG:teuthology.orchestra.run.smithi016:> stat /dev/vg_nvme/lv_4 2024-04-18T22:55:39.482 INFO:teuthology.orchestra.run.smithi016.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-18T22:55:39.482 INFO:teuthology.orchestra.run.smithi016.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-18T22:55:39.482 INFO:teuthology.orchestra.run.smithi016.stdout:Device: 5h/5d Inode: 924 Links: 1 2024-04-18T22:55:39.482 INFO:teuthology.orchestra.run.smithi016.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-18T22:55:39.483 INFO:teuthology.orchestra.run.smithi016.stdout:Access: 2024-04-18 22:45:11.289822912 +0000 2024-04-18T22:55:39.483 INFO:teuthology.orchestra.run.smithi016.stdout:Modify: 2024-04-18 22:45:11.017825341 +0000 2024-04-18T22:55:39.483 INFO:teuthology.orchestra.run.smithi016.stdout:Change: 2024-04-18 22:45:11.017825341 +0000 2024-04-18T22:55:39.483 INFO:teuthology.orchestra.run.smithi016.stdout: Birth: - 2024-04-18T22:55:39.483 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-18T22:55:39.537 INFO:teuthology.orchestra.run.smithi016.stderr:1+0 records in 2024-04-18T22:55:39.537 INFO:teuthology.orchestra.run.smithi016.stderr:1+0 records out 2024-04-18T22:55:39.537 INFO:teuthology.orchestra.run.smithi016.stderr:512 bytes copied, 0.000305134 s, 1.7 MB/s 2024-04-18T22:55:39.538 DEBUG:teuthology.orchestra.run.smithi016:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-18T22:55:39.587 DEBUG:teuthology.orchestra.run.smithi055:> set -ex 2024-04-18T22:55:39.587 DEBUG:teuthology.orchestra.run.smithi055:> dd if=/scratch_devs of=/dev/stdout 2024-04-18T22:55:39.593 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-04-18T22:55:39.593 DEBUG:teuthology.orchestra.run.smithi055:> stat /dev/vg_nvme/lv_1 2024-04-18T22:55:39.642 INFO:teuthology.orchestra.run.smithi055.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-18T22:55:39.642 INFO:teuthology.orchestra.run.smithi055.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-18T22:55:39.642 INFO:teuthology.orchestra.run.smithi055.stdout:Device: 5h/5d Inode: 845 Links: 1 2024-04-18T22:55:39.642 INFO:teuthology.orchestra.run.smithi055.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-18T22:55:39.642 INFO:teuthology.orchestra.run.smithi055.stdout:Access: 2024-04-18 22:45:10.255300445 +0000 2024-04-18T22:55:39.642 INFO:teuthology.orchestra.run.smithi055.stdout:Modify: 2024-04-18 22:45:09.947303196 +0000 2024-04-18T22:55:39.642 INFO:teuthology.orchestra.run.smithi055.stdout:Change: 2024-04-18 22:45:09.947303196 +0000 2024-04-18T22:55:39.643 INFO:teuthology.orchestra.run.smithi055.stdout: Birth: - 2024-04-18T22:55:39.643 DEBUG:teuthology.orchestra.run.smithi055:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-18T22:55:39.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:39 smithi016 bash[21452]: cluster 2024-04-18T22:55:37.835241+0000 mgr.a (mgr.14152) 96 : cluster 0 pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:39.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:39 smithi016 bash[21452]: audit 2024-04-18T22:55:38.334411+0000 mgr.a (mgr.14152) 97 : audit 0 from='client.24103 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi016=a;smithi055=b", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T22:55:39.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:39 smithi016 bash[21452]: cephadm 2024-04-18T22:55:38.337988+0000 mgr.a (mgr.14152) 98 : cephadm 1 Saving service mgr spec with placement smithi016=a;smithi055=b;count:2 2024-04-18T22:55:39.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:39 smithi016 bash[21452]: audit 2024-04-18T22:55:38.344788+0000 mon.a (mon.0) 276 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:39.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:39 smithi016 bash[21452]: audit 2024-04-18T22:55:38.389230+0000 mon.a (mon.0) 277 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:55:39.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:39 smithi016 bash[21452]: audit 2024-04-18T22:55:38.393002+0000 mon.a (mon.0) 278 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:39.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:39 smithi016 bash[21452]: audit 2024-04-18T22:55:38.394767+0000 mon.a (mon.0) 279 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:55:39.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:39 smithi016 bash[21452]: audit 2024-04-18T22:55:38.404477+0000 mon.a (mon.0) 280 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:39.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:39 smithi016 bash[21452]: audit 2024-04-18T22:55:38.407733+0000 mon.a (mon.0) 281 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-18T22:55:39.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:39 smithi016 bash[21452]: audit 2024-04-18T22:55:38.410734+0000 mon.a (mon.0) 282 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-04-18T22:55:39.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:39 smithi016 bash[21452]: audit 2024-04-18T22:55:38.415562+0000 mon.a (mon.0) 283 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-18T22:55:39.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:39 smithi016 bash[21452]: audit 2024-04-18T22:55:38.417650+0000 mon.a (mon.0) 284 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:39.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:39 smithi016 bash[21452]: cephadm 2024-04-18T22:55:38.419940+0000 mgr.a (mgr.14152) 99 : cephadm 1 Deploying daemon mgr.b on smithi055 2024-04-18T22:55:39.694 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:39 smithi055 bash[23198]: cluster 2024-04-18T22:55:37.835241+0000 mgr.a (mgr.14152) 96 : cluster 0 pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:39.694 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:39 smithi055 bash[23198]: audit 2024-04-18T22:55:38.334411+0000 mgr.a (mgr.14152) 97 : audit 0 from='client.24103 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi016=a;smithi055=b", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T22:55:39.694 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:39 smithi055 bash[23198]: cephadm 2024-04-18T22:55:38.337988+0000 mgr.a (mgr.14152) 98 : cephadm 1 Saving service mgr spec with placement smithi016=a;smithi055=b;count:2 2024-04-18T22:55:39.695 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:39 smithi055 bash[23198]: audit 2024-04-18T22:55:38.344788+0000 mon.a (mon.0) 276 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:39.695 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:39 smithi055 bash[23198]: audit 2024-04-18T22:55:38.389230+0000 mon.a (mon.0) 277 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:55:39.695 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:39 smithi055 bash[23198]: audit 2024-04-18T22:55:38.393002+0000 mon.a (mon.0) 278 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:39.695 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:39 smithi055 bash[23198]: audit 2024-04-18T22:55:38.394767+0000 mon.a (mon.0) 279 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:55:39.695 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:39 smithi055 bash[23198]: audit 2024-04-18T22:55:38.404477+0000 mon.a (mon.0) 280 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:39.695 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:39 smithi055 bash[23198]: audit 2024-04-18T22:55:38.407733+0000 mon.a (mon.0) 281 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-18T22:55:39.695 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:39 smithi055 bash[23198]: audit 2024-04-18T22:55:38.410734+0000 mon.a (mon.0) 282 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-04-18T22:55:39.695 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:39 smithi055 bash[23198]: audit 2024-04-18T22:55:38.415562+0000 mon.a (mon.0) 283 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-18T22:55:39.695 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:39 smithi055 bash[23198]: audit 2024-04-18T22:55:38.417650+0000 mon.a (mon.0) 284 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:39.695 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:39 smithi055 bash[23198]: cephadm 2024-04-18T22:55:38.419940+0000 mgr.a (mgr.14152) 99 : cephadm 1 Deploying daemon mgr.b on smithi055 2024-04-18T22:55:39.696 INFO:teuthology.orchestra.run.smithi055.stderr:1+0 records in 2024-04-18T22:55:39.696 INFO:teuthology.orchestra.run.smithi055.stderr:1+0 records out 2024-04-18T22:55:39.696 INFO:teuthology.orchestra.run.smithi055.stderr:512 bytes copied, 0.000510562 s, 1.0 MB/s 2024-04-18T22:55:39.698 DEBUG:teuthology.orchestra.run.smithi055:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-18T22:55:39.748 DEBUG:teuthology.orchestra.run.smithi055:> stat /dev/vg_nvme/lv_2 2024-04-18T22:55:39.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:39 smithi069 bash[23476]: cluster 2024-04-18T22:55:37.835241+0000 mgr.a (mgr.14152) 96 : cluster 0 pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:39.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:39 smithi069 bash[23476]: audit 2024-04-18T22:55:38.334411+0000 mgr.a (mgr.14152) 97 : audit 0 from='client.24103 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi016=a;smithi055=b", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T22:55:39.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:39 smithi069 bash[23476]: cephadm 2024-04-18T22:55:38.337988+0000 mgr.a (mgr.14152) 98 : cephadm 1 Saving service mgr spec with placement smithi016=a;smithi055=b;count:2 2024-04-18T22:55:39.753 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:39 smithi069 bash[23476]: audit 2024-04-18T22:55:38.344788+0000 mon.a (mon.0) 276 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:39.753 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:39 smithi069 bash[23476]: audit 2024-04-18T22:55:38.389230+0000 mon.a (mon.0) 277 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:55:39.753 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:39 smithi069 bash[23476]: audit 2024-04-18T22:55:38.393002+0000 mon.a (mon.0) 278 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:39.753 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:39 smithi069 bash[23476]: audit 2024-04-18T22:55:38.394767+0000 mon.a (mon.0) 279 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:55:39.753 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:39 smithi069 bash[23476]: audit 2024-04-18T22:55:38.404477+0000 mon.a (mon.0) 280 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:39.753 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:39 smithi069 bash[23476]: audit 2024-04-18T22:55:38.407733+0000 mon.a (mon.0) 281 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-18T22:55:39.753 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:39 smithi069 bash[23476]: audit 2024-04-18T22:55:38.410734+0000 mon.a (mon.0) 282 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-04-18T22:55:39.753 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:39 smithi069 bash[23476]: audit 2024-04-18T22:55:38.415562+0000 mon.a (mon.0) 283 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-18T22:55:39.753 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:39 smithi069 bash[23476]: audit 2024-04-18T22:55:38.417650+0000 mon.a (mon.0) 284 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:39.753 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:39 smithi069 bash[23476]: cephadm 2024-04-18T22:55:38.419940+0000 mgr.a (mgr.14152) 99 : cephadm 1 Deploying daemon mgr.b on smithi055 2024-04-18T22:55:39.793 INFO:teuthology.orchestra.run.smithi055.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-18T22:55:39.793 INFO:teuthology.orchestra.run.smithi055.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-18T22:55:39.793 INFO:teuthology.orchestra.run.smithi055.stdout:Device: 5h/5d Inode: 869 Links: 1 2024-04-18T22:55:39.793 INFO:teuthology.orchestra.run.smithi055.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-18T22:55:39.793 INFO:teuthology.orchestra.run.smithi055.stdout:Access: 2024-04-18 22:45:10.771295835 +0000 2024-04-18T22:55:39.793 INFO:teuthology.orchestra.run.smithi055.stdout:Modify: 2024-04-18 22:45:10.491298337 +0000 2024-04-18T22:55:39.793 INFO:teuthology.orchestra.run.smithi055.stdout:Change: 2024-04-18 22:45:10.491298337 +0000 2024-04-18T22:55:39.794 INFO:teuthology.orchestra.run.smithi055.stdout: Birth: - 2024-04-18T22:55:39.794 DEBUG:teuthology.orchestra.run.smithi055:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-18T22:55:39.845 INFO:teuthology.orchestra.run.smithi055.stderr:1+0 records in 2024-04-18T22:55:39.845 INFO:teuthology.orchestra.run.smithi055.stderr:1+0 records out 2024-04-18T22:55:39.845 INFO:teuthology.orchestra.run.smithi055.stderr:512 bytes copied, 0.000335909 s, 1.5 MB/s 2024-04-18T22:55:39.846 DEBUG:teuthology.orchestra.run.smithi055:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-18T22:55:39.894 DEBUG:teuthology.orchestra.run.smithi055:> stat /dev/vg_nvme/lv_3 2024-04-18T22:55:39.940 INFO:teuthology.orchestra.run.smithi055.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-18T22:55:39.941 INFO:teuthology.orchestra.run.smithi055.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-18T22:55:39.941 INFO:teuthology.orchestra.run.smithi055.stdout:Device: 5h/5d Inode: 879 Links: 1 2024-04-18T22:55:39.941 INFO:teuthology.orchestra.run.smithi055.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-18T22:55:39.941 INFO:teuthology.orchestra.run.smithi055.stdout:Access: 2024-04-18 22:45:11.299291120 +0000 2024-04-18T22:55:39.941 INFO:teuthology.orchestra.run.smithi055.stdout:Modify: 2024-04-18 22:45:11.007293727 +0000 2024-04-18T22:55:39.941 INFO:teuthology.orchestra.run.smithi055.stdout:Change: 2024-04-18 22:45:11.007293727 +0000 2024-04-18T22:55:39.941 INFO:teuthology.orchestra.run.smithi055.stdout: Birth: - 2024-04-18T22:55:39.941 DEBUG:teuthology.orchestra.run.smithi055:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-18T22:55:39.994 INFO:teuthology.orchestra.run.smithi055.stderr:1+0 records in 2024-04-18T22:55:39.994 INFO:teuthology.orchestra.run.smithi055.stderr:1+0 records out 2024-04-18T22:55:39.994 INFO:teuthology.orchestra.run.smithi055.stderr:512 bytes copied, 0.000386748 s, 1.3 MB/s 2024-04-18T22:55:39.995 DEBUG:teuthology.orchestra.run.smithi055:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-18T22:55:40.041 DEBUG:teuthology.orchestra.run.smithi055:> stat /dev/vg_nvme/lv_4 2024-04-18T22:55:40.088 INFO:teuthology.orchestra.run.smithi055.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-18T22:55:40.088 INFO:teuthology.orchestra.run.smithi055.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-18T22:55:40.089 INFO:teuthology.orchestra.run.smithi055.stdout:Device: 5h/5d Inode: 903 Links: 1 2024-04-18T22:55:40.089 INFO:teuthology.orchestra.run.smithi055.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-18T22:55:40.089 INFO:teuthology.orchestra.run.smithi055.stdout:Access: 2024-04-18 22:45:11.803286618 +0000 2024-04-18T22:55:40.089 INFO:teuthology.orchestra.run.smithi055.stdout:Modify: 2024-04-18 22:45:11.547288905 +0000 2024-04-18T22:55:40.089 INFO:teuthology.orchestra.run.smithi055.stdout:Change: 2024-04-18 22:45:11.547288905 +0000 2024-04-18T22:55:40.089 INFO:teuthology.orchestra.run.smithi055.stdout: Birth: - 2024-04-18T22:55:40.089 DEBUG:teuthology.orchestra.run.smithi055:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-18T22:55:40.141 INFO:teuthology.orchestra.run.smithi055.stderr:1+0 records in 2024-04-18T22:55:40.142 INFO:teuthology.orchestra.run.smithi055.stderr:1+0 records out 2024-04-18T22:55:40.142 INFO:teuthology.orchestra.run.smithi055.stderr:512 bytes copied, 0.000440264 s, 1.2 MB/s 2024-04-18T22:55:40.143 DEBUG:teuthology.orchestra.run.smithi055:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-18T22:55:40.190 DEBUG:teuthology.orchestra.run.smithi069:> set -ex 2024-04-18T22:55:40.190 DEBUG:teuthology.orchestra.run.smithi069:> dd if=/scratch_devs of=/dev/stdout 2024-04-18T22:55:40.196 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-04-18T22:55:40.196 DEBUG:teuthology.orchestra.run.smithi069:> stat /dev/vg_nvme/lv_1 2024-04-18T22:55:40.244 INFO:teuthology.orchestra.run.smithi069.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-18T22:55:40.244 INFO:teuthology.orchestra.run.smithi069.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-18T22:55:40.244 INFO:teuthology.orchestra.run.smithi069.stdout:Device: 5h/5d Inode: 881 Links: 1 2024-04-18T22:55:40.245 INFO:teuthology.orchestra.run.smithi069.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-18T22:55:40.245 INFO:teuthology.orchestra.run.smithi069.stdout:Access: 2024-04-18 22:45:04.364398876 +0000 2024-04-18T22:55:40.245 INFO:teuthology.orchestra.run.smithi069.stdout:Modify: 2024-04-18 22:45:04.084401377 +0000 2024-04-18T22:55:40.245 INFO:teuthology.orchestra.run.smithi069.stdout:Change: 2024-04-18 22:45:04.084401377 +0000 2024-04-18T22:55:40.245 INFO:teuthology.orchestra.run.smithi069.stdout: Birth: - 2024-04-18T22:55:40.245 DEBUG:teuthology.orchestra.run.smithi069:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-18T22:55:40.298 INFO:teuthology.orchestra.run.smithi069.stderr:1+0 records in 2024-04-18T22:55:40.299 INFO:teuthology.orchestra.run.smithi069.stderr:1+0 records out 2024-04-18T22:55:40.299 INFO:teuthology.orchestra.run.smithi069.stderr:512 bytes copied, 0.000434322 s, 1.2 MB/s 2024-04-18T22:55:40.300 DEBUG:teuthology.orchestra.run.smithi069:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-18T22:55:40.349 DEBUG:teuthology.orchestra.run.smithi069:> stat /dev/vg_nvme/lv_2 2024-04-18T22:55:40.396 INFO:teuthology.orchestra.run.smithi069.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-18T22:55:40.397 INFO:teuthology.orchestra.run.smithi069.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-18T22:55:40.397 INFO:teuthology.orchestra.run.smithi069.stdout:Device: 5h/5d Inode: 890 Links: 1 2024-04-18T22:55:40.397 INFO:teuthology.orchestra.run.smithi069.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-18T22:55:40.397 INFO:teuthology.orchestra.run.smithi069.stdout:Access: 2024-04-18 22:45:04.836394660 +0000 2024-04-18T22:55:40.397 INFO:teuthology.orchestra.run.smithi069.stdout:Modify: 2024-04-18 22:45:04.592396840 +0000 2024-04-18T22:55:40.397 INFO:teuthology.orchestra.run.smithi069.stdout:Change: 2024-04-18 22:45:04.592396840 +0000 2024-04-18T22:55:40.397 INFO:teuthology.orchestra.run.smithi069.stdout: Birth: - 2024-04-18T22:55:40.397 DEBUG:teuthology.orchestra.run.smithi069:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-18T22:55:40.451 INFO:teuthology.orchestra.run.smithi069.stderr:1+0 records in 2024-04-18T22:55:40.451 INFO:teuthology.orchestra.run.smithi069.stderr:1+0 records out 2024-04-18T22:55:40.451 INFO:teuthology.orchestra.run.smithi069.stderr:512 bytes copied, 0.000411496 s, 1.2 MB/s 2024-04-18T22:55:40.452 DEBUG:teuthology.orchestra.run.smithi069:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-18T22:55:40.501 DEBUG:teuthology.orchestra.run.smithi069:> stat /dev/vg_nvme/lv_3 2024-04-18T22:55:40.547 INFO:teuthology.orchestra.run.smithi069.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-18T22:55:40.547 INFO:teuthology.orchestra.run.smithi069.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-18T22:55:40.548 INFO:teuthology.orchestra.run.smithi069.stdout:Device: 5h/5d Inode: 915 Links: 1 2024-04-18T22:55:40.548 INFO:teuthology.orchestra.run.smithi069.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-18T22:55:40.548 INFO:teuthology.orchestra.run.smithi069.stdout:Access: 2024-04-18 22:45:05.340390158 +0000 2024-04-18T22:55:40.548 INFO:teuthology.orchestra.run.smithi069.stdout:Modify: 2024-04-18 22:45:05.076392517 +0000 2024-04-18T22:55:40.548 INFO:teuthology.orchestra.run.smithi069.stdout:Change: 2024-04-18 22:45:05.076392517 +0000 2024-04-18T22:55:40.548 INFO:teuthology.orchestra.run.smithi069.stdout: Birth: - 2024-04-18T22:55:40.548 DEBUG:teuthology.orchestra.run.smithi069:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-18T22:55:40.602 INFO:teuthology.orchestra.run.smithi069.stderr:1+0 records in 2024-04-18T22:55:40.603 INFO:teuthology.orchestra.run.smithi069.stderr:1+0 records out 2024-04-18T22:55:40.603 INFO:teuthology.orchestra.run.smithi069.stderr:512 bytes copied, 0.000432806 s, 1.2 MB/s 2024-04-18T22:55:40.604 DEBUG:teuthology.orchestra.run.smithi069:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-18T22:55:40.653 DEBUG:teuthology.orchestra.run.smithi069:> stat /dev/vg_nvme/lv_4 2024-04-18T22:55:40.699 INFO:teuthology.orchestra.run.smithi069.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-18T22:55:40.699 INFO:teuthology.orchestra.run.smithi069.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-18T22:55:40.699 INFO:teuthology.orchestra.run.smithi069.stdout:Device: 5h/5d Inode: 932 Links: 1 2024-04-18T22:55:40.700 INFO:teuthology.orchestra.run.smithi069.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-18T22:55:40.700 INFO:teuthology.orchestra.run.smithi069.stdout:Access: 2024-04-18 22:45:05.840385692 +0000 2024-04-18T22:55:40.700 INFO:teuthology.orchestra.run.smithi069.stdout:Modify: 2024-04-18 22:45:05.572388086 +0000 2024-04-18T22:55:40.700 INFO:teuthology.orchestra.run.smithi069.stdout:Change: 2024-04-18 22:45:05.572388086 +0000 2024-04-18T22:55:40.700 INFO:teuthology.orchestra.run.smithi069.stdout: Birth: - 2024-04-18T22:55:40.700 DEBUG:teuthology.orchestra.run.smithi069:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-18T22:55:40.754 INFO:teuthology.orchestra.run.smithi069.stderr:1+0 records in 2024-04-18T22:55:40.754 INFO:teuthology.orchestra.run.smithi069.stderr:1+0 records out 2024-04-18T22:55:40.754 INFO:teuthology.orchestra.run.smithi069.stderr:512 bytes copied, 0.000383333 s, 1.3 MB/s 2024-04-18T22:55:40.755 DEBUG:teuthology.orchestra.run.smithi069:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-18T22:55:40.805 INFO:tasks.cephadm:Deploying osd.0 on smithi016 with /dev/vg_nvme/lv_4... 2024-04-18T22:55:40.805 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-04-18T22:55:40.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:40 smithi055 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:55:40.954 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:55:40 smithi055 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:55:40.954 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:55:40 smithi055 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:55:40.954 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:55:40 smithi055 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:55:41.348 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:40 smithi055 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:55:41.349 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:55:40 smithi055 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:55:41.349 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:55:41 smithi055 systemd[1]: Started Ceph mgr.b for 1266e2ee-fdd6-11ee-bc92-c7b262605968. 2024-04-18T22:55:41.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:41 smithi016 bash[21452]: cluster 2024-04-18T22:55:39.835657+0000 mgr.a (mgr.14152) 100 : cluster 0 pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:41.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:41 smithi016 bash[21452]: audit 2024-04-18T22:55:41.106324+0000 mon.a (mon.0) 285 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:41.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:41 smithi016 bash[21452]: audit 2024-04-18T22:55:41.113416+0000 mon.a (mon.0) 286 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:41.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:41 smithi016 bash[21452]: audit 2024-04-18T22:55:41.148804+0000 mon.a (mon.0) 287 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:41.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:41 smithi016 bash[21452]: audit 2024-04-18T22:55:41.155567+0000 mon.a (mon.0) 288 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:41.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:41 smithi016 bash[21452]: audit 2024-04-18T22:55:41.257559+0000 mon.a (mon.0) 289 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:55:41.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:41 smithi055 bash[23198]: cluster 2024-04-18T22:55:39.835657+0000 mgr.a (mgr.14152) 100 : cluster 0 pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:41.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:41 smithi055 bash[23198]: audit 2024-04-18T22:55:41.106324+0000 mon.a (mon.0) 285 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:41.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:41 smithi055 bash[23198]: audit 2024-04-18T22:55:41.113416+0000 mon.a (mon.0) 286 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:41.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:41 smithi055 bash[23198]: audit 2024-04-18T22:55:41.148804+0000 mon.a (mon.0) 287 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:41.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:41 smithi055 bash[23198]: audit 2024-04-18T22:55:41.155567+0000 mon.a (mon.0) 288 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:41.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:41 smithi055 bash[23198]: audit 2024-04-18T22:55:41.257559+0000 mon.a (mon.0) 289 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:55:41.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:41 smithi069 bash[23476]: cluster 2024-04-18T22:55:39.835657+0000 mgr.a (mgr.14152) 100 : cluster 0 pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:41.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:41 smithi069 bash[23476]: audit 2024-04-18T22:55:41.106324+0000 mon.a (mon.0) 285 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:41.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:41 smithi069 bash[23476]: audit 2024-04-18T22:55:41.113416+0000 mon.a (mon.0) 286 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:41.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:41 smithi069 bash[23476]: audit 2024-04-18T22:55:41.148804+0000 mon.a (mon.0) 287 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:41.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:41 smithi069 bash[23476]: audit 2024-04-18T22:55:41.155567+0000 mon.a (mon.0) 288 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:41.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:41 smithi069 bash[23476]: audit 2024-04-18T22:55:41.257559+0000 mon.a (mon.0) 289 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:55:42.204 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:55:41 smithi055 bash[23704]: debug 2024-04-18T22:55:41.894+0000 7f617ba2f700 1 -- 172.21.15.55:0/2023636401 <== mon.2 v2:172.21.15.55:3300/0 4 ==== auth_reply(proto 2 0 (0) Success) ==== 194+0+0 (secure 0 0 0) 0x5603920305a0 con 0x560392db0c00 2024-04-18T22:55:42.204 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:55:42 smithi055 bash[23704]: debug 2024-04-18T22:55:42.038+0000 7f6185c37200 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-04-18T22:55:43.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:43 smithi016 bash[21452]: cluster 2024-04-18T22:55:41.836084+0000 mgr.a (mgr.14152) 101 : cluster 0 pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:43.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:43 smithi016 bash[21452]: audit 2024-04-18T22:55:42.600272+0000 mon.a (mon.0) 290 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:43.674 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:43 smithi055 bash[23198]: cluster 2024-04-18T22:55:41.836084+0000 mgr.a (mgr.14152) 101 : cluster 0 pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:43.674 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:43 smithi055 bash[23198]: audit 2024-04-18T22:55:42.600272+0000 mon.a (mon.0) 290 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:43.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:43 smithi069 bash[23476]: cluster 2024-04-18T22:55:41.836084+0000 mgr.a (mgr.14152) 101 : cluster 0 pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:43.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:43 smithi069 bash[23476]: audit 2024-04-18T22:55:42.600272+0000 mon.a (mon.0) 290 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:43.954 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:55:43 smithi055 bash[23704]: debug 2024-04-18T22:55:43.674+0000 7f6185c37200 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-04-18T22:55:43.954 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:55:43 smithi055 bash[23704]: debug 2024-04-18T22:55:43.774+0000 7f6185c37200 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-04-18T22:55:44.454 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:55:44 smithi055 bash[23704]: debug 2024-04-18T22:55:44.030+0000 7f6185c37200 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-04-18T22:55:45.204 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:55:44 smithi055 bash[23704]: debug 2024-04-18T22:55:44.854+0000 7f6185c37200 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-04-18T22:55:45.204 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:55:44 smithi055 bash[23704]: debug 2024-04-18T22:55:44.970+0000 7f6185c37200 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-04-18T22:55:45.205 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:55:45 smithi055 bash[23704]: debug 2024-04-18T22:55:45.074+0000 7f6185c37200 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-04-18T22:55:45.521 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T22:55:45.663 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:45 smithi055 bash[23198]: cluster 2024-04-18T22:55:43.836571+0000 mgr.a (mgr.14152) 102 : cluster 0 pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:45.663 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:55:45 smithi055 bash[23704]: debug 2024-04-18T22:55:45.438+0000 7f6185c37200 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-04-18T22:55:45.663 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:55:45 smithi055 bash[23704]: debug 2024-04-18T22:55:45.554+0000 7f6185c37200 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-04-18T22:55:45.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:45 smithi016 bash[21452]: cluster 2024-04-18T22:55:43.836571+0000 mgr.a (mgr.14152) 102 : cluster 0 pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:45.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:45 smithi069 bash[23476]: cluster 2024-04-18T22:55:43.836571+0000 mgr.a (mgr.14152) 102 : cluster 0 pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:45.954 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:55:45 smithi055 bash[23704]: debug 2024-04-18T22:55:45.662+0000 7f6185c37200 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-04-18T22:55:46.454 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:55:46 smithi055 bash[23704]: debug 2024-04-18T22:55:46.030+0000 7f6185c37200 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-04-18T22:55:46.454 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:55:46 smithi055 bash[23704]: debug 2024-04-18T22:55:46.274+0000 7f6185c37200 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-04-18T22:55:46.950 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:55:46 smithi055 bash[23704]: debug 2024-04-18T22:55:46.550+0000 7f6185c37200 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-04-18T22:55:46.951 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:55:46 smithi055 bash[23704]: debug 2024-04-18T22:55:46.666+0000 7f6185c37200 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-04-18T22:55:46.951 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:55:46 smithi055 bash[23704]: debug 2024-04-18T22:55:46.950+0000 7f6185c37200 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-04-18T22:55:47.641 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:55:47 smithi055 bash[23704]: debug 2024-04-18T22:55:47.394+0000 7f6185c37200 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-04-18T22:55:47.641 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:55:47 smithi055 bash[23704]: debug 2024-04-18T22:55:47.642+0000 7f6185c37200 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-04-18T22:55:47.642 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:47 smithi055 bash[23198]: cluster 2024-04-18T22:55:45.837034+0000 mgr.a (mgr.14152) 103 : cluster 0 pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:47.642 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:47 smithi055 bash[23198]: audit 2024-04-18T22:55:46.497464+0000 mon.a (mon.0) 291 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:47.642 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:47 smithi055 bash[23198]: audit 2024-04-18T22:55:46.501265+0000 mon.a (mon.0) 292 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:47.642 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:47 smithi055 bash[23198]: audit 2024-04-18T22:55:46.502112+0000 mon.a (mon.0) 293 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:47.642 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:47 smithi055 bash[23198]: audit 2024-04-18T22:55:46.503067+0000 mon.a (mon.0) 294 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:55:47.642 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:47 smithi055 bash[23198]: audit 2024-04-18T22:55:46.508182+0000 mon.a (mon.0) 295 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:47.642 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:47 smithi055 bash[23198]: audit 2024-04-18T22:55:46.606636+0000 mon.a (mon.0) 296 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-18T22:55:47.642 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:47 smithi055 bash[23198]: audit 2024-04-18T22:55:46.608021+0000 mon.a (mon.0) 297 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-18T22:55:47.642 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:47 smithi055 bash[23198]: audit 2024-04-18T22:55:46.609165+0000 mon.a (mon.0) 298 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:47.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:47 smithi016 bash[21452]: cluster 2024-04-18T22:55:45.837034+0000 mgr.a (mgr.14152) 103 : cluster 0 pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:47.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:47 smithi016 bash[21452]: audit 2024-04-18T22:55:46.497464+0000 mon.a (mon.0) 291 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:47.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:47 smithi016 bash[21452]: audit 2024-04-18T22:55:46.501265+0000 mon.a (mon.0) 292 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:47.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:47 smithi016 bash[21452]: audit 2024-04-18T22:55:46.502112+0000 mon.a (mon.0) 293 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:47.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:47 smithi016 bash[21452]: audit 2024-04-18T22:55:46.503067+0000 mon.a (mon.0) 294 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:55:47.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:47 smithi016 bash[21452]: audit 2024-04-18T22:55:46.508182+0000 mon.a (mon.0) 295 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:47.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:47 smithi016 bash[21452]: audit 2024-04-18T22:55:46.606636+0000 mon.a (mon.0) 296 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-18T22:55:47.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:47 smithi016 bash[21452]: audit 2024-04-18T22:55:46.608021+0000 mon.a (mon.0) 297 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-18T22:55:47.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:47 smithi016 bash[21452]: audit 2024-04-18T22:55:46.609165+0000 mon.a (mon.0) 298 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:47.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:47 smithi069 bash[23476]: cluster 2024-04-18T22:55:45.837034+0000 mgr.a (mgr.14152) 103 : cluster 0 pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:47.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:47 smithi069 bash[23476]: audit 2024-04-18T22:55:46.497464+0000 mon.a (mon.0) 291 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:47.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:47 smithi069 bash[23476]: audit 2024-04-18T22:55:46.501265+0000 mon.a (mon.0) 292 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:47.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:47 smithi069 bash[23476]: audit 2024-04-18T22:55:46.502112+0000 mon.a (mon.0) 293 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:47.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:47 smithi069 bash[23476]: audit 2024-04-18T22:55:46.503067+0000 mon.a (mon.0) 294 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:55:47.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:47 smithi069 bash[23476]: audit 2024-04-18T22:55:46.508182+0000 mon.a (mon.0) 295 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:47.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:47 smithi069 bash[23476]: audit 2024-04-18T22:55:46.606636+0000 mon.a (mon.0) 296 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-18T22:55:47.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:47 smithi069 bash[23476]: audit 2024-04-18T22:55:46.608021+0000 mon.a (mon.0) 297 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-18T22:55:47.753 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:47 smithi069 bash[23476]: audit 2024-04-18T22:55:46.609165+0000 mon.a (mon.0) 298 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:47.954 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:55:47 smithi055 bash[23704]: debug 2024-04-18T22:55:47.762+0000 7f6185c37200 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-04-18T22:55:48.367 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:55:48 smithi055 bash[23704]: debug 2024-04-18T22:55:48.018+0000 7f6185c37200 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-04-18T22:55:48.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:48 smithi016 bash[21452]: cephadm 2024-04-18T22:55:46.606103+0000 mgr.a (mgr.14152) 104 : cephadm 1 Reconfiguring mgr.a (unknown last config time)... 2024-04-18T22:55:48.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:48 smithi016 bash[21452]: cephadm 2024-04-18T22:55:46.610834+0000 mgr.a (mgr.14152) 105 : cephadm 1 Reconfiguring daemon mgr.a on smithi016 2024-04-18T22:55:48.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:48 smithi055 bash[23198]: cephadm 2024-04-18T22:55:46.606103+0000 mgr.a (mgr.14152) 104 : cephadm 1 Reconfiguring mgr.a (unknown last config time)... 2024-04-18T22:55:48.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:48 smithi055 bash[23198]: cephadm 2024-04-18T22:55:46.610834+0000 mgr.a (mgr.14152) 105 : cephadm 1 Reconfiguring daemon mgr.a on smithi016 2024-04-18T22:55:48.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:48 smithi069 bash[23476]: cephadm 2024-04-18T22:55:46.606103+0000 mgr.a (mgr.14152) 104 : cephadm 1 Reconfiguring mgr.a (unknown last config time)... 2024-04-18T22:55:48.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:48 smithi069 bash[23476]: cephadm 2024-04-18T22:55:46.610834+0000 mgr.a (mgr.14152) 105 : cephadm 1 Reconfiguring daemon mgr.a on smithi016 2024-04-18T22:55:48.812 INFO:teuthology.orchestra.run.smithi016.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-04-18T22:55:48.812 INFO:teuthology.orchestra.run.smithi016.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-04-18T22:55:48.812 INFO:teuthology.orchestra.run.smithi016.stderr: stderr: 10+0 records in 2024-04-18T22:55:48.812 INFO:teuthology.orchestra.run.smithi016.stderr:10+0 records out 2024-04-18T22:55:48.812 INFO:teuthology.orchestra.run.smithi016.stderr:10485760 bytes (10 MB, 10 MiB) copied, 0.0114207 s, 918 MB/s 2024-04-18T22:55:48.812 INFO:teuthology.orchestra.run.smithi016.stderr:--> Zapping successful for: 2024-04-18T22:55:49.370 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:55:49 smithi055 bash[23704]: debug 2024-04-18T22:55:49.058+0000 7f6185c37200 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-04-18T22:55:49.370 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:55:49 smithi055 bash[23704]: debug 2024-04-18T22:55:49.178+0000 7f6185c37200 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-04-18T22:55:49.493 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph orch daemon add osd smithi016:vg_nvme/lv_4 2024-04-18T22:55:49.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:49 smithi016 bash[21452]: cluster 2024-04-18T22:55:47.837475+0000 mgr.a (mgr.14152) 106 : cluster 0 pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:49.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:49 smithi016 bash[21452]: audit 2024-04-18T22:55:48.880908+0000 mon.a (mon.0) 299 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:49.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:49 smithi016 bash[21452]: audit 2024-04-18T22:55:48.886224+0000 mon.a (mon.0) 300 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:49.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:49 smithi016 bash[21452]: audit 2024-04-18T22:55:48.930647+0000 mon.a (mon.0) 301 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:55:49.704 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:55:49 smithi055 bash[23704]: debug 2024-04-18T22:55:49.482+0000 7f6185c37200 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-04-18T22:55:49.704 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:55:49 smithi055 bash[23704]: debug 2024-04-18T22:55:49.598+0000 7f6185c37200 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-04-18T22:55:49.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:49 smithi055 bash[23198]: cluster 2024-04-18T22:55:47.837475+0000 mgr.a (mgr.14152) 106 : cluster 0 pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:49.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:49 smithi055 bash[23198]: audit 2024-04-18T22:55:48.880908+0000 mon.a (mon.0) 299 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:49.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:49 smithi055 bash[23198]: audit 2024-04-18T22:55:48.886224+0000 mon.a (mon.0) 300 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:49.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:49 smithi055 bash[23198]: audit 2024-04-18T22:55:48.930647+0000 mon.a (mon.0) 301 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:55:49.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:49 smithi069 bash[23476]: cluster 2024-04-18T22:55:47.837475+0000 mgr.a (mgr.14152) 106 : cluster 0 pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:49.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:49 smithi069 bash[23476]: audit 2024-04-18T22:55:48.880908+0000 mon.a (mon.0) 299 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:49.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:49 smithi069 bash[23476]: audit 2024-04-18T22:55:48.886224+0000 mon.a (mon.0) 300 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:49.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:49 smithi069 bash[23476]: audit 2024-04-18T22:55:48.930647+0000 mon.a (mon.0) 301 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:55:50.375 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:55:50 smithi055 bash[23704]: debug 2024-04-18T22:55:50.066+0000 7f6185c37200 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-04-18T22:55:50.375 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:55:50 smithi055 bash[23704]: debug 2024-04-18T22:55:50.190+0000 7f6185c37200 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-04-18T22:55:50.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:50 smithi016 bash[21452]: audit 2024-04-18T22:55:49.558777+0000 mon.a (mon.0) 302 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:50.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:50 smithi016 bash[21452]: audit 2024-04-18T22:55:49.560108+0000 mon.a (mon.0) 303 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:55:50.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:50 smithi016 bash[21452]: audit 2024-04-18T22:55:49.567116+0000 mon.a (mon.0) 304 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:50.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:50 smithi016 bash[21452]: cluster 2024-04-18T22:55:50.214220+0000 mon.a (mon.0) 305 : cluster 0 Standby manager daemon b started 2024-04-18T22:55:50.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:50 smithi016 bash[21452]: audit 2024-04-18T22:55:50.215129+0000 mon.b (mon.2) 3 : audit 0 from='mgr.? 172.21.15.55:0/3208265856' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-04-18T22:55:50.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:50 smithi016 bash[21452]: audit 2024-04-18T22:55:50.215613+0000 mon.b (mon.2) 4 : audit 0 from='mgr.? 172.21.15.55:0/3208265856' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-04-18T22:55:50.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:50 smithi016 bash[21452]: audit 2024-04-18T22:55:50.216792+0000 mon.b (mon.2) 5 : audit 0 from='mgr.? 172.21.15.55:0/3208265856' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-04-18T22:55:50.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:50 smithi016 bash[21452]: audit 2024-04-18T22:55:50.217160+0000 mon.b (mon.2) 6 : audit 0 from='mgr.? 172.21.15.55:0/3208265856' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-04-18T22:55:50.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:50 smithi055 bash[23198]: audit 2024-04-18T22:55:49.558777+0000 mon.a (mon.0) 302 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:50.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:50 smithi055 bash[23198]: audit 2024-04-18T22:55:49.560108+0000 mon.a (mon.0) 303 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:55:50.705 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:50 smithi055 bash[23198]: audit 2024-04-18T22:55:49.567116+0000 mon.a (mon.0) 304 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:50.705 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:50 smithi055 bash[23198]: cluster 2024-04-18T22:55:50.214220+0000 mon.a (mon.0) 305 : cluster 0 Standby manager daemon b started 2024-04-18T22:55:50.705 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:50 smithi055 bash[23198]: audit 2024-04-18T22:55:50.215129+0000 mon.b (mon.2) 3 : audit 0 from='mgr.? 172.21.15.55:0/3208265856' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-04-18T22:55:50.705 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:50 smithi055 bash[23198]: audit 2024-04-18T22:55:50.215613+0000 mon.b (mon.2) 4 : audit 0 from='mgr.? 172.21.15.55:0/3208265856' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-04-18T22:55:50.705 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:50 smithi055 bash[23198]: audit 2024-04-18T22:55:50.216792+0000 mon.b (mon.2) 5 : audit 0 from='mgr.? 172.21.15.55:0/3208265856' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-04-18T22:55:50.705 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:50 smithi055 bash[23198]: audit 2024-04-18T22:55:50.217160+0000 mon.b (mon.2) 6 : audit 0 from='mgr.? 172.21.15.55:0/3208265856' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-04-18T22:55:50.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:50 smithi069 bash[23476]: audit 2024-04-18T22:55:49.558777+0000 mon.a (mon.0) 302 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:50.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:50 smithi069 bash[23476]: audit 2024-04-18T22:55:49.560108+0000 mon.a (mon.0) 303 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:55:50.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:50 smithi069 bash[23476]: audit 2024-04-18T22:55:49.567116+0000 mon.a (mon.0) 304 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:55:50.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:50 smithi069 bash[23476]: cluster 2024-04-18T22:55:50.214220+0000 mon.a (mon.0) 305 : cluster 0 Standby manager daemon b started 2024-04-18T22:55:50.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:50 smithi069 bash[23476]: audit 2024-04-18T22:55:50.215129+0000 mon.b (mon.2) 3 : audit 0 from='mgr.? 172.21.15.55:0/3208265856' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-04-18T22:55:50.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:50 smithi069 bash[23476]: audit 2024-04-18T22:55:50.215613+0000 mon.b (mon.2) 4 : audit 0 from='mgr.? 172.21.15.55:0/3208265856' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-04-18T22:55:50.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:50 smithi069 bash[23476]: audit 2024-04-18T22:55:50.216792+0000 mon.b (mon.2) 5 : audit 0 from='mgr.? 172.21.15.55:0/3208265856' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-04-18T22:55:50.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:50 smithi069 bash[23476]: audit 2024-04-18T22:55:50.217160+0000 mon.b (mon.2) 6 : audit 0 from='mgr.? 172.21.15.55:0/3208265856' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-04-18T22:55:51.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:51 smithi016 bash[21452]: cluster 2024-04-18T22:55:49.837888+0000 mgr.a (mgr.14152) 107 : cluster 0 pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:51.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:51 smithi016 bash[21452]: cluster 2024-04-18T22:55:50.585522+0000 mon.a (mon.0) 306 : cluster 0 mgrmap e14: a(active, since 2m), standbys: b 2024-04-18T22:55:51.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:51 smithi016 bash[21452]: audit 2024-04-18T22:55:50.585812+0000 mon.a (mon.0) 307 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-04-18T22:55:51.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:51 smithi055 bash[23198]: cluster 2024-04-18T22:55:49.837888+0000 mgr.a (mgr.14152) 107 : cluster 0 pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:51.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:51 smithi055 bash[23198]: cluster 2024-04-18T22:55:50.585522+0000 mon.a (mon.0) 306 : cluster 0 mgrmap e14: a(active, since 2m), standbys: b 2024-04-18T22:55:51.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:51 smithi055 bash[23198]: audit 2024-04-18T22:55:50.585812+0000 mon.a (mon.0) 307 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-04-18T22:55:51.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:51 smithi069 bash[23476]: cluster 2024-04-18T22:55:49.837888+0000 mgr.a (mgr.14152) 107 : cluster 0 pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:51.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:51 smithi069 bash[23476]: cluster 2024-04-18T22:55:50.585522+0000 mon.a (mon.0) 306 : cluster 0 mgrmap e14: a(active, since 2m), standbys: b 2024-04-18T22:55:51.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:51 smithi069 bash[23476]: audit 2024-04-18T22:55:50.585812+0000 mon.a (mon.0) 307 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-04-18T22:55:53.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:53 smithi016 bash[21452]: cluster 2024-04-18T22:55:51.838312+0000 mgr.a (mgr.14152) 108 : cluster 0 pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:53.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:53 smithi055 bash[23198]: cluster 2024-04-18T22:55:51.838312+0000 mgr.a (mgr.14152) 108 : cluster 0 pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:53.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:53 smithi069 bash[23476]: cluster 2024-04-18T22:55:51.838312+0000 mgr.a (mgr.14152) 108 : cluster 0 pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:54.215 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T22:55:55.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:55 smithi016 bash[21452]: cluster 2024-04-18T22:55:53.838741+0000 mgr.a (mgr.14152) 109 : cluster 0 pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:55.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:55 smithi055 bash[23198]: cluster 2024-04-18T22:55:53.838741+0000 mgr.a (mgr.14152) 109 : cluster 0 pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:55.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:55 smithi069 bash[23476]: cluster 2024-04-18T22:55:53.838741+0000 mgr.a (mgr.14152) 109 : cluster 0 pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:57.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:57 smithi016 bash[21452]: cluster 2024-04-18T22:55:55.839246+0000 mgr.a (mgr.14152) 110 : cluster 0 pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:57.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:57 smithi016 bash[21452]: audit 2024-04-18T22:55:56.959831+0000 mon.a (mon.0) 308 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-18T22:55:57.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:57 smithi016 bash[21452]: audit 2024-04-18T22:55:56.965510+0000 mon.a (mon.0) 309 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-18T22:55:57.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:57 smithi016 bash[21452]: audit 2024-04-18T22:55:56.966785+0000 mon.a (mon.0) 310 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:57.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:57 smithi055 bash[23198]: cluster 2024-04-18T22:55:55.839246+0000 mgr.a (mgr.14152) 110 : cluster 0 pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:57.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:57 smithi055 bash[23198]: audit 2024-04-18T22:55:56.959831+0000 mon.a (mon.0) 308 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-18T22:55:57.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:57 smithi055 bash[23198]: audit 2024-04-18T22:55:56.965510+0000 mon.a (mon.0) 309 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-18T22:55:57.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:57 smithi055 bash[23198]: audit 2024-04-18T22:55:56.966785+0000 mon.a (mon.0) 310 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:57.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:57 smithi069 bash[23476]: cluster 2024-04-18T22:55:55.839246+0000 mgr.a (mgr.14152) 110 : cluster 0 pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:57.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:57 smithi069 bash[23476]: audit 2024-04-18T22:55:56.959831+0000 mon.a (mon.0) 308 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-18T22:55:57.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:57 smithi069 bash[23476]: audit 2024-04-18T22:55:56.965510+0000 mon.a (mon.0) 309 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-18T22:55:57.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:57 smithi069 bash[23476]: audit 2024-04-18T22:55:56.966785+0000 mon.a (mon.0) 310 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:55:58.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:58 smithi016 bash[21452]: audit 2024-04-18T22:55:56.952700+0000 mgr.a (mgr.14152) 111 : audit 0 from='client.14211 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi016:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T22:55:58.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:58 smithi055 bash[23198]: audit 2024-04-18T22:55:56.952700+0000 mgr.a (mgr.14152) 111 : audit 0 from='client.14211 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi016:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T22:55:58.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:58 smithi069 bash[23476]: audit 2024-04-18T22:55:56.952700+0000 mgr.a (mgr.14152) 111 : audit 0 from='client.14211 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi016:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T22:55:59.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:55:59 smithi016 bash[21452]: cluster 2024-04-18T22:55:57.839737+0000 mgr.a (mgr.14152) 112 : cluster 0 pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:59.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:55:59 smithi055 bash[23198]: cluster 2024-04-18T22:55:57.839737+0000 mgr.a (mgr.14152) 112 : cluster 0 pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:55:59.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:55:59 smithi069 bash[23476]: cluster 2024-04-18T22:55:57.839737+0000 mgr.a (mgr.14152) 112 : cluster 0 pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:01.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:01 smithi016 bash[21452]: cluster 2024-04-18T22:55:59.840173+0000 mgr.a (mgr.14152) 113 : cluster 0 pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:01.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:01 smithi055 bash[23198]: cluster 2024-04-18T22:55:59.840173+0000 mgr.a (mgr.14152) 113 : cluster 0 pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:01.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:01 smithi069 bash[23476]: cluster 2024-04-18T22:55:59.840173+0000 mgr.a (mgr.14152) 113 : cluster 0 pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:03.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:03 smithi016 bash[21452]: cluster 2024-04-18T22:56:01.840600+0000 mgr.a (mgr.14152) 114 : cluster 0 pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:03.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:03 smithi055 bash[23198]: cluster 2024-04-18T22:56:01.840600+0000 mgr.a (mgr.14152) 114 : cluster 0 pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:03.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:03 smithi069 bash[23476]: cluster 2024-04-18T22:56:01.840600+0000 mgr.a (mgr.14152) 114 : cluster 0 pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:05.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:05 smithi016 bash[21452]: cluster 2024-04-18T22:56:03.841048+0000 mgr.a (mgr.14152) 115 : cluster 0 pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:05.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:05 smithi016 bash[21452]: audit 2024-04-18T22:56:05.246017+0000 mon.a (mon.0) 311 : audit 1 from='client.? 172.21.15.16:0/2791665677' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "aabdaa1d-3022-42ed-9cb6-a2ff6201b5c7"}]: dispatch 2024-04-18T22:56:05.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:05 smithi016 bash[21452]: audit 2024-04-18T22:56:05.248694+0000 mon.a (mon.0) 312 : audit 1 from='client.? 172.21.15.16:0/2791665677' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "aabdaa1d-3022-42ed-9cb6-a2ff6201b5c7"}]': finished 2024-04-18T22:56:05.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:05 smithi016 bash[21452]: cluster 2024-04-18T22:56:05.251029+0000 mon.a (mon.0) 313 : cluster 0 osdmap e5: 1 total, 0 up, 1 in 2024-04-18T22:56:05.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:05 smithi016 bash[21452]: audit 2024-04-18T22:56:05.251196+0000 mon.a (mon.0) 314 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-18T22:56:05.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:05 smithi055 bash[23198]: cluster 2024-04-18T22:56:03.841048+0000 mgr.a (mgr.14152) 115 : cluster 0 pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:05.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:05 smithi055 bash[23198]: audit 2024-04-18T22:56:05.246017+0000 mon.a (mon.0) 311 : audit 1 from='client.? 172.21.15.16:0/2791665677' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "aabdaa1d-3022-42ed-9cb6-a2ff6201b5c7"}]: dispatch 2024-04-18T22:56:05.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:05 smithi055 bash[23198]: audit 2024-04-18T22:56:05.248694+0000 mon.a (mon.0) 312 : audit 1 from='client.? 172.21.15.16:0/2791665677' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "aabdaa1d-3022-42ed-9cb6-a2ff6201b5c7"}]': finished 2024-04-18T22:56:05.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:05 smithi055 bash[23198]: cluster 2024-04-18T22:56:05.251029+0000 mon.a (mon.0) 313 : cluster 0 osdmap e5: 1 total, 0 up, 1 in 2024-04-18T22:56:05.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:05 smithi055 bash[23198]: audit 2024-04-18T22:56:05.251196+0000 mon.a (mon.0) 314 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-18T22:56:05.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:05 smithi069 bash[23476]: cluster 2024-04-18T22:56:03.841048+0000 mgr.a (mgr.14152) 115 : cluster 0 pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:05.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:05 smithi069 bash[23476]: audit 2024-04-18T22:56:05.246017+0000 mon.a (mon.0) 311 : audit 1 from='client.? 172.21.15.16:0/2791665677' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "aabdaa1d-3022-42ed-9cb6-a2ff6201b5c7"}]: dispatch 2024-04-18T22:56:05.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:05 smithi069 bash[23476]: audit 2024-04-18T22:56:05.248694+0000 mon.a (mon.0) 312 : audit 1 from='client.? 172.21.15.16:0/2791665677' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "aabdaa1d-3022-42ed-9cb6-a2ff6201b5c7"}]': finished 2024-04-18T22:56:05.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:05 smithi069 bash[23476]: cluster 2024-04-18T22:56:05.251029+0000 mon.a (mon.0) 313 : cluster 0 osdmap e5: 1 total, 0 up, 1 in 2024-04-18T22:56:05.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:05 smithi069 bash[23476]: audit 2024-04-18T22:56:05.251196+0000 mon.a (mon.0) 314 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-18T22:56:06.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:06 smithi016 bash[21452]: audit 2024-04-18T22:56:05.992137+0000 mon.a (mon.0) 315 : audit 0 from='client.? 172.21.15.16:0/2413778368' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-18T22:56:06.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:06 smithi055 bash[23198]: audit 2024-04-18T22:56:05.992137+0000 mon.a (mon.0) 315 : audit 0 from='client.? 172.21.15.16:0/2413778368' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-18T22:56:06.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:06 smithi069 bash[23476]: audit 2024-04-18T22:56:05.992137+0000 mon.a (mon.0) 315 : audit 0 from='client.? 172.21.15.16:0/2413778368' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-18T22:56:07.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:07 smithi016 bash[21452]: cluster 2024-04-18T22:56:05.841432+0000 mgr.a (mgr.14152) 116 : cluster 0 pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:07.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:07 smithi055 bash[23198]: cluster 2024-04-18T22:56:05.841432+0000 mgr.a (mgr.14152) 116 : cluster 0 pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:07.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:07 smithi069 bash[23476]: cluster 2024-04-18T22:56:05.841432+0000 mgr.a (mgr.14152) 116 : cluster 0 pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:09.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:09 smithi055 bash[23198]: cluster 2024-04-18T22:56:07.841872+0000 mgr.a (mgr.14152) 117 : cluster 0 pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:09.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:09 smithi069 bash[23476]: cluster 2024-04-18T22:56:07.841872+0000 mgr.a (mgr.14152) 117 : cluster 0 pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:09.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:09 smithi016 bash[21452]: cluster 2024-04-18T22:56:07.841872+0000 mgr.a (mgr.14152) 117 : cluster 0 pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:11.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:11 smithi055 bash[23198]: cluster 2024-04-18T22:56:09.842320+0000 mgr.a (mgr.14152) 118 : cluster 0 pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:11.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:11 smithi069 bash[23476]: cluster 2024-04-18T22:56:09.842320+0000 mgr.a (mgr.14152) 118 : cluster 0 pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:11.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:11 smithi016 bash[21452]: cluster 2024-04-18T22:56:09.842320+0000 mgr.a (mgr.14152) 118 : cluster 0 pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:13.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:13 smithi055 bash[23198]: cluster 2024-04-18T22:56:11.842747+0000 mgr.a (mgr.14152) 119 : cluster 0 pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:13.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:13 smithi069 bash[23476]: cluster 2024-04-18T22:56:11.842747+0000 mgr.a (mgr.14152) 119 : cluster 0 pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:13.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:13 smithi016 bash[21452]: cluster 2024-04-18T22:56:11.842747+0000 mgr.a (mgr.14152) 119 : cluster 0 pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:15.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:15 smithi016 bash[21452]: cluster 2024-04-18T22:56:13.843262+0000 mgr.a (mgr.14152) 120 : cluster 0 pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:15.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:15 smithi055 bash[23198]: cluster 2024-04-18T22:56:13.843262+0000 mgr.a (mgr.14152) 120 : cluster 0 pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:15.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:15 smithi069 bash[23476]: cluster 2024-04-18T22:56:13.843262+0000 mgr.a (mgr.14152) 120 : cluster 0 pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:17.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:17 smithi055 bash[23198]: cluster 2024-04-18T22:56:15.843774+0000 mgr.a (mgr.14152) 121 : cluster 0 pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:17.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:17 smithi069 bash[23476]: cluster 2024-04-18T22:56:15.843774+0000 mgr.a (mgr.14152) 121 : cluster 0 pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:17.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:17 smithi016 bash[21452]: cluster 2024-04-18T22:56:15.843774+0000 mgr.a (mgr.14152) 121 : cluster 0 pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:18.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:18 smithi016 bash[21452]: audit 2024-04-18T22:56:17.786291+0000 mon.a (mon.0) 316 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-18T22:56:18.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:18 smithi016 bash[21452]: audit 2024-04-18T22:56:17.787682+0000 mon.a (mon.0) 317 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:56:18.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:18 smithi055 bash[23198]: audit 2024-04-18T22:56:17.786291+0000 mon.a (mon.0) 316 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-18T22:56:18.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:18 smithi055 bash[23198]: audit 2024-04-18T22:56:17.787682+0000 mon.a (mon.0) 317 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:56:18.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:18 smithi069 bash[23476]: audit 2024-04-18T22:56:17.786291+0000 mon.a (mon.0) 316 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-18T22:56:18.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:18 smithi069 bash[23476]: audit 2024-04-18T22:56:17.787682+0000 mon.a (mon.0) 317 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:56:19.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:19 smithi055 bash[23198]: cephadm 2024-04-18T22:56:17.788835+0000 mgr.a (mgr.14152) 122 : cephadm 1 Deploying daemon osd.0 on smithi016 2024-04-18T22:56:19.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:19 smithi055 bash[23198]: cluster 2024-04-18T22:56:17.844166+0000 mgr.a (mgr.14152) 123 : cluster 0 pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:19.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:19 smithi069 bash[23476]: cephadm 2024-04-18T22:56:17.788835+0000 mgr.a (mgr.14152) 122 : cephadm 1 Deploying daemon osd.0 on smithi016 2024-04-18T22:56:19.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:19 smithi069 bash[23476]: cluster 2024-04-18T22:56:17.844166+0000 mgr.a (mgr.14152) 123 : cluster 0 pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:19.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:19 smithi016 bash[21452]: cephadm 2024-04-18T22:56:17.788835+0000 mgr.a (mgr.14152) 122 : cephadm 1 Deploying daemon osd.0 on smithi016 2024-04-18T22:56:19.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:19 smithi016 bash[21452]: cluster 2024-04-18T22:56:17.844166+0000 mgr.a (mgr.14152) 123 : cluster 0 pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:21.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:21 smithi069 bash[23476]: cluster 2024-04-18T22:56:19.844533+0000 mgr.a (mgr.14152) 124 : cluster 0 pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:21.753 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:21 smithi016 bash[21452]: cluster 2024-04-18T22:56:19.844533+0000 mgr.a (mgr.14152) 124 : cluster 0 pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:21.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:21 smithi055 bash[23198]: cluster 2024-04-18T22:56:19.844533+0000 mgr.a (mgr.14152) 124 : cluster 0 pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:22.023 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:21 smithi016 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:56:22.023 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:56:21 smithi016 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:56:22.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:22 smithi016 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:56:22.421 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:56:22 smithi016 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:56:23.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:23 smithi016 bash[21452]: cluster 2024-04-18T22:56:21.844997+0000 mgr.a (mgr.14152) 125 : cluster 0 pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:23.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:23 smithi016 bash[21452]: audit 2024-04-18T22:56:22.278009+0000 mon.a (mon.0) 318 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:23.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:23 smithi016 bash[21452]: audit 2024-04-18T22:56:22.283394+0000 mon.a (mon.0) 319 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:23.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:23 smithi016 bash[21452]: audit 2024-04-18T22:56:22.314708+0000 mon.a (mon.0) 320 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:56:23.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:23 smithi055 bash[23198]: cluster 2024-04-18T22:56:21.844997+0000 mgr.a (mgr.14152) 125 : cluster 0 pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:23.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:23 smithi055 bash[23198]: audit 2024-04-18T22:56:22.278009+0000 mon.a (mon.0) 318 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:23.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:23 smithi055 bash[23198]: audit 2024-04-18T22:56:22.283394+0000 mon.a (mon.0) 319 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:23.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:23 smithi055 bash[23198]: audit 2024-04-18T22:56:22.314708+0000 mon.a (mon.0) 320 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:56:23.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:23 smithi069 bash[23476]: cluster 2024-04-18T22:56:21.844997+0000 mgr.a (mgr.14152) 125 : cluster 0 pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:23.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:23 smithi069 bash[23476]: audit 2024-04-18T22:56:22.278009+0000 mon.a (mon.0) 318 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:23.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:23 smithi069 bash[23476]: audit 2024-04-18T22:56:22.283394+0000 mon.a (mon.0) 319 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:23.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:23 smithi069 bash[23476]: audit 2024-04-18T22:56:22.314708+0000 mon.a (mon.0) 320 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:56:25.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:25 smithi016 bash[21452]: cluster 2024-04-18T22:56:23.845504+0000 mgr.a (mgr.14152) 126 : cluster 0 pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:25.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:25 smithi055 bash[23198]: cluster 2024-04-18T22:56:23.845504+0000 mgr.a (mgr.14152) 126 : cluster 0 pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:25.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:25 smithi069 bash[23476]: cluster 2024-04-18T22:56:23.845504+0000 mgr.a (mgr.14152) 126 : cluster 0 pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:27.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:27 smithi016 bash[21452]: cluster 2024-04-18T22:56:25.845817+0000 mgr.a (mgr.14152) 127 : cluster 0 pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:27.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:27 smithi055 bash[23198]: cluster 2024-04-18T22:56:25.845817+0000 mgr.a (mgr.14152) 127 : cluster 0 pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:27.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:27 smithi069 bash[23476]: cluster 2024-04-18T22:56:25.845817+0000 mgr.a (mgr.14152) 127 : cluster 0 pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:28.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:28 smithi069 bash[23476]: audit 2024-04-18T22:56:27.498523+0000 mon.a (mon.0) 321 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:28.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:28 smithi069 bash[23476]: audit 2024-04-18T22:56:27.504656+0000 mon.a (mon.0) 322 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:28.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:28 smithi069 bash[23476]: cluster 2024-04-18T22:56:27.846290+0000 mgr.a (mgr.14152) 128 : cluster 0 pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:28.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:28 smithi069 bash[23476]: audit 2024-04-18T22:56:28.182772+0000 mon.a (mon.0) 323 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:56:28.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:28 smithi069 bash[23476]: audit 2024-04-18T22:56:28.183822+0000 mon.a (mon.0) 324 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:56:28.753 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:28 smithi069 bash[23476]: audit 2024-04-18T22:56:28.190499+0000 mon.a (mon.0) 325 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:28.832 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:28 smithi016 bash[21452]: audit 2024-04-18T22:56:27.498523+0000 mon.a (mon.0) 321 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:28.832 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:28 smithi016 bash[21452]: audit 2024-04-18T22:56:27.504656+0000 mon.a (mon.0) 322 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:28.832 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:28 smithi016 bash[21452]: cluster 2024-04-18T22:56:27.846290+0000 mgr.a (mgr.14152) 128 : cluster 0 pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:28.832 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:28 smithi016 bash[21452]: audit 2024-04-18T22:56:28.182772+0000 mon.a (mon.0) 323 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:56:28.832 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:28 smithi016 bash[21452]: audit 2024-04-18T22:56:28.183822+0000 mon.a (mon.0) 324 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:56:28.832 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:28 smithi016 bash[21452]: audit 2024-04-18T22:56:28.190499+0000 mon.a (mon.0) 325 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:28.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:28 smithi055 bash[23198]: audit 2024-04-18T22:56:27.498523+0000 mon.a (mon.0) 321 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:28.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:28 smithi055 bash[23198]: audit 2024-04-18T22:56:27.504656+0000 mon.a (mon.0) 322 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:28.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:28 smithi055 bash[23198]: cluster 2024-04-18T22:56:27.846290+0000 mgr.a (mgr.14152) 128 : cluster 0 pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:28.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:28 smithi055 bash[23198]: audit 2024-04-18T22:56:28.182772+0000 mon.a (mon.0) 323 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:56:28.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:28 smithi055 bash[23198]: audit 2024-04-18T22:56:28.183822+0000 mon.a (mon.0) 324 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:56:28.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:28 smithi055 bash[23198]: audit 2024-04-18T22:56:28.190499+0000 mon.a (mon.0) 325 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:29.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:29 smithi016 bash[21452]: audit 2024-04-18T22:56:28.837785+0000 mon.a (mon.0) 326 : audit 1 from='osd.0 [v2:172.21.15.16:6802/3393846278,v1:172.21.15.16:6803/3393846278]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-04-18T22:56:29.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:29 smithi055 bash[23198]: audit 2024-04-18T22:56:28.837785+0000 mon.a (mon.0) 326 : audit 1 from='osd.0 [v2:172.21.15.16:6802/3393846278,v1:172.21.15.16:6803/3393846278]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-04-18T22:56:30.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:29 smithi069 bash[23476]: audit 2024-04-18T22:56:28.837785+0000 mon.a (mon.0) 326 : audit 1 from='osd.0 [v2:172.21.15.16:6802/3393846278,v1:172.21.15.16:6803/3393846278]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-04-18T22:56:30.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:30 smithi016 bash[21452]: audit 2024-04-18T22:56:29.519385+0000 mon.a (mon.0) 327 : audit 1 from='osd.0 [v2:172.21.15.16:6802/3393846278,v1:172.21.15.16:6803/3393846278]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-04-18T22:56:30.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:30 smithi016 bash[21452]: cluster 2024-04-18T22:56:29.523780+0000 mon.a (mon.0) 328 : cluster 0 osdmap e6: 1 total, 0 up, 1 in 2024-04-18T22:56:30.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:30 smithi016 bash[21452]: audit 2024-04-18T22:56:29.524323+0000 mon.a (mon.0) 329 : audit 1 from='osd.0 [v2:172.21.15.16:6802/3393846278,v1:172.21.15.16:6803/3393846278]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi016", "root=default"]}]: dispatch 2024-04-18T22:56:30.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:30 smithi016 bash[21452]: audit 2024-04-18T22:56:29.524948+0000 mon.a (mon.0) 330 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-18T22:56:30.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:30 smithi016 bash[21452]: cluster 2024-04-18T22:56:29.846641+0000 mgr.a (mgr.14152) 129 : cluster 0 pgmap v82: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:30.932 INFO:teuthology.orchestra.run.smithi016.stdout:Created osd(s) 0 on host 'smithi016' 2024-04-18T22:56:30.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:30 smithi055 bash[23198]: audit 2024-04-18T22:56:29.519385+0000 mon.a (mon.0) 327 : audit 1 from='osd.0 [v2:172.21.15.16:6802/3393846278,v1:172.21.15.16:6803/3393846278]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-04-18T22:56:30.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:30 smithi055 bash[23198]: cluster 2024-04-18T22:56:29.523780+0000 mon.a (mon.0) 328 : cluster 0 osdmap e6: 1 total, 0 up, 1 in 2024-04-18T22:56:30.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:30 smithi055 bash[23198]: audit 2024-04-18T22:56:29.524323+0000 mon.a (mon.0) 329 : audit 1 from='osd.0 [v2:172.21.15.16:6802/3393846278,v1:172.21.15.16:6803/3393846278]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi016", "root=default"]}]: dispatch 2024-04-18T22:56:30.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:30 smithi055 bash[23198]: audit 2024-04-18T22:56:29.524948+0000 mon.a (mon.0) 330 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-18T22:56:30.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:30 smithi055 bash[23198]: cluster 2024-04-18T22:56:29.846641+0000 mgr.a (mgr.14152) 129 : cluster 0 pgmap v82: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:31.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:30 smithi069 bash[23476]: audit 2024-04-18T22:56:29.519385+0000 mon.a (mon.0) 327 : audit 1 from='osd.0 [v2:172.21.15.16:6802/3393846278,v1:172.21.15.16:6803/3393846278]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-04-18T22:56:31.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:30 smithi069 bash[23476]: cluster 2024-04-18T22:56:29.523780+0000 mon.a (mon.0) 328 : cluster 0 osdmap e6: 1 total, 0 up, 1 in 2024-04-18T22:56:31.003 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:30 smithi069 bash[23476]: audit 2024-04-18T22:56:29.524323+0000 mon.a (mon.0) 329 : audit 1 from='osd.0 [v2:172.21.15.16:6802/3393846278,v1:172.21.15.16:6803/3393846278]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi016", "root=default"]}]: dispatch 2024-04-18T22:56:31.003 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:30 smithi069 bash[23476]: audit 2024-04-18T22:56:29.524948+0000 mon.a (mon.0) 330 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-18T22:56:31.003 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:30 smithi069 bash[23476]: cluster 2024-04-18T22:56:29.846641+0000 mgr.a (mgr.14152) 129 : cluster 0 pgmap v82: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-18T22:56:31.597 DEBUG:teuthology.orchestra.run.smithi016:osd.0> sudo journalctl -f -n 0 -u ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@osd.0.service 2024-04-18T22:56:31.600 INFO:tasks.cephadm:Deploying osd.1 on smithi016 with /dev/vg_nvme/lv_3... 2024-04-18T22:56:31.600 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-04-18T22:56:31.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:31 smithi016 bash[21452]: audit 2024-04-18T22:56:30.528421+0000 mon.a (mon.0) 331 : audit 1 from='osd.0 [v2:172.21.15.16:6802/3393846278,v1:172.21.15.16:6803/3393846278]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi016", "root=default"]}]': finished 2024-04-18T22:56:31.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:31 smithi016 bash[21452]: cluster 2024-04-18T22:56:30.534587+0000 mon.a (mon.0) 332 : cluster 0 osdmap e7: 1 total, 0 up, 1 in 2024-04-18T22:56:31.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:31 smithi016 bash[21452]: audit 2024-04-18T22:56:30.535811+0000 mon.a (mon.0) 333 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-18T22:56:31.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:31 smithi016 bash[21452]: audit 2024-04-18T22:56:30.543570+0000 mon.a (mon.0) 334 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-18T22:56:31.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:31 smithi016 bash[21452]: audit 2024-04-18T22:56:30.899287+0000 mon.a (mon.0) 335 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:31.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:31 smithi016 bash[21452]: audit 2024-04-18T22:56:30.909291+0000 mon.a (mon.0) 336 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:31.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:31 smithi016 bash[21452]: audit 2024-04-18T22:56:30.910548+0000 mon.a (mon.0) 337 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:56:31.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:31 smithi055 bash[23198]: audit 2024-04-18T22:56:30.528421+0000 mon.a (mon.0) 331 : audit 1 from='osd.0 [v2:172.21.15.16:6802/3393846278,v1:172.21.15.16:6803/3393846278]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi016", "root=default"]}]': finished 2024-04-18T22:56:31.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:31 smithi055 bash[23198]: cluster 2024-04-18T22:56:30.534587+0000 mon.a (mon.0) 332 : cluster 0 osdmap e7: 1 total, 0 up, 1 in 2024-04-18T22:56:31.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:31 smithi055 bash[23198]: audit 2024-04-18T22:56:30.535811+0000 mon.a (mon.0) 333 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-18T22:56:31.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:31 smithi055 bash[23198]: audit 2024-04-18T22:56:30.543570+0000 mon.a (mon.0) 334 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-18T22:56:31.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:31 smithi055 bash[23198]: audit 2024-04-18T22:56:30.899287+0000 mon.a (mon.0) 335 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:31.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:31 smithi055 bash[23198]: audit 2024-04-18T22:56:30.909291+0000 mon.a (mon.0) 336 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:31.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:31 smithi055 bash[23198]: audit 2024-04-18T22:56:30.910548+0000 mon.a (mon.0) 337 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:56:32.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:31 smithi069 bash[23476]: audit 2024-04-18T22:56:30.528421+0000 mon.a (mon.0) 331 : audit 1 from='osd.0 [v2:172.21.15.16:6802/3393846278,v1:172.21.15.16:6803/3393846278]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi016", "root=default"]}]': finished 2024-04-18T22:56:32.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:31 smithi069 bash[23476]: cluster 2024-04-18T22:56:30.534587+0000 mon.a (mon.0) 332 : cluster 0 osdmap e7: 1 total, 0 up, 1 in 2024-04-18T22:56:32.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:31 smithi069 bash[23476]: audit 2024-04-18T22:56:30.535811+0000 mon.a (mon.0) 333 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-18T22:56:32.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:31 smithi069 bash[23476]: audit 2024-04-18T22:56:30.543570+0000 mon.a (mon.0) 334 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-18T22:56:32.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:31 smithi069 bash[23476]: audit 2024-04-18T22:56:30.899287+0000 mon.a (mon.0) 335 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:32.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:31 smithi069 bash[23476]: audit 2024-04-18T22:56:30.909291+0000 mon.a (mon.0) 336 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:32.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:31 smithi069 bash[23476]: audit 2024-04-18T22:56:30.910548+0000 mon.a (mon.0) 337 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:56:32.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:32 smithi016 bash[21452]: cluster 2024-04-18T22:56:29.868087+0000 osd.0 (osd.0) 1 : cluster 0 purged_snaps scrub starts 2024-04-18T22:56:32.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:32 smithi016 bash[21452]: cluster 2024-04-18T22:56:29.868189+0000 osd.0 (osd.0) 2 : cluster 0 purged_snaps scrub ok 2024-04-18T22:56:32.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:32 smithi016 bash[21452]: cluster 2024-04-18T22:56:31.535978+0000 mon.a (mon.0) 338 : cluster 1 osd.0 [v2:172.21.15.16:6802/3393846278,v1:172.21.15.16:6803/3393846278] boot 2024-04-18T22:56:32.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:32 smithi016 bash[21452]: cluster 2024-04-18T22:56:31.536076+0000 mon.a (mon.0) 339 : cluster 0 osdmap e8: 1 total, 1 up, 1 in 2024-04-18T22:56:32.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:32 smithi016 bash[21452]: audit 2024-04-18T22:56:31.537014+0000 mon.a (mon.0) 340 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-18T22:56:32.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:32 smithi016 bash[21452]: cluster 2024-04-18T22:56:31.846950+0000 mgr.a (mgr.14152) 130 : cluster 0 pgmap v85: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:32.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:32 smithi055 bash[23198]: cluster 2024-04-18T22:56:29.868087+0000 osd.0 (osd.0) 1 : cluster 0 purged_snaps scrub starts 2024-04-18T22:56:32.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:32 smithi055 bash[23198]: cluster 2024-04-18T22:56:29.868189+0000 osd.0 (osd.0) 2 : cluster 0 purged_snaps scrub ok 2024-04-18T22:56:32.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:32 smithi055 bash[23198]: cluster 2024-04-18T22:56:31.535978+0000 mon.a (mon.0) 338 : cluster 1 osd.0 [v2:172.21.15.16:6802/3393846278,v1:172.21.15.16:6803/3393846278] boot 2024-04-18T22:56:32.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:32 smithi055 bash[23198]: cluster 2024-04-18T22:56:31.536076+0000 mon.a (mon.0) 339 : cluster 0 osdmap e8: 1 total, 1 up, 1 in 2024-04-18T22:56:32.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:32 smithi055 bash[23198]: audit 2024-04-18T22:56:31.537014+0000 mon.a (mon.0) 340 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-18T22:56:32.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:32 smithi055 bash[23198]: cluster 2024-04-18T22:56:31.846950+0000 mgr.a (mgr.14152) 130 : cluster 0 pgmap v85: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:33.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:32 smithi069 bash[23476]: cluster 2024-04-18T22:56:29.868087+0000 osd.0 (osd.0) 1 : cluster 0 purged_snaps scrub starts 2024-04-18T22:56:33.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:32 smithi069 bash[23476]: cluster 2024-04-18T22:56:29.868189+0000 osd.0 (osd.0) 2 : cluster 0 purged_snaps scrub ok 2024-04-18T22:56:33.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:32 smithi069 bash[23476]: cluster 2024-04-18T22:56:31.535978+0000 mon.a (mon.0) 338 : cluster 1 osd.0 [v2:172.21.15.16:6802/3393846278,v1:172.21.15.16:6803/3393846278] boot 2024-04-18T22:56:33.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:32 smithi069 bash[23476]: cluster 2024-04-18T22:56:31.536076+0000 mon.a (mon.0) 339 : cluster 0 osdmap e8: 1 total, 1 up, 1 in 2024-04-18T22:56:33.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:32 smithi069 bash[23476]: audit 2024-04-18T22:56:31.537014+0000 mon.a (mon.0) 340 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-18T22:56:33.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:32 smithi069 bash[23476]: cluster 2024-04-18T22:56:31.846950+0000 mgr.a (mgr.14152) 130 : cluster 0 pgmap v85: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:33.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:33 smithi016 bash[21452]: cluster 2024-04-18T22:56:32.560334+0000 mon.a (mon.0) 341 : cluster 0 osdmap e9: 1 total, 1 up, 1 in 2024-04-18T22:56:33.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:33 smithi055 bash[23198]: cluster 2024-04-18T22:56:32.560334+0000 mon.a (mon.0) 341 : cluster 0 osdmap e9: 1 total, 1 up, 1 in 2024-04-18T22:56:34.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:33 smithi069 bash[23476]: cluster 2024-04-18T22:56:32.560334+0000 mon.a (mon.0) 341 : cluster 0 osdmap e9: 1 total, 1 up, 1 in 2024-04-18T22:56:34.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:34 smithi016 bash[21452]: cluster 2024-04-18T22:56:33.847385+0000 mgr.a (mgr.14152) 131 : cluster 0 pgmap v87: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:34.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:34 smithi055 bash[23198]: cluster 2024-04-18T22:56:33.847385+0000 mgr.a (mgr.14152) 131 : cluster 0 pgmap v87: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:35.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:34 smithi069 bash[23476]: cluster 2024-04-18T22:56:33.847385+0000 mgr.a (mgr.14152) 131 : cluster 0 pgmap v87: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:35.908 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T22:56:37.165 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:36 smithi016 bash[21452]: cluster 2024-04-18T22:56:35.847829+0000 mgr.a (mgr.14152) 132 : cluster 0 pgmap v88: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:37.203 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:36 smithi055 bash[23198]: cluster 2024-04-18T22:56:35.847829+0000 mgr.a (mgr.14152) 132 : cluster 0 pgmap v88: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:37.252 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:36 smithi069 bash[23476]: cluster 2024-04-18T22:56:35.847829+0000 mgr.a (mgr.14152) 132 : cluster 0 pgmap v88: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:39.168 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:38 smithi016 bash[21452]: cluster 2024-04-18T22:56:37.848313+0000 mgr.a (mgr.14152) 133 : cluster 0 pgmap v89: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:39.203 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:38 smithi055 bash[23198]: cluster 2024-04-18T22:56:37.848313+0000 mgr.a (mgr.14152) 133 : cluster 0 pgmap v89: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:39.252 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:38 smithi069 bash[23476]: cluster 2024-04-18T22:56:37.848313+0000 mgr.a (mgr.14152) 133 : cluster 0 pgmap v89: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:39.895 INFO:teuthology.orchestra.run.smithi016.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-04-18T22:56:39.895 INFO:teuthology.orchestra.run.smithi016.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-04-18T22:56:39.895 INFO:teuthology.orchestra.run.smithi016.stderr: stderr: 10+0 records in 2024-04-18T22:56:39.895 INFO:teuthology.orchestra.run.smithi016.stderr:10+0 records out 2024-04-18T22:56:39.895 INFO:teuthology.orchestra.run.smithi016.stderr:10485760 bytes (10 MB, 10 MiB) copied, 0.0111951 s, 937 MB/s 2024-04-18T22:56:39.896 INFO:teuthology.orchestra.run.smithi016.stderr:--> Zapping successful for: 2024-04-18T22:56:40.667 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph orch daemon add osd smithi016:vg_nvme/lv_3 2024-04-18T22:56:40.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:40 smithi016 bash[21452]: cluster 2024-04-18T22:56:39.848864+0000 mgr.a (mgr.14152) 134 : cluster 0 pgmap v90: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:41.203 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:40 smithi055 bash[23198]: cluster 2024-04-18T22:56:39.848864+0000 mgr.a (mgr.14152) 134 : cluster 0 pgmap v90: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:41.252 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:40 smithi069 bash[23476]: cluster 2024-04-18T22:56:39.848864+0000 mgr.a (mgr.14152) 134 : cluster 0 pgmap v90: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:42.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:42 smithi016 bash[21452]: cephadm 2024-04-18T22:56:41.058958+0000 mgr.a (mgr.14152) 135 : cephadm 1 Detected new or changed devices on smithi016 2024-04-18T22:56:42.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:42 smithi016 bash[21452]: audit 2024-04-18T22:56:41.067890+0000 mon.a (mon.0) 342 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:42.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:42 smithi016 bash[21452]: audit 2024-04-18T22:56:41.076494+0000 mon.a (mon.0) 343 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:42.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:42 smithi016 bash[21452]: audit 2024-04-18T22:56:41.078550+0000 mon.a (mon.0) 344 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-04-18T22:56:42.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:42 smithi016 bash[21452]: cephadm 2024-04-18T22:56:41.079943+0000 mgr.a (mgr.14152) 136 : cephadm 1 Adjusting osd_memory_target on smithi016 to 17269M 2024-04-18T22:56:42.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:42 smithi016 bash[21452]: audit 2024-04-18T22:56:41.086120+0000 mon.a (mon.0) 345 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:42.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:42 smithi016 bash[21452]: audit 2024-04-18T22:56:41.090185+0000 mon.a (mon.0) 346 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:56:42.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:42 smithi016 bash[21452]: audit 2024-04-18T22:56:41.091894+0000 mon.a (mon.0) 347 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:56:42.422 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:42 smithi016 bash[21452]: audit 2024-04-18T22:56:41.101800+0000 mon.a (mon.0) 348 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:42.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:42 smithi055 bash[23198]: cephadm 2024-04-18T22:56:41.058958+0000 mgr.a (mgr.14152) 135 : cephadm 1 Detected new or changed devices on smithi016 2024-04-18T22:56:42.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:42 smithi055 bash[23198]: audit 2024-04-18T22:56:41.067890+0000 mon.a (mon.0) 342 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:42.454 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:42 smithi055 bash[23198]: audit 2024-04-18T22:56:41.076494+0000 mon.a (mon.0) 343 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:42.454 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:42 smithi055 bash[23198]: audit 2024-04-18T22:56:41.078550+0000 mon.a (mon.0) 344 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-04-18T22:56:42.454 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:42 smithi055 bash[23198]: cephadm 2024-04-18T22:56:41.079943+0000 mgr.a (mgr.14152) 136 : cephadm 1 Adjusting osd_memory_target on smithi016 to 17269M 2024-04-18T22:56:42.454 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:42 smithi055 bash[23198]: audit 2024-04-18T22:56:41.086120+0000 mon.a (mon.0) 345 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:42.454 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:42 smithi055 bash[23198]: audit 2024-04-18T22:56:41.090185+0000 mon.a (mon.0) 346 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:56:42.454 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:42 smithi055 bash[23198]: audit 2024-04-18T22:56:41.091894+0000 mon.a (mon.0) 347 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:56:42.454 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:42 smithi055 bash[23198]: audit 2024-04-18T22:56:41.101800+0000 mon.a (mon.0) 348 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:42.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:42 smithi069 bash[23476]: cephadm 2024-04-18T22:56:41.058958+0000 mgr.a (mgr.14152) 135 : cephadm 1 Detected new or changed devices on smithi016 2024-04-18T22:56:42.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:42 smithi069 bash[23476]: audit 2024-04-18T22:56:41.067890+0000 mon.a (mon.0) 342 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:42.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:42 smithi069 bash[23476]: audit 2024-04-18T22:56:41.076494+0000 mon.a (mon.0) 343 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:42.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:42 smithi069 bash[23476]: audit 2024-04-18T22:56:41.078550+0000 mon.a (mon.0) 344 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-04-18T22:56:42.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:42 smithi069 bash[23476]: cephadm 2024-04-18T22:56:41.079943+0000 mgr.a (mgr.14152) 136 : cephadm 1 Adjusting osd_memory_target on smithi016 to 17269M 2024-04-18T22:56:42.503 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:42 smithi069 bash[23476]: audit 2024-04-18T22:56:41.086120+0000 mon.a (mon.0) 345 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:42.503 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:42 smithi069 bash[23476]: audit 2024-04-18T22:56:41.090185+0000 mon.a (mon.0) 346 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:56:42.503 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:42 smithi069 bash[23476]: audit 2024-04-18T22:56:41.091894+0000 mon.a (mon.0) 347 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:56:42.503 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:42 smithi069 bash[23476]: audit 2024-04-18T22:56:41.101800+0000 mon.a (mon.0) 348 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:56:43.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:43 smithi016 bash[21452]: cluster 2024-04-18T22:56:41.849453+0000 mgr.a (mgr.14152) 137 : cluster 0 pgmap v91: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:43.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:43 smithi055 bash[23198]: cluster 2024-04-18T22:56:41.849453+0000 mgr.a (mgr.14152) 137 : cluster 0 pgmap v91: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:43.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:43 smithi069 bash[23476]: cluster 2024-04-18T22:56:41.849453+0000 mgr.a (mgr.14152) 137 : cluster 0 pgmap v91: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:45.392 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T22:56:45.413 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:45 smithi016 bash[21452]: cluster 2024-04-18T22:56:43.850038+0000 mgr.a (mgr.14152) 138 : cluster 0 pgmap v92: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:45.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:45 smithi055 bash[23198]: cluster 2024-04-18T22:56:43.850038+0000 mgr.a (mgr.14152) 138 : cluster 0 pgmap v92: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:45.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:45 smithi069 bash[23476]: cluster 2024-04-18T22:56:43.850038+0000 mgr.a (mgr.14152) 138 : cluster 0 pgmap v92: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:47.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:47 smithi016 bash[21452]: cluster 2024-04-18T22:56:45.850563+0000 mgr.a (mgr.14152) 139 : cluster 0 pgmap v93: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:47.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:47 smithi055 bash[23198]: cluster 2024-04-18T22:56:45.850563+0000 mgr.a (mgr.14152) 139 : cluster 0 pgmap v93: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:47.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:47 smithi069 bash[23476]: cluster 2024-04-18T22:56:45.850563+0000 mgr.a (mgr.14152) 139 : cluster 0 pgmap v93: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:49.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:49 smithi016 bash[21452]: cluster 2024-04-18T22:56:47.850952+0000 mgr.a (mgr.14152) 140 : cluster 0 pgmap v94: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:49.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:49 smithi016 bash[21452]: audit 2024-04-18T22:56:48.253649+0000 mgr.a (mgr.14152) 141 : audit 0 from='client.14238 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi016:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T22:56:49.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:49 smithi016 bash[21452]: audit 2024-04-18T22:56:48.260468+0000 mon.a (mon.0) 349 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-18T22:56:49.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:49 smithi016 bash[21452]: audit 2024-04-18T22:56:48.269018+0000 mon.a (mon.0) 350 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-18T22:56:49.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:49 smithi016 bash[21452]: audit 2024-04-18T22:56:48.270721+0000 mon.a (mon.0) 351 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:56:49.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:49 smithi055 bash[23198]: cluster 2024-04-18T22:56:47.850952+0000 mgr.a (mgr.14152) 140 : cluster 0 pgmap v94: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:49.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:49 smithi055 bash[23198]: audit 2024-04-18T22:56:48.253649+0000 mgr.a (mgr.14152) 141 : audit 0 from='client.14238 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi016:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T22:56:49.454 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:49 smithi055 bash[23198]: audit 2024-04-18T22:56:48.260468+0000 mon.a (mon.0) 349 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-18T22:56:49.454 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:49 smithi055 bash[23198]: audit 2024-04-18T22:56:48.269018+0000 mon.a (mon.0) 350 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-18T22:56:49.454 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:49 smithi055 bash[23198]: audit 2024-04-18T22:56:48.270721+0000 mon.a (mon.0) 351 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:56:49.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:49 smithi069 bash[23476]: cluster 2024-04-18T22:56:47.850952+0000 mgr.a (mgr.14152) 140 : cluster 0 pgmap v94: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:49.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:49 smithi069 bash[23476]: audit 2024-04-18T22:56:48.253649+0000 mgr.a (mgr.14152) 141 : audit 0 from='client.14238 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi016:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T22:56:49.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:49 smithi069 bash[23476]: audit 2024-04-18T22:56:48.260468+0000 mon.a (mon.0) 349 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-18T22:56:49.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:49 smithi069 bash[23476]: audit 2024-04-18T22:56:48.269018+0000 mon.a (mon.0) 350 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-18T22:56:49.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:49 smithi069 bash[23476]: audit 2024-04-18T22:56:48.270721+0000 mon.a (mon.0) 351 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:56:51.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:51 smithi016 bash[21452]: cluster 2024-04-18T22:56:49.851451+0000 mgr.a (mgr.14152) 142 : cluster 0 pgmap v95: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:51.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:51 smithi055 bash[23198]: cluster 2024-04-18T22:56:49.851451+0000 mgr.a (mgr.14152) 142 : cluster 0 pgmap v95: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:51.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:51 smithi069 bash[23476]: cluster 2024-04-18T22:56:49.851451+0000 mgr.a (mgr.14152) 142 : cluster 0 pgmap v95: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:53.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:53 smithi016 bash[21452]: cluster 2024-04-18T22:56:51.851970+0000 mgr.a (mgr.14152) 143 : cluster 0 pgmap v96: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:53.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:53 smithi055 bash[23198]: cluster 2024-04-18T22:56:51.851970+0000 mgr.a (mgr.14152) 143 : cluster 0 pgmap v96: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:53.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:53 smithi069 bash[23476]: cluster 2024-04-18T22:56:51.851970+0000 mgr.a (mgr.14152) 143 : cluster 0 pgmap v96: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:55.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:55 smithi016 bash[21452]: cluster 2024-04-18T22:56:53.852528+0000 mgr.a (mgr.14152) 144 : cluster 0 pgmap v97: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:55.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:55 smithi055 bash[23198]: cluster 2024-04-18T22:56:53.852528+0000 mgr.a (mgr.14152) 144 : cluster 0 pgmap v97: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:55.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:55 smithi069 bash[23476]: cluster 2024-04-18T22:56:53.852528+0000 mgr.a (mgr.14152) 144 : cluster 0 pgmap v97: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:57.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:57 smithi016 bash[21452]: cluster 2024-04-18T22:56:55.852869+0000 mgr.a (mgr.14152) 145 : cluster 0 pgmap v98: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:57.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:57 smithi016 bash[21452]: audit 2024-04-18T22:56:56.531119+0000 mon.a (mon.0) 352 : audit 1 from='client.? 172.21.15.16:0/2034678783' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b17107b0-0a86-4fda-adad-0c43af9e714c"}]: dispatch 2024-04-18T22:56:57.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:57 smithi016 bash[21452]: audit 2024-04-18T22:56:56.533974+0000 mon.a (mon.0) 353 : audit 1 from='client.? 172.21.15.16:0/2034678783' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b17107b0-0a86-4fda-adad-0c43af9e714c"}]': finished 2024-04-18T22:56:57.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:57 smithi016 bash[21452]: cluster 2024-04-18T22:56:56.537231+0000 mon.a (mon.0) 354 : cluster 0 osdmap e10: 2 total, 1 up, 2 in 2024-04-18T22:56:57.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:57 smithi016 bash[21452]: audit 2024-04-18T22:56:56.537428+0000 mon.a (mon.0) 355 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-18T22:56:57.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:57 smithi055 bash[23198]: cluster 2024-04-18T22:56:55.852869+0000 mgr.a (mgr.14152) 145 : cluster 0 pgmap v98: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:57.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:57 smithi055 bash[23198]: audit 2024-04-18T22:56:56.531119+0000 mon.a (mon.0) 352 : audit 1 from='client.? 172.21.15.16:0/2034678783' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b17107b0-0a86-4fda-adad-0c43af9e714c"}]: dispatch 2024-04-18T22:56:57.454 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:57 smithi055 bash[23198]: audit 2024-04-18T22:56:56.533974+0000 mon.a (mon.0) 353 : audit 1 from='client.? 172.21.15.16:0/2034678783' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b17107b0-0a86-4fda-adad-0c43af9e714c"}]': finished 2024-04-18T22:56:57.454 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:57 smithi055 bash[23198]: cluster 2024-04-18T22:56:56.537231+0000 mon.a (mon.0) 354 : cluster 0 osdmap e10: 2 total, 1 up, 2 in 2024-04-18T22:56:57.454 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:57 smithi055 bash[23198]: audit 2024-04-18T22:56:56.537428+0000 mon.a (mon.0) 355 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-18T22:56:57.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:57 smithi069 bash[23476]: cluster 2024-04-18T22:56:55.852869+0000 mgr.a (mgr.14152) 145 : cluster 0 pgmap v98: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:57.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:57 smithi069 bash[23476]: audit 2024-04-18T22:56:56.531119+0000 mon.a (mon.0) 352 : audit 1 from='client.? 172.21.15.16:0/2034678783' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b17107b0-0a86-4fda-adad-0c43af9e714c"}]: dispatch 2024-04-18T22:56:57.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:57 smithi069 bash[23476]: audit 2024-04-18T22:56:56.533974+0000 mon.a (mon.0) 353 : audit 1 from='client.? 172.21.15.16:0/2034678783' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b17107b0-0a86-4fda-adad-0c43af9e714c"}]': finished 2024-04-18T22:56:57.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:57 smithi069 bash[23476]: cluster 2024-04-18T22:56:56.537231+0000 mon.a (mon.0) 354 : cluster 0 osdmap e10: 2 total, 1 up, 2 in 2024-04-18T22:56:57.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:57 smithi069 bash[23476]: audit 2024-04-18T22:56:56.537428+0000 mon.a (mon.0) 355 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-18T22:56:58.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:58 smithi016 bash[21452]: audit 2024-04-18T22:56:57.262182+0000 mon.a (mon.0) 356 : audit 0 from='client.? 172.21.15.16:0/587827146' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-18T22:56:58.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:58 smithi055 bash[23198]: audit 2024-04-18T22:56:57.262182+0000 mon.a (mon.0) 356 : audit 0 from='client.? 172.21.15.16:0/587827146' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-18T22:56:58.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:58 smithi069 bash[23476]: audit 2024-04-18T22:56:57.262182+0000 mon.a (mon.0) 356 : audit 0 from='client.? 172.21.15.16:0/587827146' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-18T22:56:59.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:56:59 smithi016 bash[21452]: cluster 2024-04-18T22:56:57.853321+0000 mgr.a (mgr.14152) 146 : cluster 0 pgmap v100: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:59.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:56:59 smithi055 bash[23198]: cluster 2024-04-18T22:56:57.853321+0000 mgr.a (mgr.14152) 146 : cluster 0 pgmap v100: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:56:59.531 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:56:59 smithi069 bash[23476]: cluster 2024-04-18T22:56:57.853321+0000 mgr.a (mgr.14152) 146 : cluster 0 pgmap v100: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:01.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:01 smithi016 bash[21452]: cluster 2024-04-18T22:56:59.853777+0000 mgr.a (mgr.14152) 147 : cluster 0 pgmap v101: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:01.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:01 smithi055 bash[23198]: cluster 2024-04-18T22:56:59.853777+0000 mgr.a (mgr.14152) 147 : cluster 0 pgmap v101: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:01.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:01 smithi069 bash[23476]: cluster 2024-04-18T22:56:59.853777+0000 mgr.a (mgr.14152) 147 : cluster 0 pgmap v101: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:03.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:03 smithi016 bash[21452]: cluster 2024-04-18T22:57:01.854167+0000 mgr.a (mgr.14152) 148 : cluster 0 pgmap v102: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:03.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:03 smithi055 bash[23198]: cluster 2024-04-18T22:57:01.854167+0000 mgr.a (mgr.14152) 148 : cluster 0 pgmap v102: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:03.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:03 smithi069 bash[23476]: cluster 2024-04-18T22:57:01.854167+0000 mgr.a (mgr.14152) 148 : cluster 0 pgmap v102: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:05.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:05 smithi016 bash[21452]: cluster 2024-04-18T22:57:03.854612+0000 mgr.a (mgr.14152) 149 : cluster 0 pgmap v103: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:05.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:05 smithi055 bash[23198]: cluster 2024-04-18T22:57:03.854612+0000 mgr.a (mgr.14152) 149 : cluster 0 pgmap v103: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:05.501 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:05 smithi069 bash[23476]: cluster 2024-04-18T22:57:03.854612+0000 mgr.a (mgr.14152) 149 : cluster 0 pgmap v103: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:07.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:07 smithi016 bash[21452]: cluster 2024-04-18T22:57:05.855079+0000 mgr.a (mgr.14152) 150 : cluster 0 pgmap v104: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:07.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:07 smithi055 bash[23198]: cluster 2024-04-18T22:57:05.855079+0000 mgr.a (mgr.14152) 150 : cluster 0 pgmap v104: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:07.501 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:07 smithi069 bash[23476]: cluster 2024-04-18T22:57:05.855079+0000 mgr.a (mgr.14152) 150 : cluster 0 pgmap v104: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:09.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:09 smithi016 bash[21452]: cluster 2024-04-18T22:57:07.855398+0000 mgr.a (mgr.14152) 151 : cluster 0 pgmap v105: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:09.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:09 smithi016 bash[21452]: audit 2024-04-18T22:57:08.945058+0000 mon.a (mon.0) 357 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-18T22:57:09.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:09 smithi016 bash[21452]: audit 2024-04-18T22:57:08.946913+0000 mon.a (mon.0) 358 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:57:09.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:09 smithi055 bash[23198]: cluster 2024-04-18T22:57:07.855398+0000 mgr.a (mgr.14152) 151 : cluster 0 pgmap v105: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:09.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:09 smithi055 bash[23198]: audit 2024-04-18T22:57:08.945058+0000 mon.a (mon.0) 357 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-18T22:57:09.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:09 smithi055 bash[23198]: audit 2024-04-18T22:57:08.946913+0000 mon.a (mon.0) 358 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:57:09.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:09 smithi069 bash[23476]: cluster 2024-04-18T22:57:07.855398+0000 mgr.a (mgr.14152) 151 : cluster 0 pgmap v105: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:09.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:09 smithi069 bash[23476]: audit 2024-04-18T22:57:08.945058+0000 mon.a (mon.0) 357 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-18T22:57:09.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:09 smithi069 bash[23476]: audit 2024-04-18T22:57:08.946913+0000 mon.a (mon.0) 358 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:57:10.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:10 smithi016 bash[21452]: cephadm 2024-04-18T22:57:08.948491+0000 mgr.a (mgr.14152) 152 : cephadm 1 Deploying daemon osd.1 on smithi016 2024-04-18T22:57:10.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:10 smithi055 bash[23198]: cephadm 2024-04-18T22:57:08.948491+0000 mgr.a (mgr.14152) 152 : cephadm 1 Deploying daemon osd.1 on smithi016 2024-04-18T22:57:10.501 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:10 smithi069 bash[23476]: cephadm 2024-04-18T22:57:08.948491+0000 mgr.a (mgr.14152) 152 : cephadm 1 Deploying daemon osd.1 on smithi016 2024-04-18T22:57:11.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:11 smithi055 bash[23198]: cluster 2024-04-18T22:57:09.855857+0000 mgr.a (mgr.14152) 153 : cluster 0 pgmap v106: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:11.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:11 smithi069 bash[23476]: cluster 2024-04-18T22:57:09.855857+0000 mgr.a (mgr.14152) 153 : cluster 0 pgmap v106: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:11.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:11 smithi016 bash[21452]: cluster 2024-04-18T22:57:09.855857+0000 mgr.a (mgr.14152) 153 : cluster 0 pgmap v106: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:13.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:13 smithi055 bash[23198]: cluster 2024-04-18T22:57:11.856338+0000 mgr.a (mgr.14152) 154 : cluster 0 pgmap v107: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:13.467 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:13 smithi016 bash[21452]: cluster 2024-04-18T22:57:11.856338+0000 mgr.a (mgr.14152) 154 : cluster 0 pgmap v107: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:13.467 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:13 smithi016 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:57:13.468 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:57:13 smithi016 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:57:13.468 INFO:journalctl@ceph.osd.0.smithi016.stdout:Apr 18 22:57:13 smithi016 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:57:13.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:13 smithi069 bash[23476]: cluster 2024-04-18T22:57:11.856338+0000 mgr.a (mgr.14152) 154 : cluster 0 pgmap v107: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:13.754 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:13 smithi016 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:57:13.755 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 22:57:13 smithi016 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:57:13.755 INFO:journalctl@ceph.osd.0.smithi016.stdout:Apr 18 22:57:13 smithi016 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:57:15.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:14 smithi069 bash[23476]: audit 2024-04-18T22:57:13.751795+0000 mon.a (mon.0) 359 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:15.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:14 smithi069 bash[23476]: audit 2024-04-18T22:57:13.758592+0000 mon.a (mon.0) 360 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:15.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:14 smithi069 bash[23476]: audit 2024-04-18T22:57:13.782856+0000 mon.a (mon.0) 361 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:57:15.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:14 smithi069 bash[23476]: cluster 2024-04-18T22:57:13.856726+0000 mgr.a (mgr.14152) 155 : cluster 0 pgmap v108: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:15.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:14 smithi016 bash[21452]: audit 2024-04-18T22:57:13.751795+0000 mon.a (mon.0) 359 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:15.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:14 smithi016 bash[21452]: audit 2024-04-18T22:57:13.758592+0000 mon.a (mon.0) 360 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:15.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:14 smithi016 bash[21452]: audit 2024-04-18T22:57:13.782856+0000 mon.a (mon.0) 361 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:57:15.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:14 smithi016 bash[21452]: cluster 2024-04-18T22:57:13.856726+0000 mgr.a (mgr.14152) 155 : cluster 0 pgmap v108: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:15.203 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:14 smithi055 bash[23198]: audit 2024-04-18T22:57:13.751795+0000 mon.a (mon.0) 359 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:15.203 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:14 smithi055 bash[23198]: audit 2024-04-18T22:57:13.758592+0000 mon.a (mon.0) 360 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:15.203 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:14 smithi055 bash[23198]: audit 2024-04-18T22:57:13.782856+0000 mon.a (mon.0) 361 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:57:15.203 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:14 smithi055 bash[23198]: cluster 2024-04-18T22:57:13.856726+0000 mgr.a (mgr.14152) 155 : cluster 0 pgmap v108: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:17.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:16 smithi016 bash[21452]: cluster 2024-04-18T22:57:15.857236+0000 mgr.a (mgr.14152) 156 : cluster 0 pgmap v109: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:17.203 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:16 smithi055 bash[23198]: cluster 2024-04-18T22:57:15.857236+0000 mgr.a (mgr.14152) 156 : cluster 0 pgmap v109: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:17.251 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:16 smithi069 bash[23476]: cluster 2024-04-18T22:57:15.857236+0000 mgr.a (mgr.14152) 156 : cluster 0 pgmap v109: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:19.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:18 smithi016 bash[21452]: cluster 2024-04-18T22:57:17.857678+0000 mgr.a (mgr.14152) 157 : cluster 0 pgmap v110: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:19.203 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:18 smithi055 bash[23198]: cluster 2024-04-18T22:57:17.857678+0000 mgr.a (mgr.14152) 157 : cluster 0 pgmap v110: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:19.251 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:18 smithi069 bash[23476]: cluster 2024-04-18T22:57:17.857678+0000 mgr.a (mgr.14152) 157 : cluster 0 pgmap v110: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:20.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:20 smithi016 bash[21452]: audit 2024-04-18T22:57:19.039490+0000 mon.a (mon.0) 362 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:20.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:20 smithi016 bash[21452]: audit 2024-04-18T22:57:19.044035+0000 mon.a (mon.0) 363 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:20.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:20 smithi016 bash[21452]: audit 2024-04-18T22:57:19.044844+0000 mon.a (mon.0) 364 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:57:20.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:20 smithi016 bash[21452]: audit 2024-04-18T22:57:19.045539+0000 mon.a (mon.0) 365 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:57:20.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:20 smithi016 bash[21452]: audit 2024-04-18T22:57:19.054234+0000 mon.a (mon.0) 366 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:20.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:20 smithi055 bash[23198]: audit 2024-04-18T22:57:19.039490+0000 mon.a (mon.0) 362 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:20.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:20 smithi055 bash[23198]: audit 2024-04-18T22:57:19.044035+0000 mon.a (mon.0) 363 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:20.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:20 smithi055 bash[23198]: audit 2024-04-18T22:57:19.044844+0000 mon.a (mon.0) 364 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:57:20.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:20 smithi055 bash[23198]: audit 2024-04-18T22:57:19.045539+0000 mon.a (mon.0) 365 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:57:20.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:20 smithi055 bash[23198]: audit 2024-04-18T22:57:19.054234+0000 mon.a (mon.0) 366 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:20.501 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:20 smithi069 bash[23476]: audit 2024-04-18T22:57:19.039490+0000 mon.a (mon.0) 362 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:20.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:20 smithi069 bash[23476]: audit 2024-04-18T22:57:19.044035+0000 mon.a (mon.0) 363 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:20.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:20 smithi069 bash[23476]: audit 2024-04-18T22:57:19.044844+0000 mon.a (mon.0) 364 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:57:20.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:20 smithi069 bash[23476]: audit 2024-04-18T22:57:19.045539+0000 mon.a (mon.0) 365 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:57:20.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:20 smithi069 bash[23476]: audit 2024-04-18T22:57:19.054234+0000 mon.a (mon.0) 366 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:21.413 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:21 smithi016 bash[21452]: cluster 2024-04-18T22:57:19.858146+0000 mgr.a (mgr.14152) 158 : cluster 0 pgmap v111: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:21.414 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:21 smithi016 bash[21452]: audit 2024-04-18T22:57:20.461557+0000 mon.a (mon.0) 367 : audit 1 from='osd.1 [v2:172.21.15.16:6810/3175198504,v1:172.21.15.16:6811/3175198504]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-04-18T22:57:21.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:21 smithi055 bash[23198]: cluster 2024-04-18T22:57:19.858146+0000 mgr.a (mgr.14152) 158 : cluster 0 pgmap v111: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:21.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:21 smithi055 bash[23198]: audit 2024-04-18T22:57:20.461557+0000 mon.a (mon.0) 367 : audit 1 from='osd.1 [v2:172.21.15.16:6810/3175198504,v1:172.21.15.16:6811/3175198504]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-04-18T22:57:21.501 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:21 smithi069 bash[23476]: cluster 2024-04-18T22:57:19.858146+0000 mgr.a (mgr.14152) 158 : cluster 0 pgmap v111: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:21.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:21 smithi069 bash[23476]: audit 2024-04-18T22:57:20.461557+0000 mon.a (mon.0) 367 : audit 1 from='osd.1 [v2:172.21.15.16:6810/3175198504,v1:172.21.15.16:6811/3175198504]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-04-18T22:57:22.350 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:22 smithi016 bash[21452]: audit 2024-04-18T22:57:21.064525+0000 mon.a (mon.0) 368 : audit 1 from='osd.1 [v2:172.21.15.16:6810/3175198504,v1:172.21.15.16:6811/3175198504]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-04-18T22:57:22.351 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:22 smithi016 bash[21452]: cluster 2024-04-18T22:57:21.069636+0000 mon.a (mon.0) 369 : cluster 0 osdmap e11: 2 total, 1 up, 2 in 2024-04-18T22:57:22.351 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:22 smithi016 bash[21452]: audit 2024-04-18T22:57:21.070164+0000 mon.a (mon.0) 370 : audit 1 from='osd.1 [v2:172.21.15.16:6810/3175198504,v1:172.21.15.16:6811/3175198504]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi016", "root=default"]}]: dispatch 2024-04-18T22:57:22.351 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:22 smithi016 bash[21452]: audit 2024-04-18T22:57:21.070724+0000 mon.a (mon.0) 371 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-18T22:57:22.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:22 smithi055 bash[23198]: audit 2024-04-18T22:57:21.064525+0000 mon.a (mon.0) 368 : audit 1 from='osd.1 [v2:172.21.15.16:6810/3175198504,v1:172.21.15.16:6811/3175198504]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-04-18T22:57:22.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:22 smithi055 bash[23198]: cluster 2024-04-18T22:57:21.069636+0000 mon.a (mon.0) 369 : cluster 0 osdmap e11: 2 total, 1 up, 2 in 2024-04-18T22:57:22.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:22 smithi055 bash[23198]: audit 2024-04-18T22:57:21.070164+0000 mon.a (mon.0) 370 : audit 1 from='osd.1 [v2:172.21.15.16:6810/3175198504,v1:172.21.15.16:6811/3175198504]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi016", "root=default"]}]: dispatch 2024-04-18T22:57:22.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:22 smithi055 bash[23198]: audit 2024-04-18T22:57:21.070724+0000 mon.a (mon.0) 371 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-18T22:57:22.501 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:22 smithi069 bash[23476]: audit 2024-04-18T22:57:21.064525+0000 mon.a (mon.0) 368 : audit 1 from='osd.1 [v2:172.21.15.16:6810/3175198504,v1:172.21.15.16:6811/3175198504]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-04-18T22:57:22.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:22 smithi069 bash[23476]: cluster 2024-04-18T22:57:21.069636+0000 mon.a (mon.0) 369 : cluster 0 osdmap e11: 2 total, 1 up, 2 in 2024-04-18T22:57:22.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:22 smithi069 bash[23476]: audit 2024-04-18T22:57:21.070164+0000 mon.a (mon.0) 370 : audit 1 from='osd.1 [v2:172.21.15.16:6810/3175198504,v1:172.21.15.16:6811/3175198504]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi016", "root=default"]}]: dispatch 2024-04-18T22:57:22.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:22 smithi069 bash[23476]: audit 2024-04-18T22:57:21.070724+0000 mon.a (mon.0) 371 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-18T22:57:22.768 INFO:teuthology.orchestra.run.smithi016.stdout:Created osd(s) 1 on host 'smithi016' 2024-04-18T22:57:23.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:23 smithi016 bash[21452]: cluster 2024-04-18T22:57:21.858422+0000 mgr.a (mgr.14152) 159 : cluster 0 pgmap v113: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:23.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:23 smithi016 bash[21452]: audit 2024-04-18T22:57:22.072352+0000 mon.a (mon.0) 372 : audit 1 from='osd.1 [v2:172.21.15.16:6810/3175198504,v1:172.21.15.16:6811/3175198504]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi016", "root=default"]}]': finished 2024-04-18T22:57:23.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:23 smithi016 bash[21452]: cluster 2024-04-18T22:57:22.075458+0000 mon.a (mon.0) 373 : cluster 0 osdmap e12: 2 total, 1 up, 2 in 2024-04-18T22:57:23.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:23 smithi016 bash[21452]: audit 2024-04-18T22:57:22.076019+0000 mon.a (mon.0) 374 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-18T22:57:23.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:23 smithi016 bash[21452]: audit 2024-04-18T22:57:22.079437+0000 mon.a (mon.0) 375 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-18T22:57:23.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:23 smithi016 bash[21452]: audit 2024-04-18T22:57:22.357876+0000 mon.a (mon.0) 376 : audit 1 from='osd.1 [v2:172.21.15.16:6810/3175198504,v1:172.21.15.16:6811/3175198504]' entity='osd.1' 2024-04-18T22:57:23.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:23 smithi016 bash[21452]: audit 2024-04-18T22:57:22.744273+0000 mon.a (mon.0) 377 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:23.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:23 smithi016 bash[21452]: audit 2024-04-18T22:57:22.752486+0000 mon.a (mon.0) 378 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:23.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:23 smithi016 bash[21452]: audit 2024-04-18T22:57:22.760347+0000 mon.a (mon.0) 379 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:57:23.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:23 smithi055 bash[23198]: cluster 2024-04-18T22:57:21.858422+0000 mgr.a (mgr.14152) 159 : cluster 0 pgmap v113: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:23.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:23 smithi055 bash[23198]: audit 2024-04-18T22:57:22.072352+0000 mon.a (mon.0) 372 : audit 1 from='osd.1 [v2:172.21.15.16:6810/3175198504,v1:172.21.15.16:6811/3175198504]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi016", "root=default"]}]': finished 2024-04-18T22:57:23.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:23 smithi055 bash[23198]: cluster 2024-04-18T22:57:22.075458+0000 mon.a (mon.0) 373 : cluster 0 osdmap e12: 2 total, 1 up, 2 in 2024-04-18T22:57:23.454 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:23 smithi055 bash[23198]: audit 2024-04-18T22:57:22.076019+0000 mon.a (mon.0) 374 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-18T22:57:23.454 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:23 smithi055 bash[23198]: audit 2024-04-18T22:57:22.079437+0000 mon.a (mon.0) 375 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-18T22:57:23.454 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:23 smithi055 bash[23198]: audit 2024-04-18T22:57:22.357876+0000 mon.a (mon.0) 376 : audit 1 from='osd.1 [v2:172.21.15.16:6810/3175198504,v1:172.21.15.16:6811/3175198504]' entity='osd.1' 2024-04-18T22:57:23.454 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:23 smithi055 bash[23198]: audit 2024-04-18T22:57:22.744273+0000 mon.a (mon.0) 377 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:23.454 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:23 smithi055 bash[23198]: audit 2024-04-18T22:57:22.752486+0000 mon.a (mon.0) 378 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:23.454 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:23 smithi055 bash[23198]: audit 2024-04-18T22:57:22.760347+0000 mon.a (mon.0) 379 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:57:23.456 DEBUG:teuthology.orchestra.run.smithi016:osd.1> sudo journalctl -f -n 0 -u ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@osd.1.service 2024-04-18T22:57:23.458 INFO:tasks.cephadm:Deploying osd.2 on smithi055 with /dev/vg_nvme/lv_4... 2024-04-18T22:57:23.458 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-04-18T22:57:23.501 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:23 smithi069 bash[23476]: cluster 2024-04-18T22:57:21.858422+0000 mgr.a (mgr.14152) 159 : cluster 0 pgmap v113: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:23.501 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:23 smithi069 bash[23476]: audit 2024-04-18T22:57:22.072352+0000 mon.a (mon.0) 372 : audit 1 from='osd.1 [v2:172.21.15.16:6810/3175198504,v1:172.21.15.16:6811/3175198504]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi016", "root=default"]}]': finished 2024-04-18T22:57:23.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:23 smithi069 bash[23476]: cluster 2024-04-18T22:57:22.075458+0000 mon.a (mon.0) 373 : cluster 0 osdmap e12: 2 total, 1 up, 2 in 2024-04-18T22:57:23.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:23 smithi069 bash[23476]: audit 2024-04-18T22:57:22.076019+0000 mon.a (mon.0) 374 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-18T22:57:23.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:23 smithi069 bash[23476]: audit 2024-04-18T22:57:22.079437+0000 mon.a (mon.0) 375 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-18T22:57:23.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:23 smithi069 bash[23476]: audit 2024-04-18T22:57:22.357876+0000 mon.a (mon.0) 376 : audit 1 from='osd.1 [v2:172.21.15.16:6810/3175198504,v1:172.21.15.16:6811/3175198504]' entity='osd.1' 2024-04-18T22:57:23.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:23 smithi069 bash[23476]: audit 2024-04-18T22:57:22.744273+0000 mon.a (mon.0) 377 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:23.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:23 smithi069 bash[23476]: audit 2024-04-18T22:57:22.752486+0000 mon.a (mon.0) 378 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:23.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:23 smithi069 bash[23476]: audit 2024-04-18T22:57:22.760347+0000 mon.a (mon.0) 379 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:57:24.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:24 smithi016 bash[21452]: cluster 2024-04-18T22:57:21.433651+0000 osd.1 (osd.1) 1 : cluster 0 purged_snaps scrub starts 2024-04-18T22:57:24.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:24 smithi016 bash[21452]: cluster 2024-04-18T22:57:21.433764+0000 osd.1 (osd.1) 2 : cluster 0 purged_snaps scrub ok 2024-04-18T22:57:24.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:24 smithi016 bash[21452]: audit 2024-04-18T22:57:23.082324+0000 mon.a (mon.0) 380 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-18T22:57:24.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:24 smithi016 bash[21452]: cluster 2024-04-18T22:57:23.362793+0000 mon.a (mon.0) 381 : cluster 1 osd.1 [v2:172.21.15.16:6810/3175198504,v1:172.21.15.16:6811/3175198504] boot 2024-04-18T22:57:24.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:24 smithi016 bash[21452]: cluster 2024-04-18T22:57:23.362858+0000 mon.a (mon.0) 382 : cluster 0 osdmap e13: 2 total, 2 up, 2 in 2024-04-18T22:57:24.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:24 smithi016 bash[21452]: audit 2024-04-18T22:57:23.363407+0000 mon.a (mon.0) 383 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-18T22:57:24.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:24 smithi055 bash[23198]: cluster 2024-04-18T22:57:21.433651+0000 osd.1 (osd.1) 1 : cluster 0 purged_snaps scrub starts 2024-04-18T22:57:24.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:24 smithi055 bash[23198]: cluster 2024-04-18T22:57:21.433764+0000 osd.1 (osd.1) 2 : cluster 0 purged_snaps scrub ok 2024-04-18T22:57:24.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:24 smithi055 bash[23198]: audit 2024-04-18T22:57:23.082324+0000 mon.a (mon.0) 380 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-18T22:57:24.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:24 smithi055 bash[23198]: cluster 2024-04-18T22:57:23.362793+0000 mon.a (mon.0) 381 : cluster 1 osd.1 [v2:172.21.15.16:6810/3175198504,v1:172.21.15.16:6811/3175198504] boot 2024-04-18T22:57:24.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:24 smithi055 bash[23198]: cluster 2024-04-18T22:57:23.362858+0000 mon.a (mon.0) 382 : cluster 0 osdmap e13: 2 total, 2 up, 2 in 2024-04-18T22:57:24.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:24 smithi055 bash[23198]: audit 2024-04-18T22:57:23.363407+0000 mon.a (mon.0) 383 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-18T22:57:24.501 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:24 smithi069 bash[23476]: cluster 2024-04-18T22:57:21.433651+0000 osd.1 (osd.1) 1 : cluster 0 purged_snaps scrub starts 2024-04-18T22:57:24.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:24 smithi069 bash[23476]: cluster 2024-04-18T22:57:21.433764+0000 osd.1 (osd.1) 2 : cluster 0 purged_snaps scrub ok 2024-04-18T22:57:24.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:24 smithi069 bash[23476]: audit 2024-04-18T22:57:23.082324+0000 mon.a (mon.0) 380 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-18T22:57:24.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:24 smithi069 bash[23476]: cluster 2024-04-18T22:57:23.362793+0000 mon.a (mon.0) 381 : cluster 1 osd.1 [v2:172.21.15.16:6810/3175198504,v1:172.21.15.16:6811/3175198504] boot 2024-04-18T22:57:24.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:24 smithi069 bash[23476]: cluster 2024-04-18T22:57:23.362858+0000 mon.a (mon.0) 382 : cluster 0 osdmap e13: 2 total, 2 up, 2 in 2024-04-18T22:57:24.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:24 smithi069 bash[23476]: audit 2024-04-18T22:57:23.363407+0000 mon.a (mon.0) 383 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-18T22:57:25.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:25 smithi016 bash[21452]: cluster 2024-04-18T22:57:23.858835+0000 mgr.a (mgr.14152) 160 : cluster 0 pgmap v116: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:25.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:25 smithi016 bash[21452]: cluster 2024-04-18T22:57:24.372086+0000 mon.a (mon.0) 384 : cluster 0 osdmap e14: 2 total, 2 up, 2 in 2024-04-18T22:57:25.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:25 smithi055 bash[23198]: cluster 2024-04-18T22:57:23.858835+0000 mgr.a (mgr.14152) 160 : cluster 0 pgmap v116: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:25.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:25 smithi055 bash[23198]: cluster 2024-04-18T22:57:24.372086+0000 mon.a (mon.0) 384 : cluster 0 osdmap e14: 2 total, 2 up, 2 in 2024-04-18T22:57:25.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:25 smithi069 bash[23476]: cluster 2024-04-18T22:57:23.858835+0000 mgr.a (mgr.14152) 160 : cluster 0 pgmap v116: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-18T22:57:25.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:25 smithi069 bash[23476]: cluster 2024-04-18T22:57:24.372086+0000 mon.a (mon.0) 384 : cluster 0 osdmap e14: 2 total, 2 up, 2 in 2024-04-18T22:57:27.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:27 smithi016 bash[21452]: cluster 2024-04-18T22:57:25.859274+0000 mgr.a (mgr.14152) 161 : cluster 0 pgmap v118: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:27.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:27 smithi055 bash[23198]: cluster 2024-04-18T22:57:25.859274+0000 mgr.a (mgr.14152) 161 : cluster 0 pgmap v118: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:27.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:27 smithi069 bash[23476]: cluster 2024-04-18T22:57:25.859274+0000 mgr.a (mgr.14152) 161 : cluster 0 pgmap v118: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:28.176 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.b/config 2024-04-18T22:57:29.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:29 smithi016 bash[21452]: cluster 2024-04-18T22:57:27.859701+0000 mgr.a (mgr.14152) 162 : cluster 0 pgmap v119: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:29.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:29 smithi055 bash[23198]: cluster 2024-04-18T22:57:27.859701+0000 mgr.a (mgr.14152) 162 : cluster 0 pgmap v119: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:29.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:29 smithi069 bash[23476]: cluster 2024-04-18T22:57:27.859701+0000 mgr.a (mgr.14152) 162 : cluster 0 pgmap v119: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:31.153 INFO:teuthology.orchestra.run.smithi055.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-04-18T22:57:31.153 INFO:teuthology.orchestra.run.smithi055.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-04-18T22:57:31.153 INFO:teuthology.orchestra.run.smithi055.stderr: stderr: 10+0 records in 2024-04-18T22:57:31.153 INFO:teuthology.orchestra.run.smithi055.stderr:10+0 records out 2024-04-18T22:57:31.153 INFO:teuthology.orchestra.run.smithi055.stderr:10485760 bytes (10 MB, 10 MiB) copied, 0.0131514 s, 797 MB/s 2024-04-18T22:57:31.153 INFO:teuthology.orchestra.run.smithi055.stderr:--> Zapping successful for: 2024-04-18T22:57:31.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:31 smithi055 bash[23198]: cluster 2024-04-18T22:57:29.860153+0000 mgr.a (mgr.14152) 163 : cluster 0 pgmap v120: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:31.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:31 smithi016 bash[21452]: cluster 2024-04-18T22:57:29.860153+0000 mgr.a (mgr.14152) 163 : cluster 0 pgmap v120: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:31.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:31 smithi069 bash[23476]: cluster 2024-04-18T22:57:29.860153+0000 mgr.a (mgr.14152) 163 : cluster 0 pgmap v120: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:31.817 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph orch daemon add osd smithi055:vg_nvme/lv_4 2024-04-18T22:57:33.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:33 smithi016 bash[21452]: cluster 2024-04-18T22:57:31.860668+0000 mgr.a (mgr.14152) 164 : cluster 0 pgmap v121: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:33.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:33 smithi016 bash[21452]: cephadm 2024-04-18T22:57:32.353788+0000 mgr.a (mgr.14152) 165 : cephadm 1 Detected new or changed devices on smithi016 2024-04-18T22:57:33.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:33 smithi016 bash[21452]: audit 2024-04-18T22:57:32.362992+0000 mon.a (mon.0) 385 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:33.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:33 smithi016 bash[21452]: audit 2024-04-18T22:57:32.372499+0000 mon.a (mon.0) 386 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:33.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:33 smithi016 bash[21452]: audit 2024-04-18T22:57:32.375709+0000 mon.a (mon.0) 387 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-04-18T22:57:33.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:33 smithi016 bash[21452]: audit 2024-04-18T22:57:32.379156+0000 mon.a (mon.0) 388 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-04-18T22:57:33.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:33 smithi016 bash[21452]: cephadm 2024-04-18T22:57:32.380374+0000 mgr.a (mgr.14152) 166 : cephadm 1 Adjusting osd_memory_target on smithi016 to 8634M 2024-04-18T22:57:33.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:33 smithi016 bash[21452]: audit 2024-04-18T22:57:32.386524+0000 mon.a (mon.0) 389 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:33.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:33 smithi016 bash[21452]: audit 2024-04-18T22:57:32.395299+0000 mon.a (mon.0) 390 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:57:33.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:33 smithi016 bash[21452]: audit 2024-04-18T22:57:32.397271+0000 mon.a (mon.0) 391 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:57:33.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:33 smithi016 bash[21452]: audit 2024-04-18T22:57:32.407481+0000 mon.a (mon.0) 392 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:33.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:33 smithi055 bash[23198]: cluster 2024-04-18T22:57:31.860668+0000 mgr.a (mgr.14152) 164 : cluster 0 pgmap v121: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:33.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:33 smithi055 bash[23198]: cephadm 2024-04-18T22:57:32.353788+0000 mgr.a (mgr.14152) 165 : cephadm 1 Detected new or changed devices on smithi016 2024-04-18T22:57:33.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:33 smithi055 bash[23198]: audit 2024-04-18T22:57:32.362992+0000 mon.a (mon.0) 385 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:33.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:33 smithi055 bash[23198]: audit 2024-04-18T22:57:32.372499+0000 mon.a (mon.0) 386 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:33.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:33 smithi055 bash[23198]: audit 2024-04-18T22:57:32.375709+0000 mon.a (mon.0) 387 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-04-18T22:57:33.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:33 smithi055 bash[23198]: audit 2024-04-18T22:57:32.379156+0000 mon.a (mon.0) 388 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-04-18T22:57:33.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:33 smithi055 bash[23198]: cephadm 2024-04-18T22:57:32.380374+0000 mgr.a (mgr.14152) 166 : cephadm 1 Adjusting osd_memory_target on smithi016 to 8634M 2024-04-18T22:57:33.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:33 smithi055 bash[23198]: audit 2024-04-18T22:57:32.386524+0000 mon.a (mon.0) 389 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:33.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:33 smithi055 bash[23198]: audit 2024-04-18T22:57:32.395299+0000 mon.a (mon.0) 390 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:57:33.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:33 smithi055 bash[23198]: audit 2024-04-18T22:57:32.397271+0000 mon.a (mon.0) 391 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:57:33.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:33 smithi055 bash[23198]: audit 2024-04-18T22:57:32.407481+0000 mon.a (mon.0) 392 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:33.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:33 smithi069 bash[23476]: cluster 2024-04-18T22:57:31.860668+0000 mgr.a (mgr.14152) 164 : cluster 0 pgmap v121: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:33.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:33 smithi069 bash[23476]: cephadm 2024-04-18T22:57:32.353788+0000 mgr.a (mgr.14152) 165 : cephadm 1 Detected new or changed devices on smithi016 2024-04-18T22:57:33.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:33 smithi069 bash[23476]: audit 2024-04-18T22:57:32.362992+0000 mon.a (mon.0) 385 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:33.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:33 smithi069 bash[23476]: audit 2024-04-18T22:57:32.372499+0000 mon.a (mon.0) 386 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:33.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:33 smithi069 bash[23476]: audit 2024-04-18T22:57:32.375709+0000 mon.a (mon.0) 387 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-04-18T22:57:33.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:33 smithi069 bash[23476]: audit 2024-04-18T22:57:32.379156+0000 mon.a (mon.0) 388 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-04-18T22:57:33.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:33 smithi069 bash[23476]: cephadm 2024-04-18T22:57:32.380374+0000 mgr.a (mgr.14152) 166 : cephadm 1 Adjusting osd_memory_target on smithi016 to 8634M 2024-04-18T22:57:33.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:33 smithi069 bash[23476]: audit 2024-04-18T22:57:32.386524+0000 mon.a (mon.0) 389 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:33.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:33 smithi069 bash[23476]: audit 2024-04-18T22:57:32.395299+0000 mon.a (mon.0) 390 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:57:33.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:33 smithi069 bash[23476]: audit 2024-04-18T22:57:32.397271+0000 mon.a (mon.0) 391 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:57:33.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:33 smithi069 bash[23476]: audit 2024-04-18T22:57:32.407481+0000 mon.a (mon.0) 392 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:57:35.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:35 smithi016 bash[21452]: cluster 2024-04-18T22:57:33.861134+0000 mgr.a (mgr.14152) 167 : cluster 0 pgmap v122: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:35.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:35 smithi055 bash[23198]: cluster 2024-04-18T22:57:33.861134+0000 mgr.a (mgr.14152) 167 : cluster 0 pgmap v122: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:35.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:35 smithi069 bash[23476]: cluster 2024-04-18T22:57:33.861134+0000 mgr.a (mgr.14152) 167 : cluster 0 pgmap v122: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:36.536 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.b/config 2024-04-18T22:57:37.583 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:37 smithi055 bash[23198]: cluster 2024-04-18T22:57:35.861596+0000 mgr.a (mgr.14152) 168 : cluster 0 pgmap v123: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:37.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:37 smithi016 bash[21452]: cluster 2024-04-18T22:57:35.861596+0000 mgr.a (mgr.14152) 168 : cluster 0 pgmap v123: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:37.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:37 smithi069 bash[23476]: cluster 2024-04-18T22:57:35.861596+0000 mgr.a (mgr.14152) 168 : cluster 0 pgmap v123: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:39.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:39 smithi016 bash[21452]: cluster 2024-04-18T22:57:37.862064+0000 mgr.a (mgr.14152) 169 : cluster 0 pgmap v124: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:39.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:39 smithi016 bash[21452]: audit 2024-04-18T22:57:39.021587+0000 mon.a (mon.0) 393 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-18T22:57:39.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:39 smithi016 bash[21452]: audit 2024-04-18T22:57:39.028150+0000 mon.a (mon.0) 394 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-18T22:57:39.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:39 smithi016 bash[21452]: audit 2024-04-18T22:57:39.029961+0000 mon.a (mon.0) 395 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:57:39.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:39 smithi055 bash[23198]: cluster 2024-04-18T22:57:37.862064+0000 mgr.a (mgr.14152) 169 : cluster 0 pgmap v124: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:39.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:39 smithi055 bash[23198]: audit 2024-04-18T22:57:39.021587+0000 mon.a (mon.0) 393 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-18T22:57:39.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:39 smithi055 bash[23198]: audit 2024-04-18T22:57:39.028150+0000 mon.a (mon.0) 394 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-18T22:57:39.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:39 smithi055 bash[23198]: audit 2024-04-18T22:57:39.029961+0000 mon.a (mon.0) 395 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:57:39.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:39 smithi069 bash[23476]: cluster 2024-04-18T22:57:37.862064+0000 mgr.a (mgr.14152) 169 : cluster 0 pgmap v124: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:39.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:39 smithi069 bash[23476]: audit 2024-04-18T22:57:39.021587+0000 mon.a (mon.0) 393 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-18T22:57:39.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:39 smithi069 bash[23476]: audit 2024-04-18T22:57:39.028150+0000 mon.a (mon.0) 394 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-18T22:57:39.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:39 smithi069 bash[23476]: audit 2024-04-18T22:57:39.029961+0000 mon.a (mon.0) 395 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:57:40.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:40 smithi016 bash[21452]: audit 2024-04-18T22:57:39.013922+0000 mgr.a (mgr.14152) 170 : audit 0 from='client.24140 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi055:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T22:57:40.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:40 smithi055 bash[23198]: audit 2024-04-18T22:57:39.013922+0000 mgr.a (mgr.14152) 170 : audit 0 from='client.24140 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi055:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T22:57:40.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:40 smithi069 bash[23476]: audit 2024-04-18T22:57:39.013922+0000 mgr.a (mgr.14152) 170 : audit 0 from='client.24140 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi055:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T22:57:41.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:41 smithi016 bash[21452]: cluster 2024-04-18T22:57:39.862517+0000 mgr.a (mgr.14152) 171 : cluster 0 pgmap v125: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:41.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:41 smithi055 bash[23198]: cluster 2024-04-18T22:57:39.862517+0000 mgr.a (mgr.14152) 171 : cluster 0 pgmap v125: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:41.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:41 smithi069 bash[23476]: cluster 2024-04-18T22:57:39.862517+0000 mgr.a (mgr.14152) 171 : cluster 0 pgmap v125: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:43.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:43 smithi016 bash[21452]: cluster 2024-04-18T22:57:41.863020+0000 mgr.a (mgr.14152) 172 : cluster 0 pgmap v126: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:43.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:43 smithi055 bash[23198]: cluster 2024-04-18T22:57:41.863020+0000 mgr.a (mgr.14152) 172 : cluster 0 pgmap v126: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:43.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:43 smithi069 bash[23476]: cluster 2024-04-18T22:57:41.863020+0000 mgr.a (mgr.14152) 172 : cluster 0 pgmap v126: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:45.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:45 smithi016 bash[21452]: cluster 2024-04-18T22:57:43.863437+0000 mgr.a (mgr.14152) 173 : cluster 0 pgmap v127: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:45.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:45 smithi055 bash[23198]: cluster 2024-04-18T22:57:43.863437+0000 mgr.a (mgr.14152) 173 : cluster 0 pgmap v127: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:45.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:45 smithi069 bash[23476]: cluster 2024-04-18T22:57:43.863437+0000 mgr.a (mgr.14152) 173 : cluster 0 pgmap v127: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:47.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:47 smithi016 bash[21452]: cluster 2024-04-18T22:57:45.863911+0000 mgr.a (mgr.14152) 174 : cluster 0 pgmap v128: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:47.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:47 smithi016 bash[21452]: audit 2024-04-18T22:57:47.118320+0000 mon.a (mon.0) 396 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0511f964-62a6-452e-a8ac-9c32b9386ba9"}]: dispatch 2024-04-18T22:57:47.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:47 smithi016 bash[21452]: audit 2024-04-18T22:57:47.118624+0000 mon.b (mon.2) 7 : audit 1 from='client.? 172.21.15.55:0/356201084' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0511f964-62a6-452e-a8ac-9c32b9386ba9"}]: dispatch 2024-04-18T22:57:47.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:47 smithi016 bash[21452]: audit 2024-04-18T22:57:47.121576+0000 mon.a (mon.0) 397 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0511f964-62a6-452e-a8ac-9c32b9386ba9"}]': finished 2024-04-18T22:57:47.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:47 smithi016 bash[21452]: cluster 2024-04-18T22:57:47.126878+0000 mon.a (mon.0) 398 : cluster 0 osdmap e15: 3 total, 2 up, 3 in 2024-04-18T22:57:47.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:47 smithi016 bash[21452]: audit 2024-04-18T22:57:47.127414+0000 mon.a (mon.0) 399 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-18T22:57:47.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:47 smithi055 bash[23198]: cluster 2024-04-18T22:57:45.863911+0000 mgr.a (mgr.14152) 174 : cluster 0 pgmap v128: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:47.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:47 smithi055 bash[23198]: audit 2024-04-18T22:57:47.118320+0000 mon.a (mon.0) 396 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0511f964-62a6-452e-a8ac-9c32b9386ba9"}]: dispatch 2024-04-18T22:57:47.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:47 smithi055 bash[23198]: audit 2024-04-18T22:57:47.118624+0000 mon.b (mon.2) 7 : audit 1 from='client.? 172.21.15.55:0/356201084' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0511f964-62a6-452e-a8ac-9c32b9386ba9"}]: dispatch 2024-04-18T22:57:47.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:47 smithi055 bash[23198]: audit 2024-04-18T22:57:47.121576+0000 mon.a (mon.0) 397 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0511f964-62a6-452e-a8ac-9c32b9386ba9"}]': finished 2024-04-18T22:57:47.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:47 smithi055 bash[23198]: cluster 2024-04-18T22:57:47.126878+0000 mon.a (mon.0) 398 : cluster 0 osdmap e15: 3 total, 2 up, 3 in 2024-04-18T22:57:47.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:47 smithi055 bash[23198]: audit 2024-04-18T22:57:47.127414+0000 mon.a (mon.0) 399 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-18T22:57:47.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:47 smithi069 bash[23476]: cluster 2024-04-18T22:57:45.863911+0000 mgr.a (mgr.14152) 174 : cluster 0 pgmap v128: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:47.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:47 smithi069 bash[23476]: audit 2024-04-18T22:57:47.118320+0000 mon.a (mon.0) 396 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0511f964-62a6-452e-a8ac-9c32b9386ba9"}]: dispatch 2024-04-18T22:57:47.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:47 smithi069 bash[23476]: audit 2024-04-18T22:57:47.118624+0000 mon.b (mon.2) 7 : audit 1 from='client.? 172.21.15.55:0/356201084' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0511f964-62a6-452e-a8ac-9c32b9386ba9"}]: dispatch 2024-04-18T22:57:47.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:47 smithi069 bash[23476]: audit 2024-04-18T22:57:47.121576+0000 mon.a (mon.0) 397 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0511f964-62a6-452e-a8ac-9c32b9386ba9"}]': finished 2024-04-18T22:57:47.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:47 smithi069 bash[23476]: cluster 2024-04-18T22:57:47.126878+0000 mon.a (mon.0) 398 : cluster 0 osdmap e15: 3 total, 2 up, 3 in 2024-04-18T22:57:47.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:47 smithi069 bash[23476]: audit 2024-04-18T22:57:47.127414+0000 mon.a (mon.0) 399 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-18T22:57:48.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:48 smithi016 bash[21452]: audit 2024-04-18T22:57:47.878968+0000 mon.b (mon.2) 8 : audit 0 from='client.? 172.21.15.55:0/2962363919' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-18T22:57:48.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:48 smithi055 bash[23198]: audit 2024-04-18T22:57:47.878968+0000 mon.b (mon.2) 8 : audit 0 from='client.? 172.21.15.55:0/2962363919' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-18T22:57:48.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:48 smithi069 bash[23476]: audit 2024-04-18T22:57:47.878968+0000 mon.b (mon.2) 8 : audit 0 from='client.? 172.21.15.55:0/2962363919' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-18T22:57:49.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:49 smithi016 bash[21452]: cluster 2024-04-18T22:57:47.864386+0000 mgr.a (mgr.14152) 175 : cluster 0 pgmap v130: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:49.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:49 smithi055 bash[23198]: cluster 2024-04-18T22:57:47.864386+0000 mgr.a (mgr.14152) 175 : cluster 0 pgmap v130: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:49.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:49 smithi069 bash[23476]: cluster 2024-04-18T22:57:47.864386+0000 mgr.a (mgr.14152) 175 : cluster 0 pgmap v130: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:51.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:51 smithi016 bash[21452]: cluster 2024-04-18T22:57:49.864866+0000 mgr.a (mgr.14152) 176 : cluster 0 pgmap v131: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:51.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:51 smithi055 bash[23198]: cluster 2024-04-18T22:57:49.864866+0000 mgr.a (mgr.14152) 176 : cluster 0 pgmap v131: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:51.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:51 smithi069 bash[23476]: cluster 2024-04-18T22:57:49.864866+0000 mgr.a (mgr.14152) 176 : cluster 0 pgmap v131: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:53.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:53 smithi016 bash[21452]: cluster 2024-04-18T22:57:51.865278+0000 mgr.a (mgr.14152) 177 : cluster 0 pgmap v132: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:53.702 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:53 smithi055 bash[23198]: cluster 2024-04-18T22:57:51.865278+0000 mgr.a (mgr.14152) 177 : cluster 0 pgmap v132: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:53.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:53 smithi069 bash[23476]: cluster 2024-04-18T22:57:51.865278+0000 mgr.a (mgr.14152) 177 : cluster 0 pgmap v132: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:55.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:55 smithi055 bash[23198]: cluster 2024-04-18T22:57:53.865721+0000 mgr.a (mgr.14152) 178 : cluster 0 pgmap v133: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:55.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:55 smithi069 bash[23476]: cluster 2024-04-18T22:57:53.865721+0000 mgr.a (mgr.14152) 178 : cluster 0 pgmap v133: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:55.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:55 smithi016 bash[21452]: cluster 2024-04-18T22:57:53.865721+0000 mgr.a (mgr.14152) 178 : cluster 0 pgmap v133: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:57.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:57 smithi055 bash[23198]: cluster 2024-04-18T22:57:55.866208+0000 mgr.a (mgr.14152) 179 : cluster 0 pgmap v134: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:57.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:57 smithi069 bash[23476]: cluster 2024-04-18T22:57:55.866208+0000 mgr.a (mgr.14152) 179 : cluster 0 pgmap v134: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:57.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:57 smithi016 bash[21452]: cluster 2024-04-18T22:57:55.866208+0000 mgr.a (mgr.14152) 179 : cluster 0 pgmap v134: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:59.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:59 smithi055 bash[23198]: cluster 2024-04-18T22:57:57.866694+0000 mgr.a (mgr.14152) 180 : cluster 0 pgmap v135: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:59.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:59 smithi055 bash[23198]: audit 2024-04-18T22:57:59.014934+0000 mon.a (mon.0) 400 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-18T22:57:59.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:57:59 smithi055 bash[23198]: audit 2024-04-18T22:57:59.016850+0000 mon.a (mon.0) 401 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:57:59.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:59 smithi069 bash[23476]: cluster 2024-04-18T22:57:57.866694+0000 mgr.a (mgr.14152) 180 : cluster 0 pgmap v135: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:59.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:59 smithi069 bash[23476]: audit 2024-04-18T22:57:59.014934+0000 mon.a (mon.0) 400 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-18T22:57:59.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:57:59 smithi069 bash[23476]: audit 2024-04-18T22:57:59.016850+0000 mon.a (mon.0) 401 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:57:59.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:59 smithi016 bash[21452]: cluster 2024-04-18T22:57:57.866694+0000 mgr.a (mgr.14152) 180 : cluster 0 pgmap v135: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:57:59.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:59 smithi016 bash[21452]: audit 2024-04-18T22:57:59.014934+0000 mon.a (mon.0) 400 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-18T22:57:59.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:57:59 smithi016 bash[21452]: audit 2024-04-18T22:57:59.016850+0000 mon.a (mon.0) 401 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:58:00.563 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:00 smithi055 bash[23198]: cephadm 2024-04-18T22:57:59.018552+0000 mgr.a (mgr.14152) 181 : cephadm 1 Deploying daemon osd.2 on smithi055 2024-04-18T22:58:00.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:00 smithi069 bash[23476]: cephadm 2024-04-18T22:57:59.018552+0000 mgr.a (mgr.14152) 181 : cephadm 1 Deploying daemon osd.2 on smithi055 2024-04-18T22:58:00.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:00 smithi016 bash[21452]: cephadm 2024-04-18T22:57:59.018552+0000 mgr.a (mgr.14152) 181 : cephadm 1 Deploying daemon osd.2 on smithi055 2024-04-18T22:58:01.705 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:01 smithi055 bash[23198]: cluster 2024-04-18T22:57:59.867204+0000 mgr.a (mgr.14152) 182 : cluster 0 pgmap v136: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:58:01.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:01 smithi069 bash[23476]: cluster 2024-04-18T22:57:59.867204+0000 mgr.a (mgr.14152) 182 : cluster 0 pgmap v136: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:58:01.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:01 smithi016 bash[21452]: cluster 2024-04-18T22:57:59.867204+0000 mgr.a (mgr.14152) 182 : cluster 0 pgmap v136: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:58:02.964 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:02 smithi055 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:58:02.964 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:58:02 smithi055 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:58:03.447 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:03 smithi055 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:58:03.447 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:58:03 smithi055 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:58:03.702 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:03 smithi055 bash[23198]: cluster 2024-04-18T22:58:01.867660+0000 mgr.a (mgr.14152) 183 : cluster 0 pgmap v137: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:58:03.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:03 smithi055 bash[23198]: audit 2024-04-18T22:58:03.261001+0000 mon.a (mon.0) 402 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:03.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:03 smithi055 bash[23198]: audit 2024-04-18T22:58:03.264721+0000 mon.a (mon.0) 403 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:58:03.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:03 smithi055 bash[23198]: audit 2024-04-18T22:58:03.269668+0000 mon.a (mon.0) 404 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:03.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:03 smithi069 bash[23476]: cluster 2024-04-18T22:58:01.867660+0000 mgr.a (mgr.14152) 183 : cluster 0 pgmap v137: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:58:03.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:03 smithi069 bash[23476]: audit 2024-04-18T22:58:03.261001+0000 mon.a (mon.0) 402 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:03.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:03 smithi069 bash[23476]: audit 2024-04-18T22:58:03.264721+0000 mon.a (mon.0) 403 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:58:03.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:03 smithi069 bash[23476]: audit 2024-04-18T22:58:03.269668+0000 mon.a (mon.0) 404 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:03.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:03 smithi016 bash[21452]: cluster 2024-04-18T22:58:01.867660+0000 mgr.a (mgr.14152) 183 : cluster 0 pgmap v137: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:58:03.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:03 smithi016 bash[21452]: audit 2024-04-18T22:58:03.261001+0000 mon.a (mon.0) 402 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:03.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:03 smithi016 bash[21452]: audit 2024-04-18T22:58:03.264721+0000 mon.a (mon.0) 403 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:58:03.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:03 smithi016 bash[21452]: audit 2024-04-18T22:58:03.269668+0000 mon.a (mon.0) 404 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:05.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:05 smithi055 bash[23198]: cluster 2024-04-18T22:58:03.868107+0000 mgr.a (mgr.14152) 184 : cluster 0 pgmap v138: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:58:05.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:05 smithi069 bash[23476]: cluster 2024-04-18T22:58:03.868107+0000 mgr.a (mgr.14152) 184 : cluster 0 pgmap v138: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:58:05.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:05 smithi016 bash[21452]: cluster 2024-04-18T22:58:03.868107+0000 mgr.a (mgr.14152) 184 : cluster 0 pgmap v138: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:58:07.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:07 smithi069 bash[23476]: cluster 2024-04-18T22:58:05.868579+0000 mgr.a (mgr.14152) 185 : cluster 0 pgmap v139: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:58:07.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:07 smithi016 bash[21452]: cluster 2024-04-18T22:58:05.868579+0000 mgr.a (mgr.14152) 185 : cluster 0 pgmap v139: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:58:07.952 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:07 smithi055 bash[23198]: cluster 2024-04-18T22:58:05.868579+0000 mgr.a (mgr.14152) 185 : cluster 0 pgmap v139: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:58:09.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:09 smithi055 bash[23198]: cluster 2024-04-18T22:58:07.869040+0000 mgr.a (mgr.14152) 186 : cluster 0 pgmap v140: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:58:09.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:09 smithi055 bash[23198]: audit 2024-04-18T22:58:09.318684+0000 mon.a (mon.0) 405 : audit 1 from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-18T22:58:09.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:09 smithi055 bash[23198]: audit 2024-04-18T22:58:09.319168+0000 mon.b (mon.2) 9 : audit 1 from='osd.2 [v2:172.21.15.55:6800/4041071848,v1:172.21.15.55:6801/4041071848]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-18T22:58:09.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:09 smithi069 bash[23476]: cluster 2024-04-18T22:58:07.869040+0000 mgr.a (mgr.14152) 186 : cluster 0 pgmap v140: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:58:09.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:09 smithi069 bash[23476]: audit 2024-04-18T22:58:09.318684+0000 mon.a (mon.0) 405 : audit 1 from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-18T22:58:09.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:09 smithi069 bash[23476]: audit 2024-04-18T22:58:09.319168+0000 mon.b (mon.2) 9 : audit 1 from='osd.2 [v2:172.21.15.55:6800/4041071848,v1:172.21.15.55:6801/4041071848]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-18T22:58:09.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:09 smithi016 bash[21452]: cluster 2024-04-18T22:58:07.869040+0000 mgr.a (mgr.14152) 186 : cluster 0 pgmap v140: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:58:09.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:09 smithi016 bash[21452]: audit 2024-04-18T22:58:09.318684+0000 mon.a (mon.0) 405 : audit 1 from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-18T22:58:09.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:09 smithi016 bash[21452]: audit 2024-04-18T22:58:09.319168+0000 mon.b (mon.2) 9 : audit 1 from='osd.2 [v2:172.21.15.55:6800/4041071848,v1:172.21.15.55:6801/4041071848]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-18T22:58:10.702 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:10 smithi055 bash[23198]: audit 2024-04-18T22:58:09.468765+0000 mon.a (mon.0) 406 : audit 1 from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-04-18T22:58:10.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:10 smithi055 bash[23198]: cluster 2024-04-18T22:58:09.473382+0000 mon.a (mon.0) 407 : cluster 0 osdmap e16: 3 total, 2 up, 3 in 2024-04-18T22:58:10.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:10 smithi055 bash[23198]: audit 2024-04-18T22:58:09.473903+0000 mon.a (mon.0) 408 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-18T22:58:10.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:10 smithi055 bash[23198]: audit 2024-04-18T22:58:09.476311+0000 mon.a (mon.0) 409 : audit 1 from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi055", "root=default"]}]: dispatch 2024-04-18T22:58:10.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:10 smithi055 bash[23198]: audit 2024-04-18T22:58:09.476638+0000 mon.b (mon.2) 10 : audit 1 from='osd.2 [v2:172.21.15.55:6800/4041071848,v1:172.21.15.55:6801/4041071848]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi055", "root=default"]}]: dispatch 2024-04-18T22:58:10.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:10 smithi055 bash[23198]: audit 2024-04-18T22:58:10.036179+0000 mon.a (mon.0) 410 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:10.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:10 smithi055 bash[23198]: audit 2024-04-18T22:58:10.045225+0000 mon.a (mon.0) 411 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:10.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:10 smithi069 bash[23476]: audit 2024-04-18T22:58:09.468765+0000 mon.a (mon.0) 406 : audit 1 from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-04-18T22:58:10.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:10 smithi069 bash[23476]: cluster 2024-04-18T22:58:09.473382+0000 mon.a (mon.0) 407 : cluster 0 osdmap e16: 3 total, 2 up, 3 in 2024-04-18T22:58:10.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:10 smithi069 bash[23476]: audit 2024-04-18T22:58:09.473903+0000 mon.a (mon.0) 408 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-18T22:58:10.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:10 smithi069 bash[23476]: audit 2024-04-18T22:58:09.476311+0000 mon.a (mon.0) 409 : audit 1 from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi055", "root=default"]}]: dispatch 2024-04-18T22:58:10.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:10 smithi069 bash[23476]: audit 2024-04-18T22:58:09.476638+0000 mon.b (mon.2) 10 : audit 1 from='osd.2 [v2:172.21.15.55:6800/4041071848,v1:172.21.15.55:6801/4041071848]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi055", "root=default"]}]: dispatch 2024-04-18T22:58:10.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:10 smithi069 bash[23476]: audit 2024-04-18T22:58:10.036179+0000 mon.a (mon.0) 410 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:10.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:10 smithi069 bash[23476]: audit 2024-04-18T22:58:10.045225+0000 mon.a (mon.0) 411 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:10.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:10 smithi016 bash[21452]: audit 2024-04-18T22:58:09.468765+0000 mon.a (mon.0) 406 : audit 1 from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-04-18T22:58:10.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:10 smithi016 bash[21452]: cluster 2024-04-18T22:58:09.473382+0000 mon.a (mon.0) 407 : cluster 0 osdmap e16: 3 total, 2 up, 3 in 2024-04-18T22:58:10.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:10 smithi016 bash[21452]: audit 2024-04-18T22:58:09.473903+0000 mon.a (mon.0) 408 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-18T22:58:10.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:10 smithi016 bash[21452]: audit 2024-04-18T22:58:09.476311+0000 mon.a (mon.0) 409 : audit 1 from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi055", "root=default"]}]: dispatch 2024-04-18T22:58:10.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:10 smithi016 bash[21452]: audit 2024-04-18T22:58:09.476638+0000 mon.b (mon.2) 10 : audit 1 from='osd.2 [v2:172.21.15.55:6800/4041071848,v1:172.21.15.55:6801/4041071848]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi055", "root=default"]}]: dispatch 2024-04-18T22:58:10.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:10 smithi016 bash[21452]: audit 2024-04-18T22:58:10.036179+0000 mon.a (mon.0) 410 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:10.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:10 smithi016 bash[21452]: audit 2024-04-18T22:58:10.045225+0000 mon.a (mon.0) 411 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:11.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:11 smithi055 bash[23198]: cluster 2024-04-18T22:58:09.869507+0000 mgr.a (mgr.14152) 187 : cluster 0 pgmap v142: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:58:11.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:11 smithi055 bash[23198]: audit 2024-04-18T22:58:10.476752+0000 mon.a (mon.0) 412 : audit 1 from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi055", "root=default"]}]': finished 2024-04-18T22:58:11.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:11 smithi055 bash[23198]: cluster 2024-04-18T22:58:10.483230+0000 mon.a (mon.0) 413 : cluster 0 osdmap e17: 3 total, 2 up, 3 in 2024-04-18T22:58:11.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:11 smithi055 bash[23198]: audit 2024-04-18T22:58:10.483905+0000 mon.a (mon.0) 414 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-18T22:58:11.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:11 smithi055 bash[23198]: audit 2024-04-18T22:58:10.489047+0000 mon.a (mon.0) 415 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-18T22:58:11.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:11 smithi055 bash[23198]: audit 2024-04-18T22:58:10.725302+0000 mon.a (mon.0) 416 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:58:11.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:11 smithi055 bash[23198]: audit 2024-04-18T22:58:10.727219+0000 mon.a (mon.0) 417 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:58:11.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:11 smithi055 bash[23198]: audit 2024-04-18T22:58:10.737220+0000 mon.a (mon.0) 418 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:11.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:11 smithi069 bash[23476]: cluster 2024-04-18T22:58:09.869507+0000 mgr.a (mgr.14152) 187 : cluster 0 pgmap v142: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:58:11.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:11 smithi069 bash[23476]: audit 2024-04-18T22:58:10.476752+0000 mon.a (mon.0) 412 : audit 1 from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi055", "root=default"]}]': finished 2024-04-18T22:58:11.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:11 smithi069 bash[23476]: cluster 2024-04-18T22:58:10.483230+0000 mon.a (mon.0) 413 : cluster 0 osdmap e17: 3 total, 2 up, 3 in 2024-04-18T22:58:11.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:11 smithi069 bash[23476]: audit 2024-04-18T22:58:10.483905+0000 mon.a (mon.0) 414 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-18T22:58:11.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:11 smithi069 bash[23476]: audit 2024-04-18T22:58:10.489047+0000 mon.a (mon.0) 415 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-18T22:58:11.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:11 smithi069 bash[23476]: audit 2024-04-18T22:58:10.725302+0000 mon.a (mon.0) 416 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:58:11.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:11 smithi069 bash[23476]: audit 2024-04-18T22:58:10.727219+0000 mon.a (mon.0) 417 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:58:11.752 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:11 smithi069 bash[23476]: audit 2024-04-18T22:58:10.737220+0000 mon.a (mon.0) 418 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:11.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:11 smithi016 bash[21452]: cluster 2024-04-18T22:58:09.869507+0000 mgr.a (mgr.14152) 187 : cluster 0 pgmap v142: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-18T22:58:11.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:11 smithi016 bash[21452]: audit 2024-04-18T22:58:10.476752+0000 mon.a (mon.0) 412 : audit 1 from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi055", "root=default"]}]': finished 2024-04-18T22:58:11.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:11 smithi016 bash[21452]: cluster 2024-04-18T22:58:10.483230+0000 mon.a (mon.0) 413 : cluster 0 osdmap e17: 3 total, 2 up, 3 in 2024-04-18T22:58:11.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:11 smithi016 bash[21452]: audit 2024-04-18T22:58:10.483905+0000 mon.a (mon.0) 414 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-18T22:58:11.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:11 smithi016 bash[21452]: audit 2024-04-18T22:58:10.489047+0000 mon.a (mon.0) 415 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-18T22:58:11.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:11 smithi016 bash[21452]: audit 2024-04-18T22:58:10.725302+0000 mon.a (mon.0) 416 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:58:11.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:11 smithi016 bash[21452]: audit 2024-04-18T22:58:10.727219+0000 mon.a (mon.0) 417 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:58:11.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:11 smithi016 bash[21452]: audit 2024-04-18T22:58:10.737220+0000 mon.a (mon.0) 418 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:12.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:12 smithi055 bash[23198]: cluster 2024-04-18T22:58:10.287627+0000 osd.2 (osd.2) 1 : cluster 0 purged_snaps scrub starts 2024-04-18T22:58:12.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:12 smithi055 bash[23198]: cluster 2024-04-18T22:58:10.287748+0000 osd.2 (osd.2) 2 : cluster 0 purged_snaps scrub ok 2024-04-18T22:58:12.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:12 smithi055 bash[23198]: cluster 2024-04-18T22:58:11.484733+0000 mon.a (mon.0) 419 : cluster 1 osd.2 [v2:172.21.15.55:6800/4041071848,v1:172.21.15.55:6801/4041071848] boot 2024-04-18T22:58:12.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:12 smithi055 bash[23198]: cluster 2024-04-18T22:58:11.484824+0000 mon.a (mon.0) 420 : cluster 0 osdmap e18: 3 total, 3 up, 3 in 2024-04-18T22:58:12.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:12 smithi055 bash[23198]: audit 2024-04-18T22:58:11.485490+0000 mon.a (mon.0) 421 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-18T22:58:12.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:12 smithi055 bash[23198]: cluster 2024-04-18T22:58:11.870021+0000 mgr.a (mgr.14152) 188 : cluster 0 pgmap v145: 0 pgs: ; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:12.704 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:12 smithi055 bash[23198]: audit 2024-04-18T22:58:12.014911+0000 mon.a (mon.0) 422 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' 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-04-18T22:58:12.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:12 smithi069 bash[23476]: cluster 2024-04-18T22:58:10.287627+0000 osd.2 (osd.2) 1 : cluster 0 purged_snaps scrub starts 2024-04-18T22:58:12.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:12 smithi069 bash[23476]: cluster 2024-04-18T22:58:10.287748+0000 osd.2 (osd.2) 2 : cluster 0 purged_snaps scrub ok 2024-04-18T22:58:12.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:12 smithi069 bash[23476]: cluster 2024-04-18T22:58:11.484733+0000 mon.a (mon.0) 419 : cluster 1 osd.2 [v2:172.21.15.55:6800/4041071848,v1:172.21.15.55:6801/4041071848] boot 2024-04-18T22:58:12.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:12 smithi069 bash[23476]: cluster 2024-04-18T22:58:11.484824+0000 mon.a (mon.0) 420 : cluster 0 osdmap e18: 3 total, 3 up, 3 in 2024-04-18T22:58:12.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:12 smithi069 bash[23476]: audit 2024-04-18T22:58:11.485490+0000 mon.a (mon.0) 421 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-18T22:58:12.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:12 smithi069 bash[23476]: cluster 2024-04-18T22:58:11.870021+0000 mgr.a (mgr.14152) 188 : cluster 0 pgmap v145: 0 pgs: ; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:12.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:12 smithi069 bash[23476]: audit 2024-04-18T22:58:12.014911+0000 mon.a (mon.0) 422 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' 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-04-18T22:58:12.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:12 smithi016 bash[21452]: cluster 2024-04-18T22:58:10.287627+0000 osd.2 (osd.2) 1 : cluster 0 purged_snaps scrub starts 2024-04-18T22:58:12.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:12 smithi016 bash[21452]: cluster 2024-04-18T22:58:10.287748+0000 osd.2 (osd.2) 2 : cluster 0 purged_snaps scrub ok 2024-04-18T22:58:12.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:12 smithi016 bash[21452]: cluster 2024-04-18T22:58:11.484733+0000 mon.a (mon.0) 419 : cluster 1 osd.2 [v2:172.21.15.55:6800/4041071848,v1:172.21.15.55:6801/4041071848] boot 2024-04-18T22:58:12.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:12 smithi016 bash[21452]: cluster 2024-04-18T22:58:11.484824+0000 mon.a (mon.0) 420 : cluster 0 osdmap e18: 3 total, 3 up, 3 in 2024-04-18T22:58:12.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:12 smithi016 bash[21452]: audit 2024-04-18T22:58:11.485490+0000 mon.a (mon.0) 421 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-18T22:58:12.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:12 smithi016 bash[21452]: cluster 2024-04-18T22:58:11.870021+0000 mgr.a (mgr.14152) 188 : cluster 0 pgmap v145: 0 pgs: ; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:12.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:12 smithi016 bash[21452]: audit 2024-04-18T22:58:12.014911+0000 mon.a (mon.0) 422 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' 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-04-18T22:58:13.103 INFO:teuthology.orchestra.run.smithi055.stdout:Created osd(s) 2 on host 'smithi055' 2024-04-18T22:58:13.684 DEBUG:teuthology.orchestra.run.smithi055:osd.2> sudo journalctl -f -n 0 -u ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@osd.2.service 2024-04-18T22:58:13.688 INFO:tasks.cephadm:Deploying osd.3 on smithi055 with /dev/vg_nvme/lv_3... 2024-04-18T22:58:13.688 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-04-18T22:58:13.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:13 smithi069 bash[23476]: audit 2024-04-18T22:58:12.493736+0000 mon.a (mon.0) 423 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' 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-04-18T22:58:13.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:13 smithi069 bash[23476]: cluster 2024-04-18T22:58:12.499493+0000 mon.a (mon.0) 424 : cluster 0 osdmap e19: 3 total, 3 up, 3 in 2024-04-18T22:58:13.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:13 smithi069 bash[23476]: audit 2024-04-18T22:58:12.501546+0000 mon.a (mon.0) 425 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-04-18T22:58:13.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:13 smithi069 bash[23476]: audit 2024-04-18T22:58:13.061031+0000 mon.a (mon.0) 426 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:13.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:13 smithi069 bash[23476]: audit 2024-04-18T22:58:13.064389+0000 mon.a (mon.0) 427 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:58:13.751 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:13 smithi069 bash[23476]: audit 2024-04-18T22:58:13.069545+0000 mon.a (mon.0) 428 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:13.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:13 smithi016 bash[21452]: audit 2024-04-18T22:58:12.493736+0000 mon.a (mon.0) 423 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' 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-04-18T22:58:13.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:13 smithi016 bash[21452]: cluster 2024-04-18T22:58:12.499493+0000 mon.a (mon.0) 424 : cluster 0 osdmap e19: 3 total, 3 up, 3 in 2024-04-18T22:58:13.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:13 smithi016 bash[21452]: audit 2024-04-18T22:58:12.501546+0000 mon.a (mon.0) 425 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-04-18T22:58:13.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:13 smithi016 bash[21452]: audit 2024-04-18T22:58:13.061031+0000 mon.a (mon.0) 426 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:13.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:13 smithi016 bash[21452]: audit 2024-04-18T22:58:13.064389+0000 mon.a (mon.0) 427 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:58:13.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:13 smithi016 bash[21452]: audit 2024-04-18T22:58:13.069545+0000 mon.a (mon.0) 428 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:13.952 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:13 smithi055 bash[23198]: audit 2024-04-18T22:58:12.493736+0000 mon.a (mon.0) 423 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' 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-04-18T22:58:13.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:13 smithi055 bash[23198]: cluster 2024-04-18T22:58:12.499493+0000 mon.a (mon.0) 424 : cluster 0 osdmap e19: 3 total, 3 up, 3 in 2024-04-18T22:58:13.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:13 smithi055 bash[23198]: audit 2024-04-18T22:58:12.501546+0000 mon.a (mon.0) 425 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-04-18T22:58:13.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:13 smithi055 bash[23198]: audit 2024-04-18T22:58:13.061031+0000 mon.a (mon.0) 426 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:13.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:13 smithi055 bash[23198]: audit 2024-04-18T22:58:13.064389+0000 mon.a (mon.0) 427 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:58:13.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:13 smithi055 bash[23198]: audit 2024-04-18T22:58:13.069545+0000 mon.a (mon.0) 428 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:14.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:14 smithi016 bash[21452]: audit 2024-04-18T22:58:13.504879+0000 mon.a (mon.0) 429 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-04-18T22:58:14.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:14 smithi016 bash[21452]: cluster 2024-04-18T22:58:13.509583+0000 mon.a (mon.0) 430 : cluster 0 osdmap e20: 3 total, 3 up, 3 in 2024-04-18T22:58:14.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:14 smithi016 bash[21452]: cluster 2024-04-18T22:58:13.870588+0000 mgr.a (mgr.14152) 189 : cluster 0 pgmap v148: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:14.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:14 smithi055 bash[23198]: audit 2024-04-18T22:58:13.504879+0000 mon.a (mon.0) 429 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-04-18T22:58:14.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:14 smithi055 bash[23198]: cluster 2024-04-18T22:58:13.509583+0000 mon.a (mon.0) 430 : cluster 0 osdmap e20: 3 total, 3 up, 3 in 2024-04-18T22:58:14.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:14 smithi055 bash[23198]: cluster 2024-04-18T22:58:13.870588+0000 mgr.a (mgr.14152) 189 : cluster 0 pgmap v148: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:15.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:14 smithi069 bash[23476]: audit 2024-04-18T22:58:13.504879+0000 mon.a (mon.0) 429 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-04-18T22:58:15.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:14 smithi069 bash[23476]: cluster 2024-04-18T22:58:13.509583+0000 mon.a (mon.0) 430 : cluster 0 osdmap e20: 3 total, 3 up, 3 in 2024-04-18T22:58:15.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:14 smithi069 bash[23476]: cluster 2024-04-18T22:58:13.870588+0000 mgr.a (mgr.14152) 189 : cluster 0 pgmap v148: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:15.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:15 smithi016 bash[21452]: cluster 2024-04-18T22:58:14.529709+0000 mon.a (mon.0) 431 : cluster 0 mgrmap e15: a(active, since 4m), standbys: b 2024-04-18T22:58:15.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:15 smithi016 bash[21452]: cluster 2024-04-18T22:58:14.529794+0000 mon.a (mon.0) 432 : cluster 0 osdmap e21: 3 total, 3 up, 3 in 2024-04-18T22:58:15.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:15 smithi016 bash[21452]: audit 2024-04-18T22:58:14.828579+0000 mon.a (mon.0) 433 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:15.952 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:15 smithi055 bash[23198]: cluster 2024-04-18T22:58:14.529709+0000 mon.a (mon.0) 431 : cluster 0 mgrmap e15: a(active, since 4m), standbys: b 2024-04-18T22:58:15.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:15 smithi055 bash[23198]: cluster 2024-04-18T22:58:14.529794+0000 mon.a (mon.0) 432 : cluster 0 osdmap e21: 3 total, 3 up, 3 in 2024-04-18T22:58:15.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:15 smithi055 bash[23198]: audit 2024-04-18T22:58:14.828579+0000 mon.a (mon.0) 433 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:16.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:15 smithi069 bash[23476]: cluster 2024-04-18T22:58:14.529709+0000 mon.a (mon.0) 431 : cluster 0 mgrmap e15: a(active, since 4m), standbys: b 2024-04-18T22:58:16.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:15 smithi069 bash[23476]: cluster 2024-04-18T22:58:14.529794+0000 mon.a (mon.0) 432 : cluster 0 osdmap e21: 3 total, 3 up, 3 in 2024-04-18T22:58:16.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:15 smithi069 bash[23476]: audit 2024-04-18T22:58:14.828579+0000 mon.a (mon.0) 433 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:16.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:16 smithi016 bash[21452]: cluster 2024-04-18T22:58:15.871156+0000 mgr.a (mgr.14152) 190 : cluster 0 pgmap v150: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:16.952 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:16 smithi055 bash[23198]: cluster 2024-04-18T22:58:15.871156+0000 mgr.a (mgr.14152) 190 : cluster 0 pgmap v150: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:17.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:16 smithi069 bash[23476]: cluster 2024-04-18T22:58:15.871156+0000 mgr.a (mgr.14152) 190 : cluster 0 pgmap v150: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:18.057 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.b/config 2024-04-18T22:58:18.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:18 smithi016 bash[21452]: audit 2024-04-18T22:58:16.766442+0000 mon.a (mon.0) 434 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:18.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:18 smithi016 bash[21452]: audit 2024-04-18T22:58:16.769455+0000 mon.a (mon.0) 435 : audit 1 from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-18T22:58:18.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:18 smithi016 bash[21452]: audit 2024-04-18T22:58:17.688919+0000 mon.a (mon.0) 436 : audit 1 from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-18T22:58:18.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:18 smithi016 bash[21452]: audit 2024-04-18T22:58:17.690592+0000 mon.a (mon.0) 437 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-18T22:58:18.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:18 smithi016 bash[21452]: audit 2024-04-18T22:58:17.691083+0000 mon.a (mon.0) 438 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:58:18.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:18 smithi016 bash[21452]: audit 2024-04-18T22:58:17.691584+0000 mon.a (mon.0) 439 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-18T22:58:18.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:18 smithi016 bash[21452]: audit 2024-04-18T22:58:17.694662+0000 mon.a (mon.0) 440 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-18T22:58:18.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:18 smithi016 bash[21452]: audit 2024-04-18T22:58:17.695148+0000 mon.a (mon.0) 441 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:58:18.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:18 smithi016 bash[21452]: audit 2024-04-18T22:58:17.695599+0000 mon.a (mon.0) 442 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-18T22:58:18.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:18 smithi055 bash[23198]: audit 2024-04-18T22:58:16.766442+0000 mon.a (mon.0) 434 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:18.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:18 smithi055 bash[23198]: audit 2024-04-18T22:58:16.769455+0000 mon.a (mon.0) 435 : audit 1 from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-18T22:58:18.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:18 smithi055 bash[23198]: audit 2024-04-18T22:58:17.688919+0000 mon.a (mon.0) 436 : audit 1 from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-18T22:58:18.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:18 smithi055 bash[23198]: audit 2024-04-18T22:58:17.690592+0000 mon.a (mon.0) 437 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-18T22:58:18.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:18 smithi055 bash[23198]: audit 2024-04-18T22:58:17.691083+0000 mon.a (mon.0) 438 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:58:18.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:18 smithi055 bash[23198]: audit 2024-04-18T22:58:17.691584+0000 mon.a (mon.0) 439 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-18T22:58:18.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:18 smithi055 bash[23198]: audit 2024-04-18T22:58:17.694662+0000 mon.a (mon.0) 440 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-18T22:58:18.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:18 smithi055 bash[23198]: audit 2024-04-18T22:58:17.695148+0000 mon.a (mon.0) 441 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:58:18.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:18 smithi055 bash[23198]: audit 2024-04-18T22:58:17.695599+0000 mon.a (mon.0) 442 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-18T22:58:19.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:18 smithi069 bash[23476]: audit 2024-04-18T22:58:16.766442+0000 mon.a (mon.0) 434 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:19.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:18 smithi069 bash[23476]: audit 2024-04-18T22:58:16.769455+0000 mon.a (mon.0) 435 : audit 1 from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-18T22:58:19.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:18 smithi069 bash[23476]: audit 2024-04-18T22:58:17.688919+0000 mon.a (mon.0) 436 : audit 1 from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-18T22:58:19.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:18 smithi069 bash[23476]: audit 2024-04-18T22:58:17.690592+0000 mon.a (mon.0) 437 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-18T22:58:19.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:18 smithi069 bash[23476]: audit 2024-04-18T22:58:17.691083+0000 mon.a (mon.0) 438 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:58:19.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:18 smithi069 bash[23476]: audit 2024-04-18T22:58:17.691584+0000 mon.a (mon.0) 439 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-18T22:58:19.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:18 smithi069 bash[23476]: audit 2024-04-18T22:58:17.694662+0000 mon.a (mon.0) 440 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-18T22:58:19.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:18 smithi069 bash[23476]: audit 2024-04-18T22:58:17.695148+0000 mon.a (mon.0) 441 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:58:19.002 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:18 smithi069 bash[23476]: audit 2024-04-18T22:58:17.695599+0000 mon.a (mon.0) 442 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-18T22:58:19.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:19 smithi016 bash[21452]: audit 2024-04-18T22:58:17.695741+0000 mon.c (mon.1) 4 : audit 1 from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-18T22:58:19.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:19 smithi016 bash[21452]: cluster 2024-04-18T22:58:17.871651+0000 mgr.a (mgr.14152) 191 : cluster 0 pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:19.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:19 smithi016 bash[21452]: audit 2024-04-18T22:58:18.601497+0000 mon.c (mon.1) 5 : audit 1 from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-18T22:58:19.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:19 smithi016 bash[21452]: audit 2024-04-18T22:58:18.640782+0000 mon.a (mon.0) 443 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:19.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:19 smithi016 bash[21452]: audit 2024-04-18T22:58:18.643969+0000 mon.a (mon.0) 444 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-18T22:58:19.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:19 smithi016 bash[21452]: audit 2024-04-18T22:58:18.644336+0000 mon.a (mon.0) 445 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:58:19.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:19 smithi016 bash[21452]: audit 2024-04-18T22:58:18.644793+0000 mon.a (mon.0) 446 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-18T22:58:19.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:19 smithi016 bash[21452]: audit 2024-04-18T22:58:18.644815+0000 mon.b (mon.2) 11 : audit 1 from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-18T22:58:19.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:19 smithi016 bash[21452]: audit 2024-04-18T22:58:19.555695+0000 mon.b (mon.2) 12 : audit 1 from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-18T22:58:19.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:19 smithi055 bash[23198]: audit 2024-04-18T22:58:17.695741+0000 mon.c (mon.1) 4 : audit 1 from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-18T22:58:19.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:19 smithi055 bash[23198]: cluster 2024-04-18T22:58:17.871651+0000 mgr.a (mgr.14152) 191 : cluster 0 pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:19.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:19 smithi055 bash[23198]: audit 2024-04-18T22:58:18.601497+0000 mon.c (mon.1) 5 : audit 1 from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-18T22:58:19.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:19 smithi055 bash[23198]: audit 2024-04-18T22:58:18.640782+0000 mon.a (mon.0) 443 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:19.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:19 smithi055 bash[23198]: audit 2024-04-18T22:58:18.643969+0000 mon.a (mon.0) 444 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-18T22:58:19.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:19 smithi055 bash[23198]: audit 2024-04-18T22:58:18.644336+0000 mon.a (mon.0) 445 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:58:19.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:19 smithi055 bash[23198]: audit 2024-04-18T22:58:18.644793+0000 mon.a (mon.0) 446 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-18T22:58:19.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:19 smithi055 bash[23198]: audit 2024-04-18T22:58:18.644815+0000 mon.b (mon.2) 11 : audit 1 from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-18T22:58:19.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:19 smithi055 bash[23198]: audit 2024-04-18T22:58:19.555695+0000 mon.b (mon.2) 12 : audit 1 from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-18T22:58:20.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:19 smithi069 bash[23476]: audit 2024-04-18T22:58:17.695741+0000 mon.c (mon.1) 4 : audit 1 from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-18T22:58:20.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:19 smithi069 bash[23476]: cluster 2024-04-18T22:58:17.871651+0000 mgr.a (mgr.14152) 191 : cluster 0 pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:20.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:19 smithi069 bash[23476]: audit 2024-04-18T22:58:18.601497+0000 mon.c (mon.1) 5 : audit 1 from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-18T22:58:20.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:19 smithi069 bash[23476]: audit 2024-04-18T22:58:18.640782+0000 mon.a (mon.0) 443 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:20.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:19 smithi069 bash[23476]: audit 2024-04-18T22:58:18.643969+0000 mon.a (mon.0) 444 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-18T22:58:20.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:19 smithi069 bash[23476]: audit 2024-04-18T22:58:18.644336+0000 mon.a (mon.0) 445 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T22:58:20.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:19 smithi069 bash[23476]: audit 2024-04-18T22:58:18.644793+0000 mon.a (mon.0) 446 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-18T22:58:20.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:19 smithi069 bash[23476]: audit 2024-04-18T22:58:18.644815+0000 mon.b (mon.2) 11 : audit 1 from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-18T22:58:20.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:19 smithi069 bash[23476]: audit 2024-04-18T22:58:19.555695+0000 mon.b (mon.2) 12 : audit 1 from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-18T22:58:20.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:20 smithi016 bash[21452]: cluster 2024-04-18T22:58:19.872191+0000 mgr.a (mgr.14152) 192 : cluster 0 pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:20.952 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:20 smithi055 bash[23198]: cluster 2024-04-18T22:58:19.872191+0000 mgr.a (mgr.14152) 192 : cluster 0 pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:21.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:20 smithi069 bash[23476]: cluster 2024-04-18T22:58:19.872191+0000 mgr.a (mgr.14152) 192 : cluster 0 pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:21.949 INFO:teuthology.orchestra.run.smithi055.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-04-18T22:58:21.949 INFO:teuthology.orchestra.run.smithi055.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-04-18T22:58:21.949 INFO:teuthology.orchestra.run.smithi055.stderr: stderr: 10+0 records in 2024-04-18T22:58:21.949 INFO:teuthology.orchestra.run.smithi055.stderr:10+0 records out 2024-04-18T22:58:21.949 INFO:teuthology.orchestra.run.smithi055.stderr:10485760 bytes (10 MB, 10 MiB) copied, 0.0156123 s, 672 MB/s 2024-04-18T22:58:21.949 INFO:teuthology.orchestra.run.smithi055.stderr:--> Zapping successful for: 2024-04-18T22:58:22.574 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph orch daemon add osd smithi055:vg_nvme/lv_3 2024-04-18T22:58:23.202 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:22 smithi055 bash[23198]: cluster 2024-04-18T22:58:21.872706+0000 mgr.a (mgr.14152) 193 : cluster 0 pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail; 6.7 KiB/s rd, 326 KiB/s wr, 21 op/s 2024-04-18T22:58:23.250 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:22 smithi069 bash[23476]: cluster 2024-04-18T22:58:21.872706+0000 mgr.a (mgr.14152) 193 : cluster 0 pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail; 6.7 KiB/s rd, 326 KiB/s wr, 21 op/s 2024-04-18T22:58:23.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:22 smithi016 bash[21452]: cluster 2024-04-18T22:58:21.872706+0000 mgr.a (mgr.14152) 193 : cluster 0 pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail; 6.7 KiB/s rd, 326 KiB/s wr, 21 op/s 2024-04-18T22:58:24.251 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:23 smithi069 bash[23476]: cephadm 2024-04-18T22:58:22.968155+0000 mgr.a (mgr.14152) 194 : cephadm 1 Detected new or changed devices on smithi055 2024-04-18T22:58:24.251 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:23 smithi069 bash[23476]: audit 2024-04-18T22:58:22.976853+0000 mon.a (mon.0) 447 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:24.251 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:23 smithi069 bash[23476]: audit 2024-04-18T22:58:22.985771+0000 mon.a (mon.0) 448 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:24.251 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:23 smithi069 bash[23476]: audit 2024-04-18T22:58:22.987959+0000 mon.a (mon.0) 449 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-18T22:58:24.251 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:23 smithi069 bash[23476]: cephadm 2024-04-18T22:58:22.989591+0000 mgr.a (mgr.14152) 195 : cephadm 1 Adjusting osd_memory_target on smithi055 to 17269M 2024-04-18T22:58:24.251 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:23 smithi069 bash[23476]: audit 2024-04-18T22:58:22.995951+0000 mon.a (mon.0) 450 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:24.251 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:23 smithi069 bash[23476]: audit 2024-04-18T22:58:22.999974+0000 mon.a (mon.0) 451 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:58:24.251 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:23 smithi069 bash[23476]: audit 2024-04-18T22:58:23.001886+0000 mon.a (mon.0) 452 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:58:24.251 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:23 smithi069 bash[23476]: audit 2024-04-18T22:58:23.011728+0000 mon.a (mon.0) 453 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:24.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:23 smithi016 bash[21452]: cephadm 2024-04-18T22:58:22.968155+0000 mgr.a (mgr.14152) 194 : cephadm 1 Detected new or changed devices on smithi055 2024-04-18T22:58:24.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:23 smithi016 bash[21452]: audit 2024-04-18T22:58:22.976853+0000 mon.a (mon.0) 447 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:24.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:23 smithi016 bash[21452]: audit 2024-04-18T22:58:22.985771+0000 mon.a (mon.0) 448 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:24.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:23 smithi016 bash[21452]: audit 2024-04-18T22:58:22.987959+0000 mon.a (mon.0) 449 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-18T22:58:24.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:23 smithi016 bash[21452]: cephadm 2024-04-18T22:58:22.989591+0000 mgr.a (mgr.14152) 195 : cephadm 1 Adjusting osd_memory_target on smithi055 to 17269M 2024-04-18T22:58:24.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:23 smithi016 bash[21452]: audit 2024-04-18T22:58:22.995951+0000 mon.a (mon.0) 450 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:24.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:23 smithi016 bash[21452]: audit 2024-04-18T22:58:22.999974+0000 mon.a (mon.0) 451 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:58:24.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:23 smithi016 bash[21452]: audit 2024-04-18T22:58:23.001886+0000 mon.a (mon.0) 452 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:58:24.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:23 smithi016 bash[21452]: audit 2024-04-18T22:58:23.011728+0000 mon.a (mon.0) 453 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:24.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:23 smithi055 bash[23198]: cephadm 2024-04-18T22:58:22.968155+0000 mgr.a (mgr.14152) 194 : cephadm 1 Detected new or changed devices on smithi055 2024-04-18T22:58:24.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:23 smithi055 bash[23198]: audit 2024-04-18T22:58:22.976853+0000 mon.a (mon.0) 447 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:24.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:23 smithi055 bash[23198]: audit 2024-04-18T22:58:22.985771+0000 mon.a (mon.0) 448 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:24.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:23 smithi055 bash[23198]: audit 2024-04-18T22:58:22.987959+0000 mon.a (mon.0) 449 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-18T22:58:24.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:23 smithi055 bash[23198]: cephadm 2024-04-18T22:58:22.989591+0000 mgr.a (mgr.14152) 195 : cephadm 1 Adjusting osd_memory_target on smithi055 to 17269M 2024-04-18T22:58:24.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:23 smithi055 bash[23198]: audit 2024-04-18T22:58:22.995951+0000 mon.a (mon.0) 450 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:24.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:23 smithi055 bash[23198]: audit 2024-04-18T22:58:22.999974+0000 mon.a (mon.0) 451 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:58:24.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:23 smithi055 bash[23198]: audit 2024-04-18T22:58:23.001886+0000 mon.a (mon.0) 452 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:58:24.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:23 smithi055 bash[23198]: audit 2024-04-18T22:58:23.011728+0000 mon.a (mon.0) 453 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:25.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:25 smithi016 bash[21452]: cluster 2024-04-18T22:58:23.873236+0000 mgr.a (mgr.14152) 196 : cluster 0 pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail; 4.5 KiB/s rd, 218 KiB/s wr, 14 op/s 2024-04-18T22:58:25.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:25 smithi055 bash[23198]: cluster 2024-04-18T22:58:23.873236+0000 mgr.a (mgr.14152) 196 : cluster 0 pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail; 4.5 KiB/s rd, 218 KiB/s wr, 14 op/s 2024-04-18T22:58:25.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:25 smithi069 bash[23476]: cluster 2024-04-18T22:58:23.873236+0000 mgr.a (mgr.14152) 196 : cluster 0 pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail; 4.5 KiB/s rd, 218 KiB/s wr, 14 op/s 2024-04-18T22:58:27.295 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.b/config 2024-04-18T22:58:27.318 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:27 smithi055 bash[23198]: cluster 2024-04-18T22:58:25.873806+0000 mgr.a (mgr.14152) 197 : cluster 0 pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 3.4 KiB/s rd, 163 KiB/s wr, 10 op/s 2024-04-18T22:58:27.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:27 smithi016 bash[21452]: cluster 2024-04-18T22:58:25.873806+0000 mgr.a (mgr.14152) 197 : cluster 0 pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 3.4 KiB/s rd, 163 KiB/s wr, 10 op/s 2024-04-18T22:58:27.501 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:27 smithi069 bash[23476]: cluster 2024-04-18T22:58:25.873806+0000 mgr.a (mgr.14152) 197 : cluster 0 pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 3.4 KiB/s rd, 163 KiB/s wr, 10 op/s 2024-04-18T22:58:29.202 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:29 smithi055 bash[23198]: cluster 2024-04-18T22:58:27.874383+0000 mgr.a (mgr.14152) 198 : cluster 0 pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 2.7 KiB/s rd, 131 KiB/s wr, 8 op/s 2024-04-18T22:58:29.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:29 smithi016 bash[21452]: cluster 2024-04-18T22:58:27.874383+0000 mgr.a (mgr.14152) 198 : cluster 0 pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 2.7 KiB/s rd, 131 KiB/s wr, 8 op/s 2024-04-18T22:58:29.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:29 smithi069 bash[23476]: cluster 2024-04-18T22:58:27.874383+0000 mgr.a (mgr.14152) 198 : cluster 0 pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 2.7 KiB/s rd, 131 KiB/s wr, 8 op/s 2024-04-18T22:58:30.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:30 smithi016 bash[21452]: audit 2024-04-18T22:58:29.916448+0000 mon.a (mon.0) 454 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-18T22:58:30.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:30 smithi016 bash[21452]: audit 2024-04-18T22:58:29.923418+0000 mon.a (mon.0) 455 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-18T22:58:30.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:30 smithi016 bash[21452]: audit 2024-04-18T22:58:29.925555+0000 mon.a (mon.0) 456 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:58:30.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:30 smithi055 bash[23198]: audit 2024-04-18T22:58:29.916448+0000 mon.a (mon.0) 454 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-18T22:58:30.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:30 smithi055 bash[23198]: audit 2024-04-18T22:58:29.923418+0000 mon.a (mon.0) 455 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-18T22:58:30.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:30 smithi055 bash[23198]: audit 2024-04-18T22:58:29.925555+0000 mon.a (mon.0) 456 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:58:30.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:30 smithi069 bash[23476]: audit 2024-04-18T22:58:29.916448+0000 mon.a (mon.0) 454 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-18T22:58:30.501 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:30 smithi069 bash[23476]: audit 2024-04-18T22:58:29.923418+0000 mon.a (mon.0) 455 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-18T22:58:30.501 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:30 smithi069 bash[23476]: audit 2024-04-18T22:58:29.925555+0000 mon.a (mon.0) 456 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:58:31.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:31 smithi016 bash[21452]: cluster 2024-04-18T22:58:29.874922+0000 mgr.a (mgr.14152) 199 : cluster 0 pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-04-18T22:58:31.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:31 smithi016 bash[21452]: audit 2024-04-18T22:58:29.909192+0000 mgr.a (mgr.14152) 200 : audit 0 from='client.24176 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi055:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T22:58:31.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:31 smithi055 bash[23198]: cluster 2024-04-18T22:58:29.874922+0000 mgr.a (mgr.14152) 199 : cluster 0 pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-04-18T22:58:31.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:31 smithi055 bash[23198]: audit 2024-04-18T22:58:29.909192+0000 mgr.a (mgr.14152) 200 : audit 0 from='client.24176 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi055:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T22:58:31.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:31 smithi069 bash[23476]: cluster 2024-04-18T22:58:29.874922+0000 mgr.a (mgr.14152) 199 : cluster 0 pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-04-18T22:58:31.501 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:31 smithi069 bash[23476]: audit 2024-04-18T22:58:29.909192+0000 mgr.a (mgr.14152) 200 : audit 0 from='client.24176 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi055:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T22:58:33.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:33 smithi016 bash[21452]: cluster 2024-04-18T22:58:31.875512+0000 mgr.a (mgr.14152) 201 : cluster 0 pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-04-18T22:58:33.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:33 smithi055 bash[23198]: cluster 2024-04-18T22:58:31.875512+0000 mgr.a (mgr.14152) 201 : cluster 0 pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-04-18T22:58:33.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:33 smithi069 bash[23476]: cluster 2024-04-18T22:58:31.875512+0000 mgr.a (mgr.14152) 201 : cluster 0 pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-04-18T22:58:35.202 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:35 smithi055 bash[23198]: cluster 2024-04-18T22:58:33.876053+0000 mgr.a (mgr.14152) 202 : cluster 0 pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:35.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:35 smithi016 bash[21452]: cluster 2024-04-18T22:58:33.876053+0000 mgr.a (mgr.14152) 202 : cluster 0 pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:35.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:35 smithi069 bash[23476]: cluster 2024-04-18T22:58:33.876053+0000 mgr.a (mgr.14152) 202 : cluster 0 pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:37.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:37 smithi016 bash[21452]: cluster 2024-04-18T22:58:35.876579+0000 mgr.a (mgr.14152) 203 : cluster 0 pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:37.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:37 smithi055 bash[23198]: cluster 2024-04-18T22:58:35.876579+0000 mgr.a (mgr.14152) 203 : cluster 0 pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:37.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:37 smithi069 bash[23476]: cluster 2024-04-18T22:58:35.876579+0000 mgr.a (mgr.14152) 203 : cluster 0 pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:39.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:39 smithi016 bash[21452]: cluster 2024-04-18T22:58:37.877204+0000 mgr.a (mgr.14152) 204 : cluster 0 pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:39.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:39 smithi016 bash[21452]: audit 2024-04-18T22:58:38.055723+0000 mon.a (mon.0) 457 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a4b1faf4-bf38-45ca-9a76-dd25cb3f10bf"}]: dispatch 2024-04-18T22:58:39.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:39 smithi016 bash[21452]: audit 2024-04-18T22:58:38.056395+0000 mon.b (mon.2) 13 : audit 1 from='client.? 172.21.15.55:0/362636323' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a4b1faf4-bf38-45ca-9a76-dd25cb3f10bf"}]: dispatch 2024-04-18T22:58:39.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:39 smithi016 bash[21452]: audit 2024-04-18T22:58:38.059274+0000 mon.a (mon.0) 458 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a4b1faf4-bf38-45ca-9a76-dd25cb3f10bf"}]': finished 2024-04-18T22:58:39.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:39 smithi016 bash[21452]: cluster 2024-04-18T22:58:38.064020+0000 mon.a (mon.0) 459 : cluster 0 osdmap e22: 4 total, 3 up, 4 in 2024-04-18T22:58:39.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:39 smithi016 bash[21452]: audit 2024-04-18T22:58:38.064516+0000 mon.a (mon.0) 460 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-18T22:58:39.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:39 smithi016 bash[21452]: audit 2024-04-18T22:58:38.772907+0000 mon.b (mon.2) 14 : audit 0 from='client.? 172.21.15.55:0/507695607' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-18T22:58:39.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:39 smithi055 bash[23198]: cluster 2024-04-18T22:58:37.877204+0000 mgr.a (mgr.14152) 204 : cluster 0 pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:39.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:39 smithi055 bash[23198]: audit 2024-04-18T22:58:38.055723+0000 mon.a (mon.0) 457 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a4b1faf4-bf38-45ca-9a76-dd25cb3f10bf"}]: dispatch 2024-04-18T22:58:39.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:39 smithi055 bash[23198]: audit 2024-04-18T22:58:38.056395+0000 mon.b (mon.2) 13 : audit 1 from='client.? 172.21.15.55:0/362636323' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a4b1faf4-bf38-45ca-9a76-dd25cb3f10bf"}]: dispatch 2024-04-18T22:58:39.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:39 smithi055 bash[23198]: audit 2024-04-18T22:58:38.059274+0000 mon.a (mon.0) 458 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a4b1faf4-bf38-45ca-9a76-dd25cb3f10bf"}]': finished 2024-04-18T22:58:39.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:39 smithi055 bash[23198]: cluster 2024-04-18T22:58:38.064020+0000 mon.a (mon.0) 459 : cluster 0 osdmap e22: 4 total, 3 up, 4 in 2024-04-18T22:58:39.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:39 smithi055 bash[23198]: audit 2024-04-18T22:58:38.064516+0000 mon.a (mon.0) 460 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-18T22:58:39.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:39 smithi055 bash[23198]: audit 2024-04-18T22:58:38.772907+0000 mon.b (mon.2) 14 : audit 0 from='client.? 172.21.15.55:0/507695607' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-18T22:58:39.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:39 smithi069 bash[23476]: cluster 2024-04-18T22:58:37.877204+0000 mgr.a (mgr.14152) 204 : cluster 0 pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:39.501 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:39 smithi069 bash[23476]: audit 2024-04-18T22:58:38.055723+0000 mon.a (mon.0) 457 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a4b1faf4-bf38-45ca-9a76-dd25cb3f10bf"}]: dispatch 2024-04-18T22:58:39.501 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:39 smithi069 bash[23476]: audit 2024-04-18T22:58:38.056395+0000 mon.b (mon.2) 13 : audit 1 from='client.? 172.21.15.55:0/362636323' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a4b1faf4-bf38-45ca-9a76-dd25cb3f10bf"}]: dispatch 2024-04-18T22:58:39.501 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:39 smithi069 bash[23476]: audit 2024-04-18T22:58:38.059274+0000 mon.a (mon.0) 458 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a4b1faf4-bf38-45ca-9a76-dd25cb3f10bf"}]': finished 2024-04-18T22:58:39.501 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:39 smithi069 bash[23476]: cluster 2024-04-18T22:58:38.064020+0000 mon.a (mon.0) 459 : cluster 0 osdmap e22: 4 total, 3 up, 4 in 2024-04-18T22:58:39.501 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:39 smithi069 bash[23476]: audit 2024-04-18T22:58:38.064516+0000 mon.a (mon.0) 460 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-18T22:58:39.501 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:39 smithi069 bash[23476]: audit 2024-04-18T22:58:38.772907+0000 mon.b (mon.2) 14 : audit 0 from='client.? 172.21.15.55:0/507695607' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-18T22:58:41.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:41 smithi016 bash[21452]: cluster 2024-04-18T22:58:39.877748+0000 mgr.a (mgr.14152) 205 : cluster 0 pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:41.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:41 smithi055 bash[23198]: cluster 2024-04-18T22:58:39.877748+0000 mgr.a (mgr.14152) 205 : cluster 0 pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:41.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:41 smithi069 bash[23476]: cluster 2024-04-18T22:58:39.877748+0000 mgr.a (mgr.14152) 205 : cluster 0 pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:43.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:43 smithi016 bash[21452]: cluster 2024-04-18T22:58:41.878324+0000 mgr.a (mgr.14152) 206 : cluster 0 pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:43.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:43 smithi055 bash[23198]: cluster 2024-04-18T22:58:41.878324+0000 mgr.a (mgr.14152) 206 : cluster 0 pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:43.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:43 smithi069 bash[23476]: cluster 2024-04-18T22:58:41.878324+0000 mgr.a (mgr.14152) 206 : cluster 0 pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:45.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:45 smithi016 bash[21452]: cluster 2024-04-18T22:58:43.878862+0000 mgr.a (mgr.14152) 207 : cluster 0 pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:45.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:45 smithi055 bash[23198]: cluster 2024-04-18T22:58:43.878862+0000 mgr.a (mgr.14152) 207 : cluster 0 pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:45.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:45 smithi069 bash[23476]: cluster 2024-04-18T22:58:43.878862+0000 mgr.a (mgr.14152) 207 : cluster 0 pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:47.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:47 smithi016 bash[21452]: cluster 2024-04-18T22:58:45.879399+0000 mgr.a (mgr.14152) 208 : cluster 0 pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:47.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:47 smithi055 bash[23198]: cluster 2024-04-18T22:58:45.879399+0000 mgr.a (mgr.14152) 208 : cluster 0 pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:47.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:47 smithi069 bash[23476]: cluster 2024-04-18T22:58:45.879399+0000 mgr.a (mgr.14152) 208 : cluster 0 pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:49.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:49 smithi016 bash[21452]: cluster 2024-04-18T22:58:47.879964+0000 mgr.a (mgr.14152) 209 : cluster 0 pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:49.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:49 smithi055 bash[23198]: cluster 2024-04-18T22:58:47.879964+0000 mgr.a (mgr.14152) 209 : cluster 0 pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:49.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:49 smithi069 bash[23476]: cluster 2024-04-18T22:58:47.879964+0000 mgr.a (mgr.14152) 209 : cluster 0 pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:51.352 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:51 smithi055 bash[23198]: cluster 2024-04-18T22:58:49.880488+0000 mgr.a (mgr.14152) 210 : cluster 0 pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:51.352 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:51 smithi055 bash[23198]: audit 2024-04-18T22:58:50.163274+0000 mon.a (mon.0) 461 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-04-18T22:58:51.352 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:51 smithi055 bash[23198]: audit 2024-04-18T22:58:50.165104+0000 mon.a (mon.0) 462 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:58:51.352 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:51 smithi055 bash[23198]: cephadm 2024-04-18T22:58:50.166721+0000 mgr.a (mgr.14152) 211 : cephadm 1 Deploying daemon osd.3 on smithi055 2024-04-18T22:58:51.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:51 smithi016 bash[21452]: cluster 2024-04-18T22:58:49.880488+0000 mgr.a (mgr.14152) 210 : cluster 0 pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:51.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:51 smithi016 bash[21452]: audit 2024-04-18T22:58:50.163274+0000 mon.a (mon.0) 461 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-04-18T22:58:51.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:51 smithi016 bash[21452]: audit 2024-04-18T22:58:50.165104+0000 mon.a (mon.0) 462 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:58:51.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:51 smithi016 bash[21452]: cephadm 2024-04-18T22:58:50.166721+0000 mgr.a (mgr.14152) 211 : cephadm 1 Deploying daemon osd.3 on smithi055 2024-04-18T22:58:51.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:51 smithi069 bash[23476]: cluster 2024-04-18T22:58:49.880488+0000 mgr.a (mgr.14152) 210 : cluster 0 pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:51.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:51 smithi069 bash[23476]: audit 2024-04-18T22:58:50.163274+0000 mon.a (mon.0) 461 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-04-18T22:58:51.501 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:51 smithi069 bash[23476]: audit 2024-04-18T22:58:50.165104+0000 mon.a (mon.0) 462 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:58:51.501 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:51 smithi069 bash[23476]: cephadm 2024-04-18T22:58:50.166721+0000 mgr.a (mgr.14152) 211 : cephadm 1 Deploying daemon osd.3 on smithi055 2024-04-18T22:58:53.373 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:53 smithi055 bash[23198]: cluster 2024-04-18T22:58:51.881008+0000 mgr.a (mgr.14152) 212 : cluster 0 pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:53.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:53 smithi016 bash[21452]: cluster 2024-04-18T22:58:51.881008+0000 mgr.a (mgr.14152) 212 : cluster 0 pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:53.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:53 smithi069 bash[23476]: cluster 2024-04-18T22:58:51.881008+0000 mgr.a (mgr.14152) 212 : cluster 0 pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:54.173 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:54 smithi055 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:58:54.173 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:58:54 smithi055 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:58:54.173 INFO:journalctl@ceph.osd.2.smithi055.stdout:Apr 18 22:58:54 smithi055 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:58:54.429 INFO:journalctl@ceph.osd.2.smithi055.stdout:Apr 18 22:58:54 smithi055 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:58:54.430 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:54 smithi055 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:58:54.430 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 22:58:54 smithi055 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:58:55.750 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:55 smithi069 bash[23476]: cluster 2024-04-18T22:58:53.881534+0000 mgr.a (mgr.14152) 213 : cluster 0 pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:55.750 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:55 smithi069 bash[23476]: audit 2024-04-18T22:58:54.482711+0000 mon.a (mon.0) 463 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:55.750 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:55 smithi069 bash[23476]: audit 2024-04-18T22:58:54.491638+0000 mon.a (mon.0) 464 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:55.750 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:55 smithi069 bash[23476]: audit 2024-04-18T22:58:54.518895+0000 mon.a (mon.0) 465 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:58:55.751 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:55 smithi055 bash[23198]: cluster 2024-04-18T22:58:53.881534+0000 mgr.a (mgr.14152) 213 : cluster 0 pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:55.751 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:55 smithi055 bash[23198]: audit 2024-04-18T22:58:54.482711+0000 mon.a (mon.0) 463 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:55.751 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:55 smithi055 bash[23198]: audit 2024-04-18T22:58:54.491638+0000 mon.a (mon.0) 464 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:55.751 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:55 smithi055 bash[23198]: audit 2024-04-18T22:58:54.518895+0000 mon.a (mon.0) 465 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:58:55.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:55 smithi016 bash[21452]: cluster 2024-04-18T22:58:53.881534+0000 mgr.a (mgr.14152) 213 : cluster 0 pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:55.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:55 smithi016 bash[21452]: audit 2024-04-18T22:58:54.482711+0000 mon.a (mon.0) 463 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:55.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:55 smithi016 bash[21452]: audit 2024-04-18T22:58:54.491638+0000 mon.a (mon.0) 464 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:58:55.922 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:55 smithi016 bash[21452]: audit 2024-04-18T22:58:54.518895+0000 mon.a (mon.0) 465 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:58:57.750 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:57 smithi069 bash[23476]: cluster 2024-04-18T22:58:55.882061+0000 mgr.a (mgr.14152) 214 : cluster 0 pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:57.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:57 smithi016 bash[21452]: cluster 2024-04-18T22:58:55.882061+0000 mgr.a (mgr.14152) 214 : cluster 0 pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:57.952 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:57 smithi055 bash[23198]: cluster 2024-04-18T22:58:55.882061+0000 mgr.a (mgr.14152) 214 : cluster 0 pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:59.750 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:58:59 smithi069 bash[23476]: cluster 2024-04-18T22:58:57.882622+0000 mgr.a (mgr.14152) 215 : cluster 0 pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:59.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:58:59 smithi016 bash[21452]: cluster 2024-04-18T22:58:57.882622+0000 mgr.a (mgr.14152) 215 : cluster 0 pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:58:59.952 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:58:59 smithi055 bash[23198]: cluster 2024-04-18T22:58:57.882622+0000 mgr.a (mgr.14152) 215 : cluster 0 pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:59:00.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:00 smithi016 bash[21452]: cluster 2024-04-18T22:58:59.883164+0000 mgr.a (mgr.14152) 216 : cluster 0 pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:59:00.924 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:00 smithi055 bash[23198]: cluster 2024-04-18T22:58:59.883164+0000 mgr.a (mgr.14152) 216 : cluster 0 pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:59:01.000 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:00 smithi069 bash[23476]: cluster 2024-04-18T22:58:59.883164+0000 mgr.a (mgr.14152) 216 : cluster 0 pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:59:01.840 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:01 smithi055 bash[23198]: audit 2024-04-18T22:59:00.604676+0000 mon.a (mon.0) 466 : audit 1 from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-18T22:59:01.840 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:01 smithi055 bash[23198]: audit 2024-04-18T22:59:00.605415+0000 mon.b (mon.2) 15 : audit 1 from='osd.3 [v2:172.21.15.55:6808/2676861821,v1:172.21.15.55:6809/2676861821]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-18T22:59:01.840 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:01 smithi055 bash[23198]: audit 2024-04-18T22:59:01.227639+0000 mon.a (mon.0) 467 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:01.840 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:01 smithi055 bash[23198]: audit 2024-04-18T22:59:01.236786+0000 mon.a (mon.0) 468 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:01.841 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:01 smithi055 bash[23198]: audit 2024-04-18T22:59:01.238854+0000 mon.a (mon.0) 469 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:59:01.841 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:01 smithi055 bash[23198]: audit 2024-04-18T22:59:01.240957+0000 mon.a (mon.0) 470 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:59:01.841 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:01 smithi055 bash[23198]: audit 2024-04-18T22:59:01.250495+0000 mon.a (mon.0) 471 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:01.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:01 smithi016 bash[21452]: audit 2024-04-18T22:59:00.604676+0000 mon.a (mon.0) 466 : audit 1 from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-18T22:59:01.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:01 smithi016 bash[21452]: audit 2024-04-18T22:59:00.605415+0000 mon.b (mon.2) 15 : audit 1 from='osd.3 [v2:172.21.15.55:6808/2676861821,v1:172.21.15.55:6809/2676861821]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-18T22:59:01.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:01 smithi016 bash[21452]: audit 2024-04-18T22:59:01.227639+0000 mon.a (mon.0) 467 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:01.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:01 smithi016 bash[21452]: audit 2024-04-18T22:59:01.236786+0000 mon.a (mon.0) 468 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:01.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:01 smithi016 bash[21452]: audit 2024-04-18T22:59:01.238854+0000 mon.a (mon.0) 469 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:59:01.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:01 smithi016 bash[21452]: audit 2024-04-18T22:59:01.240957+0000 mon.a (mon.0) 470 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:59:01.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:01 smithi016 bash[21452]: audit 2024-04-18T22:59:01.250495+0000 mon.a (mon.0) 471 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:02.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:01 smithi069 bash[23476]: audit 2024-04-18T22:59:00.604676+0000 mon.a (mon.0) 466 : audit 1 from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-18T22:59:02.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:01 smithi069 bash[23476]: audit 2024-04-18T22:59:00.605415+0000 mon.b (mon.2) 15 : audit 1 from='osd.3 [v2:172.21.15.55:6808/2676861821,v1:172.21.15.55:6809/2676861821]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-18T22:59:02.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:01 smithi069 bash[23476]: audit 2024-04-18T22:59:01.227639+0000 mon.a (mon.0) 467 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:02.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:01 smithi069 bash[23476]: audit 2024-04-18T22:59:01.236786+0000 mon.a (mon.0) 468 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:02.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:01 smithi069 bash[23476]: audit 2024-04-18T22:59:01.238854+0000 mon.a (mon.0) 469 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:59:02.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:01 smithi069 bash[23476]: audit 2024-04-18T22:59:01.240957+0000 mon.a (mon.0) 470 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:59:02.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:01 smithi069 bash[23476]: audit 2024-04-18T22:59:01.250495+0000 mon.a (mon.0) 471 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:02.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:02 smithi016 bash[21452]: audit 2024-04-18T22:59:01.560647+0000 mon.a (mon.0) 472 : audit 1 from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-04-18T22:59:02.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:02 smithi016 bash[21452]: cluster 2024-04-18T22:59:01.565319+0000 mon.a (mon.0) 473 : cluster 0 osdmap e23: 4 total, 3 up, 4 in 2024-04-18T22:59:02.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:02 smithi016 bash[21452]: audit 2024-04-18T22:59:01.565808+0000 mon.a (mon.0) 474 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-18T22:59:02.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:02 smithi016 bash[21452]: audit 2024-04-18T22:59:01.575335+0000 mon.a (mon.0) 475 : audit 1 from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi055", "root=default"]}]: dispatch 2024-04-18T22:59:02.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:02 smithi016 bash[21452]: audit 2024-04-18T22:59:01.575960+0000 mon.b (mon.2) 16 : audit 1 from='osd.3 [v2:172.21.15.55:6808/2676861821,v1:172.21.15.55:6809/2676861821]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi055", "root=default"]}]: dispatch 2024-04-18T22:59:02.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:02 smithi016 bash[21452]: cluster 2024-04-18T22:59:01.883619+0000 mgr.a (mgr.14152) 217 : cluster 0 pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:59:02.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:02 smithi055 bash[23198]: audit 2024-04-18T22:59:01.560647+0000 mon.a (mon.0) 472 : audit 1 from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-04-18T22:59:02.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:02 smithi055 bash[23198]: cluster 2024-04-18T22:59:01.565319+0000 mon.a (mon.0) 473 : cluster 0 osdmap e23: 4 total, 3 up, 4 in 2024-04-18T22:59:02.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:02 smithi055 bash[23198]: audit 2024-04-18T22:59:01.565808+0000 mon.a (mon.0) 474 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-18T22:59:02.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:02 smithi055 bash[23198]: audit 2024-04-18T22:59:01.575335+0000 mon.a (mon.0) 475 : audit 1 from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi055", "root=default"]}]: dispatch 2024-04-18T22:59:02.954 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:02 smithi055 bash[23198]: audit 2024-04-18T22:59:01.575960+0000 mon.b (mon.2) 16 : audit 1 from='osd.3 [v2:172.21.15.55:6808/2676861821,v1:172.21.15.55:6809/2676861821]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi055", "root=default"]}]: dispatch 2024-04-18T22:59:02.955 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:02 smithi055 bash[23198]: cluster 2024-04-18T22:59:01.883619+0000 mgr.a (mgr.14152) 217 : cluster 0 pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:59:03.000 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:02 smithi069 bash[23476]: audit 2024-04-18T22:59:01.560647+0000 mon.a (mon.0) 472 : audit 1 from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-04-18T22:59:03.000 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:02 smithi069 bash[23476]: cluster 2024-04-18T22:59:01.565319+0000 mon.a (mon.0) 473 : cluster 0 osdmap e23: 4 total, 3 up, 4 in 2024-04-18T22:59:03.000 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:02 smithi069 bash[23476]: audit 2024-04-18T22:59:01.565808+0000 mon.a (mon.0) 474 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-18T22:59:03.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:02 smithi069 bash[23476]: audit 2024-04-18T22:59:01.575335+0000 mon.a (mon.0) 475 : audit 1 from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi055", "root=default"]}]: dispatch 2024-04-18T22:59:03.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:02 smithi069 bash[23476]: audit 2024-04-18T22:59:01.575960+0000 mon.b (mon.2) 16 : audit 1 from='osd.3 [v2:172.21.15.55:6808/2676861821,v1:172.21.15.55:6809/2676861821]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi055", "root=default"]}]: dispatch 2024-04-18T22:59:03.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:02 smithi069 bash[23476]: cluster 2024-04-18T22:59:01.883619+0000 mgr.a (mgr.14152) 217 : cluster 0 pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-18T22:59:03.844 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:03 smithi055 bash[23198]: audit 2024-04-18T22:59:02.563234+0000 mon.a (mon.0) 476 : audit 1 from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi055", "root=default"]}]': finished 2024-04-18T22:59:03.844 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:03 smithi055 bash[23198]: cluster 2024-04-18T22:59:02.569000+0000 mon.a (mon.0) 477 : cluster 0 osdmap e24: 4 total, 3 up, 4 in 2024-04-18T22:59:03.844 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:03 smithi055 bash[23198]: audit 2024-04-18T22:59:02.570084+0000 mon.a (mon.0) 478 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-18T22:59:03.844 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:03 smithi055 bash[23198]: audit 2024-04-18T22:59:02.584132+0000 mon.a (mon.0) 479 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-18T22:59:03.844 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:03 smithi055 bash[23198]: cluster 2024-04-18T22:59:03.571657+0000 mon.a (mon.0) 480 : cluster 1 osd.3 [v2:172.21.15.55:6808/2676861821,v1:172.21.15.55:6809/2676861821] boot 2024-04-18T22:59:03.844 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:03 smithi055 bash[23198]: cluster 2024-04-18T22:59:03.571745+0000 mon.a (mon.0) 481 : cluster 0 osdmap e25: 4 total, 4 up, 4 in 2024-04-18T22:59:03.844 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:03 smithi055 bash[23198]: audit 2024-04-18T22:59:03.572094+0000 mon.a (mon.0) 482 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-18T22:59:03.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:03 smithi016 bash[21452]: audit 2024-04-18T22:59:02.563234+0000 mon.a (mon.0) 476 : audit 1 from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi055", "root=default"]}]': finished 2024-04-18T22:59:03.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:03 smithi016 bash[21452]: cluster 2024-04-18T22:59:02.569000+0000 mon.a (mon.0) 477 : cluster 0 osdmap e24: 4 total, 3 up, 4 in 2024-04-18T22:59:03.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:03 smithi016 bash[21452]: audit 2024-04-18T22:59:02.570084+0000 mon.a (mon.0) 478 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-18T22:59:03.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:03 smithi016 bash[21452]: audit 2024-04-18T22:59:02.584132+0000 mon.a (mon.0) 479 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-18T22:59:03.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:03 smithi016 bash[21452]: cluster 2024-04-18T22:59:03.571657+0000 mon.a (mon.0) 480 : cluster 1 osd.3 [v2:172.21.15.55:6808/2676861821,v1:172.21.15.55:6809/2676861821] boot 2024-04-18T22:59:03.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:03 smithi016 bash[21452]: cluster 2024-04-18T22:59:03.571745+0000 mon.a (mon.0) 481 : cluster 0 osdmap e25: 4 total, 4 up, 4 in 2024-04-18T22:59:03.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:03 smithi016 bash[21452]: audit 2024-04-18T22:59:03.572094+0000 mon.a (mon.0) 482 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-18T22:59:04.000 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:03 smithi069 bash[23476]: audit 2024-04-18T22:59:02.563234+0000 mon.a (mon.0) 476 : audit 1 from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi055", "root=default"]}]': finished 2024-04-18T22:59:04.000 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:03 smithi069 bash[23476]: cluster 2024-04-18T22:59:02.569000+0000 mon.a (mon.0) 477 : cluster 0 osdmap e24: 4 total, 3 up, 4 in 2024-04-18T22:59:04.000 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:03 smithi069 bash[23476]: audit 2024-04-18T22:59:02.570084+0000 mon.a (mon.0) 478 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-18T22:59:04.000 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:03 smithi069 bash[23476]: audit 2024-04-18T22:59:02.584132+0000 mon.a (mon.0) 479 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-18T22:59:04.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:03 smithi069 bash[23476]: cluster 2024-04-18T22:59:03.571657+0000 mon.a (mon.0) 480 : cluster 1 osd.3 [v2:172.21.15.55:6808/2676861821,v1:172.21.15.55:6809/2676861821] boot 2024-04-18T22:59:04.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:03 smithi069 bash[23476]: cluster 2024-04-18T22:59:03.571745+0000 mon.a (mon.0) 481 : cluster 0 osdmap e25: 4 total, 4 up, 4 in 2024-04-18T22:59:04.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:03 smithi069 bash[23476]: audit 2024-04-18T22:59:03.572094+0000 mon.a (mon.0) 482 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-18T22:59:04.497 INFO:teuthology.orchestra.run.smithi055.stdout:Created osd(s) 3 on host 'smithi055' 2024-04-18T22:59:04.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:04 smithi016 bash[21452]: cluster 2024-04-18T22:59:01.555435+0000 osd.3 (osd.3) 1 : cluster 0 purged_snaps scrub starts 2024-04-18T22:59:04.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:04 smithi016 bash[21452]: cluster 2024-04-18T22:59:01.555564+0000 osd.3 (osd.3) 2 : cluster 0 purged_snaps scrub ok 2024-04-18T22:59:04.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:04 smithi016 bash[21452]: cluster 2024-04-18T22:59:03.884147+0000 mgr.a (mgr.14152) 218 : cluster 0 pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:04.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:04 smithi016 bash[21452]: audit 2024-04-18T22:59:04.479629+0000 mon.a (mon.0) 483 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:04.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:04 smithi016 bash[21452]: audit 2024-04-18T22:59:04.480601+0000 mon.a (mon.0) 484 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:59:04.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:04 smithi016 bash[21452]: audit 2024-04-18T22:59:04.489025+0000 mon.a (mon.0) 485 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:04.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:04 smithi016 bash[21452]: cluster 2024-04-18T22:59:04.574319+0000 mon.a (mon.0) 486 : cluster 0 osdmap e26: 4 total, 4 up, 4 in 2024-04-18T22:59:04.952 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:04 smithi055 bash[23198]: cluster 2024-04-18T22:59:01.555435+0000 osd.3 (osd.3) 1 : cluster 0 purged_snaps scrub starts 2024-04-18T22:59:04.952 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:04 smithi055 bash[23198]: cluster 2024-04-18T22:59:01.555564+0000 osd.3 (osd.3) 2 : cluster 0 purged_snaps scrub ok 2024-04-18T22:59:04.952 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:04 smithi055 bash[23198]: cluster 2024-04-18T22:59:03.884147+0000 mgr.a (mgr.14152) 218 : cluster 0 pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:04.952 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:04 smithi055 bash[23198]: audit 2024-04-18T22:59:04.479629+0000 mon.a (mon.0) 483 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:04.952 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:04 smithi055 bash[23198]: audit 2024-04-18T22:59:04.480601+0000 mon.a (mon.0) 484 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:59:04.952 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:04 smithi055 bash[23198]: audit 2024-04-18T22:59:04.489025+0000 mon.a (mon.0) 485 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:04.952 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:04 smithi055 bash[23198]: cluster 2024-04-18T22:59:04.574319+0000 mon.a (mon.0) 486 : cluster 0 osdmap e26: 4 total, 4 up, 4 in 2024-04-18T22:59:05.000 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:04 smithi069 bash[23476]: cluster 2024-04-18T22:59:01.555435+0000 osd.3 (osd.3) 1 : cluster 0 purged_snaps scrub starts 2024-04-18T22:59:05.000 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:04 smithi069 bash[23476]: cluster 2024-04-18T22:59:01.555564+0000 osd.3 (osd.3) 2 : cluster 0 purged_snaps scrub ok 2024-04-18T22:59:05.000 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:04 smithi069 bash[23476]: cluster 2024-04-18T22:59:03.884147+0000 mgr.a (mgr.14152) 218 : cluster 0 pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:05.000 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:04 smithi069 bash[23476]: audit 2024-04-18T22:59:04.479629+0000 mon.a (mon.0) 483 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:05.000 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:04 smithi069 bash[23476]: audit 2024-04-18T22:59:04.480601+0000 mon.a (mon.0) 484 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:59:05.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:04 smithi069 bash[23476]: audit 2024-04-18T22:59:04.489025+0000 mon.a (mon.0) 485 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:05.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:04 smithi069 bash[23476]: cluster 2024-04-18T22:59:04.574319+0000 mon.a (mon.0) 486 : cluster 0 osdmap e26: 4 total, 4 up, 4 in 2024-04-18T22:59:05.122 DEBUG:teuthology.orchestra.run.smithi055:osd.3> sudo journalctl -f -n 0 -u ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@osd.3.service 2024-04-18T22:59:05.124 INFO:tasks.cephadm:Deploying osd.4 on smithi069 with /dev/vg_nvme/lv_4... 2024-04-18T22:59:05.125 DEBUG:teuthology.orchestra.run.smithi069:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-04-18T22:59:06.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:06 smithi016 bash[21452]: cluster 2024-04-18T22:59:05.575952+0000 mon.a (mon.0) 487 : cluster 0 osdmap e27: 4 total, 4 up, 4 in 2024-04-18T22:59:06.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:06 smithi016 bash[21452]: cluster 2024-04-18T22:59:05.884777+0000 mgr.a (mgr.14152) 219 : cluster 0 pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:06.952 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:06 smithi055 bash[23198]: cluster 2024-04-18T22:59:05.575952+0000 mon.a (mon.0) 487 : cluster 0 osdmap e27: 4 total, 4 up, 4 in 2024-04-18T22:59:06.952 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:06 smithi055 bash[23198]: cluster 2024-04-18T22:59:05.884777+0000 mgr.a (mgr.14152) 219 : cluster 0 pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:07.000 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:06 smithi069 bash[23476]: cluster 2024-04-18T22:59:05.575952+0000 mon.a (mon.0) 487 : cluster 0 osdmap e27: 4 total, 4 up, 4 in 2024-04-18T22:59:07.000 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:06 smithi069 bash[23476]: cluster 2024-04-18T22:59:05.884777+0000 mgr.a (mgr.14152) 219 : cluster 0 pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:07.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:07 smithi016 bash[21452]: cluster 2024-04-18T22:59:06.584699+0000 mon.a (mon.0) 488 : cluster 0 osdmap e28: 4 total, 4 up, 4 in 2024-04-18T22:59:07.952 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:07 smithi055 bash[23198]: cluster 2024-04-18T22:59:06.584699+0000 mon.a (mon.0) 488 : cluster 0 osdmap e28: 4 total, 4 up, 4 in 2024-04-18T22:59:08.003 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:07 smithi069 bash[23476]: cluster 2024-04-18T22:59:06.584699+0000 mon.a (mon.0) 488 : cluster 0 osdmap e28: 4 total, 4 up, 4 in 2024-04-18T22:59:08.825 INFO:teuthology.orchestra.run.smithi069.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.c/config 2024-04-18T22:59:08.846 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:08 smithi069 bash[23476]: cluster 2024-04-18T22:59:07.586694+0000 mon.a (mon.0) 489 : cluster 0 osdmap e29: 4 total, 4 up, 4 in 2024-04-18T22:59:08.846 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:08 smithi069 bash[23476]: cluster 2024-04-18T22:59:07.885493+0000 mgr.a (mgr.14152) 220 : cluster 0 pgmap v184: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-04-18T22:59:08.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:08 smithi016 bash[21452]: cluster 2024-04-18T22:59:07.586694+0000 mon.a (mon.0) 489 : cluster 0 osdmap e29: 4 total, 4 up, 4 in 2024-04-18T22:59:08.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:08 smithi016 bash[21452]: cluster 2024-04-18T22:59:07.885493+0000 mgr.a (mgr.14152) 220 : cluster 0 pgmap v184: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-04-18T22:59:08.952 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:08 smithi055 bash[23198]: cluster 2024-04-18T22:59:07.586694+0000 mon.a (mon.0) 489 : cluster 0 osdmap e29: 4 total, 4 up, 4 in 2024-04-18T22:59:08.952 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:08 smithi055 bash[23198]: cluster 2024-04-18T22:59:07.885493+0000 mgr.a (mgr.14152) 220 : cluster 0 pgmap v184: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-04-18T22:59:11.202 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:10 smithi055 bash[23198]: cluster 2024-04-18T22:59:09.886217+0000 mgr.a (mgr.14152) 221 : cluster 0 pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 108 KiB/s, 0 objects/s recovering 2024-04-18T22:59:11.250 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:10 smithi069 bash[23476]: cluster 2024-04-18T22:59:09.886217+0000 mgr.a (mgr.14152) 221 : cluster 0 pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 108 KiB/s, 0 objects/s recovering 2024-04-18T22:59:11.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:10 smithi016 bash[21452]: cluster 2024-04-18T22:59:09.886217+0000 mgr.a (mgr.14152) 221 : cluster 0 pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 108 KiB/s, 0 objects/s recovering 2024-04-18T22:59:11.665 INFO:teuthology.orchestra.run.smithi069.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-04-18T22:59:11.666 INFO:teuthology.orchestra.run.smithi069.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-04-18T22:59:11.666 INFO:teuthology.orchestra.run.smithi069.stderr: stderr: 10+0 records in 2024-04-18T22:59:11.666 INFO:teuthology.orchestra.run.smithi069.stderr:10+0 records out 2024-04-18T22:59:11.666 INFO:teuthology.orchestra.run.smithi069.stderr:10485760 bytes (10 MB, 10 MiB) copied, 0.0142046 s, 738 MB/s 2024-04-18T22:59:11.666 INFO:teuthology.orchestra.run.smithi069.stderr:--> Zapping successful for: 2024-04-18T22:59:12.356 DEBUG:teuthology.orchestra.run.smithi069:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph orch daemon add osd smithi069:vg_nvme/lv_4 2024-04-18T22:59:13.202 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:12 smithi055 bash[23198]: cluster 2024-04-18T22:59:11.886950+0000 mgr.a (mgr.14152) 222 : cluster 0 pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 91 KiB/s, 0 objects/s recovering 2024-04-18T22:59:13.250 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:12 smithi069 bash[23476]: cluster 2024-04-18T22:59:11.886950+0000 mgr.a (mgr.14152) 222 : cluster 0 pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 91 KiB/s, 0 objects/s recovering 2024-04-18T22:59:13.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:12 smithi016 bash[21452]: cluster 2024-04-18T22:59:11.886950+0000 mgr.a (mgr.14152) 222 : cluster 0 pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 91 KiB/s, 0 objects/s recovering 2024-04-18T22:59:14.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:14 smithi016 bash[21452]: cephadm 2024-04-18T22:59:13.528957+0000 mgr.a (mgr.14152) 223 : cephadm 1 Detected new or changed devices on smithi055 2024-04-18T22:59:14.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:14 smithi016 bash[21452]: audit 2024-04-18T22:59:13.538064+0000 mon.a (mon.0) 490 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:14.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:14 smithi016 bash[21452]: audit 2024-04-18T22:59:13.547477+0000 mon.a (mon.0) 491 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:14.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:14 smithi016 bash[21452]: audit 2024-04-18T22:59:13.549708+0000 mon.a (mon.0) 492 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-18T22:59:14.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:14 smithi016 bash[21452]: audit 2024-04-18T22:59:13.551496+0000 mon.a (mon.0) 493 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-04-18T22:59:14.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:14 smithi016 bash[21452]: cephadm 2024-04-18T22:59:13.552752+0000 mgr.a (mgr.14152) 224 : cephadm 1 Adjusting osd_memory_target on smithi055 to 8634M 2024-04-18T22:59:14.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:14 smithi016 bash[21452]: audit 2024-04-18T22:59:13.558972+0000 mon.a (mon.0) 494 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:14.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:14 smithi016 bash[21452]: audit 2024-04-18T22:59:13.563054+0000 mon.a (mon.0) 495 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:59:14.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:14 smithi016 bash[21452]: audit 2024-04-18T22:59:13.564850+0000 mon.a (mon.0) 496 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:59:14.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:14 smithi016 bash[21452]: audit 2024-04-18T22:59:13.575053+0000 mon.a (mon.0) 497 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:14.921 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:14 smithi016 bash[21452]: cluster 2024-04-18T22:59:13.887664+0000 mgr.a (mgr.14152) 225 : cluster 0 pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-04-18T22:59:14.952 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:14 smithi055 bash[23198]: cephadm 2024-04-18T22:59:13.528957+0000 mgr.a (mgr.14152) 223 : cephadm 1 Detected new or changed devices on smithi055 2024-04-18T22:59:14.952 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:14 smithi055 bash[23198]: audit 2024-04-18T22:59:13.538064+0000 mon.a (mon.0) 490 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:14.952 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:14 smithi055 bash[23198]: audit 2024-04-18T22:59:13.547477+0000 mon.a (mon.0) 491 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:14.952 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:14 smithi055 bash[23198]: audit 2024-04-18T22:59:13.549708+0000 mon.a (mon.0) 492 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-18T22:59:14.952 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:14 smithi055 bash[23198]: audit 2024-04-18T22:59:13.551496+0000 mon.a (mon.0) 493 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-04-18T22:59:14.952 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:14 smithi055 bash[23198]: cephadm 2024-04-18T22:59:13.552752+0000 mgr.a (mgr.14152) 224 : cephadm 1 Adjusting osd_memory_target on smithi055 to 8634M 2024-04-18T22:59:14.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:14 smithi055 bash[23198]: audit 2024-04-18T22:59:13.558972+0000 mon.a (mon.0) 494 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:14.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:14 smithi055 bash[23198]: audit 2024-04-18T22:59:13.563054+0000 mon.a (mon.0) 495 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:59:14.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:14 smithi055 bash[23198]: audit 2024-04-18T22:59:13.564850+0000 mon.a (mon.0) 496 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:59:14.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:14 smithi055 bash[23198]: audit 2024-04-18T22:59:13.575053+0000 mon.a (mon.0) 497 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:14.953 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:14 smithi055 bash[23198]: cluster 2024-04-18T22:59:13.887664+0000 mgr.a (mgr.14152) 225 : cluster 0 pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-04-18T22:59:15.000 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:14 smithi069 bash[23476]: cephadm 2024-04-18T22:59:13.528957+0000 mgr.a (mgr.14152) 223 : cephadm 1 Detected new or changed devices on smithi055 2024-04-18T22:59:15.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:14 smithi069 bash[23476]: audit 2024-04-18T22:59:13.538064+0000 mon.a (mon.0) 490 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:15.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:14 smithi069 bash[23476]: audit 2024-04-18T22:59:13.547477+0000 mon.a (mon.0) 491 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:15.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:14 smithi069 bash[23476]: audit 2024-04-18T22:59:13.549708+0000 mon.a (mon.0) 492 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-18T22:59:15.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:14 smithi069 bash[23476]: audit 2024-04-18T22:59:13.551496+0000 mon.a (mon.0) 493 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-04-18T22:59:15.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:14 smithi069 bash[23476]: cephadm 2024-04-18T22:59:13.552752+0000 mgr.a (mgr.14152) 224 : cephadm 1 Adjusting osd_memory_target on smithi055 to 8634M 2024-04-18T22:59:15.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:14 smithi069 bash[23476]: audit 2024-04-18T22:59:13.558972+0000 mon.a (mon.0) 494 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:15.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:14 smithi069 bash[23476]: audit 2024-04-18T22:59:13.563054+0000 mon.a (mon.0) 495 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:59:15.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:14 smithi069 bash[23476]: audit 2024-04-18T22:59:13.564850+0000 mon.a (mon.0) 496 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:59:15.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:14 smithi069 bash[23476]: audit 2024-04-18T22:59:13.575053+0000 mon.a (mon.0) 497 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:15.001 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:14 smithi069 bash[23476]: cluster 2024-04-18T22:59:13.887664+0000 mgr.a (mgr.14152) 225 : cluster 0 pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-04-18T22:59:16.058 INFO:teuthology.orchestra.run.smithi069.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.c/config 2024-04-18T22:59:17.090 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:16 smithi069 bash[23476]: cluster 2024-04-18T22:59:15.888279+0000 mgr.a (mgr.14152) 226 : cluster 0 pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:17.202 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:16 smithi055 bash[23198]: cluster 2024-04-18T22:59:15.888279+0000 mgr.a (mgr.14152) 226 : cluster 0 pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:17.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:16 smithi016 bash[21452]: cluster 2024-04-18T22:59:15.888279+0000 mgr.a (mgr.14152) 226 : cluster 0 pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:19.202 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:18 smithi055 bash[23198]: cluster 2024-04-18T22:59:17.888899+0000 mgr.a (mgr.14152) 227 : cluster 0 pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:19.202 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:18 smithi055 bash[23198]: audit 2024-04-18T22:59:18.526513+0000 mon.a (mon.0) 498 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-18T22:59:19.202 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:18 smithi055 bash[23198]: audit 2024-04-18T22:59:18.533033+0000 mon.a (mon.0) 499 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-18T22:59:19.202 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:18 smithi055 bash[23198]: audit 2024-04-18T22:59:18.534744+0000 mon.a (mon.0) 500 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:59:19.250 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:18 smithi069 bash[23476]: cluster 2024-04-18T22:59:17.888899+0000 mgr.a (mgr.14152) 227 : cluster 0 pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:19.250 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:18 smithi069 bash[23476]: audit 2024-04-18T22:59:18.526513+0000 mon.a (mon.0) 498 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-18T22:59:19.250 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:18 smithi069 bash[23476]: audit 2024-04-18T22:59:18.533033+0000 mon.a (mon.0) 499 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-18T22:59:19.250 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:18 smithi069 bash[23476]: audit 2024-04-18T22:59:18.534744+0000 mon.a (mon.0) 500 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:59:19.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:18 smithi016 bash[21452]: cluster 2024-04-18T22:59:17.888899+0000 mgr.a (mgr.14152) 227 : cluster 0 pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:19.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:18 smithi016 bash[21452]: audit 2024-04-18T22:59:18.526513+0000 mon.a (mon.0) 498 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-18T22:59:19.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:18 smithi016 bash[21452]: audit 2024-04-18T22:59:18.533033+0000 mon.a (mon.0) 499 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-18T22:59:19.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:18 smithi016 bash[21452]: audit 2024-04-18T22:59:18.534744+0000 mon.a (mon.0) 500 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:59:20.250 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:19 smithi069 bash[23476]: audit 2024-04-18T22:59:18.519025+0000 mgr.a (mgr.14152) 228 : audit 0 from='client.24175 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi069:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T22:59:20.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:19 smithi016 bash[21452]: audit 2024-04-18T22:59:18.519025+0000 mgr.a (mgr.14152) 228 : audit 0 from='client.24175 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi069:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T22:59:20.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:19 smithi055 bash[23198]: audit 2024-04-18T22:59:18.519025+0000 mgr.a (mgr.14152) 228 : audit 0 from='client.24175 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi069:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T22:59:21.250 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:20 smithi069 bash[23476]: cluster 2024-04-18T22:59:19.889574+0000 mgr.a (mgr.14152) 229 : cluster 0 pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:21.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:20 smithi016 bash[21452]: cluster 2024-04-18T22:59:19.889574+0000 mgr.a (mgr.14152) 229 : cluster 0 pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:21.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:20 smithi055 bash[23198]: cluster 2024-04-18T22:59:19.889574+0000 mgr.a (mgr.14152) 229 : cluster 0 pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:23.250 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:22 smithi069 bash[23476]: cluster 2024-04-18T22:59:21.890132+0000 mgr.a (mgr.14152) 230 : cluster 0 pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:23.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:22 smithi016 bash[21452]: cluster 2024-04-18T22:59:21.890132+0000 mgr.a (mgr.14152) 230 : cluster 0 pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:23.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:22 smithi055 bash[23198]: cluster 2024-04-18T22:59:21.890132+0000 mgr.a (mgr.14152) 230 : cluster 0 pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:25.250 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:24 smithi069 bash[23476]: cluster 2024-04-18T22:59:23.890667+0000 mgr.a (mgr.14152) 231 : cluster 0 pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:25.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:24 smithi016 bash[21452]: cluster 2024-04-18T22:59:23.890667+0000 mgr.a (mgr.14152) 231 : cluster 0 pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:25.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:24 smithi055 bash[23198]: cluster 2024-04-18T22:59:23.890667+0000 mgr.a (mgr.14152) 231 : cluster 0 pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:27.250 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:26 smithi069 bash[23476]: cluster 2024-04-18T22:59:25.891223+0000 mgr.a (mgr.14152) 232 : cluster 0 pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:27.250 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:26 smithi069 bash[23476]: audit 2024-04-18T22:59:26.710679+0000 mon.a (mon.0) 501 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "caa78f4c-5b5b-4303-b25a-38fa4582882f"}]: dispatch 2024-04-18T22:59:27.250 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:26 smithi069 bash[23476]: audit 2024-04-18T22:59:26.711674+0000 mon.c (mon.1) 6 : audit 1 from='client.? 172.21.15.69:0/124437744' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "caa78f4c-5b5b-4303-b25a-38fa4582882f"}]: dispatch 2024-04-18T22:59:27.250 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:26 smithi069 bash[23476]: audit 2024-04-18T22:59:26.714511+0000 mon.a (mon.0) 502 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "caa78f4c-5b5b-4303-b25a-38fa4582882f"}]': finished 2024-04-18T22:59:27.250 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:26 smithi069 bash[23476]: cluster 2024-04-18T22:59:26.719689+0000 mon.a (mon.0) 503 : cluster 0 osdmap e30: 5 total, 4 up, 5 in 2024-04-18T22:59:27.250 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:26 smithi069 bash[23476]: audit 2024-04-18T22:59:26.720342+0000 mon.a (mon.0) 504 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-18T22:59:27.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:26 smithi016 bash[21452]: cluster 2024-04-18T22:59:25.891223+0000 mgr.a (mgr.14152) 232 : cluster 0 pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:27.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:26 smithi016 bash[21452]: audit 2024-04-18T22:59:26.710679+0000 mon.a (mon.0) 501 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "caa78f4c-5b5b-4303-b25a-38fa4582882f"}]: dispatch 2024-04-18T22:59:27.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:26 smithi016 bash[21452]: audit 2024-04-18T22:59:26.711674+0000 mon.c (mon.1) 6 : audit 1 from='client.? 172.21.15.69:0/124437744' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "caa78f4c-5b5b-4303-b25a-38fa4582882f"}]: dispatch 2024-04-18T22:59:27.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:26 smithi016 bash[21452]: audit 2024-04-18T22:59:26.714511+0000 mon.a (mon.0) 502 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "caa78f4c-5b5b-4303-b25a-38fa4582882f"}]': finished 2024-04-18T22:59:27.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:26 smithi016 bash[21452]: cluster 2024-04-18T22:59:26.719689+0000 mon.a (mon.0) 503 : cluster 0 osdmap e30: 5 total, 4 up, 5 in 2024-04-18T22:59:27.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:26 smithi016 bash[21452]: audit 2024-04-18T22:59:26.720342+0000 mon.a (mon.0) 504 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-18T22:59:27.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:26 smithi055 bash[23198]: cluster 2024-04-18T22:59:25.891223+0000 mgr.a (mgr.14152) 232 : cluster 0 pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:27.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:26 smithi055 bash[23198]: audit 2024-04-18T22:59:26.710679+0000 mon.a (mon.0) 501 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "caa78f4c-5b5b-4303-b25a-38fa4582882f"}]: dispatch 2024-04-18T22:59:27.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:26 smithi055 bash[23198]: audit 2024-04-18T22:59:26.711674+0000 mon.c (mon.1) 6 : audit 1 from='client.? 172.21.15.69:0/124437744' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "caa78f4c-5b5b-4303-b25a-38fa4582882f"}]: dispatch 2024-04-18T22:59:27.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:26 smithi055 bash[23198]: audit 2024-04-18T22:59:26.714511+0000 mon.a (mon.0) 502 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "caa78f4c-5b5b-4303-b25a-38fa4582882f"}]': finished 2024-04-18T22:59:27.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:26 smithi055 bash[23198]: cluster 2024-04-18T22:59:26.719689+0000 mon.a (mon.0) 503 : cluster 0 osdmap e30: 5 total, 4 up, 5 in 2024-04-18T22:59:27.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:26 smithi055 bash[23198]: audit 2024-04-18T22:59:26.720342+0000 mon.a (mon.0) 504 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-18T22:59:28.250 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:27 smithi069 bash[23476]: audit 2024-04-18T22:59:27.471028+0000 mon.c (mon.1) 7 : audit 0 from='client.? 172.21.15.69:0/1547607550' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-18T22:59:28.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:27 smithi016 bash[21452]: audit 2024-04-18T22:59:27.471028+0000 mon.c (mon.1) 7 : audit 0 from='client.? 172.21.15.69:0/1547607550' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-18T22:59:28.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:27 smithi055 bash[23198]: audit 2024-04-18T22:59:27.471028+0000 mon.c (mon.1) 7 : audit 0 from='client.? 172.21.15.69:0/1547607550' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-18T22:59:29.249 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:28 smithi069 bash[23476]: cluster 2024-04-18T22:59:27.891738+0000 mgr.a (mgr.14152) 233 : cluster 0 pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:29.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:28 smithi016 bash[21452]: cluster 2024-04-18T22:59:27.891738+0000 mgr.a (mgr.14152) 233 : cluster 0 pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:29.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:28 smithi055 bash[23198]: cluster 2024-04-18T22:59:27.891738+0000 mgr.a (mgr.14152) 233 : cluster 0 pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:31.250 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:30 smithi069 bash[23476]: cluster 2024-04-18T22:59:29.892285+0000 mgr.a (mgr.14152) 234 : cluster 0 pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:31.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:30 smithi016 bash[21452]: cluster 2024-04-18T22:59:29.892285+0000 mgr.a (mgr.14152) 234 : cluster 0 pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:31.454 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:30 smithi055 bash[23198]: cluster 2024-04-18T22:59:29.892285+0000 mgr.a (mgr.14152) 234 : cluster 0 pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:33.250 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:33 smithi069 bash[23476]: cluster 2024-04-18T22:59:31.892828+0000 mgr.a (mgr.14152) 235 : cluster 0 pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:33.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:32 smithi016 bash[21452]: cluster 2024-04-18T22:59:31.892828+0000 mgr.a (mgr.14152) 235 : cluster 0 pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:33.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:32 smithi055 bash[23198]: cluster 2024-04-18T22:59:31.892828+0000 mgr.a (mgr.14152) 235 : cluster 0 pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:35.249 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:35 smithi069 bash[23476]: cluster 2024-04-18T22:59:33.893361+0000 mgr.a (mgr.14152) 236 : cluster 0 pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:35.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:35 smithi016 bash[21452]: cluster 2024-04-18T22:59:33.893361+0000 mgr.a (mgr.14152) 236 : cluster 0 pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:35.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:35 smithi055 bash[23198]: cluster 2024-04-18T22:59:33.893361+0000 mgr.a (mgr.14152) 236 : cluster 0 pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:37.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:37 smithi016 bash[21452]: cluster 2024-04-18T22:59:35.893895+0000 mgr.a (mgr.14152) 237 : cluster 0 pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:37.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:37 smithi055 bash[23198]: cluster 2024-04-18T22:59:35.893895+0000 mgr.a (mgr.14152) 237 : cluster 0 pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:37.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:37 smithi069 bash[23476]: cluster 2024-04-18T22:59:35.893895+0000 mgr.a (mgr.14152) 237 : cluster 0 pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:39.350 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:39 smithi069 bash[23476]: cluster 2024-04-18T22:59:37.894403+0000 mgr.a (mgr.14152) 238 : cluster 0 pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:39.350 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:39 smithi069 bash[23476]: audit 2024-04-18T22:59:38.921518+0000 mon.a (mon.0) 505 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-04-18T22:59:39.350 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:39 smithi069 bash[23476]: audit 2024-04-18T22:59:38.923298+0000 mon.a (mon.0) 506 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:59:39.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:39 smithi016 bash[21452]: cluster 2024-04-18T22:59:37.894403+0000 mgr.a (mgr.14152) 238 : cluster 0 pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:39.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:39 smithi016 bash[21452]: audit 2024-04-18T22:59:38.921518+0000 mon.a (mon.0) 505 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-04-18T22:59:39.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:39 smithi016 bash[21452]: audit 2024-04-18T22:59:38.923298+0000 mon.a (mon.0) 506 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:59:39.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:39 smithi055 bash[23198]: cluster 2024-04-18T22:59:37.894403+0000 mgr.a (mgr.14152) 238 : cluster 0 pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:39.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:39 smithi055 bash[23198]: audit 2024-04-18T22:59:38.921518+0000 mon.a (mon.0) 505 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-04-18T22:59:39.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:39 smithi055 bash[23198]: audit 2024-04-18T22:59:38.923298+0000 mon.a (mon.0) 506 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:59:40.270 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:40 smithi069 bash[23476]: cephadm 2024-04-18T22:59:38.925015+0000 mgr.a (mgr.14152) 239 : cephadm 1 Deploying daemon osd.4 on smithi069 2024-04-18T22:59:40.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:40 smithi016 bash[21452]: cephadm 2024-04-18T22:59:38.925015+0000 mgr.a (mgr.14152) 239 : cephadm 1 Deploying daemon osd.4 on smithi069 2024-04-18T22:59:40.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:40 smithi055 bash[23198]: cephadm 2024-04-18T22:59:38.925015+0000 mgr.a (mgr.14152) 239 : cephadm 1 Deploying daemon osd.4 on smithi069 2024-04-18T22:59:41.250 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:41 smithi069 bash[23476]: cluster 2024-04-18T22:59:39.894947+0000 mgr.a (mgr.14152) 240 : cluster 0 pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:41.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:41 smithi016 bash[21452]: cluster 2024-04-18T22:59:39.894947+0000 mgr.a (mgr.14152) 240 : cluster 0 pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:41.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:41 smithi055 bash[23198]: cluster 2024-04-18T22:59:39.894947+0000 mgr.a (mgr.14152) 240 : cluster 0 pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:42.918 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:42 smithi069 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:59:43.250 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:42 smithi069 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T22:59:43.250 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:43 smithi069 bash[23476]: cluster 2024-04-18T22:59:41.895460+0000 mgr.a (mgr.14152) 241 : cluster 0 pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:43.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:43 smithi016 bash[21452]: cluster 2024-04-18T22:59:41.895460+0000 mgr.a (mgr.14152) 241 : cluster 0 pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:43.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:43 smithi055 bash[23198]: cluster 2024-04-18T22:59:41.895460+0000 mgr.a (mgr.14152) 241 : cluster 0 pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:44.327 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:44 smithi069 bash[23476]: audit 2024-04-18T22:59:43.067578+0000 mon.a (mon.0) 507 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:44.328 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:44 smithi069 bash[23476]: audit 2024-04-18T22:59:43.070788+0000 mon.a (mon.0) 508 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:59:44.328 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:44 smithi069 bash[23476]: audit 2024-04-18T22:59:43.075624+0000 mon.a (mon.0) 509 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:44.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:44 smithi016 bash[21452]: audit 2024-04-18T22:59:43.067578+0000 mon.a (mon.0) 507 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:44.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:44 smithi016 bash[21452]: audit 2024-04-18T22:59:43.070788+0000 mon.a (mon.0) 508 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:59:44.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:44 smithi016 bash[21452]: audit 2024-04-18T22:59:43.075624+0000 mon.a (mon.0) 509 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:44.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:44 smithi055 bash[23198]: audit 2024-04-18T22:59:43.067578+0000 mon.a (mon.0) 507 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:44.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:44 smithi055 bash[23198]: audit 2024-04-18T22:59:43.070788+0000 mon.a (mon.0) 508 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:59:44.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:44 smithi055 bash[23198]: audit 2024-04-18T22:59:43.075624+0000 mon.a (mon.0) 509 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:45.250 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:45 smithi069 bash[23476]: cluster 2024-04-18T22:59:43.896107+0000 mgr.a (mgr.14152) 242 : cluster 0 pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:45.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:45 smithi016 bash[21452]: cluster 2024-04-18T22:59:43.896107+0000 mgr.a (mgr.14152) 242 : cluster 0 pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:45.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:45 smithi055 bash[23198]: cluster 2024-04-18T22:59:43.896107+0000 mgr.a (mgr.14152) 242 : cluster 0 pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:47.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:47 smithi016 bash[21452]: cluster 2024-04-18T22:59:45.896666+0000 mgr.a (mgr.14152) 243 : cluster 0 pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:47.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:47 smithi055 bash[23198]: cluster 2024-04-18T22:59:45.896666+0000 mgr.a (mgr.14152) 243 : cluster 0 pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:47.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:47 smithi069 bash[23476]: cluster 2024-04-18T22:59:45.896666+0000 mgr.a (mgr.14152) 243 : cluster 0 pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:49.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:49 smithi016 bash[21452]: cluster 2024-04-18T22:59:47.897306+0000 mgr.a (mgr.14152) 244 : cluster 0 pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:49.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:49 smithi055 bash[23198]: cluster 2024-04-18T22:59:47.897306+0000 mgr.a (mgr.14152) 244 : cluster 0 pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:49.485 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:49 smithi069 bash[23476]: cluster 2024-04-18T22:59:47.897306+0000 mgr.a (mgr.14152) 244 : cluster 0 pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:50.414 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:50 smithi069 bash[23476]: audit 2024-04-18T22:59:49.118573+0000 mon.a (mon.0) 510 : audit 1 from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-18T22:59:50.414 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:50 smithi069 bash[23476]: audit 2024-04-18T22:59:49.119934+0000 mon.c (mon.1) 8 : audit 1 from='osd.4 [v2:172.21.15.69:6800/3717804390,v1:172.21.15.69:6801/3717804390]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-18T22:59:50.414 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:50 smithi069 bash[23476]: audit 2024-04-18T22:59:49.735722+0000 mon.a (mon.0) 511 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:50.414 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:50 smithi069 bash[23476]: audit 2024-04-18T22:59:49.744030+0000 mon.a (mon.0) 512 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:50.414 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:50 smithi069 bash[23476]: audit 2024-04-18T22:59:49.745940+0000 mon.a (mon.0) 513 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:59:50.414 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:50 smithi069 bash[23476]: audit 2024-04-18T22:59:49.747765+0000 mon.a (mon.0) 514 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:59:50.414 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:50 smithi069 bash[23476]: audit 2024-04-18T22:59:49.757906+0000 mon.a (mon.0) 515 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:50.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:50 smithi016 bash[21452]: audit 2024-04-18T22:59:49.118573+0000 mon.a (mon.0) 510 : audit 1 from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-18T22:59:50.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:50 smithi016 bash[21452]: audit 2024-04-18T22:59:49.119934+0000 mon.c (mon.1) 8 : audit 1 from='osd.4 [v2:172.21.15.69:6800/3717804390,v1:172.21.15.69:6801/3717804390]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-18T22:59:50.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:50 smithi016 bash[21452]: audit 2024-04-18T22:59:49.735722+0000 mon.a (mon.0) 511 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:50.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:50 smithi016 bash[21452]: audit 2024-04-18T22:59:49.744030+0000 mon.a (mon.0) 512 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:50.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:50 smithi016 bash[21452]: audit 2024-04-18T22:59:49.745940+0000 mon.a (mon.0) 513 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:59:50.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:50 smithi016 bash[21452]: audit 2024-04-18T22:59:49.747765+0000 mon.a (mon.0) 514 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:59:50.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:50 smithi016 bash[21452]: audit 2024-04-18T22:59:49.757906+0000 mon.a (mon.0) 515 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:50.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:50 smithi055 bash[23198]: audit 2024-04-18T22:59:49.118573+0000 mon.a (mon.0) 510 : audit 1 from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-18T22:59:50.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:50 smithi055 bash[23198]: audit 2024-04-18T22:59:49.119934+0000 mon.c (mon.1) 8 : audit 1 from='osd.4 [v2:172.21.15.69:6800/3717804390,v1:172.21.15.69:6801/3717804390]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-18T22:59:50.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:50 smithi055 bash[23198]: audit 2024-04-18T22:59:49.735722+0000 mon.a (mon.0) 511 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:50.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:50 smithi055 bash[23198]: audit 2024-04-18T22:59:49.744030+0000 mon.a (mon.0) 512 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:50.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:50 smithi055 bash[23198]: audit 2024-04-18T22:59:49.745940+0000 mon.a (mon.0) 513 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T22:59:50.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:50 smithi055 bash[23198]: audit 2024-04-18T22:59:49.747765+0000 mon.a (mon.0) 514 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T22:59:50.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:50 smithi055 bash[23198]: audit 2024-04-18T22:59:49.757906+0000 mon.a (mon.0) 515 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:51.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:51 smithi016 bash[21452]: cluster 2024-04-18T22:59:49.897994+0000 mgr.a (mgr.14152) 245 : cluster 0 pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:51.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:51 smithi016 bash[21452]: audit 2024-04-18T22:59:50.104447+0000 mon.a (mon.0) 516 : audit 1 from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-04-18T22:59:51.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:51 smithi016 bash[21452]: cluster 2024-04-18T22:59:50.108906+0000 mon.a (mon.0) 517 : cluster 0 osdmap e31: 5 total, 4 up, 5 in 2024-04-18T22:59:51.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:51 smithi016 bash[21452]: audit 2024-04-18T22:59:50.109592+0000 mon.a (mon.0) 518 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-18T22:59:51.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:51 smithi016 bash[21452]: audit 2024-04-18T22:59:50.111391+0000 mon.a (mon.0) 519 : audit 1 from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi069", "root=default"]}]: dispatch 2024-04-18T22:59:51.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:51 smithi016 bash[21452]: audit 2024-04-18T22:59:50.112634+0000 mon.c (mon.1) 9 : audit 1 from='osd.4 [v2:172.21.15.69:6800/3717804390,v1:172.21.15.69:6801/3717804390]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi069", "root=default"]}]: dispatch 2024-04-18T22:59:51.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:51 smithi055 bash[23198]: cluster 2024-04-18T22:59:49.897994+0000 mgr.a (mgr.14152) 245 : cluster 0 pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:51.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:51 smithi055 bash[23198]: audit 2024-04-18T22:59:50.104447+0000 mon.a (mon.0) 516 : audit 1 from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-04-18T22:59:51.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:51 smithi055 bash[23198]: cluster 2024-04-18T22:59:50.108906+0000 mon.a (mon.0) 517 : cluster 0 osdmap e31: 5 total, 4 up, 5 in 2024-04-18T22:59:51.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:51 smithi055 bash[23198]: audit 2024-04-18T22:59:50.109592+0000 mon.a (mon.0) 518 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-18T22:59:51.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:51 smithi055 bash[23198]: audit 2024-04-18T22:59:50.111391+0000 mon.a (mon.0) 519 : audit 1 from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi069", "root=default"]}]: dispatch 2024-04-18T22:59:51.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:51 smithi055 bash[23198]: audit 2024-04-18T22:59:50.112634+0000 mon.c (mon.1) 9 : audit 1 from='osd.4 [v2:172.21.15.69:6800/3717804390,v1:172.21.15.69:6801/3717804390]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi069", "root=default"]}]: dispatch 2024-04-18T22:59:51.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:51 smithi069 bash[23476]: cluster 2024-04-18T22:59:49.897994+0000 mgr.a (mgr.14152) 245 : cluster 0 pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:51.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:51 smithi069 bash[23476]: audit 2024-04-18T22:59:50.104447+0000 mon.a (mon.0) 516 : audit 1 from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-04-18T22:59:51.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:51 smithi069 bash[23476]: cluster 2024-04-18T22:59:50.108906+0000 mon.a (mon.0) 517 : cluster 0 osdmap e31: 5 total, 4 up, 5 in 2024-04-18T22:59:51.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:51 smithi069 bash[23476]: audit 2024-04-18T22:59:50.109592+0000 mon.a (mon.0) 518 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-18T22:59:51.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:51 smithi069 bash[23476]: audit 2024-04-18T22:59:50.111391+0000 mon.a (mon.0) 519 : audit 1 from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi069", "root=default"]}]: dispatch 2024-04-18T22:59:51.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:51 smithi069 bash[23476]: audit 2024-04-18T22:59:50.112634+0000 mon.c (mon.1) 9 : audit 1 from='osd.4 [v2:172.21.15.69:6800/3717804390,v1:172.21.15.69:6801/3717804390]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi069", "root=default"]}]: dispatch 2024-04-18T22:59:52.391 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:52 smithi069 bash[23476]: cluster 2024-04-18T22:59:50.117571+0000 osd.4 (osd.4) 1 : cluster 0 purged_snaps scrub starts 2024-04-18T22:59:52.391 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:52 smithi069 bash[23476]: cluster 2024-04-18T22:59:50.117651+0000 osd.4 (osd.4) 2 : cluster 0 purged_snaps scrub ok 2024-04-18T22:59:52.392 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:52 smithi069 bash[23476]: audit 2024-04-18T22:59:51.107210+0000 mon.a (mon.0) 520 : audit 1 from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi069", "root=default"]}]': finished 2024-04-18T22:59:52.392 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:52 smithi069 bash[23476]: cluster 2024-04-18T22:59:51.112187+0000 mon.a (mon.0) 521 : cluster 0 osdmap e32: 5 total, 4 up, 5 in 2024-04-18T22:59:52.392 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:52 smithi069 bash[23476]: audit 2024-04-18T22:59:51.113175+0000 mon.a (mon.0) 522 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-18T22:59:52.392 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:52 smithi069 bash[23476]: audit 2024-04-18T22:59:51.124473+0000 mon.a (mon.0) 523 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-18T22:59:52.392 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:52 smithi069 bash[23476]: audit 2024-04-18T22:59:51.612428+0000 mon.a (mon.0) 524 : audit 1 from='osd.4 ' entity='osd.4' 2024-04-18T22:59:52.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:52 smithi016 bash[21452]: cluster 2024-04-18T22:59:50.117571+0000 osd.4 (osd.4) 1 : cluster 0 purged_snaps scrub starts 2024-04-18T22:59:52.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:52 smithi016 bash[21452]: cluster 2024-04-18T22:59:50.117651+0000 osd.4 (osd.4) 2 : cluster 0 purged_snaps scrub ok 2024-04-18T22:59:52.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:52 smithi016 bash[21452]: audit 2024-04-18T22:59:51.107210+0000 mon.a (mon.0) 520 : audit 1 from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi069", "root=default"]}]': finished 2024-04-18T22:59:52.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:52 smithi016 bash[21452]: cluster 2024-04-18T22:59:51.112187+0000 mon.a (mon.0) 521 : cluster 0 osdmap e32: 5 total, 4 up, 5 in 2024-04-18T22:59:52.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:52 smithi016 bash[21452]: audit 2024-04-18T22:59:51.113175+0000 mon.a (mon.0) 522 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-18T22:59:52.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:52 smithi016 bash[21452]: audit 2024-04-18T22:59:51.124473+0000 mon.a (mon.0) 523 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-18T22:59:52.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:52 smithi016 bash[21452]: audit 2024-04-18T22:59:51.612428+0000 mon.a (mon.0) 524 : audit 1 from='osd.4 ' entity='osd.4' 2024-04-18T22:59:52.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:52 smithi055 bash[23198]: cluster 2024-04-18T22:59:50.117571+0000 osd.4 (osd.4) 1 : cluster 0 purged_snaps scrub starts 2024-04-18T22:59:52.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:52 smithi055 bash[23198]: cluster 2024-04-18T22:59:50.117651+0000 osd.4 (osd.4) 2 : cluster 0 purged_snaps scrub ok 2024-04-18T22:59:52.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:52 smithi055 bash[23198]: audit 2024-04-18T22:59:51.107210+0000 mon.a (mon.0) 520 : audit 1 from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi069", "root=default"]}]': finished 2024-04-18T22:59:52.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:52 smithi055 bash[23198]: cluster 2024-04-18T22:59:51.112187+0000 mon.a (mon.0) 521 : cluster 0 osdmap e32: 5 total, 4 up, 5 in 2024-04-18T22:59:52.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:52 smithi055 bash[23198]: audit 2024-04-18T22:59:51.113175+0000 mon.a (mon.0) 522 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-18T22:59:52.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:52 smithi055 bash[23198]: audit 2024-04-18T22:59:51.124473+0000 mon.a (mon.0) 523 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-18T22:59:52.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:52 smithi055 bash[23198]: audit 2024-04-18T22:59:51.612428+0000 mon.a (mon.0) 524 : audit 1 from='osd.4 ' entity='osd.4' 2024-04-18T22:59:53.107 INFO:teuthology.orchestra.run.smithi069.stdout:Created osd(s) 4 on host 'smithi069' 2024-04-18T22:59:53.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:53 smithi016 bash[21452]: cluster 2024-04-18T22:59:51.898604+0000 mgr.a (mgr.14152) 246 : cluster 0 pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:53.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:53 smithi016 bash[21452]: audit 2024-04-18T22:59:52.125941+0000 mon.a (mon.0) 525 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-18T22:59:53.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:53 smithi016 bash[21452]: cluster 2024-04-18T22:59:52.132939+0000 mon.a (mon.0) 526 : cluster 1 osd.4 [v2:172.21.15.69:6800/3717804390,v1:172.21.15.69:6801/3717804390] boot 2024-04-18T22:59:53.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:53 smithi016 bash[21452]: cluster 2024-04-18T22:59:52.133025+0000 mon.a (mon.0) 527 : cluster 0 osdmap e33: 5 total, 5 up, 5 in 2024-04-18T22:59:53.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:53 smithi016 bash[21452]: audit 2024-04-18T22:59:52.133274+0000 mon.a (mon.0) 528 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-18T22:59:53.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:53 smithi016 bash[21452]: audit 2024-04-18T22:59:53.069471+0000 mon.a (mon.0) 529 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:59:53.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:53 smithi016 bash[21452]: audit 2024-04-18T22:59:53.075234+0000 mon.a (mon.0) 530 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:53.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:53 smithi016 bash[21452]: audit 2024-04-18T22:59:53.084014+0000 mon.a (mon.0) 531 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:53.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:53 smithi055 bash[23198]: cluster 2024-04-18T22:59:51.898604+0000 mgr.a (mgr.14152) 246 : cluster 0 pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:53.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:53 smithi055 bash[23198]: audit 2024-04-18T22:59:52.125941+0000 mon.a (mon.0) 525 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-18T22:59:53.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:53 smithi055 bash[23198]: cluster 2024-04-18T22:59:52.132939+0000 mon.a (mon.0) 526 : cluster 1 osd.4 [v2:172.21.15.69:6800/3717804390,v1:172.21.15.69:6801/3717804390] boot 2024-04-18T22:59:53.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:53 smithi055 bash[23198]: cluster 2024-04-18T22:59:52.133025+0000 mon.a (mon.0) 527 : cluster 0 osdmap e33: 5 total, 5 up, 5 in 2024-04-18T22:59:53.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:53 smithi055 bash[23198]: audit 2024-04-18T22:59:52.133274+0000 mon.a (mon.0) 528 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-18T22:59:53.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:53 smithi055 bash[23198]: audit 2024-04-18T22:59:53.069471+0000 mon.a (mon.0) 529 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:59:53.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:53 smithi055 bash[23198]: audit 2024-04-18T22:59:53.075234+0000 mon.a (mon.0) 530 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:53.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:53 smithi055 bash[23198]: audit 2024-04-18T22:59:53.084014+0000 mon.a (mon.0) 531 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:53.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:53 smithi069 bash[23476]: cluster 2024-04-18T22:59:51.898604+0000 mgr.a (mgr.14152) 246 : cluster 0 pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-18T22:59:53.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:53 smithi069 bash[23476]: audit 2024-04-18T22:59:52.125941+0000 mon.a (mon.0) 525 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-18T22:59:53.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:53 smithi069 bash[23476]: cluster 2024-04-18T22:59:52.132939+0000 mon.a (mon.0) 526 : cluster 1 osd.4 [v2:172.21.15.69:6800/3717804390,v1:172.21.15.69:6801/3717804390] boot 2024-04-18T22:59:53.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:53 smithi069 bash[23476]: cluster 2024-04-18T22:59:52.133025+0000 mon.a (mon.0) 527 : cluster 0 osdmap e33: 5 total, 5 up, 5 in 2024-04-18T22:59:53.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:53 smithi069 bash[23476]: audit 2024-04-18T22:59:52.133274+0000 mon.a (mon.0) 528 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-18T22:59:53.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:53 smithi069 bash[23476]: audit 2024-04-18T22:59:53.069471+0000 mon.a (mon.0) 529 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T22:59:53.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:53 smithi069 bash[23476]: audit 2024-04-18T22:59:53.075234+0000 mon.a (mon.0) 530 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:53.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:53 smithi069 bash[23476]: audit 2024-04-18T22:59:53.084014+0000 mon.a (mon.0) 531 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T22:59:53.722 DEBUG:teuthology.orchestra.run.smithi069:osd.4> sudo journalctl -f -n 0 -u ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@osd.4.service 2024-04-18T22:59:53.724 INFO:tasks.cephadm:Deploying osd.5 on smithi069 with /dev/vg_nvme/lv_3... 2024-04-18T22:59:53.724 DEBUG:teuthology.orchestra.run.smithi069:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-04-18T22:59:54.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:54 smithi016 bash[21452]: cluster 2024-04-18T22:59:53.135476+0000 mon.a (mon.0) 532 : cluster 0 osdmap e34: 5 total, 5 up, 5 in 2024-04-18T22:59:54.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:54 smithi055 bash[23198]: cluster 2024-04-18T22:59:53.135476+0000 mon.a (mon.0) 532 : cluster 0 osdmap e34: 5 total, 5 up, 5 in 2024-04-18T22:59:54.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:54 smithi069 bash[23476]: cluster 2024-04-18T22:59:53.135476+0000 mon.a (mon.0) 532 : cluster 0 osdmap e34: 5 total, 5 up, 5 in 2024-04-18T22:59:55.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:55 smithi016 bash[21452]: cluster 2024-04-18T22:59:53.899107+0000 mgr.a (mgr.14152) 247 : cluster 0 pgmap v212: 1 pgs: 1 remapped+peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T22:59:55.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:55 smithi016 bash[21452]: cluster 2024-04-18T22:59:54.143431+0000 mon.a (mon.0) 533 : cluster 0 osdmap e35: 5 total, 5 up, 5 in 2024-04-18T22:59:55.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:55 smithi016 bash[21452]: cluster 2024-04-18T22:59:54.965009+0000 mon.a (mon.0) 534 : cluster 0 osdmap e36: 5 total, 5 up, 5 in 2024-04-18T22:59:55.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:55 smithi055 bash[23198]: cluster 2024-04-18T22:59:53.899107+0000 mgr.a (mgr.14152) 247 : cluster 0 pgmap v212: 1 pgs: 1 remapped+peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T22:59:55.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:55 smithi055 bash[23198]: cluster 2024-04-18T22:59:54.143431+0000 mon.a (mon.0) 533 : cluster 0 osdmap e35: 5 total, 5 up, 5 in 2024-04-18T22:59:55.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:55 smithi055 bash[23198]: cluster 2024-04-18T22:59:54.965009+0000 mon.a (mon.0) 534 : cluster 0 osdmap e36: 5 total, 5 up, 5 in 2024-04-18T22:59:55.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:55 smithi069 bash[23476]: cluster 2024-04-18T22:59:53.899107+0000 mgr.a (mgr.14152) 247 : cluster 0 pgmap v212: 1 pgs: 1 remapped+peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T22:59:55.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:55 smithi069 bash[23476]: cluster 2024-04-18T22:59:54.143431+0000 mon.a (mon.0) 533 : cluster 0 osdmap e35: 5 total, 5 up, 5 in 2024-04-18T22:59:55.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:55 smithi069 bash[23476]: cluster 2024-04-18T22:59:54.965009+0000 mon.a (mon.0) 534 : cluster 0 osdmap e36: 5 total, 5 up, 5 in 2024-04-18T22:59:57.249 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:56 smithi069 bash[23476]: cluster 2024-04-18T22:59:55.899718+0000 mgr.a (mgr.14152) 248 : cluster 0 pgmap v215: 1 pgs: 1 remapped+peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T22:59:57.250 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:56 smithi069 bash[23476]: cluster 2024-04-18T22:59:55.967415+0000 mon.a (mon.0) 535 : cluster 0 osdmap e37: 5 total, 5 up, 5 in 2024-04-18T22:59:57.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:56 smithi016 bash[21452]: cluster 2024-04-18T22:59:55.899718+0000 mgr.a (mgr.14152) 248 : cluster 0 pgmap v215: 1 pgs: 1 remapped+peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T22:59:57.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:56 smithi016 bash[21452]: cluster 2024-04-18T22:59:55.967415+0000 mon.a (mon.0) 535 : cluster 0 osdmap e37: 5 total, 5 up, 5 in 2024-04-18T22:59:57.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:56 smithi055 bash[23198]: cluster 2024-04-18T22:59:55.899718+0000 mgr.a (mgr.14152) 248 : cluster 0 pgmap v215: 1 pgs: 1 remapped+peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T22:59:57.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:56 smithi055 bash[23198]: cluster 2024-04-18T22:59:55.967415+0000 mon.a (mon.0) 535 : cluster 0 osdmap e37: 5 total, 5 up, 5 in 2024-04-18T22:59:58.043 INFO:teuthology.orchestra.run.smithi069.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.c/config 2024-04-18T22:59:59.249 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 22:59:58 smithi069 bash[23476]: cluster 2024-04-18T22:59:57.900421+0000 mgr.a (mgr.14152) 249 : cluster 0 pgmap v217: 1 pgs: 1 remapped+peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T22:59:59.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 22:59:58 smithi016 bash[21452]: cluster 2024-04-18T22:59:57.900421+0000 mgr.a (mgr.14152) 249 : cluster 0 pgmap v217: 1 pgs: 1 remapped+peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T22:59:59.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 22:59:58 smithi055 bash[23198]: cluster 2024-04-18T22:59:57.900421+0000 mgr.a (mgr.14152) 249 : cluster 0 pgmap v217: 1 pgs: 1 remapped+peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:01.060 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:00 smithi069 bash[23476]: cluster 2024-04-18T22:59:59.901165+0000 mgr.a (mgr.14152) 250 : cluster 0 pgmap v218: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-04-18T23:00:01.060 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:00 smithi069 bash[23476]: cluster 2024-04-18T23:00:00.000157+0000 mon.a (mon.0) 536 : cluster 1 overall HEALTH_OK 2024-04-18T23:00:01.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:00 smithi016 bash[21452]: cluster 2024-04-18T22:59:59.901165+0000 mgr.a (mgr.14152) 250 : cluster 0 pgmap v218: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-04-18T23:00:01.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:00 smithi016 bash[21452]: cluster 2024-04-18T23:00:00.000157+0000 mon.a (mon.0) 536 : cluster 1 overall HEALTH_OK 2024-04-18T23:00:01.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:00 smithi055 bash[23198]: cluster 2024-04-18T22:59:59.901165+0000 mgr.a (mgr.14152) 250 : cluster 0 pgmap v218: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-04-18T23:00:01.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:00 smithi055 bash[23198]: cluster 2024-04-18T23:00:00.000157+0000 mon.a (mon.0) 536 : cluster 1 overall HEALTH_OK 2024-04-18T23:00:02.681 INFO:teuthology.orchestra.run.smithi069.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-04-18T23:00:02.681 INFO:teuthology.orchestra.run.smithi069.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-04-18T23:00:02.681 INFO:teuthology.orchestra.run.smithi069.stderr: stderr: 10+0 records in 2024-04-18T23:00:02.681 INFO:teuthology.orchestra.run.smithi069.stderr:10+0 records out 2024-04-18T23:00:02.681 INFO:teuthology.orchestra.run.smithi069.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0135879 s, 772 MB/s 2024-04-18T23:00:02.681 INFO:teuthology.orchestra.run.smithi069.stderr:--> Zapping successful for: 2024-04-18T23:00:03.249 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:02 smithi069 bash[23476]: cluster 2024-04-18T23:00:01.901856+0000 mgr.a (mgr.14152) 251 : cluster 0 pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 74 KiB/s, 0 objects/s recovering 2024-04-18T23:00:03.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:02 smithi016 bash[21452]: cluster 2024-04-18T23:00:01.901856+0000 mgr.a (mgr.14152) 251 : cluster 0 pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 74 KiB/s, 0 objects/s recovering 2024-04-18T23:00:03.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:02 smithi055 bash[23198]: cluster 2024-04-18T23:00:01.901856+0000 mgr.a (mgr.14152) 251 : cluster 0 pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 74 KiB/s, 0 objects/s recovering 2024-04-18T23:00:03.595 DEBUG:teuthology.orchestra.run.smithi069:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph orch daemon add osd smithi069:vg_nvme/lv_3 2024-04-18T23:00:05.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:05 smithi016 bash[21452]: cluster 2024-04-18T23:00:03.902542+0000 mgr.a (mgr.14152) 252 : cluster 0 pgmap v220: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 64 KiB/s, 0 objects/s recovering 2024-04-18T23:00:05.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:05 smithi016 bash[21452]: cephadm 2024-04-18T23:00:04.018906+0000 mgr.a (mgr.14152) 253 : cephadm 1 Detected new or changed devices on smithi069 2024-04-18T23:00:05.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:05 smithi016 bash[21452]: audit 2024-04-18T23:00:04.026909+0000 mon.a (mon.0) 537 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:05.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:05 smithi016 bash[21452]: audit 2024-04-18T23:00:04.035132+0000 mon.a (mon.0) 538 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:05.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:05 smithi016 bash[21452]: audit 2024-04-18T23:00:04.037135+0000 mon.a (mon.0) 539 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-04-18T23:00:05.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:05 smithi016 bash[21452]: cephadm 2024-04-18T23:00:04.038615+0000 mgr.a (mgr.14152) 254 : cephadm 1 Adjusting osd_memory_target on smithi069 to 21361M 2024-04-18T23:00:05.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:05 smithi016 bash[21452]: audit 2024-04-18T23:00:04.044771+0000 mon.a (mon.0) 540 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:05.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:05 smithi016 bash[21452]: audit 2024-04-18T23:00:04.049245+0000 mon.a (mon.0) 541 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:00:05.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:05 smithi016 bash[21452]: audit 2024-04-18T23:00:04.051130+0000 mon.a (mon.0) 542 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T23:00:05.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:05 smithi016 bash[21452]: audit 2024-04-18T23:00:04.061353+0000 mon.a (mon.0) 543 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:05.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:05 smithi055 bash[23198]: cluster 2024-04-18T23:00:03.902542+0000 mgr.a (mgr.14152) 252 : cluster 0 pgmap v220: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 64 KiB/s, 0 objects/s recovering 2024-04-18T23:00:05.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:05 smithi055 bash[23198]: cephadm 2024-04-18T23:00:04.018906+0000 mgr.a (mgr.14152) 253 : cephadm 1 Detected new or changed devices on smithi069 2024-04-18T23:00:05.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:05 smithi055 bash[23198]: audit 2024-04-18T23:00:04.026909+0000 mon.a (mon.0) 537 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:05.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:05 smithi055 bash[23198]: audit 2024-04-18T23:00:04.035132+0000 mon.a (mon.0) 538 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:05.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:05 smithi055 bash[23198]: audit 2024-04-18T23:00:04.037135+0000 mon.a (mon.0) 539 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-04-18T23:00:05.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:05 smithi055 bash[23198]: cephadm 2024-04-18T23:00:04.038615+0000 mgr.a (mgr.14152) 254 : cephadm 1 Adjusting osd_memory_target on smithi069 to 21361M 2024-04-18T23:00:05.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:05 smithi055 bash[23198]: audit 2024-04-18T23:00:04.044771+0000 mon.a (mon.0) 540 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:05.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:05 smithi055 bash[23198]: audit 2024-04-18T23:00:04.049245+0000 mon.a (mon.0) 541 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:00:05.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:05 smithi055 bash[23198]: audit 2024-04-18T23:00:04.051130+0000 mon.a (mon.0) 542 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T23:00:05.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:05 smithi055 bash[23198]: audit 2024-04-18T23:00:04.061353+0000 mon.a (mon.0) 543 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:05.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:05 smithi069 bash[23476]: cluster 2024-04-18T23:00:03.902542+0000 mgr.a (mgr.14152) 252 : cluster 0 pgmap v220: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 64 KiB/s, 0 objects/s recovering 2024-04-18T23:00:05.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:05 smithi069 bash[23476]: cephadm 2024-04-18T23:00:04.018906+0000 mgr.a (mgr.14152) 253 : cephadm 1 Detected new or changed devices on smithi069 2024-04-18T23:00:05.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:05 smithi069 bash[23476]: audit 2024-04-18T23:00:04.026909+0000 mon.a (mon.0) 537 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:05.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:05 smithi069 bash[23476]: audit 2024-04-18T23:00:04.035132+0000 mon.a (mon.0) 538 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:05.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:05 smithi069 bash[23476]: audit 2024-04-18T23:00:04.037135+0000 mon.a (mon.0) 539 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-04-18T23:00:05.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:05 smithi069 bash[23476]: cephadm 2024-04-18T23:00:04.038615+0000 mgr.a (mgr.14152) 254 : cephadm 1 Adjusting osd_memory_target on smithi069 to 21361M 2024-04-18T23:00:05.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:05 smithi069 bash[23476]: audit 2024-04-18T23:00:04.044771+0000 mon.a (mon.0) 540 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:05.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:05 smithi069 bash[23476]: audit 2024-04-18T23:00:04.049245+0000 mon.a (mon.0) 541 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:00:05.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:05 smithi069 bash[23476]: audit 2024-04-18T23:00:04.051130+0000 mon.a (mon.0) 542 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T23:00:05.501 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:05 smithi069 bash[23476]: audit 2024-04-18T23:00:04.061353+0000 mon.a (mon.0) 543 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:07.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:07 smithi016 bash[21452]: cluster 2024-04-18T23:00:05.903153+0000 mgr.a (mgr.14152) 255 : cluster 0 pgmap v221: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-04-18T23:00:07.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:07 smithi055 bash[23198]: cluster 2024-04-18T23:00:05.903153+0000 mgr.a (mgr.14152) 255 : cluster 0 pgmap v221: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-04-18T23:00:07.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:07 smithi069 bash[23476]: cluster 2024-04-18T23:00:05.903153+0000 mgr.a (mgr.14152) 255 : cluster 0 pgmap v221: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-04-18T23:00:08.303 INFO:teuthology.orchestra.run.smithi069.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.c/config 2024-04-18T23:00:09.306 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:09 smithi069 bash[23476]: cluster 2024-04-18T23:00:07.903660+0000 mgr.a (mgr.14152) 256 : cluster 0 pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-04-18T23:00:09.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:09 smithi016 bash[21452]: cluster 2024-04-18T23:00:07.903660+0000 mgr.a (mgr.14152) 256 : cluster 0 pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-04-18T23:00:09.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:09 smithi055 bash[23198]: cluster 2024-04-18T23:00:07.903660+0000 mgr.a (mgr.14152) 256 : cluster 0 pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-04-18T23:00:11.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:11 smithi016 bash[21452]: cluster 2024-04-18T23:00:09.904216+0000 mgr.a (mgr.14152) 257 : cluster 0 pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-04-18T23:00:11.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:11 smithi055 bash[23198]: cluster 2024-04-18T23:00:09.904216+0000 mgr.a (mgr.14152) 257 : cluster 0 pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-04-18T23:00:11.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:11 smithi069 bash[23476]: cluster 2024-04-18T23:00:09.904216+0000 mgr.a (mgr.14152) 257 : cluster 0 pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-04-18T23:00:12.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:12 smithi016 bash[21452]: audit 2024-04-18T23:00:11.145081+0000 mgr.a (mgr.14152) 258 : audit 0 from='client.24202 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi069:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T23:00:12.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:12 smithi016 bash[21452]: audit 2024-04-18T23:00:11.152184+0000 mon.a (mon.0) 544 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-18T23:00:12.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:12 smithi016 bash[21452]: audit 2024-04-18T23:00:11.158638+0000 mon.a (mon.0) 545 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-18T23:00:12.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:12 smithi016 bash[21452]: audit 2024-04-18T23:00:11.160397+0000 mon.a (mon.0) 546 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:00:12.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:12 smithi055 bash[23198]: audit 2024-04-18T23:00:11.145081+0000 mgr.a (mgr.14152) 258 : audit 0 from='client.24202 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi069:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T23:00:12.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:12 smithi055 bash[23198]: audit 2024-04-18T23:00:11.152184+0000 mon.a (mon.0) 544 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-18T23:00:12.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:12 smithi055 bash[23198]: audit 2024-04-18T23:00:11.158638+0000 mon.a (mon.0) 545 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-18T23:00:12.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:12 smithi055 bash[23198]: audit 2024-04-18T23:00:11.160397+0000 mon.a (mon.0) 546 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:00:12.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:12 smithi069 bash[23476]: audit 2024-04-18T23:00:11.145081+0000 mgr.a (mgr.14152) 258 : audit 0 from='client.24202 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi069:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T23:00:12.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:12 smithi069 bash[23476]: audit 2024-04-18T23:00:11.152184+0000 mon.a (mon.0) 544 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-18T23:00:12.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:12 smithi069 bash[23476]: audit 2024-04-18T23:00:11.158638+0000 mon.a (mon.0) 545 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-18T23:00:12.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:12 smithi069 bash[23476]: audit 2024-04-18T23:00:11.160397+0000 mon.a (mon.0) 546 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:00:13.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:13 smithi016 bash[21452]: cluster 2024-04-18T23:00:11.904770+0000 mgr.a (mgr.14152) 259 : cluster 0 pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:13.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:13 smithi055 bash[23198]: cluster 2024-04-18T23:00:11.904770+0000 mgr.a (mgr.14152) 259 : cluster 0 pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:13.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:13 smithi069 bash[23476]: cluster 2024-04-18T23:00:11.904770+0000 mgr.a (mgr.14152) 259 : cluster 0 pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:15.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:15 smithi016 bash[21452]: cluster 2024-04-18T23:00:13.905266+0000 mgr.a (mgr.14152) 260 : cluster 0 pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:15.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:15 smithi055 bash[23198]: cluster 2024-04-18T23:00:13.905266+0000 mgr.a (mgr.14152) 260 : cluster 0 pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:15.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:15 smithi069 bash[23476]: cluster 2024-04-18T23:00:13.905266+0000 mgr.a (mgr.14152) 260 : cluster 0 pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:17.249 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:17 smithi069 bash[23476]: cluster 2024-04-18T23:00:15.905809+0000 mgr.a (mgr.14152) 261 : cluster 0 pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:17.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:17 smithi016 bash[21452]: cluster 2024-04-18T23:00:15.905809+0000 mgr.a (mgr.14152) 261 : cluster 0 pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:17.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:17 smithi055 bash[23198]: cluster 2024-04-18T23:00:15.905809+0000 mgr.a (mgr.14152) 261 : cluster 0 pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:19.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:19 smithi016 bash[21452]: cluster 2024-04-18T23:00:17.906339+0000 mgr.a (mgr.14152) 262 : cluster 0 pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:19.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:19 smithi055 bash[23198]: cluster 2024-04-18T23:00:17.906339+0000 mgr.a (mgr.14152) 262 : cluster 0 pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:19.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:19 smithi069 bash[23476]: cluster 2024-04-18T23:00:17.906339+0000 mgr.a (mgr.14152) 262 : cluster 0 pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:20.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:20 smithi016 bash[21452]: audit 2024-04-18T23:00:19.344761+0000 mon.a (mon.0) 547 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3cbe1ebd-f75e-481a-a6be-17b1565b5e85"}]: dispatch 2024-04-18T23:00:20.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:20 smithi016 bash[21452]: audit 2024-04-18T23:00:19.346000+0000 mon.c (mon.1) 10 : audit 1 from='client.? 172.21.15.69:0/3941205960' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3cbe1ebd-f75e-481a-a6be-17b1565b5e85"}]: dispatch 2024-04-18T23:00:20.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:20 smithi016 bash[21452]: audit 2024-04-18T23:00:19.348226+0000 mon.a (mon.0) 548 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3cbe1ebd-f75e-481a-a6be-17b1565b5e85"}]': finished 2024-04-18T23:00:20.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:20 smithi016 bash[21452]: cluster 2024-04-18T23:00:19.353540+0000 mon.a (mon.0) 549 : cluster 0 osdmap e38: 6 total, 5 up, 6 in 2024-04-18T23:00:20.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:20 smithi016 bash[21452]: audit 2024-04-18T23:00:19.354126+0000 mon.a (mon.0) 550 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-18T23:00:20.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:20 smithi055 bash[23198]: audit 2024-04-18T23:00:19.344761+0000 mon.a (mon.0) 547 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3cbe1ebd-f75e-481a-a6be-17b1565b5e85"}]: dispatch 2024-04-18T23:00:20.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:20 smithi055 bash[23198]: audit 2024-04-18T23:00:19.346000+0000 mon.c (mon.1) 10 : audit 1 from='client.? 172.21.15.69:0/3941205960' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3cbe1ebd-f75e-481a-a6be-17b1565b5e85"}]: dispatch 2024-04-18T23:00:20.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:20 smithi055 bash[23198]: audit 2024-04-18T23:00:19.348226+0000 mon.a (mon.0) 548 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3cbe1ebd-f75e-481a-a6be-17b1565b5e85"}]': finished 2024-04-18T23:00:20.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:20 smithi055 bash[23198]: cluster 2024-04-18T23:00:19.353540+0000 mon.a (mon.0) 549 : cluster 0 osdmap e38: 6 total, 5 up, 6 in 2024-04-18T23:00:20.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:20 smithi055 bash[23198]: audit 2024-04-18T23:00:19.354126+0000 mon.a (mon.0) 550 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-18T23:00:20.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:20 smithi069 bash[23476]: audit 2024-04-18T23:00:19.344761+0000 mon.a (mon.0) 547 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3cbe1ebd-f75e-481a-a6be-17b1565b5e85"}]: dispatch 2024-04-18T23:00:20.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:20 smithi069 bash[23476]: audit 2024-04-18T23:00:19.346000+0000 mon.c (mon.1) 10 : audit 1 from='client.? 172.21.15.69:0/3941205960' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3cbe1ebd-f75e-481a-a6be-17b1565b5e85"}]: dispatch 2024-04-18T23:00:20.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:20 smithi069 bash[23476]: audit 2024-04-18T23:00:19.348226+0000 mon.a (mon.0) 548 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3cbe1ebd-f75e-481a-a6be-17b1565b5e85"}]': finished 2024-04-18T23:00:20.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:20 smithi069 bash[23476]: cluster 2024-04-18T23:00:19.353540+0000 mon.a (mon.0) 549 : cluster 0 osdmap e38: 6 total, 5 up, 6 in 2024-04-18T23:00:20.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:20 smithi069 bash[23476]: audit 2024-04-18T23:00:19.354126+0000 mon.a (mon.0) 550 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-18T23:00:21.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:21 smithi016 bash[21452]: cluster 2024-04-18T23:00:19.906976+0000 mgr.a (mgr.14152) 263 : cluster 0 pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:21.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:21 smithi016 bash[21452]: audit 2024-04-18T23:00:20.098569+0000 mon.c (mon.1) 11 : audit 0 from='client.? 172.21.15.69:0/740638299' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-18T23:00:21.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:21 smithi055 bash[23198]: cluster 2024-04-18T23:00:19.906976+0000 mgr.a (mgr.14152) 263 : cluster 0 pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:21.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:21 smithi055 bash[23198]: audit 2024-04-18T23:00:20.098569+0000 mon.c (mon.1) 11 : audit 0 from='client.? 172.21.15.69:0/740638299' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-18T23:00:21.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:21 smithi069 bash[23476]: cluster 2024-04-18T23:00:19.906976+0000 mgr.a (mgr.14152) 263 : cluster 0 pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:21.503 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:21 smithi069 bash[23476]: audit 2024-04-18T23:00:20.098569+0000 mon.c (mon.1) 11 : audit 0 from='client.? 172.21.15.69:0/740638299' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-18T23:00:23.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:23 smithi016 bash[21452]: cluster 2024-04-18T23:00:21.907501+0000 mgr.a (mgr.14152) 264 : cluster 0 pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:23.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:23 smithi055 bash[23198]: cluster 2024-04-18T23:00:21.907501+0000 mgr.a (mgr.14152) 264 : cluster 0 pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:23.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:23 smithi069 bash[23476]: cluster 2024-04-18T23:00:21.907501+0000 mgr.a (mgr.14152) 264 : cluster 0 pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:25.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:25 smithi016 bash[21452]: cluster 2024-04-18T23:00:23.908040+0000 mgr.a (mgr.14152) 265 : cluster 0 pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:25.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:25 smithi055 bash[23198]: cluster 2024-04-18T23:00:23.908040+0000 mgr.a (mgr.14152) 265 : cluster 0 pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:25.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:25 smithi069 bash[23476]: cluster 2024-04-18T23:00:23.908040+0000 mgr.a (mgr.14152) 265 : cluster 0 pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:27.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:27 smithi016 bash[21452]: cluster 2024-04-18T23:00:25.908551+0000 mgr.a (mgr.14152) 266 : cluster 0 pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:27.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:27 smithi055 bash[23198]: cluster 2024-04-18T23:00:25.908551+0000 mgr.a (mgr.14152) 266 : cluster 0 pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:27.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:27 smithi069 bash[23476]: cluster 2024-04-18T23:00:25.908551+0000 mgr.a (mgr.14152) 266 : cluster 0 pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:29.250 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:29 smithi069 bash[23476]: cluster 2024-04-18T23:00:27.909074+0000 mgr.a (mgr.14152) 267 : cluster 0 pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:29.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:29 smithi016 bash[21452]: cluster 2024-04-18T23:00:27.909074+0000 mgr.a (mgr.14152) 267 : cluster 0 pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:29.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:29 smithi055 bash[23198]: cluster 2024-04-18T23:00:27.909074+0000 mgr.a (mgr.14152) 267 : cluster 0 pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:31.249 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:31 smithi069 bash[23476]: cluster 2024-04-18T23:00:29.909704+0000 mgr.a (mgr.14152) 268 : cluster 0 pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:31.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:31 smithi016 bash[21452]: cluster 2024-04-18T23:00:29.909704+0000 mgr.a (mgr.14152) 268 : cluster 0 pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:31.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:31 smithi055 bash[23198]: cluster 2024-04-18T23:00:29.909704+0000 mgr.a (mgr.14152) 268 : cluster 0 pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:32.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:32 smithi016 bash[21452]: audit 2024-04-18T23:00:31.643179+0000 mon.a (mon.0) 551 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-04-18T23:00:32.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:32 smithi016 bash[21452]: audit 2024-04-18T23:00:31.645090+0000 mon.a (mon.0) 552 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:00:32.454 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:32 smithi055 bash[23198]: audit 2024-04-18T23:00:31.643179+0000 mon.a (mon.0) 551 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-04-18T23:00:32.455 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:32 smithi055 bash[23198]: audit 2024-04-18T23:00:31.645090+0000 mon.a (mon.0) 552 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:00:32.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:32 smithi069 bash[23476]: audit 2024-04-18T23:00:31.643179+0000 mon.a (mon.0) 551 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-04-18T23:00:32.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:32 smithi069 bash[23476]: audit 2024-04-18T23:00:31.645090+0000 mon.a (mon.0) 552 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:00:33.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:33 smithi016 bash[21452]: cephadm 2024-04-18T23:00:31.646905+0000 mgr.a (mgr.14152) 269 : cephadm 1 Deploying daemon osd.5 on smithi069 2024-04-18T23:00:33.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:33 smithi016 bash[21452]: cluster 2024-04-18T23:00:31.910360+0000 mgr.a (mgr.14152) 270 : cluster 0 pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:33.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:33 smithi055 bash[23198]: cephadm 2024-04-18T23:00:31.646905+0000 mgr.a (mgr.14152) 269 : cephadm 1 Deploying daemon osd.5 on smithi069 2024-04-18T23:00:33.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:33 smithi055 bash[23198]: cluster 2024-04-18T23:00:31.910360+0000 mgr.a (mgr.14152) 270 : cluster 0 pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:33.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:33 smithi069 bash[23476]: cephadm 2024-04-18T23:00:31.646905+0000 mgr.a (mgr.14152) 269 : cephadm 1 Deploying daemon osd.5 on smithi069 2024-04-18T23:00:33.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:33 smithi069 bash[23476]: cluster 2024-04-18T23:00:31.910360+0000 mgr.a (mgr.14152) 270 : cluster 0 pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:35.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:35 smithi016 bash[21452]: cluster 2024-04-18T23:00:33.911068+0000 mgr.a (mgr.14152) 271 : cluster 0 pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:35.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:35 smithi055 bash[23198]: cluster 2024-04-18T23:00:33.911068+0000 mgr.a (mgr.14152) 271 : cluster 0 pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:35.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:35 smithi069 bash[23476]: cluster 2024-04-18T23:00:33.911068+0000 mgr.a (mgr.14152) 271 : cluster 0 pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:35.860 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:35 smithi069 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T23:00:35.860 INFO:journalctl@ceph.osd.4.smithi069.stdout:Apr 18 23:00:35 smithi069 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T23:00:36.148 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:36 smithi069 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T23:00:36.149 INFO:journalctl@ceph.osd.4.smithi069.stdout:Apr 18 23:00:36 smithi069 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T23:00:37.250 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:37 smithi069 bash[23476]: cluster 2024-04-18T23:00:35.911741+0000 mgr.a (mgr.14152) 272 : cluster 0 pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:37.251 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:37 smithi069 bash[23476]: audit 2024-04-18T23:00:36.155617+0000 mon.a (mon.0) 553 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:37.251 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:37 smithi069 bash[23476]: audit 2024-04-18T23:00:36.164106+0000 mon.a (mon.0) 554 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:37.251 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:37 smithi069 bash[23476]: audit 2024-04-18T23:00:36.173315+0000 mon.a (mon.0) 555 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T23:00:37.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:37 smithi016 bash[21452]: cluster 2024-04-18T23:00:35.911741+0000 mgr.a (mgr.14152) 272 : cluster 0 pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:37.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:37 smithi016 bash[21452]: audit 2024-04-18T23:00:36.155617+0000 mon.a (mon.0) 553 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:37.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:37 smithi016 bash[21452]: audit 2024-04-18T23:00:36.164106+0000 mon.a (mon.0) 554 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:37.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:37 smithi016 bash[21452]: audit 2024-04-18T23:00:36.173315+0000 mon.a (mon.0) 555 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T23:00:37.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:37 smithi055 bash[23198]: cluster 2024-04-18T23:00:35.911741+0000 mgr.a (mgr.14152) 272 : cluster 0 pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:37.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:37 smithi055 bash[23198]: audit 2024-04-18T23:00:36.155617+0000 mon.a (mon.0) 553 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:37.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:37 smithi055 bash[23198]: audit 2024-04-18T23:00:36.164106+0000 mon.a (mon.0) 554 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:37.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:37 smithi055 bash[23198]: audit 2024-04-18T23:00:36.173315+0000 mon.a (mon.0) 555 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T23:00:39.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:39 smithi016 bash[21452]: cluster 2024-04-18T23:00:37.912331+0000 mgr.a (mgr.14152) 273 : cluster 0 pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:39.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:39 smithi055 bash[23198]: cluster 2024-04-18T23:00:37.912331+0000 mgr.a (mgr.14152) 273 : cluster 0 pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:39.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:39 smithi069 bash[23476]: cluster 2024-04-18T23:00:37.912331+0000 mgr.a (mgr.14152) 273 : cluster 0 pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:41.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:41 smithi016 bash[21452]: cluster 2024-04-18T23:00:39.912937+0000 mgr.a (mgr.14152) 274 : cluster 0 pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:41.453 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:41 smithi055 bash[23198]: cluster 2024-04-18T23:00:39.912937+0000 mgr.a (mgr.14152) 274 : cluster 0 pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:41.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:41 smithi069 bash[23476]: cluster 2024-04-18T23:00:39.912937+0000 mgr.a (mgr.14152) 274 : cluster 0 pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:43.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:43 smithi016 bash[21452]: cluster 2024-04-18T23:00:41.913566+0000 mgr.a (mgr.14152) 275 : cluster 0 pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:43.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:43 smithi016 bash[21452]: audit 2024-04-18T23:00:42.434599+0000 mon.a (mon.0) 556 : audit 1 from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-18T23:00:43.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:43 smithi016 bash[21452]: audit 2024-04-18T23:00:42.436073+0000 mon.c (mon.1) 12 : audit 1 from='osd.5 [v2:172.21.15.69:6808/2012652730,v1:172.21.15.69:6809/2012652730]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-18T23:00:43.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:43 smithi016 bash[21452]: audit 2024-04-18T23:00:43.087860+0000 mon.a (mon.0) 557 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:43.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:43 smithi016 bash[21452]: audit 2024-04-18T23:00:43.096577+0000 mon.a (mon.0) 558 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:43.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:43 smithi055 bash[23198]: cluster 2024-04-18T23:00:41.913566+0000 mgr.a (mgr.14152) 275 : cluster 0 pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:43.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:43 smithi055 bash[23198]: audit 2024-04-18T23:00:42.434599+0000 mon.a (mon.0) 556 : audit 1 from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-18T23:00:43.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:43 smithi055 bash[23198]: audit 2024-04-18T23:00:42.436073+0000 mon.c (mon.1) 12 : audit 1 from='osd.5 [v2:172.21.15.69:6808/2012652730,v1:172.21.15.69:6809/2012652730]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-18T23:00:43.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:43 smithi055 bash[23198]: audit 2024-04-18T23:00:43.087860+0000 mon.a (mon.0) 557 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:43.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:43 smithi055 bash[23198]: audit 2024-04-18T23:00:43.096577+0000 mon.a (mon.0) 558 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:43.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:43 smithi069 bash[23476]: cluster 2024-04-18T23:00:41.913566+0000 mgr.a (mgr.14152) 275 : cluster 0 pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:43.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:43 smithi069 bash[23476]: audit 2024-04-18T23:00:42.434599+0000 mon.a (mon.0) 556 : audit 1 from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-18T23:00:43.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:43 smithi069 bash[23476]: audit 2024-04-18T23:00:42.436073+0000 mon.c (mon.1) 12 : audit 1 from='osd.5 [v2:172.21.15.69:6808/2012652730,v1:172.21.15.69:6809/2012652730]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-18T23:00:43.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:43 smithi069 bash[23476]: audit 2024-04-18T23:00:43.087860+0000 mon.a (mon.0) 557 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:43.502 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:43 smithi069 bash[23476]: audit 2024-04-18T23:00:43.096577+0000 mon.a (mon.0) 558 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:44.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:44 smithi055 bash[23198]: audit 2024-04-18T23:00:43.178112+0000 mon.a (mon.0) 559 : audit 1 from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-04-18T23:00:44.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:44 smithi055 bash[23198]: cluster 2024-04-18T23:00:43.182696+0000 mon.a (mon.0) 560 : cluster 0 osdmap e39: 6 total, 5 up, 6 in 2024-04-18T23:00:44.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:44 smithi055 bash[23198]: audit 2024-04-18T23:00:43.183590+0000 mon.a (mon.0) 561 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-18T23:00:44.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:44 smithi055 bash[23198]: audit 2024-04-18T23:00:43.184223+0000 mon.a (mon.0) 562 : audit 1 from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi069", "root=default"]}]: dispatch 2024-04-18T23:00:44.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:44 smithi055 bash[23198]: audit 2024-04-18T23:00:43.184349+0000 mon.c (mon.1) 13 : audit 1 from='osd.5 [v2:172.21.15.69:6808/2012652730,v1:172.21.15.69:6809/2012652730]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi069", "root=default"]}]: dispatch 2024-04-18T23:00:44.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:44 smithi055 bash[23198]: audit 2024-04-18T23:00:43.775795+0000 mon.a (mon.0) 563 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:00:44.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:44 smithi055 bash[23198]: audit 2024-04-18T23:00:43.777745+0000 mon.a (mon.0) 564 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T23:00:44.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:44 smithi055 bash[23198]: audit 2024-04-18T23:00:43.789020+0000 mon.a (mon.0) 565 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:44.456 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:44 smithi069 bash[23476]: audit 2024-04-18T23:00:43.178112+0000 mon.a (mon.0) 559 : audit 1 from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-04-18T23:00:44.456 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:44 smithi069 bash[23476]: cluster 2024-04-18T23:00:43.182696+0000 mon.a (mon.0) 560 : cluster 0 osdmap e39: 6 total, 5 up, 6 in 2024-04-18T23:00:44.457 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:44 smithi069 bash[23476]: audit 2024-04-18T23:00:43.183590+0000 mon.a (mon.0) 561 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-18T23:00:44.457 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:44 smithi069 bash[23476]: audit 2024-04-18T23:00:43.184223+0000 mon.a (mon.0) 562 : audit 1 from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi069", "root=default"]}]: dispatch 2024-04-18T23:00:44.457 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:44 smithi069 bash[23476]: audit 2024-04-18T23:00:43.184349+0000 mon.c (mon.1) 13 : audit 1 from='osd.5 [v2:172.21.15.69:6808/2012652730,v1:172.21.15.69:6809/2012652730]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi069", "root=default"]}]: dispatch 2024-04-18T23:00:44.457 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:44 smithi069 bash[23476]: audit 2024-04-18T23:00:43.775795+0000 mon.a (mon.0) 563 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:00:44.457 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:44 smithi069 bash[23476]: audit 2024-04-18T23:00:43.777745+0000 mon.a (mon.0) 564 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T23:00:44.457 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:44 smithi069 bash[23476]: audit 2024-04-18T23:00:43.789020+0000 mon.a (mon.0) 565 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:44.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:44 smithi016 bash[21452]: audit 2024-04-18T23:00:43.178112+0000 mon.a (mon.0) 559 : audit 1 from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-04-18T23:00:44.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:44 smithi016 bash[21452]: cluster 2024-04-18T23:00:43.182696+0000 mon.a (mon.0) 560 : cluster 0 osdmap e39: 6 total, 5 up, 6 in 2024-04-18T23:00:44.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:44 smithi016 bash[21452]: audit 2024-04-18T23:00:43.183590+0000 mon.a (mon.0) 561 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-18T23:00:44.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:44 smithi016 bash[21452]: audit 2024-04-18T23:00:43.184223+0000 mon.a (mon.0) 562 : audit 1 from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi069", "root=default"]}]: dispatch 2024-04-18T23:00:44.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:44 smithi016 bash[21452]: audit 2024-04-18T23:00:43.184349+0000 mon.c (mon.1) 13 : audit 1 from='osd.5 [v2:172.21.15.69:6808/2012652730,v1:172.21.15.69:6809/2012652730]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi069", "root=default"]}]: dispatch 2024-04-18T23:00:44.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:44 smithi016 bash[21452]: audit 2024-04-18T23:00:43.775795+0000 mon.a (mon.0) 563 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:00:44.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:44 smithi016 bash[21452]: audit 2024-04-18T23:00:43.777745+0000 mon.a (mon.0) 564 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T23:00:44.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:44 smithi016 bash[21452]: audit 2024-04-18T23:00:43.789020+0000 mon.a (mon.0) 565 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:45.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:45 smithi055 bash[23198]: cluster 2024-04-18T23:00:43.914159+0000 mgr.a (mgr.14152) 276 : cluster 0 pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:45.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:45 smithi055 bash[23198]: audit 2024-04-18T23:00:44.181216+0000 mon.a (mon.0) 566 : audit 1 from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi069", "root=default"]}]': finished 2024-04-18T23:00:45.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:45 smithi055 bash[23198]: cluster 2024-04-18T23:00:44.186383+0000 mon.a (mon.0) 567 : cluster 0 osdmap e40: 6 total, 5 up, 6 in 2024-04-18T23:00:45.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:45 smithi055 bash[23198]: audit 2024-04-18T23:00:44.187340+0000 mon.a (mon.0) 568 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-18T23:00:45.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:45 smithi055 bash[23198]: audit 2024-04-18T23:00:44.196009+0000 mon.a (mon.0) 569 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-18T23:00:45.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:45 smithi055 bash[23198]: audit 2024-04-18T23:00:44.678788+0000 mon.a (mon.0) 570 : audit 1 from='osd.5 ' entity='osd.5' 2024-04-18T23:00:45.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:45 smithi055 bash[23198]: cluster 2024-04-18T23:00:44.977343+0000 mon.a (mon.0) 571 : cluster 1 osd.5 [v2:172.21.15.69:6808/2012652730,v1:172.21.15.69:6809/2012652730] boot 2024-04-18T23:00:45.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:45 smithi055 bash[23198]: cluster 2024-04-18T23:00:44.977406+0000 mon.a (mon.0) 572 : cluster 0 osdmap e41: 6 total, 6 up, 6 in 2024-04-18T23:00:45.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:45 smithi055 bash[23198]: audit 2024-04-18T23:00:44.977682+0000 mon.a (mon.0) 573 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-18T23:00:45.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:45 smithi069 bash[23476]: cluster 2024-04-18T23:00:43.914159+0000 mgr.a (mgr.14152) 276 : cluster 0 pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:45.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:45 smithi069 bash[23476]: audit 2024-04-18T23:00:44.181216+0000 mon.a (mon.0) 566 : audit 1 from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi069", "root=default"]}]': finished 2024-04-18T23:00:45.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:45 smithi069 bash[23476]: cluster 2024-04-18T23:00:44.186383+0000 mon.a (mon.0) 567 : cluster 0 osdmap e40: 6 total, 5 up, 6 in 2024-04-18T23:00:45.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:45 smithi069 bash[23476]: audit 2024-04-18T23:00:44.187340+0000 mon.a (mon.0) 568 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-18T23:00:45.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:45 smithi069 bash[23476]: audit 2024-04-18T23:00:44.196009+0000 mon.a (mon.0) 569 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-18T23:00:45.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:45 smithi069 bash[23476]: audit 2024-04-18T23:00:44.678788+0000 mon.a (mon.0) 570 : audit 1 from='osd.5 ' entity='osd.5' 2024-04-18T23:00:45.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:45 smithi069 bash[23476]: cluster 2024-04-18T23:00:44.977343+0000 mon.a (mon.0) 571 : cluster 1 osd.5 [v2:172.21.15.69:6808/2012652730,v1:172.21.15.69:6809/2012652730] boot 2024-04-18T23:00:45.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:45 smithi069 bash[23476]: cluster 2024-04-18T23:00:44.977406+0000 mon.a (mon.0) 572 : cluster 0 osdmap e41: 6 total, 6 up, 6 in 2024-04-18T23:00:45.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:45 smithi069 bash[23476]: audit 2024-04-18T23:00:44.977682+0000 mon.a (mon.0) 573 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-18T23:00:45.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:45 smithi016 bash[21452]: cluster 2024-04-18T23:00:43.914159+0000 mgr.a (mgr.14152) 276 : cluster 0 pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:00:45.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:45 smithi016 bash[21452]: audit 2024-04-18T23:00:44.181216+0000 mon.a (mon.0) 566 : audit 1 from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi069", "root=default"]}]': finished 2024-04-18T23:00:45.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:45 smithi016 bash[21452]: cluster 2024-04-18T23:00:44.186383+0000 mon.a (mon.0) 567 : cluster 0 osdmap e40: 6 total, 5 up, 6 in 2024-04-18T23:00:45.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:45 smithi016 bash[21452]: audit 2024-04-18T23:00:44.187340+0000 mon.a (mon.0) 568 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-18T23:00:45.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:45 smithi016 bash[21452]: audit 2024-04-18T23:00:44.196009+0000 mon.a (mon.0) 569 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-18T23:00:45.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:45 smithi016 bash[21452]: audit 2024-04-18T23:00:44.678788+0000 mon.a (mon.0) 570 : audit 1 from='osd.5 ' entity='osd.5' 2024-04-18T23:00:45.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:45 smithi016 bash[21452]: cluster 2024-04-18T23:00:44.977343+0000 mon.a (mon.0) 571 : cluster 1 osd.5 [v2:172.21.15.69:6808/2012652730,v1:172.21.15.69:6809/2012652730] boot 2024-04-18T23:00:45.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:45 smithi016 bash[21452]: cluster 2024-04-18T23:00:44.977406+0000 mon.a (mon.0) 572 : cluster 0 osdmap e41: 6 total, 6 up, 6 in 2024-04-18T23:00:45.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:45 smithi016 bash[21452]: audit 2024-04-18T23:00:44.977682+0000 mon.a (mon.0) 573 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-18T23:00:46.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:46 smithi055 bash[23198]: cluster 2024-04-18T23:00:43.389457+0000 osd.5 (osd.5) 1 : cluster 0 purged_snaps scrub starts 2024-04-18T23:00:46.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:46 smithi055 bash[23198]: cluster 2024-04-18T23:00:43.389553+0000 osd.5 (osd.5) 2 : cluster 0 purged_snaps scrub ok 2024-04-18T23:00:46.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:46 smithi055 bash[23198]: cluster 2024-04-18T23:00:45.980227+0000 mon.a (mon.0) 574 : cluster 0 osdmap e42: 6 total, 6 up, 6 in 2024-04-18T23:00:46.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:46 smithi069 bash[23476]: cluster 2024-04-18T23:00:43.389457+0000 osd.5 (osd.5) 1 : cluster 0 purged_snaps scrub starts 2024-04-18T23:00:46.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:46 smithi069 bash[23476]: cluster 2024-04-18T23:00:43.389553+0000 osd.5 (osd.5) 2 : cluster 0 purged_snaps scrub ok 2024-04-18T23:00:46.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:46 smithi069 bash[23476]: cluster 2024-04-18T23:00:45.980227+0000 mon.a (mon.0) 574 : cluster 0 osdmap e42: 6 total, 6 up, 6 in 2024-04-18T23:00:46.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:46 smithi016 bash[21452]: cluster 2024-04-18T23:00:43.389457+0000 osd.5 (osd.5) 1 : cluster 0 purged_snaps scrub starts 2024-04-18T23:00:46.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:46 smithi016 bash[21452]: cluster 2024-04-18T23:00:43.389553+0000 osd.5 (osd.5) 2 : cluster 0 purged_snaps scrub ok 2024-04-18T23:00:46.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:46 smithi016 bash[21452]: cluster 2024-04-18T23:00:45.980227+0000 mon.a (mon.0) 574 : cluster 0 osdmap e42: 6 total, 6 up, 6 in 2024-04-18T23:00:46.699 INFO:teuthology.orchestra.run.smithi069.stdout:Created osd(s) 5 on host 'smithi069' 2024-04-18T23:00:47.424 DEBUG:teuthology.orchestra.run.smithi069:osd.5> sudo journalctl -f -n 0 -u ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@osd.5.service 2024-04-18T23:00:47.427 INFO:tasks.cephadm:Waiting for 6 OSDs to come up... 2024-04-18T23:00:47.427 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph osd stat -f json 2024-04-18T23:00:47.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:47 smithi055 bash[23198]: cluster 2024-04-18T23:00:45.914690+0000 mgr.a (mgr.14152) 277 : cluster 0 pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 502 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:00:47.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:47 smithi055 bash[23198]: audit 2024-04-18T23:00:46.652783+0000 mon.a (mon.0) 575 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:47.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:47 smithi055 bash[23198]: audit 2024-04-18T23:00:46.661455+0000 mon.a (mon.0) 576 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:47.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:47 smithi055 bash[23198]: audit 2024-04-18T23:00:46.665134+0000 mon.a (mon.0) 577 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T23:00:47.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:47 smithi055 bash[23198]: cluster 2024-04-18T23:00:46.982541+0000 mon.a (mon.0) 578 : cluster 0 osdmap e43: 6 total, 6 up, 6 in 2024-04-18T23:00:47.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:47 smithi069 bash[23476]: cluster 2024-04-18T23:00:45.914690+0000 mgr.a (mgr.14152) 277 : cluster 0 pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 502 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:00:47.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:47 smithi069 bash[23476]: audit 2024-04-18T23:00:46.652783+0000 mon.a (mon.0) 575 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:47.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:47 smithi069 bash[23476]: audit 2024-04-18T23:00:46.661455+0000 mon.a (mon.0) 576 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:47.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:47 smithi069 bash[23476]: audit 2024-04-18T23:00:46.665134+0000 mon.a (mon.0) 577 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T23:00:47.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:47 smithi069 bash[23476]: cluster 2024-04-18T23:00:46.982541+0000 mon.a (mon.0) 578 : cluster 0 osdmap e43: 6 total, 6 up, 6 in 2024-04-18T23:00:47.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:47 smithi016 bash[21452]: cluster 2024-04-18T23:00:45.914690+0000 mgr.a (mgr.14152) 277 : cluster 0 pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 502 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:00:47.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:47 smithi016 bash[21452]: audit 2024-04-18T23:00:46.652783+0000 mon.a (mon.0) 575 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:47.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:47 smithi016 bash[21452]: audit 2024-04-18T23:00:46.661455+0000 mon.a (mon.0) 576 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:47.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:47 smithi016 bash[21452]: audit 2024-04-18T23:00:46.665134+0000 mon.a (mon.0) 577 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T23:00:47.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:47 smithi016 bash[21452]: cluster 2024-04-18T23:00:46.982541+0000 mon.a (mon.0) 578 : cluster 0 osdmap e43: 6 total, 6 up, 6 in 2024-04-18T23:00:49.249 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:48 smithi069 bash[23476]: cluster 2024-04-18T23:00:47.915247+0000 mgr.a (mgr.14152) 278 : cluster 0 pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 502 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:00:49.250 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:48 smithi069 bash[23476]: cluster 2024-04-18T23:00:47.985124+0000 mon.a (mon.0) 579 : cluster 0 osdmap e44: 6 total, 6 up, 6 in 2024-04-18T23:00:49.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:48 smithi016 bash[21452]: cluster 2024-04-18T23:00:47.915247+0000 mgr.a (mgr.14152) 278 : cluster 0 pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 502 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:00:49.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:48 smithi016 bash[21452]: cluster 2024-04-18T23:00:47.985124+0000 mon.a (mon.0) 579 : cluster 0 osdmap e44: 6 total, 6 up, 6 in 2024-04-18T23:00:49.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:48 smithi055 bash[23198]: cluster 2024-04-18T23:00:47.915247+0000 mgr.a (mgr.14152) 278 : cluster 0 pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 502 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:00:49.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:48 smithi055 bash[23198]: cluster 2024-04-18T23:00:47.985124+0000 mon.a (mon.0) 579 : cluster 0 osdmap e44: 6 total, 6 up, 6 in 2024-04-18T23:00:50.249 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:50 smithi069 bash[23476]: cluster 2024-04-18T23:00:48.995528+0000 mon.a (mon.0) 580 : cluster 0 osdmap e45: 6 total, 6 up, 6 in 2024-04-18T23:00:50.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:50 smithi016 bash[21452]: cluster 2024-04-18T23:00:48.995528+0000 mon.a (mon.0) 580 : cluster 0 osdmap e45: 6 total, 6 up, 6 in 2024-04-18T23:00:50.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:50 smithi055 bash[23198]: cluster 2024-04-18T23:00:48.995528+0000 mon.a (mon.0) 580 : cluster 0 osdmap e45: 6 total, 6 up, 6 in 2024-04-18T23:00:51.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:51 smithi016 bash[21452]: cluster 2024-04-18T23:00:49.915882+0000 mgr.a (mgr.14152) 279 : cluster 0 pgmap v251: 1 pgs: 1 peering; 577 KiB data, 502 MiB used, 536 GiB / 536 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-04-18T23:00:51.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:51 smithi055 bash[23198]: cluster 2024-04-18T23:00:49.915882+0000 mgr.a (mgr.14152) 279 : cluster 0 pgmap v251: 1 pgs: 1 peering; 577 KiB data, 502 MiB used, 536 GiB / 536 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-04-18T23:00:51.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:51 smithi069 bash[23476]: cluster 2024-04-18T23:00:49.915882+0000 mgr.a (mgr.14152) 279 : cluster 0 pgmap v251: 1 pgs: 1 peering; 577 KiB data, 502 MiB used, 536 GiB / 536 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-04-18T23:00:52.167 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T23:00:53.249 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:53 smithi069 bash[23476]: cluster 2024-04-18T23:00:51.916604+0000 mgr.a (mgr.14152) 280 : cluster 0 pgmap v252: 1 pgs: 1 peering; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail; 97 KiB/s, 0 objects/s recovering 2024-04-18T23:00:53.269 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:53 smithi016 bash[21452]: cluster 2024-04-18T23:00:51.916604+0000 mgr.a (mgr.14152) 280 : cluster 0 pgmap v252: 1 pgs: 1 peering; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail; 97 KiB/s, 0 objects/s recovering 2024-04-18T23:00:53.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:53 smithi055 bash[23198]: cluster 2024-04-18T23:00:51.916604+0000 mgr.a (mgr.14152) 280 : cluster 0 pgmap v252: 1 pgs: 1 peering; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail; 97 KiB/s, 0 objects/s recovering 2024-04-18T23:00:55.287 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-18T23:00:55.299 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:55 smithi016 bash[21452]: cluster 2024-04-18T23:00:53.917236+0000 mgr.a (mgr.14152) 281 : cluster 0 pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail; 83 KiB/s, 0 objects/s recovering 2024-04-18T23:00:55.415 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:55 smithi069 bash[23476]: cluster 2024-04-18T23:00:53.917236+0000 mgr.a (mgr.14152) 281 : cluster 0 pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail; 83 KiB/s, 0 objects/s recovering 2024-04-18T23:00:55.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:55 smithi055 bash[23198]: cluster 2024-04-18T23:00:53.917236+0000 mgr.a (mgr.14152) 281 : cluster 0 pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail; 83 KiB/s, 0 objects/s recovering 2024-04-18T23:00:56.023 INFO:teuthology.orchestra.run.smithi016.stdout:{"epoch":45,"num_osds":6,"num_up_osds":6,"osd_up_since":1713481244,"num_in_osds":6,"osd_in_since":1713481219,"num_remapped_pgs":0} 2024-04-18T23:00:56.024 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph osd dump --format=json 2024-04-18T23:00:56.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:56 smithi016 bash[21452]: audit 2024-04-18T23:00:55.288636+0000 mon.a (mon.0) 581 : audit 0 from='client.? 172.21.15.16:0/1645036201' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-18T23:00:56.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:56 smithi016 bash[21452]: audit 2024-04-18T23:00:55.926081+0000 mon.a (mon.0) 582 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:56.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:56 smithi016 bash[21452]: audit 2024-04-18T23:00:55.934770+0000 mon.a (mon.0) 583 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:56.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:56 smithi016 bash[21452]: audit 2024-04-18T23:00:55.936889+0000 mon.a (mon.0) 584 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-04-18T23:00:56.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:56 smithi016 bash[21452]: audit 2024-04-18T23:00:55.938859+0000 mon.a (mon.0) 585 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-04-18T23:00:56.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:56 smithi016 bash[21452]: audit 2024-04-18T23:00:55.946714+0000 mon.a (mon.0) 586 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:56.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:56 smithi016 bash[21452]: audit 2024-04-18T23:00:55.950668+0000 mon.a (mon.0) 587 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:00:56.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:56 smithi016 bash[21452]: audit 2024-04-18T23:00:55.952484+0000 mon.a (mon.0) 588 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T23:00:56.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:56 smithi016 bash[21452]: audit 2024-04-18T23:00:55.962764+0000 mon.a (mon.0) 589 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:56.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:56 smithi055 bash[23198]: audit 2024-04-18T23:00:55.288636+0000 mon.a (mon.0) 581 : audit 0 from='client.? 172.21.15.16:0/1645036201' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-18T23:00:56.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:56 smithi055 bash[23198]: audit 2024-04-18T23:00:55.926081+0000 mon.a (mon.0) 582 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:56.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:56 smithi055 bash[23198]: audit 2024-04-18T23:00:55.934770+0000 mon.a (mon.0) 583 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:56.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:56 smithi055 bash[23198]: audit 2024-04-18T23:00:55.936889+0000 mon.a (mon.0) 584 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-04-18T23:00:56.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:56 smithi055 bash[23198]: audit 2024-04-18T23:00:55.938859+0000 mon.a (mon.0) 585 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-04-18T23:00:56.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:56 smithi055 bash[23198]: audit 2024-04-18T23:00:55.946714+0000 mon.a (mon.0) 586 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:56.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:56 smithi055 bash[23198]: audit 2024-04-18T23:00:55.950668+0000 mon.a (mon.0) 587 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:00:56.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:56 smithi055 bash[23198]: audit 2024-04-18T23:00:55.952484+0000 mon.a (mon.0) 588 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T23:00:56.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:56 smithi055 bash[23198]: audit 2024-04-18T23:00:55.962764+0000 mon.a (mon.0) 589 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:56.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:56 smithi069 bash[23476]: audit 2024-04-18T23:00:55.288636+0000 mon.a (mon.0) 581 : audit 0 from='client.? 172.21.15.16:0/1645036201' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-18T23:00:56.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:56 smithi069 bash[23476]: audit 2024-04-18T23:00:55.926081+0000 mon.a (mon.0) 582 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:56.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:56 smithi069 bash[23476]: audit 2024-04-18T23:00:55.934770+0000 mon.a (mon.0) 583 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:56.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:56 smithi069 bash[23476]: audit 2024-04-18T23:00:55.936889+0000 mon.a (mon.0) 584 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-04-18T23:00:56.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:56 smithi069 bash[23476]: audit 2024-04-18T23:00:55.938859+0000 mon.a (mon.0) 585 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-04-18T23:00:56.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:56 smithi069 bash[23476]: audit 2024-04-18T23:00:55.946714+0000 mon.a (mon.0) 586 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:56.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:56 smithi069 bash[23476]: audit 2024-04-18T23:00:55.950668+0000 mon.a (mon.0) 587 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:00:56.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:56 smithi069 bash[23476]: audit 2024-04-18T23:00:55.952484+0000 mon.a (mon.0) 588 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T23:00:56.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:56 smithi069 bash[23476]: audit 2024-04-18T23:00:55.962764+0000 mon.a (mon.0) 589 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:00:57.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:57 smithi016 bash[21452]: cephadm 2024-04-18T23:00:55.916760+0000 mgr.a (mgr.14152) 282 : cephadm 1 Detected new or changed devices on smithi069 2024-04-18T23:00:57.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:57 smithi016 bash[21452]: cluster 2024-04-18T23:00:55.917770+0000 mgr.a (mgr.14152) 283 : cluster 0 pgmap v254: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-04-18T23:00:57.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:57 smithi016 bash[21452]: cephadm 2024-04-18T23:00:55.940437+0000 mgr.a (mgr.14152) 284 : cephadm 1 Adjusting osd_memory_target on smithi069 to 10680M 2024-04-18T23:00:57.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:57 smithi055 bash[23198]: cephadm 2024-04-18T23:00:55.916760+0000 mgr.a (mgr.14152) 282 : cephadm 1 Detected new or changed devices on smithi069 2024-04-18T23:00:57.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:57 smithi055 bash[23198]: cluster 2024-04-18T23:00:55.917770+0000 mgr.a (mgr.14152) 283 : cluster 0 pgmap v254: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-04-18T23:00:57.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:57 smithi055 bash[23198]: cephadm 2024-04-18T23:00:55.940437+0000 mgr.a (mgr.14152) 284 : cephadm 1 Adjusting osd_memory_target on smithi069 to 10680M 2024-04-18T23:00:57.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:57 smithi069 bash[23476]: cephadm 2024-04-18T23:00:55.916760+0000 mgr.a (mgr.14152) 282 : cephadm 1 Detected new or changed devices on smithi069 2024-04-18T23:00:57.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:57 smithi069 bash[23476]: cluster 2024-04-18T23:00:55.917770+0000 mgr.a (mgr.14152) 283 : cluster 0 pgmap v254: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-04-18T23:00:57.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:57 smithi069 bash[23476]: cephadm 2024-04-18T23:00:55.940437+0000 mgr.a (mgr.14152) 284 : cephadm 1 Adjusting osd_memory_target on smithi069 to 10680M 2024-04-18T23:00:59.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:00:59 smithi016 bash[21452]: cluster 2024-04-18T23:00:57.918345+0000 mgr.a (mgr.14152) 285 : cluster 0 pgmap v255: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-04-18T23:00:59.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:00:59 smithi055 bash[23198]: cluster 2024-04-18T23:00:57.918345+0000 mgr.a (mgr.14152) 285 : cluster 0 pgmap v255: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-04-18T23:00:59.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:00:59 smithi069 bash[23476]: cluster 2024-04-18T23:00:57.918345+0000 mgr.a (mgr.14152) 285 : cluster 0 pgmap v255: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-04-18T23:01:00.762 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T23:01:01.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:01 smithi016 bash[21452]: cluster 2024-04-18T23:00:59.918882+0000 mgr.a (mgr.14152) 286 : cluster 0 pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:01.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:01 smithi055 bash[23198]: cluster 2024-04-18T23:00:59.918882+0000 mgr.a (mgr.14152) 286 : cluster 0 pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:01.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:01 smithi069 bash[23476]: cluster 2024-04-18T23:00:59.918882+0000 mgr.a (mgr.14152) 286 : cluster 0 pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:03.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:03 smithi016 bash[21452]: cluster 2024-04-18T23:01:01.919265+0000 mgr.a (mgr.14152) 287 : cluster 0 pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:03.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:03 smithi055 bash[23198]: cluster 2024-04-18T23:01:01.919265+0000 mgr.a (mgr.14152) 287 : cluster 0 pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:03.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:03 smithi069 bash[23476]: cluster 2024-04-18T23:01:01.919265+0000 mgr.a (mgr.14152) 287 : cluster 0 pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:03.624 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-18T23:01:03.624 INFO:teuthology.orchestra.run.smithi016.stdout:{"epoch":45,"fsid":"1266e2ee-fdd6-11ee-bc92-c7b262605968","created":"2024-04-18T22:52:28.963561+0000","modified":"2024-04-18T23:00:48.980566+0000","last_up_change":"2024-04-18T23:00:44.969946+0000","last_in_change":"2024-04-18T23:00:19.345837+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-04-18T22:58:12.467986+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":"aabdaa1d-3022-42ed-9cb6-a2ff6201b5c7","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.16:6802","nonce":3393846278},{"type":"v1","addr":"172.21.15.16:6803","nonce":3393846278}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6804","nonce":3393846278},{"type":"v1","addr":"172.21.15.16:6805","nonce":3393846278}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6808","nonce":3393846278},{"type":"v1","addr":"172.21.15.16:6809","nonce":3393846278}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6806","nonce":3393846278},{"type":"v1","addr":"172.21.15.16:6807","nonce":3393846278}]},"public_addr":"172.21.15.16:6803/3393846278","cluster_addr":"172.21.15.16:6805/3393846278","heartbeat_back_addr":"172.21.15.16:6809/3393846278","heartbeat_front_addr":"172.21.15.16:6807/3393846278","state":["exists","up"]},{"osd":1,"uuid":"b17107b0-0a86-4fda-adad-0c43af9e714c","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.16:6810","nonce":3175198504},{"type":"v1","addr":"172.21.15.16:6811","nonce":3175198504}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6812","nonce":3175198504},{"type":"v1","addr":"172.21.15.16:6813","nonce":3175198504}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6816","nonce":3175198504},{"type":"v1","addr":"172.21.15.16:6817","nonce":3175198504}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6814","nonce":3175198504},{"type":"v1","addr":"172.21.15.16:6815","nonce":3175198504}]},"public_addr":"172.21.15.16:6811/3175198504","cluster_addr":"172.21.15.16:6813/3175198504","heartbeat_back_addr":"172.21.15.16:6817/3175198504","heartbeat_front_addr":"172.21.15.16:6815/3175198504","state":["exists","up"]},{"osd":2,"uuid":"0511f964-62a6-452e-a8ac-9c32b9386ba9","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.55:6800","nonce":4041071848},{"type":"v1","addr":"172.21.15.55:6801","nonce":4041071848}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6802","nonce":4041071848},{"type":"v1","addr":"172.21.15.55:6803","nonce":4041071848}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6806","nonce":4041071848},{"type":"v1","addr":"172.21.15.55:6807","nonce":4041071848}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6804","nonce":4041071848},{"type":"v1","addr":"172.21.15.55:6805","nonce":4041071848}]},"public_addr":"172.21.15.55:6801/4041071848","cluster_addr":"172.21.15.55:6803/4041071848","heartbeat_back_addr":"172.21.15.55:6807/4041071848","heartbeat_front_addr":"172.21.15.55:6805/4041071848","state":["exists","up"]},{"osd":3,"uuid":"a4b1faf4-bf38-45ca-9a76-dd25cb3f10bf","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.55:6808","nonce":2676861821},{"type":"v1","addr":"172.21.15.55:6809","nonce":2676861821}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6810","nonce":2676861821},{"type":"v1","addr":"172.21.15.55:6811","nonce":2676861821}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6814","nonce":2676861821},{"type":"v1","addr":"172.21.15.55:6815","nonce":2676861821}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6812","nonce":2676861821},{"type":"v1","addr":"172.21.15.55:6813","nonce":2676861821}]},"public_addr":"172.21.15.55:6809/2676861821","cluster_addr":"172.21.15.55:6811/2676861821","heartbeat_back_addr":"172.21.15.55:6815/2676861821","heartbeat_front_addr":"172.21.15.55:6813/2676861821","state":["exists","up"]},{"osd":4,"uuid":"caa78f4c-5b5b-4303-b25a-38fa4582882f","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.69:6800","nonce":3717804390},{"type":"v1","addr":"172.21.15.69:6801","nonce":3717804390}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.69:6802","nonce":3717804390},{"type":"v1","addr":"172.21.15.69:6803","nonce":3717804390}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.69:6806","nonce":3717804390},{"type":"v1","addr":"172.21.15.69:6807","nonce":3717804390}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.69:6804","nonce":3717804390},{"type":"v1","addr":"172.21.15.69:6805","nonce":3717804390}]},"public_addr":"172.21.15.69:6801/3717804390","cluster_addr":"172.21.15.69:6803/3717804390","heartbeat_back_addr":"172.21.15.69:6807/3717804390","heartbeat_front_addr":"172.21.15.69:6805/3717804390","state":["exists","up"]},{"osd":5,"uuid":"3cbe1ebd-f75e-481a-a6be-17b1565b5e85","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.69:6808","nonce":2012652730},{"type":"v1","addr":"172.21.15.69:6809","nonce":2012652730}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.69:6810","nonce":2012652730},{"type":"v1","addr":"172.21.15.69:6811","nonce":2012652730}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.69:6814","nonce":2012652730},{"type":"v1","addr":"172.21.15.69:6815","nonce":2012652730}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.69:6812","nonce":2012652730},{"type":"v1","addr":"172.21.15.69:6813","nonce":2012652730}]},"public_addr":"172.21.15.69:6809/2012652730","cluster_addr":"172.21.15.69:6811/2012652730","heartbeat_back_addr":"172.21.15.69:6815/2012652730","heartbeat_front_addr":"172.21.15.69:6813/2012652730","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-04-18T22:56:29.868194+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-04-18T22:57:21.433770+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-04-18T22:58:10.287756+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-04-18T22:59:01.555570+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-04-18T22:59:50.117654+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-04-18T23:00:43.389558+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.16:0/1248816450":"2024-04-19T22:53:37.800691+0000","172.21.15.16:6800/3941589115":"2024-04-19T22:53:01.844981+0000","172.21.15.16:0/3002602077":"2024-04-19T22:53:37.800691+0000","172.21.15.16:0/1895634451":"2024-04-19T22:53:01.844981+0000","172.21.15.16:0/702690916":"2024-04-19T22:53:37.800691+0000","172.21.15.16:6801/3941589115":"2024-04-19T22:53:01.844981+0000","172.21.15.16:6801/903808310":"2024-04-19T22:53:37.800691+0000","172.21.15.16:0/1787882145":"2024-04-19T22:53:01.844981+0000","172.21.15.16:0/2282438581":"2024-04-19T22:53:01.844981+0000","172.21.15.16:6800/903808310":"2024-04-19T22:53:37.800691+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-04-18T23:01:04.321 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:04 smithi016 bash[21452]: audit 2024-04-18T23:01:03.622661+0000 mon.a (mon.0) 590 : audit 0 from='client.? 172.21.15.16:0/2899780469' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-18T23:01:04.323 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-04-18T22:58:12.467986+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-04-18T23:01:04.323 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph osd pool get .mgr pg_num 2024-04-18T23:01:04.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:04 smithi055 bash[23198]: audit 2024-04-18T23:01:03.622661+0000 mon.a (mon.0) 590 : audit 0 from='client.? 172.21.15.16:0/2899780469' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-18T23:01:04.500 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:04 smithi069 bash[23476]: audit 2024-04-18T23:01:03.622661+0000 mon.a (mon.0) 590 : audit 0 from='client.? 172.21.15.16:0/2899780469' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-18T23:01:05.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:05 smithi016 bash[21452]: cluster 2024-04-18T23:01:03.919731+0000 mgr.a (mgr.14152) 288 : cluster 0 pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:05.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:05 smithi055 bash[23198]: cluster 2024-04-18T23:01:03.919731+0000 mgr.a (mgr.14152) 288 : cluster 0 pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:05.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:05 smithi069 bash[23476]: cluster 2024-04-18T23:01:03.919731+0000 mgr.a (mgr.14152) 288 : cluster 0 pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:07.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:07 smithi016 bash[21452]: cluster 2024-04-18T23:01:05.920284+0000 mgr.a (mgr.14152) 289 : cluster 0 pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:07.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:07 smithi055 bash[23198]: cluster 2024-04-18T23:01:05.920284+0000 mgr.a (mgr.14152) 289 : cluster 0 pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:07.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:07 smithi069 bash[23476]: cluster 2024-04-18T23:01:05.920284+0000 mgr.a (mgr.14152) 289 : cluster 0 pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:09.064 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T23:01:09.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:09 smithi016 bash[21452]: cluster 2024-04-18T23:01:07.920845+0000 mgr.a (mgr.14152) 290 : cluster 0 pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:09.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:09 smithi055 bash[23198]: cluster 2024-04-18T23:01:07.920845+0000 mgr.a (mgr.14152) 290 : cluster 0 pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:09.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:09 smithi069 bash[23476]: cluster 2024-04-18T23:01:07.920845+0000 mgr.a (mgr.14152) 290 : cluster 0 pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:11.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:11 smithi016 bash[21452]: cluster 2024-04-18T23:01:09.921411+0000 mgr.a (mgr.14152) 291 : cluster 0 pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:11.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:11 smithi055 bash[23198]: cluster 2024-04-18T23:01:09.921411+0000 mgr.a (mgr.14152) 291 : cluster 0 pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:11.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:11 smithi069 bash[23476]: cluster 2024-04-18T23:01:09.921411+0000 mgr.a (mgr.14152) 291 : cluster 0 pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:11.926 INFO:teuthology.orchestra.run.smithi016.stdout:pg_num: 1 2024-04-18T23:01:12.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:12 smithi016 bash[21452]: audit 2024-04-18T23:01:11.928180+0000 mon.a (mon.0) 591 : audit 0 from='client.? 172.21.15.16:0/3621272127' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-04-18T23:01:12.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:12 smithi055 bash[23198]: audit 2024-04-18T23:01:11.928180+0000 mon.a (mon.0) 591 : audit 0 from='client.? 172.21.15.16:0/3621272127' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-04-18T23:01:12.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:12 smithi069 bash[23476]: audit 2024-04-18T23:01:11.928180+0000 mon.a (mon.0) 591 : audit 0 from='client.? 172.21.15.16:0/3621272127' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-04-18T23:01:12.644 INFO:tasks.cephadm:Setting up client nodes... 2024-04-18T23:01:12.644 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-04-18T23:01:12.644 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-04-18T23:01:12.644 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph mgr dump --format=json 2024-04-18T23:01:13.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:13 smithi016 bash[21452]: cluster 2024-04-18T23:01:11.921930+0000 mgr.a (mgr.14152) 292 : cluster 0 pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:13.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:13 smithi055 bash[23198]: cluster 2024-04-18T23:01:11.921930+0000 mgr.a (mgr.14152) 292 : cluster 0 pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:13.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:13 smithi069 bash[23476]: cluster 2024-04-18T23:01:11.921930+0000 mgr.a (mgr.14152) 292 : cluster 0 pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:15.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:15 smithi016 bash[21452]: cluster 2024-04-18T23:01:13.922480+0000 mgr.a (mgr.14152) 293 : cluster 0 pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:15.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:15 smithi055 bash[23198]: cluster 2024-04-18T23:01:13.922480+0000 mgr.a (mgr.14152) 293 : cluster 0 pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:15.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:15 smithi069 bash[23476]: cluster 2024-04-18T23:01:13.922480+0000 mgr.a (mgr.14152) 293 : cluster 0 pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:17.379 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T23:01:17.399 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:17 smithi016 bash[21452]: cluster 2024-04-18T23:01:15.923082+0000 mgr.a (mgr.14152) 294 : cluster 0 pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:17.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:17 smithi055 bash[23198]: cluster 2024-04-18T23:01:15.923082+0000 mgr.a (mgr.14152) 294 : cluster 0 pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:17.501 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:17 smithi069 bash[23476]: cluster 2024-04-18T23:01:15.923082+0000 mgr.a (mgr.14152) 294 : cluster 0 pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:19.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:19 smithi016 bash[21452]: cluster 2024-04-18T23:01:17.923606+0000 mgr.a (mgr.14152) 295 : cluster 0 pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:19.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:19 smithi055 bash[23198]: cluster 2024-04-18T23:01:17.923606+0000 mgr.a (mgr.14152) 295 : cluster 0 pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:19.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:19 smithi069 bash[23476]: cluster 2024-04-18T23:01:17.923606+0000 mgr.a (mgr.14152) 295 : cluster 0 pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:20.315 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-18T23:01:21.047 INFO:teuthology.orchestra.run.smithi016.stdout:{"epoch":15,"flags":0,"active_gid":14152,"active_name":"a","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6800","nonce":1163348363},{"type":"v1","addr":"172.21.15.16:6801","nonce":1163348363}]},"active_addr":"172.21.15.16:6801/1163348363","active_change":"2024-04-18T22:53:37.801044+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:1.2.1","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_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"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:1.2.1","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_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"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.16: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.16:0","nonce":1388488113}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.16:0","nonce":957523415}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.16:0","nonce":1126868996}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.16:0","nonce":2733575401}]}]} 2024-04-18T23:01:21.053 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-04-18T23:01:21.054 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-04-18T23:01:21.054 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph osd dump --format=json 2024-04-18T23:01:21.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:21 smithi016 bash[21452]: cluster 2024-04-18T23:01:19.924021+0000 mgr.a (mgr.14152) 296 : cluster 0 pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:21.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:21 smithi016 bash[21452]: audit 2024-04-18T23:01:20.308474+0000 mon.a (mon.0) 592 : audit 0 from='client.? 172.21.15.16:0/2841783303' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-04-18T23:01:21.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:21 smithi055 bash[23198]: cluster 2024-04-18T23:01:19.924021+0000 mgr.a (mgr.14152) 296 : cluster 0 pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:21.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:21 smithi055 bash[23198]: audit 2024-04-18T23:01:20.308474+0000 mon.a (mon.0) 592 : audit 0 from='client.? 172.21.15.16:0/2841783303' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-04-18T23:01:21.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:21 smithi069 bash[23476]: cluster 2024-04-18T23:01:19.924021+0000 mgr.a (mgr.14152) 296 : cluster 0 pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:21.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:21 smithi069 bash[23476]: audit 2024-04-18T23:01:20.308474+0000 mon.a (mon.0) 592 : audit 0 from='client.? 172.21.15.16:0/2841783303' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-04-18T23:01:23.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:23 smithi016 bash[21452]: cluster 2024-04-18T23:01:21.924505+0000 mgr.a (mgr.14152) 297 : cluster 0 pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:23.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:23 smithi055 bash[23198]: cluster 2024-04-18T23:01:21.924505+0000 mgr.a (mgr.14152) 297 : cluster 0 pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:23.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:23 smithi069 bash[23476]: cluster 2024-04-18T23:01:21.924505+0000 mgr.a (mgr.14152) 297 : cluster 0 pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:25.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:25 smithi016 bash[21452]: cluster 2024-04-18T23:01:23.925063+0000 mgr.a (mgr.14152) 298 : cluster 0 pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:25.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:25 smithi055 bash[23198]: cluster 2024-04-18T23:01:23.925063+0000 mgr.a (mgr.14152) 298 : cluster 0 pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:25.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:25 smithi069 bash[23476]: cluster 2024-04-18T23:01:23.925063+0000 mgr.a (mgr.14152) 298 : cluster 0 pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:25.795 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T23:01:27.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:27 smithi016 bash[21452]: cluster 2024-04-18T23:01:25.925630+0000 mgr.a (mgr.14152) 299 : cluster 0 pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:27.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:27 smithi055 bash[23198]: cluster 2024-04-18T23:01:25.925630+0000 mgr.a (mgr.14152) 299 : cluster 0 pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:27.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:27 smithi069 bash[23476]: cluster 2024-04-18T23:01:25.925630+0000 mgr.a (mgr.14152) 299 : cluster 0 pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:28.788 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-18T23:01:28.788 INFO:teuthology.orchestra.run.smithi016.stdout:{"epoch":45,"fsid":"1266e2ee-fdd6-11ee-bc92-c7b262605968","created":"2024-04-18T22:52:28.963561+0000","modified":"2024-04-18T23:00:48.980566+0000","last_up_change":"2024-04-18T23:00:44.969946+0000","last_in_change":"2024-04-18T23:00:19.345837+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-04-18T22:58:12.467986+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":"aabdaa1d-3022-42ed-9cb6-a2ff6201b5c7","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.16:6802","nonce":3393846278},{"type":"v1","addr":"172.21.15.16:6803","nonce":3393846278}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6804","nonce":3393846278},{"type":"v1","addr":"172.21.15.16:6805","nonce":3393846278}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6808","nonce":3393846278},{"type":"v1","addr":"172.21.15.16:6809","nonce":3393846278}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6806","nonce":3393846278},{"type":"v1","addr":"172.21.15.16:6807","nonce":3393846278}]},"public_addr":"172.21.15.16:6803/3393846278","cluster_addr":"172.21.15.16:6805/3393846278","heartbeat_back_addr":"172.21.15.16:6809/3393846278","heartbeat_front_addr":"172.21.15.16:6807/3393846278","state":["exists","up"]},{"osd":1,"uuid":"b17107b0-0a86-4fda-adad-0c43af9e714c","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.16:6810","nonce":3175198504},{"type":"v1","addr":"172.21.15.16:6811","nonce":3175198504}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6812","nonce":3175198504},{"type":"v1","addr":"172.21.15.16:6813","nonce":3175198504}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6816","nonce":3175198504},{"type":"v1","addr":"172.21.15.16:6817","nonce":3175198504}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6814","nonce":3175198504},{"type":"v1","addr":"172.21.15.16:6815","nonce":3175198504}]},"public_addr":"172.21.15.16:6811/3175198504","cluster_addr":"172.21.15.16:6813/3175198504","heartbeat_back_addr":"172.21.15.16:6817/3175198504","heartbeat_front_addr":"172.21.15.16:6815/3175198504","state":["exists","up"]},{"osd":2,"uuid":"0511f964-62a6-452e-a8ac-9c32b9386ba9","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.55:6800","nonce":4041071848},{"type":"v1","addr":"172.21.15.55:6801","nonce":4041071848}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6802","nonce":4041071848},{"type":"v1","addr":"172.21.15.55:6803","nonce":4041071848}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6806","nonce":4041071848},{"type":"v1","addr":"172.21.15.55:6807","nonce":4041071848}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6804","nonce":4041071848},{"type":"v1","addr":"172.21.15.55:6805","nonce":4041071848}]},"public_addr":"172.21.15.55:6801/4041071848","cluster_addr":"172.21.15.55:6803/4041071848","heartbeat_back_addr":"172.21.15.55:6807/4041071848","heartbeat_front_addr":"172.21.15.55:6805/4041071848","state":["exists","up"]},{"osd":3,"uuid":"a4b1faf4-bf38-45ca-9a76-dd25cb3f10bf","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.55:6808","nonce":2676861821},{"type":"v1","addr":"172.21.15.55:6809","nonce":2676861821}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6810","nonce":2676861821},{"type":"v1","addr":"172.21.15.55:6811","nonce":2676861821}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6814","nonce":2676861821},{"type":"v1","addr":"172.21.15.55:6815","nonce":2676861821}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6812","nonce":2676861821},{"type":"v1","addr":"172.21.15.55:6813","nonce":2676861821}]},"public_addr":"172.21.15.55:6809/2676861821","cluster_addr":"172.21.15.55:6811/2676861821","heartbeat_back_addr":"172.21.15.55:6815/2676861821","heartbeat_front_addr":"172.21.15.55:6813/2676861821","state":["exists","up"]},{"osd":4,"uuid":"caa78f4c-5b5b-4303-b25a-38fa4582882f","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.69:6800","nonce":3717804390},{"type":"v1","addr":"172.21.15.69:6801","nonce":3717804390}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.69:6802","nonce":3717804390},{"type":"v1","addr":"172.21.15.69:6803","nonce":3717804390}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.69:6806","nonce":3717804390},{"type":"v1","addr":"172.21.15.69:6807","nonce":3717804390}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.69:6804","nonce":3717804390},{"type":"v1","addr":"172.21.15.69:6805","nonce":3717804390}]},"public_addr":"172.21.15.69:6801/3717804390","cluster_addr":"172.21.15.69:6803/3717804390","heartbeat_back_addr":"172.21.15.69:6807/3717804390","heartbeat_front_addr":"172.21.15.69:6805/3717804390","state":["exists","up"]},{"osd":5,"uuid":"3cbe1ebd-f75e-481a-a6be-17b1565b5e85","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.69:6808","nonce":2012652730},{"type":"v1","addr":"172.21.15.69:6809","nonce":2012652730}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.69:6810","nonce":2012652730},{"type":"v1","addr":"172.21.15.69:6811","nonce":2012652730}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.69:6814","nonce":2012652730},{"type":"v1","addr":"172.21.15.69:6815","nonce":2012652730}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.69:6812","nonce":2012652730},{"type":"v1","addr":"172.21.15.69:6813","nonce":2012652730}]},"public_addr":"172.21.15.69:6809/2012652730","cluster_addr":"172.21.15.69:6811/2012652730","heartbeat_back_addr":"172.21.15.69:6815/2012652730","heartbeat_front_addr":"172.21.15.69:6813/2012652730","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-04-18T22:56:29.868194+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-04-18T22:57:21.433770+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-04-18T22:58:10.287756+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-04-18T22:59:01.555570+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-04-18T22:59:50.117654+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-04-18T23:00:43.389558+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.16:0/1248816450":"2024-04-19T22:53:37.800691+0000","172.21.15.16:6800/3941589115":"2024-04-19T22:53:01.844981+0000","172.21.15.16:0/3002602077":"2024-04-19T22:53:37.800691+0000","172.21.15.16:0/1895634451":"2024-04-19T22:53:01.844981+0000","172.21.15.16:0/702690916":"2024-04-19T22:53:37.800691+0000","172.21.15.16:6801/3941589115":"2024-04-19T22:53:01.844981+0000","172.21.15.16:6801/903808310":"2024-04-19T22:53:37.800691+0000","172.21.15.16:0/1787882145":"2024-04-19T22:53:01.844981+0000","172.21.15.16:0/2282438581":"2024-04-19T22:53:01.844981+0000","172.21.15.16:6800/903808310":"2024-04-19T22:53:37.800691+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-04-18T23:01:29.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:29 smithi016 bash[21452]: cluster 2024-04-18T23:01:27.926213+0000 mgr.a (mgr.14152) 300 : cluster 0 pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:29.422 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:29 smithi016 bash[21452]: audit 2024-04-18T23:01:28.788819+0000 mon.a (mon.0) 593 : audit 0 from='client.? 172.21.15.16:0/465170019' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-18T23:01:29.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:29 smithi055 bash[23198]: cluster 2024-04-18T23:01:27.926213+0000 mgr.a (mgr.14152) 300 : cluster 0 pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:29.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:29 smithi055 bash[23198]: audit 2024-04-18T23:01:28.788819+0000 mon.a (mon.0) 593 : audit 0 from='client.? 172.21.15.16:0/465170019' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-18T23:01:29.493 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-04-18T23:01:29.493 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph osd dump --format=json 2024-04-18T23:01:29.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:29 smithi069 bash[23476]: cluster 2024-04-18T23:01:27.926213+0000 mgr.a (mgr.14152) 300 : cluster 0 pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:29.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:29 smithi069 bash[23476]: audit 2024-04-18T23:01:28.788819+0000 mon.a (mon.0) 593 : audit 0 from='client.? 172.21.15.16:0/465170019' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-18T23:01:31.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:31 smithi016 bash[21452]: cluster 2024-04-18T23:01:29.926787+0000 mgr.a (mgr.14152) 301 : cluster 0 pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:31.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:31 smithi055 bash[23198]: cluster 2024-04-18T23:01:29.926787+0000 mgr.a (mgr.14152) 301 : cluster 0 pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:31.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:31 smithi069 bash[23476]: cluster 2024-04-18T23:01:29.926787+0000 mgr.a (mgr.14152) 301 : cluster 0 pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:33.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:33 smithi016 bash[21452]: cluster 2024-04-18T23:01:31.927372+0000 mgr.a (mgr.14152) 302 : cluster 0 pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:33.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:33 smithi055 bash[23198]: cluster 2024-04-18T23:01:31.927372+0000 mgr.a (mgr.14152) 302 : cluster 0 pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:33.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:33 smithi069 bash[23476]: cluster 2024-04-18T23:01:31.927372+0000 mgr.a (mgr.14152) 302 : cluster 0 pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:34.231 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T23:01:35.390 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:35 smithi016 bash[21452]: cluster 2024-04-18T23:01:33.927928+0000 mgr.a (mgr.14152) 303 : cluster 0 pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:35.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:35 smithi055 bash[23198]: cluster 2024-04-18T23:01:33.927928+0000 mgr.a (mgr.14152) 303 : cluster 0 pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:35.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:35 smithi069 bash[23476]: cluster 2024-04-18T23:01:33.927928+0000 mgr.a (mgr.14152) 303 : cluster 0 pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:37.053 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-18T23:01:37.053 INFO:teuthology.orchestra.run.smithi016.stdout:{"epoch":45,"fsid":"1266e2ee-fdd6-11ee-bc92-c7b262605968","created":"2024-04-18T22:52:28.963561+0000","modified":"2024-04-18T23:00:48.980566+0000","last_up_change":"2024-04-18T23:00:44.969946+0000","last_in_change":"2024-04-18T23:00:19.345837+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-04-18T22:58:12.467986+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":"aabdaa1d-3022-42ed-9cb6-a2ff6201b5c7","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.16:6802","nonce":3393846278},{"type":"v1","addr":"172.21.15.16:6803","nonce":3393846278}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6804","nonce":3393846278},{"type":"v1","addr":"172.21.15.16:6805","nonce":3393846278}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6808","nonce":3393846278},{"type":"v1","addr":"172.21.15.16:6809","nonce":3393846278}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6806","nonce":3393846278},{"type":"v1","addr":"172.21.15.16:6807","nonce":3393846278}]},"public_addr":"172.21.15.16:6803/3393846278","cluster_addr":"172.21.15.16:6805/3393846278","heartbeat_back_addr":"172.21.15.16:6809/3393846278","heartbeat_front_addr":"172.21.15.16:6807/3393846278","state":["exists","up"]},{"osd":1,"uuid":"b17107b0-0a86-4fda-adad-0c43af9e714c","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.16:6810","nonce":3175198504},{"type":"v1","addr":"172.21.15.16:6811","nonce":3175198504}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6812","nonce":3175198504},{"type":"v1","addr":"172.21.15.16:6813","nonce":3175198504}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6816","nonce":3175198504},{"type":"v1","addr":"172.21.15.16:6817","nonce":3175198504}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6814","nonce":3175198504},{"type":"v1","addr":"172.21.15.16:6815","nonce":3175198504}]},"public_addr":"172.21.15.16:6811/3175198504","cluster_addr":"172.21.15.16:6813/3175198504","heartbeat_back_addr":"172.21.15.16:6817/3175198504","heartbeat_front_addr":"172.21.15.16:6815/3175198504","state":["exists","up"]},{"osd":2,"uuid":"0511f964-62a6-452e-a8ac-9c32b9386ba9","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.55:6800","nonce":4041071848},{"type":"v1","addr":"172.21.15.55:6801","nonce":4041071848}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6802","nonce":4041071848},{"type":"v1","addr":"172.21.15.55:6803","nonce":4041071848}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6806","nonce":4041071848},{"type":"v1","addr":"172.21.15.55:6807","nonce":4041071848}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6804","nonce":4041071848},{"type":"v1","addr":"172.21.15.55:6805","nonce":4041071848}]},"public_addr":"172.21.15.55:6801/4041071848","cluster_addr":"172.21.15.55:6803/4041071848","heartbeat_back_addr":"172.21.15.55:6807/4041071848","heartbeat_front_addr":"172.21.15.55:6805/4041071848","state":["exists","up"]},{"osd":3,"uuid":"a4b1faf4-bf38-45ca-9a76-dd25cb3f10bf","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.55:6808","nonce":2676861821},{"type":"v1","addr":"172.21.15.55:6809","nonce":2676861821}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6810","nonce":2676861821},{"type":"v1","addr":"172.21.15.55:6811","nonce":2676861821}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6814","nonce":2676861821},{"type":"v1","addr":"172.21.15.55:6815","nonce":2676861821}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6812","nonce":2676861821},{"type":"v1","addr":"172.21.15.55:6813","nonce":2676861821}]},"public_addr":"172.21.15.55:6809/2676861821","cluster_addr":"172.21.15.55:6811/2676861821","heartbeat_back_addr":"172.21.15.55:6815/2676861821","heartbeat_front_addr":"172.21.15.55:6813/2676861821","state":["exists","up"]},{"osd":4,"uuid":"caa78f4c-5b5b-4303-b25a-38fa4582882f","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.69:6800","nonce":3717804390},{"type":"v1","addr":"172.21.15.69:6801","nonce":3717804390}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.69:6802","nonce":3717804390},{"type":"v1","addr":"172.21.15.69:6803","nonce":3717804390}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.69:6806","nonce":3717804390},{"type":"v1","addr":"172.21.15.69:6807","nonce":3717804390}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.69:6804","nonce":3717804390},{"type":"v1","addr":"172.21.15.69:6805","nonce":3717804390}]},"public_addr":"172.21.15.69:6801/3717804390","cluster_addr":"172.21.15.69:6803/3717804390","heartbeat_back_addr":"172.21.15.69:6807/3717804390","heartbeat_front_addr":"172.21.15.69:6805/3717804390","state":["exists","up"]},{"osd":5,"uuid":"3cbe1ebd-f75e-481a-a6be-17b1565b5e85","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.69:6808","nonce":2012652730},{"type":"v1","addr":"172.21.15.69:6809","nonce":2012652730}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.69:6810","nonce":2012652730},{"type":"v1","addr":"172.21.15.69:6811","nonce":2012652730}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.69:6814","nonce":2012652730},{"type":"v1","addr":"172.21.15.69:6815","nonce":2012652730}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.69:6812","nonce":2012652730},{"type":"v1","addr":"172.21.15.69:6813","nonce":2012652730}]},"public_addr":"172.21.15.69:6809/2012652730","cluster_addr":"172.21.15.69:6811/2012652730","heartbeat_back_addr":"172.21.15.69:6815/2012652730","heartbeat_front_addr":"172.21.15.69:6813/2012652730","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-04-18T22:56:29.868194+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-04-18T22:57:21.433770+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-04-18T22:58:10.287756+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-04-18T22:59:01.555570+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-04-18T22:59:50.117654+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-04-18T23:00:43.389558+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.16:0/1248816450":"2024-04-19T22:53:37.800691+0000","172.21.15.16:6800/3941589115":"2024-04-19T22:53:01.844981+0000","172.21.15.16:0/3002602077":"2024-04-19T22:53:37.800691+0000","172.21.15.16:0/1895634451":"2024-04-19T22:53:01.844981+0000","172.21.15.16:0/702690916":"2024-04-19T22:53:37.800691+0000","172.21.15.16:6801/3941589115":"2024-04-19T22:53:01.844981+0000","172.21.15.16:6801/903808310":"2024-04-19T22:53:37.800691+0000","172.21.15.16:0/1787882145":"2024-04-19T22:53:01.844981+0000","172.21.15.16:0/2282438581":"2024-04-19T22:53:01.844981+0000","172.21.15.16:6800/903808310":"2024-04-19T22:53:37.800691+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-04-18T23:01:37.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:37 smithi016 bash[21452]: cluster 2024-04-18T23:01:35.928482+0000 mgr.a (mgr.14152) 304 : cluster 0 pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:37.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:37 smithi016 bash[21452]: audit 2024-04-18T23:01:37.053198+0000 mon.a (mon.0) 594 : audit 0 from='client.? 172.21.15.16:0/2871749151' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-18T23:01:37.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:37 smithi055 bash[23198]: cluster 2024-04-18T23:01:35.928482+0000 mgr.a (mgr.14152) 304 : cluster 0 pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:37.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:37 smithi055 bash[23198]: audit 2024-04-18T23:01:37.053198+0000 mon.a (mon.0) 594 : audit 0 from='client.? 172.21.15.16:0/2871749151' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-18T23:01:37.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:37 smithi069 bash[23476]: cluster 2024-04-18T23:01:35.928482+0000 mgr.a (mgr.14152) 304 : cluster 0 pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:37.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:37 smithi069 bash[23476]: audit 2024-04-18T23:01:37.053198+0000 mon.a (mon.0) 594 : audit 0 from='client.? 172.21.15.16:0/2871749151' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-18T23:01:37.733 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph tell osd.0 flush_pg_stats 2024-04-18T23:01:37.734 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph tell osd.1 flush_pg_stats 2024-04-18T23:01:37.734 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph tell osd.2 flush_pg_stats 2024-04-18T23:01:37.735 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph tell osd.3 flush_pg_stats 2024-04-18T23:01:37.735 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph tell osd.4 flush_pg_stats 2024-04-18T23:01:37.736 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph tell osd.5 flush_pg_stats 2024-04-18T23:01:39.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:39 smithi016 bash[21452]: cluster 2024-04-18T23:01:37.928886+0000 mgr.a (mgr.14152) 305 : cluster 0 pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:39.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:39 smithi055 bash[23198]: cluster 2024-04-18T23:01:37.928886+0000 mgr.a (mgr.14152) 305 : cluster 0 pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:39.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:39 smithi069 bash[23476]: cluster 2024-04-18T23:01:37.928886+0000 mgr.a (mgr.14152) 305 : cluster 0 pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:41.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:41 smithi016 bash[21452]: cluster 2024-04-18T23:01:39.929427+0000 mgr.a (mgr.14152) 306 : cluster 0 pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:41.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:41 smithi055 bash[23198]: cluster 2024-04-18T23:01:39.929427+0000 mgr.a (mgr.14152) 306 : cluster 0 pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:41.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:41 smithi069 bash[23476]: cluster 2024-04-18T23:01:39.929427+0000 mgr.a (mgr.14152) 306 : cluster 0 pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:42.493 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T23:01:42.493 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T23:01:42.494 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T23:01:42.496 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T23:01:42.496 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T23:01:42.496 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T23:01:43.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:43 smithi016 bash[21452]: cluster 2024-04-18T23:01:41.929925+0000 mgr.a (mgr.14152) 307 : cluster 0 pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:43.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:43 smithi055 bash[23198]: cluster 2024-04-18T23:01:41.929925+0000 mgr.a (mgr.14152) 307 : cluster 0 pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:43.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:43 smithi069 bash[23476]: cluster 2024-04-18T23:01:41.929925+0000 mgr.a (mgr.14152) 307 : cluster 0 pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:45.165 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:45 smithi016 bash[21452]: cluster 2024-04-18T23:01:43.930396+0000 mgr.a (mgr.14152) 308 : cluster 0 pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:45.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:45 smithi055 bash[23198]: cluster 2024-04-18T23:01:43.930396+0000 mgr.a (mgr.14152) 308 : cluster 0 pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:45.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:45 smithi069 bash[23476]: cluster 2024-04-18T23:01:43.930396+0000 mgr.a (mgr.14152) 308 : cluster 0 pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:47.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:47 smithi016 bash[21452]: cluster 2024-04-18T23:01:45.930984+0000 mgr.a (mgr.14152) 309 : cluster 0 pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:47.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:47 smithi055 bash[23198]: cluster 2024-04-18T23:01:45.930984+0000 mgr.a (mgr.14152) 309 : cluster 0 pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:47.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:47 smithi069 bash[23476]: cluster 2024-04-18T23:01:45.930984+0000 mgr.a (mgr.14152) 309 : cluster 0 pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:49.169 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:49 smithi016 bash[21452]: cluster 2024-04-18T23:01:47.931475+0000 mgr.a (mgr.14152) 310 : cluster 0 pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:49.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:49 smithi055 bash[23198]: cluster 2024-04-18T23:01:47.931475+0000 mgr.a (mgr.14152) 310 : cluster 0 pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:49.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:49 smithi069 bash[23476]: cluster 2024-04-18T23:01:47.931475+0000 mgr.a (mgr.14152) 310 : cluster 0 pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:51.302 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:51 smithi016 bash[21452]: cluster 2024-04-18T23:01:49.932017+0000 mgr.a (mgr.14152) 311 : cluster 0 pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:51.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:51 smithi055 bash[23198]: cluster 2024-04-18T23:01:49.932017+0000 mgr.a (mgr.14152) 311 : cluster 0 pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:51.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:51 smithi069 bash[23476]: cluster 2024-04-18T23:01:49.932017+0000 mgr.a (mgr.14152) 311 : cluster 0 pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:53.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:53 smithi016 bash[21452]: cluster 2024-04-18T23:01:51.932570+0000 mgr.a (mgr.14152) 312 : cluster 0 pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:53.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:53 smithi055 bash[23198]: cluster 2024-04-18T23:01:51.932570+0000 mgr.a (mgr.14152) 312 : cluster 0 pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:53.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:53 smithi069 bash[23476]: cluster 2024-04-18T23:01:51.932570+0000 mgr.a (mgr.14152) 312 : cluster 0 pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:53.679 INFO:teuthology.orchestra.run.smithi016.stdout:141733920795 2024-04-18T23:01:53.680 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph osd last-stat-seq osd.4 2024-04-18T23:01:53.860 INFO:teuthology.orchestra.run.smithi016.stdout:176093659152 2024-04-18T23:01:53.860 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph osd last-stat-seq osd.5 2024-04-18T23:01:53.924 INFO:teuthology.orchestra.run.smithi016.stdout:34359738434 2024-04-18T23:01:53.924 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph osd last-stat-seq osd.0 2024-04-18T23:01:54.599 INFO:teuthology.orchestra.run.smithi016.stdout:55834574905 2024-04-18T23:01:54.600 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph osd last-stat-seq osd.1 2024-04-18T23:01:55.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:55 smithi016 bash[21452]: cluster 2024-04-18T23:01:53.933012+0000 mgr.a (mgr.14152) 313 : cluster 0 pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:55.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:55 smithi055 bash[23198]: cluster 2024-04-18T23:01:53.933012+0000 mgr.a (mgr.14152) 313 : cluster 0 pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:55.453 INFO:teuthology.orchestra.run.smithi016.stdout:107374182436 2024-04-18T23:01:55.453 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph osd last-stat-seq osd.3 2024-04-18T23:01:55.467 INFO:teuthology.orchestra.run.smithi016.stdout:77309411375 2024-04-18T23:01:55.467 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph osd last-stat-seq osd.2 2024-04-18T23:01:55.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:55 smithi069 bash[23476]: cluster 2024-04-18T23:01:53.933012+0000 mgr.a (mgr.14152) 313 : cluster 0 pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:56.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:56 smithi055 bash[23198]: audit 2024-04-18T23:01:56.069615+0000 mon.a (mon.0) 595 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T23:01:56.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:56 smithi069 bash[23476]: audit 2024-04-18T23:01:56.069615+0000 mon.a (mon.0) 595 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T23:01:56.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:56 smithi016 bash[21452]: audit 2024-04-18T23:01:56.069615+0000 mon.a (mon.0) 595 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T23:01:57.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:57 smithi055 bash[23198]: cluster 2024-04-18T23:01:55.933573+0000 mgr.a (mgr.14152) 314 : cluster 0 pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:57.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:57 smithi055 bash[23198]: audit 2024-04-18T23:01:56.919545+0000 mon.a (mon.0) 596 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:01:57.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:57 smithi055 bash[23198]: audit 2024-04-18T23:01:56.920734+0000 mon.a (mon.0) 597 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T23:01:57.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:57 smithi055 bash[23198]: audit 2024-04-18T23:01:56.927569+0000 mon.a (mon.0) 598 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:01:57.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:57 smithi069 bash[23476]: cluster 2024-04-18T23:01:55.933573+0000 mgr.a (mgr.14152) 314 : cluster 0 pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:57.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:57 smithi069 bash[23476]: audit 2024-04-18T23:01:56.919545+0000 mon.a (mon.0) 596 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:01:57.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:57 smithi069 bash[23476]: audit 2024-04-18T23:01:56.920734+0000 mon.a (mon.0) 597 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T23:01:57.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:57 smithi069 bash[23476]: audit 2024-04-18T23:01:56.927569+0000 mon.a (mon.0) 598 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:01:57.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:57 smithi016 bash[21452]: cluster 2024-04-18T23:01:55.933573+0000 mgr.a (mgr.14152) 314 : cluster 0 pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:57.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:57 smithi016 bash[21452]: audit 2024-04-18T23:01:56.919545+0000 mon.a (mon.0) 596 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:01:57.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:57 smithi016 bash[21452]: audit 2024-04-18T23:01:56.920734+0000 mon.a (mon.0) 597 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T23:01:57.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:57 smithi016 bash[21452]: audit 2024-04-18T23:01:56.927569+0000 mon.a (mon.0) 598 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:01:58.425 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T23:01:58.425 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T23:01:58.426 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T23:01:58.426 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T23:01:59.434 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T23:01:59.435 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T23:01:59.447 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:01:59 smithi016 bash[21452]: cluster 2024-04-18T23:01:57.934050+0000 mgr.a (mgr.14152) 315 : cluster 0 pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:59.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:01:59 smithi055 bash[23198]: cluster 2024-04-18T23:01:57.934050+0000 mgr.a (mgr.14152) 315 : cluster 0 pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:01:59.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:01:59 smithi069 bash[23476]: cluster 2024-04-18T23:01:57.934050+0000 mgr.a (mgr.14152) 315 : cluster 0 pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:01.392 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:01 smithi016 bash[21452]: cluster 2024-04-18T23:01:59.934619+0000 mgr.a (mgr.14152) 316 : cluster 0 pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:01.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:01 smithi055 bash[23198]: cluster 2024-04-18T23:01:59.934619+0000 mgr.a (mgr.14152) 316 : cluster 0 pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:01.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:01 smithi069 bash[23476]: cluster 2024-04-18T23:01:59.934619+0000 mgr.a (mgr.14152) 316 : cluster 0 pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:03.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:03 smithi016 bash[21452]: cluster 2024-04-18T23:02:01.935206+0000 mgr.a (mgr.14152) 317 : cluster 0 pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:03.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:03 smithi055 bash[23198]: cluster 2024-04-18T23:02:01.935206+0000 mgr.a (mgr.14152) 317 : cluster 0 pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:03.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:03 smithi069 bash[23476]: cluster 2024-04-18T23:02:01.935206+0000 mgr.a (mgr.14152) 317 : cluster 0 pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:05.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:05 smithi055 bash[23198]: cluster 2024-04-18T23:02:03.935748+0000 mgr.a (mgr.14152) 318 : cluster 0 pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:05.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:05 smithi069 bash[23476]: cluster 2024-04-18T23:02:03.935748+0000 mgr.a (mgr.14152) 318 : cluster 0 pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:05.600 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:05 smithi016 bash[21452]: cluster 2024-04-18T23:02:03.935748+0000 mgr.a (mgr.14152) 318 : cluster 0 pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:07.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:07 smithi055 bash[23198]: cluster 2024-04-18T23:02:05.936352+0000 mgr.a (mgr.14152) 319 : cluster 0 pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:07.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:07 smithi069 bash[23476]: cluster 2024-04-18T23:02:05.936352+0000 mgr.a (mgr.14152) 319 : cluster 0 pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:07.549 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:07 smithi016 bash[21452]: cluster 2024-04-18T23:02:05.936352+0000 mgr.a (mgr.14152) 319 : cluster 0 pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:08.770 INFO:teuthology.orchestra.run.smithi016.stdout:141733920798 2024-04-18T23:02:08.793 INFO:teuthology.orchestra.run.smithi016.stdout:55834574908 2024-04-18T23:02:09.092 INFO:teuthology.orchestra.run.smithi016.stdout:34359738438 2024-04-18T23:02:09.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:09 smithi016 bash[21452]: cluster 2024-04-18T23:02:07.936863+0000 mgr.a (mgr.14152) 320 : cluster 0 pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:09.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:09 smithi016 bash[21452]: audit 2024-04-18T23:02:08.772324+0000 mon.a (mon.0) 599 : audit 0 from='client.? 172.21.15.16:0/2616347874' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-04-18T23:02:09.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:09 smithi016 bash[21452]: audit 2024-04-18T23:02:08.797693+0000 mon.c (mon.1) 14 : audit 0 from='client.? 172.21.15.16:0/1969336360' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-04-18T23:02:09.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:09 smithi016 bash[21452]: audit 2024-04-18T23:02:09.094655+0000 mon.a (mon.0) 600 : audit 0 from='client.? 172.21.15.16:0/1475729187' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-04-18T23:02:09.489 INFO:teuthology.orchestra.run.smithi016.stdout:176093659155 2024-04-18T23:02:09.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:09 smithi069 bash[23476]: cluster 2024-04-18T23:02:07.936863+0000 mgr.a (mgr.14152) 320 : cluster 0 pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:09.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:09 smithi069 bash[23476]: audit 2024-04-18T23:02:08.772324+0000 mon.a (mon.0) 599 : audit 0 from='client.? 172.21.15.16:0/2616347874' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-04-18T23:02:09.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:09 smithi069 bash[23476]: audit 2024-04-18T23:02:08.797693+0000 mon.c (mon.1) 14 : audit 0 from='client.? 172.21.15.16:0/1969336360' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-04-18T23:02:09.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:09 smithi069 bash[23476]: audit 2024-04-18T23:02:09.094655+0000 mon.a (mon.0) 600 : audit 0 from='client.? 172.21.15.16:0/1475729187' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-04-18T23:02:09.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:09 smithi055 bash[23198]: cluster 2024-04-18T23:02:07.936863+0000 mgr.a (mgr.14152) 320 : cluster 0 pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:09.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:09 smithi055 bash[23198]: audit 2024-04-18T23:02:08.772324+0000 mon.a (mon.0) 599 : audit 0 from='client.? 172.21.15.16:0/2616347874' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-04-18T23:02:09.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:09 smithi055 bash[23198]: audit 2024-04-18T23:02:08.797693+0000 mon.c (mon.1) 14 : audit 0 from='client.? 172.21.15.16:0/1969336360' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-04-18T23:02:09.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:09 smithi055 bash[23198]: audit 2024-04-18T23:02:09.094655+0000 mon.a (mon.0) 600 : audit 0 from='client.? 172.21.15.16:0/1475729187' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-04-18T23:02:09.797 INFO:teuthology.orchestra.run.smithi016.stdout:107374182439 2024-04-18T23:02:10.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:10 smithi069 bash[23476]: audit 2024-04-18T23:02:09.492209+0000 mon.a (mon.0) 601 : audit 0 from='client.? 172.21.15.16:0/285529982' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-04-18T23:02:10.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:10 smithi069 bash[23476]: audit 2024-04-18T23:02:09.799969+0000 mon.a (mon.0) 602 : audit 0 from='client.? 172.21.15.16:0/2959188071' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-04-18T23:02:10.654 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:10 smithi016 bash[21452]: audit 2024-04-18T23:02:09.492209+0000 mon.a (mon.0) 601 : audit 0 from='client.? 172.21.15.16:0/285529982' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-04-18T23:02:10.654 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:10 smithi016 bash[21452]: audit 2024-04-18T23:02:09.799969+0000 mon.a (mon.0) 602 : audit 0 from='client.? 172.21.15.16:0/2959188071' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-04-18T23:02:10.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:10 smithi055 bash[23198]: audit 2024-04-18T23:02:09.492209+0000 mon.a (mon.0) 601 : audit 0 from='client.? 172.21.15.16:0/285529982' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-04-18T23:02:10.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:10 smithi055 bash[23198]: audit 2024-04-18T23:02:09.799969+0000 mon.a (mon.0) 602 : audit 0 from='client.? 172.21.15.16:0/2959188071' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-04-18T23:02:11.324 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:11 smithi016 bash[21452]: cluster 2024-04-18T23:02:09.937383+0000 mgr.a (mgr.14152) 321 : cluster 0 pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:11.325 INFO:tasks.cephadm.ceph_manager.ceph:need seq 55834574905 got 55834574908 for osd.1 2024-04-18T23:02:11.325 DEBUG:teuthology.parallel:result is None 2024-04-18T23:02:11.327 INFO:tasks.cephadm.ceph_manager.ceph:need seq 141733920795 got 141733920798 for osd.4 2024-04-18T23:02:11.327 DEBUG:teuthology.parallel:result is None 2024-04-18T23:02:11.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:11 smithi069 bash[23476]: cluster 2024-04-18T23:02:09.937383+0000 mgr.a (mgr.14152) 321 : cluster 0 pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:11.521 INFO:tasks.cephadm.ceph_manager.ceph:need seq 176093659152 got 176093659155 for osd.5 2024-04-18T23:02:11.521 DEBUG:teuthology.parallel:result is None 2024-04-18T23:02:11.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:11 smithi055 bash[23198]: cluster 2024-04-18T23:02:09.937383+0000 mgr.a (mgr.14152) 321 : cluster 0 pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:12.006 INFO:teuthology.orchestra.run.smithi016.stdout:77309411378 2024-04-18T23:02:12.386 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:12 smithi016 bash[21452]: audit 2024-04-18T23:02:12.009172+0000 mon.a (mon.0) 603 : audit 0 from='client.? 172.21.15.16:0/1568154387' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-04-18T23:02:12.387 INFO:tasks.cephadm.ceph_manager.ceph:need seq 34359738434 got 34359738438 for osd.0 2024-04-18T23:02:12.387 DEBUG:teuthology.parallel:result is None 2024-04-18T23:02:12.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:12 smithi069 bash[23476]: audit 2024-04-18T23:02:12.009172+0000 mon.a (mon.0) 603 : audit 0 from='client.? 172.21.15.16:0/1568154387' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-04-18T23:02:12.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:12 smithi055 bash[23198]: audit 2024-04-18T23:02:12.009172+0000 mon.a (mon.0) 603 : audit 0 from='client.? 172.21.15.16:0/1568154387' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-04-18T23:02:12.753 INFO:tasks.cephadm.ceph_manager.ceph:need seq 107374182436 got 107374182439 for osd.3 2024-04-18T23:02:12.753 DEBUG:teuthology.parallel:result is None 2024-04-18T23:02:13.158 INFO:tasks.cephadm.ceph_manager.ceph:need seq 77309411375 got 77309411378 for osd.2 2024-04-18T23:02:13.158 DEBUG:teuthology.parallel:result is None 2024-04-18T23:02:13.158 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-04-18T23:02:13.159 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph pg dump --format=json 2024-04-18T23:02:13.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:13 smithi016 bash[21452]: cluster 2024-04-18T23:02:11.937902+0000 mgr.a (mgr.14152) 322 : cluster 0 pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:13.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:13 smithi069 bash[23476]: cluster 2024-04-18T23:02:11.937902+0000 mgr.a (mgr.14152) 322 : cluster 0 pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:13.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:13 smithi055 bash[23198]: cluster 2024-04-18T23:02:11.937902+0000 mgr.a (mgr.14152) 322 : cluster 0 pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:15.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:15 smithi069 bash[23476]: cluster 2024-04-18T23:02:13.938448+0000 mgr.a (mgr.14152) 323 : cluster 0 pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:15.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:15 smithi016 bash[21452]: cluster 2024-04-18T23:02:13.938448+0000 mgr.a (mgr.14152) 323 : cluster 0 pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:15.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:15 smithi055 bash[23198]: cluster 2024-04-18T23:02:13.938448+0000 mgr.a (mgr.14152) 323 : cluster 0 pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:17.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:17 smithi069 bash[23476]: cluster 2024-04-18T23:02:15.938877+0000 mgr.a (mgr.14152) 324 : cluster 0 pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:17.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:17 smithi016 bash[21452]: cluster 2024-04-18T23:02:15.938877+0000 mgr.a (mgr.14152) 324 : cluster 0 pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:17.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:17 smithi055 bash[23198]: cluster 2024-04-18T23:02:15.938877+0000 mgr.a (mgr.14152) 324 : cluster 0 pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:17.900 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T23:02:19.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:19 smithi016 bash[21452]: cluster 2024-04-18T23:02:17.939413+0000 mgr.a (mgr.14152) 325 : cluster 0 pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:19.499 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:19 smithi069 bash[23476]: cluster 2024-04-18T23:02:17.939413+0000 mgr.a (mgr.14152) 325 : cluster 0 pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:19.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:19 smithi055 bash[23198]: cluster 2024-04-18T23:02:17.939413+0000 mgr.a (mgr.14152) 325 : cluster 0 pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:20.825 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-18T23:02:20.828 INFO:teuthology.orchestra.run.smithi016.stderr:dumped all 2024-04-18T23:02:21.498 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:21 smithi069 bash[23476]: cluster 2024-04-18T23:02:19.939982+0000 mgr.a (mgr.14152) 326 : cluster 0 pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:21.586 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:21 smithi016 bash[21452]: cluster 2024-04-18T23:02:19.939982+0000 mgr.a (mgr.14152) 326 : cluster 0 pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:21.588 INFO:teuthology.orchestra.run.smithi016.stdout:{"pg_ready":true,"pg_map":{"version":296,"stamp":"2024-04-18T23:02:19.939656+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":178760,"kb_used_data":4140,"kb_used_omap":9,"kb_used_meta":174518,"kb_avail":562292152,"statfs":{"total":575970213888,"available":575787163648,"internally_reserved":0,"allocated":4239360,"data_stored":2732460,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9568,"internal_metadata":178707104},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"12.003068"},"pg_stats":[{"pgid":"1.0","version":"21'137","reported_seq":261,"reported_epoch":45,"state":"active+clean","last_fresh":"2024-04-18T23:00:49.002813+0000","last_change":"2024-04-18T23:00:49.002080+0000","last_active":"2024-04-18T23:00:49.002813+0000","last_peered":"2024-04-18T23:00:49.002813+0000","last_clean":"2024-04-18T23:00:49.002813+0000","last_became_active":"2024-04-18T23:00:49.001161+0000","last_became_peered":"2024-04-18T23:00:49.001161+0000","last_unstale":"2024-04-18T23:00:49.002813+0000","last_undegraded":"2024-04-18T23:00:49.002813+0000","last_fullsized":"2024-04-18T23:00:49.002813+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-04-18T22:58:12.487653+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-04-18T22:58:12.487653+0000","last_clean_scrub_stamp":"2024-04-18T22:58:12.487653+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-20T00:56:45.380518+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":2969600,"data_stored":2951840,"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":176093659157,"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":141733920801,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31588,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713564,"statfs":{"total":95995035648,"available":95962689536,"internally_reserved":0,"allocated":409600,"data_stored":160226,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,1,2,3,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":25,"seq":107374182442,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28000,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717152,"statfs":{"total":95995035648,"available":95966363648,"internally_reserved":0,"allocated":1003520,"data_stored":750594,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"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":77309411380,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28004,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717148,"statfs":{"total":95995035648,"available":95966359552,"internally_reserved":0,"allocated":1003520,"data_stored":750594,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":8,"seq":34359738440,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27424,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717728,"statfs":{"total":95995035648,"available":95966953472,"internally_reserved":0,"allocated":409600,"data_stored":160226,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[1,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":13,"seq":55834574911,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31580,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713572,"statfs":{"total":95995035648,"available":95962697728,"internally_reserved":0,"allocated":409600,"data_stored":160226,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":0,"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},{"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-04-18T23:02:21.588 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph pg dump --format=json 2024-04-18T23:02:21.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:21 smithi055 bash[23198]: cluster 2024-04-18T23:02:19.939982+0000 mgr.a (mgr.14152) 326 : cluster 0 pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:22.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:22 smithi016 bash[21452]: audit 2024-04-18T23:02:20.826336+0000 mgr.a (mgr.14152) 327 : audit 0 from='client.14433 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-18T23:02:22.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:22 smithi055 bash[23198]: audit 2024-04-18T23:02:20.826336+0000 mgr.a (mgr.14152) 327 : audit 0 from='client.14433 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-18T23:02:22.749 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:22 smithi069 bash[23476]: audit 2024-04-18T23:02:20.826336+0000 mgr.a (mgr.14152) 327 : audit 0 from='client.14433 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-18T23:02:23.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:23 smithi016 bash[21452]: cluster 2024-04-18T23:02:21.940542+0000 mgr.a (mgr.14152) 328 : cluster 0 pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:23.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:23 smithi055 bash[23198]: cluster 2024-04-18T23:02:21.940542+0000 mgr.a (mgr.14152) 328 : cluster 0 pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:23.748 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:23 smithi069 bash[23476]: cluster 2024-04-18T23:02:21.940542+0000 mgr.a (mgr.14152) 328 : cluster 0 pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:25.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:25 smithi016 bash[21452]: cluster 2024-04-18T23:02:23.941117+0000 mgr.a (mgr.14152) 329 : cluster 0 pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:25.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:25 smithi055 bash[23198]: cluster 2024-04-18T23:02:23.941117+0000 mgr.a (mgr.14152) 329 : cluster 0 pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:25.749 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:25 smithi069 bash[23476]: cluster 2024-04-18T23:02:23.941117+0000 mgr.a (mgr.14152) 329 : cluster 0 pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:26.327 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T23:02:27.558 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:27 smithi016 bash[21452]: cluster 2024-04-18T23:02:25.941636+0000 mgr.a (mgr.14152) 330 : cluster 0 pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:27.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:27 smithi055 bash[23198]: cluster 2024-04-18T23:02:25.941636+0000 mgr.a (mgr.14152) 330 : cluster 0 pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:27.749 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:27 smithi069 bash[23476]: cluster 2024-04-18T23:02:25.941636+0000 mgr.a (mgr.14152) 330 : cluster 0 pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:29.242 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-18T23:02:29.245 INFO:teuthology.orchestra.run.smithi016.stderr:dumped all 2024-04-18T23:02:29.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:29 smithi016 bash[21452]: cluster 2024-04-18T23:02:27.942179+0000 mgr.a (mgr.14152) 331 : cluster 0 pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:29.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:29 smithi055 bash[23198]: cluster 2024-04-18T23:02:27.942179+0000 mgr.a (mgr.14152) 331 : cluster 0 pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:29.749 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:29 smithi069 bash[23476]: cluster 2024-04-18T23:02:27.942179+0000 mgr.a (mgr.14152) 331 : cluster 0 pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:29.908 INFO:teuthology.orchestra.run.smithi016.stdout:{"pg_ready":true,"pg_map":{"version":300,"stamp":"2024-04-18T23:02:27.941912+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":178760,"kb_used_data":4140,"kb_used_omap":9,"kb_used_meta":174518,"kb_avail":562292152,"statfs":{"total":575970213888,"available":575787163648,"internally_reserved":0,"allocated":4239360,"data_stored":2732460,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9568,"internal_metadata":178707104},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"12.003196"},"pg_stats":[{"pgid":"1.0","version":"21'137","reported_seq":261,"reported_epoch":45,"state":"active+clean","last_fresh":"2024-04-18T23:00:49.002813+0000","last_change":"2024-04-18T23:00:49.002080+0000","last_active":"2024-04-18T23:00:49.002813+0000","last_peered":"2024-04-18T23:00:49.002813+0000","last_clean":"2024-04-18T23:00:49.002813+0000","last_became_active":"2024-04-18T23:00:49.001161+0000","last_became_peered":"2024-04-18T23:00:49.001161+0000","last_unstale":"2024-04-18T23:00:49.002813+0000","last_undegraded":"2024-04-18T23:00:49.002813+0000","last_fullsized":"2024-04-18T23:00:49.002813+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-04-18T22:58:12.487653+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-04-18T22:58:12.487653+0000","last_clean_scrub_stamp":"2024-04-18T22:58:12.487653+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-20T00:56:45.380518+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":2969600,"data_stored":2951840,"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":176093659159,"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":31588,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713564,"statfs":{"total":95995035648,"available":95962689536,"internally_reserved":0,"allocated":409600,"data_stored":160226,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,1,2,3,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":25,"seq":107374182443,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28000,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717152,"statfs":{"total":95995035648,"available":95966363648,"internally_reserved":0,"allocated":1003520,"data_stored":750594,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"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":77309411382,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28004,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717148,"statfs":{"total":95995035648,"available":95966359552,"internally_reserved":0,"allocated":1003520,"data_stored":750594,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":8,"seq":34359738442,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27424,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717728,"statfs":{"total":95995035648,"available":95966953472,"internally_reserved":0,"allocated":409600,"data_stored":160226,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[1,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":13,"seq":55834574912,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31580,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713572,"statfs":{"total":95995035648,"available":95962697728,"internally_reserved":0,"allocated":409600,"data_stored":160226,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":0,"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},{"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-04-18T23:02:29.909 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-04-18T23:02:29.909 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-04-18T23:02:29.909 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-04-18T23:02:29.910 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- ceph health --format=json 2024-04-18T23:02:30.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:30 smithi016 bash[21452]: audit 2024-04-18T23:02:29.242948+0000 mgr.a (mgr.14152) 332 : audit 0 from='client.14439 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-18T23:02:30.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:30 smithi055 bash[23198]: audit 2024-04-18T23:02:29.242948+0000 mgr.a (mgr.14152) 332 : audit 0 from='client.14439 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-18T23:02:30.748 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:30 smithi069 bash[23476]: audit 2024-04-18T23:02:29.242948+0000 mgr.a (mgr.14152) 332 : audit 0 from='client.14439 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-18T23:02:31.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:31 smithi016 bash[21452]: cluster 2024-04-18T23:02:29.942748+0000 mgr.a (mgr.14152) 333 : cluster 0 pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:31.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:31 smithi055 bash[23198]: cluster 2024-04-18T23:02:29.942748+0000 mgr.a (mgr.14152) 333 : cluster 0 pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:31.748 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:31 smithi069 bash[23476]: cluster 2024-04-18T23:02:29.942748+0000 mgr.a (mgr.14152) 333 : cluster 0 pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:33.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:33 smithi016 bash[21452]: cluster 2024-04-18T23:02:31.943331+0000 mgr.a (mgr.14152) 334 : cluster 0 pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:33.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:33 smithi055 bash[23198]: cluster 2024-04-18T23:02:31.943331+0000 mgr.a (mgr.14152) 334 : cluster 0 pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:33.748 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:33 smithi069 bash[23476]: cluster 2024-04-18T23:02:31.943331+0000 mgr.a (mgr.14152) 334 : cluster 0 pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:34.652 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T23:02:35.596 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:35 smithi016 bash[21452]: cluster 2024-04-18T23:02:33.943900+0000 mgr.a (mgr.14152) 335 : cluster 0 pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:35.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:35 smithi055 bash[23198]: cluster 2024-04-18T23:02:33.943900+0000 mgr.a (mgr.14152) 335 : cluster 0 pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:35.748 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:35 smithi069 bash[23476]: cluster 2024-04-18T23:02:33.943900+0000 mgr.a (mgr.14152) 335 : cluster 0 pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:37.609 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-18T23:02:37.609 INFO:teuthology.orchestra.run.smithi016.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-04-18T23:02:37.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:37 smithi016 bash[21452]: cluster 2024-04-18T23:02:35.944500+0000 mgr.a (mgr.14152) 336 : cluster 0 pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:37.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:37 smithi055 bash[23198]: cluster 2024-04-18T23:02:35.944500+0000 mgr.a (mgr.14152) 336 : cluster 0 pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:37.748 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:37 smithi069 bash[23476]: cluster 2024-04-18T23:02:35.944500+0000 mgr.a (mgr.14152) 336 : cluster 0 pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:38.314 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-04-18T23:02:38.314 INFO:tasks.cephadm:Setup complete, yielding 2024-04-18T23:02:38.315 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-04-18T23:02:38.324 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi016.front.sepia.ceph.com 2024-04-18T23:02:38.325 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:1a6a3e742fd81c6d70be70552499bff767652c32 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 -- bash -c 'set -ex 2024-04-18T23:02:38.325 DEBUG:teuthology.orchestra.run.smithi016:> HOSTNAMES=$(ceph orch host ls --format json | jq -r '"'"'.[] | .hostname'"'"') 2024-04-18T23:02:38.325 DEBUG:teuthology.orchestra.run.smithi016:> for host in $HOSTNAMES; do 2024-04-18T23:02:38.325 DEBUG:teuthology.orchestra.run.smithi016:> # find the hostname for "host.c" which will have no mgr 2024-04-18T23:02:38.325 DEBUG:teuthology.orchestra.run.smithi016:> HAS_MGRS=$(ceph orch ps --hostname ${host} --format json | jq '"'"'any(.daemon_type == "mgr")'"'"') 2024-04-18T23:02:38.325 DEBUG:teuthology.orchestra.run.smithi016:> if [ "$HAS_MGRS" == "false" ]; then 2024-04-18T23:02:38.325 DEBUG:teuthology.orchestra.run.smithi016:> HOST_C="${host}" 2024-04-18T23:02:38.325 DEBUG:teuthology.orchestra.run.smithi016:> fi 2024-04-18T23:02:38.325 DEBUG:teuthology.orchestra.run.smithi016:> done 2024-04-18T23:02:38.325 DEBUG:teuthology.orchestra.run.smithi016:> # One last thing to worry about before draining the host 2024-04-18T23:02:38.325 DEBUG:teuthology.orchestra.run.smithi016:> # is that the teuthology test tends to put the explicit 2024-04-18T23:02:38.326 DEBUG:teuthology.orchestra.run.smithi016:> # hostnames in the placement for the mon service. 2024-04-18T23:02:38.326 DEBUG:teuthology.orchestra.run.smithi016:> # We want to make sure we can drain without providing 2024-04-18T23:02:38.326 DEBUG:teuthology.orchestra.run.smithi016:> # --force and there is a check for the host being removed 2024-04-18T23:02:38.326 DEBUG:teuthology.orchestra.run.smithi016:> # being listed explicitly in the placements. Therefore, 2024-04-18T23:02:38.326 DEBUG:teuthology.orchestra.run.smithi016:> # we should remove it from the mon placement. 2024-04-18T23:02:38.326 DEBUG:teuthology.orchestra.run.smithi016:> ceph orch ls mon --export > mon.yaml 2024-04-18T23:02:38.326 DEBUG:teuthology.orchestra.run.smithi016:> sed /"$HOST_C"/d mon.yaml > mon_adjusted.yaml 2024-04-18T23:02:38.327 DEBUG:teuthology.orchestra.run.smithi016:> ceph orch apply -i mon_adjusted.yaml 2024-04-18T23:02:38.327 DEBUG:teuthology.orchestra.run.smithi016:> # now drain that host 2024-04-18T23:02:38.327 DEBUG:teuthology.orchestra.run.smithi016:> ceph orch host drain $HOST_C --zap-osd-devices 2024-04-18T23:02:38.327 DEBUG:teuthology.orchestra.run.smithi016:> # wait for drain to complete 2024-04-18T23:02:38.327 DEBUG:teuthology.orchestra.run.smithi016:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-04-18T23:02:38.327 DEBUG:teuthology.orchestra.run.smithi016:> while [ "$HOST_C_DAEMONS" != "No daemons reported" ]; do 2024-04-18T23:02:38.327 DEBUG:teuthology.orchestra.run.smithi016:> sleep 15 2024-04-18T23:02:38.327 DEBUG:teuthology.orchestra.run.smithi016:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-04-18T23:02:38.327 DEBUG:teuthology.orchestra.run.smithi016:> done 2024-04-18T23:02:38.328 DEBUG:teuthology.orchestra.run.smithi016:> # we want to check the ability to remove the host from 2024-04-18T23:02:38.328 DEBUG:teuthology.orchestra.run.smithi016:> # the CRUSH map, so we should first verify the host is in 2024-04-18T23:02:38.328 DEBUG:teuthology.orchestra.run.smithi016:> # the CRUSH map. 2024-04-18T23:02:38.328 DEBUG:teuthology.orchestra.run.smithi016:> ceph osd getcrushmap -o compiled-crushmap 2024-04-18T23:02:38.328 DEBUG:teuthology.orchestra.run.smithi016:> crushtool -d compiled-crushmap -o crushmap.txt 2024-04-18T23:02:38.328 DEBUG:teuthology.orchestra.run.smithi016:> CRUSH_MAP=$(cat crushmap.txt) 2024-04-18T23:02:38.328 DEBUG:teuthology.orchestra.run.smithi016:> if ! grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-04-18T23:02:38.328 DEBUG:teuthology.orchestra.run.smithi016:> printf "Expected to see $HOST_C in CRUSH map. Saw:\n\n$CRUSH_MAP" 2024-04-18T23:02:38.328 DEBUG:teuthology.orchestra.run.smithi016:> exit 1 2024-04-18T23:02:38.328 DEBUG:teuthology.orchestra.run.smithi016:> fi 2024-04-18T23:02:38.328 DEBUG:teuthology.orchestra.run.smithi016:> # If the drain was successful, we should be able to remove the 2024-04-18T23:02:38.328 DEBUG:teuthology.orchestra.run.smithi016:> # host without force with no issues. If there are still daemons 2024-04-18T23:02:38.328 DEBUG:teuthology.orchestra.run.smithi016:> # we will get a response telling us to drain the host and a 2024-04-18T23:02:38.328 DEBUG:teuthology.orchestra.run.smithi016:> # non-zero return code 2024-04-18T23:02:38.328 DEBUG:teuthology.orchestra.run.smithi016:> ceph orch host rm $HOST_C --rm-crush-entry 2024-04-18T23:02:38.328 DEBUG:teuthology.orchestra.run.smithi016:> # verify we'"'"'ve successfully removed the host from the CRUSH map 2024-04-18T23:02:38.328 DEBUG:teuthology.orchestra.run.smithi016:> sleep 30 2024-04-18T23:02:38.329 DEBUG:teuthology.orchestra.run.smithi016:> ceph osd getcrushmap -o compiled-crushmap 2024-04-18T23:02:38.329 DEBUG:teuthology.orchestra.run.smithi016:> crushtool -d compiled-crushmap -o crushmap.txt 2024-04-18T23:02:38.329 DEBUG:teuthology.orchestra.run.smithi016:> CRUSH_MAP=$(cat crushmap.txt) 2024-04-18T23:02:38.329 DEBUG:teuthology.orchestra.run.smithi016:> if grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-04-18T23:02:38.329 DEBUG:teuthology.orchestra.run.smithi016:> printf "Saw $HOST_C in CRUSH map after it should have been removed.\n\n$CRUSH_MAP" 2024-04-18T23:02:38.329 DEBUG:teuthology.orchestra.run.smithi016:> exit 1 2024-04-18T23:02:38.329 DEBUG:teuthology.orchestra.run.smithi016:> fi 2024-04-18T23:02:38.329 DEBUG:teuthology.orchestra.run.smithi016:> ' 2024-04-18T23:02:38.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:38 smithi016 bash[21452]: audit 2024-04-18T23:02:37.611860+0000 mon.a (mon.0) 604 : audit 0 from='client.? 172.21.15.16:0/4099812135' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-04-18T23:02:38.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:38 smithi055 bash[23198]: audit 2024-04-18T23:02:37.611860+0000 mon.a (mon.0) 604 : audit 0 from='client.? 172.21.15.16:0/4099812135' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-04-18T23:02:38.748 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:38 smithi069 bash[23476]: audit 2024-04-18T23:02:37.611860+0000 mon.a (mon.0) 604 : audit 0 from='client.? 172.21.15.16:0/4099812135' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-04-18T23:02:39.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:39 smithi016 bash[21452]: cluster 2024-04-18T23:02:37.945034+0000 mgr.a (mgr.14152) 337 : cluster 0 pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:39.703 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:39 smithi055 bash[23198]: cluster 2024-04-18T23:02:37.945034+0000 mgr.a (mgr.14152) 337 : cluster 0 pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:39.748 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:39 smithi069 bash[23476]: cluster 2024-04-18T23:02:37.945034+0000 mgr.a (mgr.14152) 337 : cluster 0 pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:41.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:41 smithi016 bash[21452]: cluster 2024-04-18T23:02:39.945616+0000 mgr.a (mgr.14152) 338 : cluster 0 pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:41.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:41 smithi055 bash[23198]: cluster 2024-04-18T23:02:39.945616+0000 mgr.a (mgr.14152) 338 : cluster 0 pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:41.748 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:41 smithi069 bash[23476]: cluster 2024-04-18T23:02:39.945616+0000 mgr.a (mgr.14152) 338 : cluster 0 pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:43.067 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/mon.a/config 2024-04-18T23:02:43.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:43 smithi016 bash[21452]: cluster 2024-04-18T23:02:41.946302+0000 mgr.a (mgr.14152) 339 : cluster 0 pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:43.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:43 smithi055 bash[23198]: cluster 2024-04-18T23:02:41.946302+0000 mgr.a (mgr.14152) 339 : cluster 0 pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:43.748 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:43 smithi069 bash[23476]: cluster 2024-04-18T23:02:41.946302+0000 mgr.a (mgr.14152) 339 : cluster 0 pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:45.665 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:45 smithi016 bash[21452]: cluster 2024-04-18T23:02:43.946910+0000 mgr.a (mgr.14152) 340 : cluster 0 pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:45.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:45 smithi055 bash[23198]: cluster 2024-04-18T23:02:43.946910+0000 mgr.a (mgr.14152) 340 : cluster 0 pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:45.716 INFO:teuthology.orchestra.run.smithi016.stderr:++ ceph orch host ls --format json 2024-04-18T23:02:45.716 INFO:teuthology.orchestra.run.smithi016.stderr:++ jq -r '.[] | .hostname' 2024-04-18T23:02:45.748 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:45 smithi069 bash[23476]: cluster 2024-04-18T23:02:43.946910+0000 mgr.a (mgr.14152) 340 : cluster 0 pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:46.074 INFO:teuthology.orchestra.run.smithi016.stderr:+ HOSTNAMES='smithi016 2024-04-18T23:02:46.075 INFO:teuthology.orchestra.run.smithi016.stderr:smithi055 2024-04-18T23:02:46.075 INFO:teuthology.orchestra.run.smithi016.stderr:smithi069' 2024-04-18T23:02:46.075 INFO:teuthology.orchestra.run.smithi016.stderr:+ for host in $HOSTNAMES 2024-04-18T23:02:46.075 INFO:teuthology.orchestra.run.smithi016.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-04-18T23:02:46.075 INFO:teuthology.orchestra.run.smithi016.stderr:++ ceph orch ps --hostname smithi016 --format json 2024-04-18T23:02:46.448 INFO:teuthology.orchestra.run.smithi016.stderr:+ HAS_MGRS=true 2024-04-18T23:02:46.448 INFO:teuthology.orchestra.run.smithi016.stderr:+ '[' true == false ']' 2024-04-18T23:02:46.449 INFO:teuthology.orchestra.run.smithi016.stderr:+ for host in $HOSTNAMES 2024-04-18T23:02:46.449 INFO:teuthology.orchestra.run.smithi016.stderr:++ ceph orch ps --hostname smithi055 --format json 2024-04-18T23:02:46.449 INFO:teuthology.orchestra.run.smithi016.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-04-18T23:02:46.812 INFO:teuthology.orchestra.run.smithi016.stderr:+ HAS_MGRS=true 2024-04-18T23:02:46.812 INFO:teuthology.orchestra.run.smithi016.stderr:+ '[' true == false ']' 2024-04-18T23:02:46.812 INFO:teuthology.orchestra.run.smithi016.stderr:+ for host in $HOSTNAMES 2024-04-18T23:02:46.813 INFO:teuthology.orchestra.run.smithi016.stderr:++ ceph orch ps --hostname smithi069 --format json 2024-04-18T23:02:46.813 INFO:teuthology.orchestra.run.smithi016.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-04-18T23:02:47.183 INFO:teuthology.orchestra.run.smithi016.stderr:+ HAS_MGRS=false 2024-04-18T23:02:47.183 INFO:teuthology.orchestra.run.smithi016.stderr:+ '[' false == false ']' 2024-04-18T23:02:47.183 INFO:teuthology.orchestra.run.smithi016.stderr:+ HOST_C=smithi069 2024-04-18T23:02:47.183 INFO:teuthology.orchestra.run.smithi016.stderr:+ ceph orch ls mon --export 2024-04-18T23:02:47.550 INFO:teuthology.orchestra.run.smithi016.stderr:+ sed /smithi069/d mon.yaml 2024-04-18T23:02:47.552 INFO:teuthology.orchestra.run.smithi016.stderr:+ ceph orch apply -i mon_adjusted.yaml 2024-04-18T23:02:47.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:47 smithi016 bash[21452]: cluster 2024-04-18T23:02:45.947447+0000 mgr.a (mgr.14152) 341 : cluster 0 pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:47.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:47 smithi016 bash[21452]: audit 2024-04-18T23:02:46.062833+0000 mgr.a (mgr.14152) 342 : audit 0 from='client.14451 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-18T23:02:47.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:47 smithi016 bash[21452]: audit 2024-04-18T23:02:46.430475+0000 mgr.a (mgr.14152) 343 : audit 0 from='client.14457 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi016", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-18T23:02:47.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:47 smithi055 bash[23198]: cluster 2024-04-18T23:02:45.947447+0000 mgr.a (mgr.14152) 341 : cluster 0 pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:47.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:47 smithi055 bash[23198]: audit 2024-04-18T23:02:46.062833+0000 mgr.a (mgr.14152) 342 : audit 0 from='client.14451 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-18T23:02:47.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:47 smithi055 bash[23198]: audit 2024-04-18T23:02:46.430475+0000 mgr.a (mgr.14152) 343 : audit 0 from='client.14457 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi016", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-18T23:02:47.748 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:47 smithi069 bash[23476]: cluster 2024-04-18T23:02:45.947447+0000 mgr.a (mgr.14152) 341 : cluster 0 pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:47.749 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:47 smithi069 bash[23476]: audit 2024-04-18T23:02:46.062833+0000 mgr.a (mgr.14152) 342 : audit 0 from='client.14451 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-18T23:02:47.749 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:47 smithi069 bash[23476]: audit 2024-04-18T23:02:46.430475+0000 mgr.a (mgr.14152) 343 : audit 0 from='client.14457 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi016", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-18T23:02:47.902 INFO:teuthology.orchestra.run.smithi016.stdout:Scheduled mon update... 2024-04-18T23:02:47.916 INFO:teuthology.orchestra.run.smithi016.stderr:+ ceph orch host drain smithi069 --zap-osd-devices 2024-04-18T23:02:48.998 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:48 smithi069 systemd[1]: ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@mon.c.service: Deactivated successfully. 2024-04-18T23:02:50.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:50 smithi016 bash[21452]: audit 2024-04-18T23:02:47.891403+0000 mgr.a (mgr.14152) 347 : audit 0 from='client.14481 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T23:02:50.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:50 smithi016 bash[21452]: cephadm 2024-04-18T23:02:47.897812+0000 mgr.a (mgr.14152) 348 : cephadm 1 Saving service mon spec with placement smithi016:172.21.15.16=a;smithi055:172.21.15.55=b;count:3 2024-04-18T23:02:50.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:50 smithi016 bash[21452]: cephadm 2024-04-18T23:02:47.934640+0000 mgr.a (mgr.14152) 349 : cephadm 1 Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-04-18T23:02:50.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:50 smithi016 bash[21452]: cephadm 2024-04-18T23:02:47.934721+0000 mgr.a (mgr.14152) 350 : cephadm 1 Removing monitor c from monmap... 2024-04-18T23:02:50.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:50 smithi016 bash[21452]: audit 2024-04-18T23:02:47.936211+0000 mon.a (mon.0) 613 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2024-04-18T23:02:50.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:50 smithi016 bash[21452]: audit 2024-04-18T23:02:47.938721+0000 mon.a (mon.0) 614 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-18T23:02:50.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:50 smithi016 bash[21452]: audit 2024-04-18T23:02:47.938864+0000 mon.a (mon.0) 615 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T23:02:50.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:50 smithi016 bash[21452]: cluster 2024-04-18T23:02:47.947856+0000 mgr.a (mgr.14152) 351 : cluster 0 pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:50.422 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:50 smithi016 bash[21452]: cluster 2024-04-18T23:02:47.950574+0000 mon.b (mon.1) 17 : cluster 1 mon.b calling monitor election 2024-04-18T23:02:50.422 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:50 smithi016 bash[21452]: cluster 2024-04-18T23:02:49.939474+0000 mon.a (mon.0) 616 : cluster 1 mon.a calling monitor election 2024-04-18T23:02:50.422 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:50 smithi016 bash[21452]: cluster 2024-04-18T23:02:49.961972+0000 mon.a (mon.0) 617 : cluster 1 mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-04-18T23:02:50.422 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:50 smithi016 bash[21452]: cluster 2024-04-18T23:02:49.969790+0000 mon.a (mon.0) 618 : cluster 0 monmap epoch 4 2024-04-18T23:02:50.422 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:50 smithi016 bash[21452]: cluster 2024-04-18T23:02:49.969829+0000 mon.a (mon.0) 619 : cluster 0 fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T23:02:50.422 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:50 smithi016 bash[21452]: cluster 2024-04-18T23:02:49.969855+0000 mon.a (mon.0) 620 : cluster 0 last_changed 2024-04-18T23:02:47.934951+0000 2024-04-18T23:02:50.422 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:50 smithi016 bash[21452]: cluster 2024-04-18T23:02:49.969875+0000 mon.a (mon.0) 621 : cluster 0 created 2024-04-18T22:52:24.457677+0000 2024-04-18T23:02:50.422 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:50 smithi016 bash[21452]: cluster 2024-04-18T23:02:49.969900+0000 mon.a (mon.0) 622 : cluster 0 min_mon_release 19 (squid) 2024-04-18T23:02:50.422 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:50 smithi016 bash[21452]: cluster 2024-04-18T23:02:49.969925+0000 mon.a (mon.0) 623 : cluster 0 election_strategy: 1 2024-04-18T23:02:50.422 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:50 smithi016 bash[21452]: cluster 2024-04-18T23:02:49.969945+0000 mon.a (mon.0) 624 : cluster 0 0: [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] mon.a 2024-04-18T23:02:50.422 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:50 smithi016 bash[21452]: cluster 2024-04-18T23:02:49.969968+0000 mon.a (mon.0) 625 : cluster 0 1: [v2:172.21.15.55:3300/0,v1:172.21.15.55:6789/0] mon.b 2024-04-18T23:02:50.422 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:50 smithi016 bash[21452]: cluster 2024-04-18T23:02:49.970972+0000 mon.a (mon.0) 626 : cluster 0 fsmap 2024-04-18T23:02:50.422 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:50 smithi016 bash[21452]: cluster 2024-04-18T23:02:49.971063+0000 mon.a (mon.0) 627 : cluster 0 osdmap e45: 6 total, 6 up, 6 in 2024-04-18T23:02:50.422 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:50 smithi016 bash[21452]: cluster 2024-04-18T23:02:49.971781+0000 mon.a (mon.0) 628 : cluster 0 mgrmap e15: a(active, since 9m), standbys: b 2024-04-18T23:02:50.423 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:50 smithi016 bash[21452]: cluster 2024-04-18T23:02:49.972044+0000 mon.a (mon.0) 629 : cluster 1 overall HEALTH_OK 2024-04-18T23:02:50.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:50 smithi055 bash[23198]: audit 2024-04-18T23:02:47.891403+0000 mgr.a (mgr.14152) 347 : audit 0 from='client.14481 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T23:02:50.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:50 smithi055 bash[23198]: cephadm 2024-04-18T23:02:47.897812+0000 mgr.a (mgr.14152) 348 : cephadm 1 Saving service mon spec with placement smithi016:172.21.15.16=a;smithi055:172.21.15.55=b;count:3 2024-04-18T23:02:50.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:50 smithi055 bash[23198]: cephadm 2024-04-18T23:02:47.934640+0000 mgr.a (mgr.14152) 349 : cephadm 1 Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-04-18T23:02:50.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:50 smithi055 bash[23198]: cephadm 2024-04-18T23:02:47.934721+0000 mgr.a (mgr.14152) 350 : cephadm 1 Removing monitor c from monmap... 2024-04-18T23:02:50.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:50 smithi055 bash[23198]: audit 2024-04-18T23:02:47.936211+0000 mon.a (mon.0) 613 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2024-04-18T23:02:50.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:50 smithi055 bash[23198]: audit 2024-04-18T23:02:47.938721+0000 mon.a (mon.0) 614 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-18T23:02:50.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:50 smithi055 bash[23198]: audit 2024-04-18T23:02:47.938864+0000 mon.a (mon.0) 615 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-18T23:02:50.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:50 smithi055 bash[23198]: cluster 2024-04-18T23:02:47.947856+0000 mgr.a (mgr.14152) 351 : cluster 0 pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:50.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:50 smithi055 bash[23198]: cluster 2024-04-18T23:02:47.950574+0000 mon.b (mon.1) 17 : cluster 1 mon.b calling monitor election 2024-04-18T23:02:50.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:50 smithi055 bash[23198]: cluster 2024-04-18T23:02:49.939474+0000 mon.a (mon.0) 616 : cluster 1 mon.a calling monitor election 2024-04-18T23:02:50.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:50 smithi055 bash[23198]: cluster 2024-04-18T23:02:49.961972+0000 mon.a (mon.0) 617 : cluster 1 mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-04-18T23:02:50.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:50 smithi055 bash[23198]: cluster 2024-04-18T23:02:49.969790+0000 mon.a (mon.0) 618 : cluster 0 monmap epoch 4 2024-04-18T23:02:50.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:50 smithi055 bash[23198]: cluster 2024-04-18T23:02:49.969829+0000 mon.a (mon.0) 619 : cluster 0 fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T23:02:50.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:50 smithi055 bash[23198]: cluster 2024-04-18T23:02:49.969855+0000 mon.a (mon.0) 620 : cluster 0 last_changed 2024-04-18T23:02:47.934951+0000 2024-04-18T23:02:50.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:50 smithi055 bash[23198]: cluster 2024-04-18T23:02:49.969875+0000 mon.a (mon.0) 621 : cluster 0 created 2024-04-18T22:52:24.457677+0000 2024-04-18T23:02:50.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:50 smithi055 bash[23198]: cluster 2024-04-18T23:02:49.969900+0000 mon.a (mon.0) 622 : cluster 0 min_mon_release 19 (squid) 2024-04-18T23:02:50.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:50 smithi055 bash[23198]: cluster 2024-04-18T23:02:49.969925+0000 mon.a (mon.0) 623 : cluster 0 election_strategy: 1 2024-04-18T23:02:50.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:50 smithi055 bash[23198]: cluster 2024-04-18T23:02:49.969945+0000 mon.a (mon.0) 624 : cluster 0 0: [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] mon.a 2024-04-18T23:02:50.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:50 smithi055 bash[23198]: cluster 2024-04-18T23:02:49.969968+0000 mon.a (mon.0) 625 : cluster 0 1: [v2:172.21.15.55:3300/0,v1:172.21.15.55:6789/0] mon.b 2024-04-18T23:02:50.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:50 smithi055 bash[23198]: cluster 2024-04-18T23:02:49.970972+0000 mon.a (mon.0) 626 : cluster 0 fsmap 2024-04-18T23:02:50.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:50 smithi055 bash[23198]: cluster 2024-04-18T23:02:49.971063+0000 mon.a (mon.0) 627 : cluster 0 osdmap e45: 6 total, 6 up, 6 in 2024-04-18T23:02:50.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:50 smithi055 bash[23198]: cluster 2024-04-18T23:02:49.971781+0000 mon.a (mon.0) 628 : cluster 0 mgrmap e15: a(active, since 9m), standbys: b 2024-04-18T23:02:50.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:50 smithi055 bash[23198]: cluster 2024-04-18T23:02:49.972044+0000 mon.a (mon.0) 629 : cluster 1 overall HEALTH_OK 2024-04-18T23:02:51.297 INFO:teuthology.orchestra.run.smithi016.stdout:Scheduled to remove the following daemons from host 'smithi069' 2024-04-18T23:02:51.297 INFO:teuthology.orchestra.run.smithi016.stdout:type id 2024-04-18T23:02:51.297 INFO:teuthology.orchestra.run.smithi016.stdout:-------------------- --------------- 2024-04-18T23:02:51.297 INFO:teuthology.orchestra.run.smithi016.stdout:mon c 2024-04-18T23:02:51.297 INFO:teuthology.orchestra.run.smithi016.stdout:osd 4 2024-04-18T23:02:51.297 INFO:teuthology.orchestra.run.smithi016.stdout:osd 5 2024-04-18T23:02:51.313 INFO:teuthology.orchestra.run.smithi016.stderr:++ ceph orch ps --hostname smithi069 2024-04-18T23:02:51.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:51 smithi016 bash[21452]: cluster 2024-04-18T23:02:49.948402+0000 mgr.a (mgr.14152) 352 : cluster 0 pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:51.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:51 smithi016 bash[21452]: cephadm 2024-04-18T23:02:49.975217+0000 mgr.a (mgr.14152) 353 : cephadm 1 Removing daemon mon.c from smithi069 -- ports [] 2024-04-18T23:02:51.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:51 smithi055 bash[23198]: cluster 2024-04-18T23:02:49.948402+0000 mgr.a (mgr.14152) 352 : cluster 0 pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:51.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:51 smithi055 bash[23198]: cephadm 2024-04-18T23:02:49.975217+0000 mgr.a (mgr.14152) 353 : cephadm 1 Removing daemon mon.c from smithi069 -- ports [] 2024-04-18T23:02:51.693 INFO:teuthology.orchestra.run.smithi016.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-04-18T23:02:51.693 INFO:teuthology.orchestra.run.smithi016.stderr:mon.c smithi069 running (7m) 2m ago 7m 36.6M 2048M 19.0.0-2369-g1a6a3e74 adc0eab240f3 fe1e50ab567f 2024-04-18T23:02:51.694 INFO:teuthology.orchestra.run.smithi016.stderr:osd.4 smithi069 running (3m) 2m ago 3m 41.6M 10.4G 19.0.0-2369-g1a6a3e74 adc0eab240f3 f6a90d91eb39 2024-04-18T23:02:51.694 INFO:teuthology.orchestra.run.smithi016.stderr:osd.5 smithi069 running (2m) 2m ago 2m 11.8M 10.4G 19.0.0-2369-g1a6a3e74 adc0eab240f3 1e5d7322f585 ' 2024-04-18T23:02:51.694 INFO:teuthology.orchestra.run.smithi016.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-04-18T23:02:51.694 INFO:teuthology.orchestra.run.smithi016.stderr:mon.c smithi069 running (7m) 2m ago 7m 36.6M 2048M 19.0.0-2369-g1a6a3e74 adc0eab240f3 fe1e50ab567f 2024-04-18T23:02:51.694 INFO:teuthology.orchestra.run.smithi016.stderr:osd.4 smithi069 running (3m) 2m ago 3m 41.6M 10.4G 19.0.0-2369-g1a6a3e74 adc0eab240f3 f6a90d91eb39 2024-04-18T23:02:51.694 INFO:teuthology.orchestra.run.smithi016.stderr:osd.5 smithi069 running (2m) 2m ago 2m 11.8M 10.4G 19.0.0-2369-g1a6a3e74 adc0eab240f3 1e5d7322f585 ' '!=' 'No daemons reported' ']' 2024-04-18T23:02:51.694 INFO:teuthology.orchestra.run.smithi016.stderr:+ sleep 15 2024-04-18T23:02:52.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:52 smithi016 bash[21452]: audit 2024-04-18T23:02:51.281478+0000 mgr.a (mgr.14152) 354 : audit 0 from='client.14484 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi069", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T23:02:52.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:52 smithi016 bash[21452]: audit 2024-04-18T23:02:51.288595+0000 mon.a (mon.0) 630 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:02:52.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:52 smithi016 bash[21452]: cephadm 2024-04-18T23:02:51.289274+0000 mgr.a (mgr.14152) 355 : cephadm 1 Added label _no_schedule to host smithi069 2024-04-18T23:02:52.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:52 smithi016 bash[21452]: audit 2024-04-18T23:02:51.295082+0000 mon.a (mon.0) 631 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:02:52.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:52 smithi016 bash[21452]: cephadm 2024-04-18T23:02:51.295673+0000 mgr.a (mgr.14152) 356 : cephadm 1 Added label _no_conf_keyring to host smithi069 2024-04-18T23:02:52.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:52 smithi016 bash[21452]: audit 2024-04-18T23:02:51.296770+0000 mon.a (mon.0) 632 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-04-18T23:02:52.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:52 smithi016 bash[21452]: cephadm 2024-04-18T23:02:51.297895+0000 mgr.a (mgr.14152) 357 : cephadm 1 osd.4 crush weight is 0.0872955322265625 2024-04-18T23:02:52.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:52 smithi016 bash[21452]: audit 2024-04-18T23:02:51.298746+0000 mon.a (mon.0) 633 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-04-18T23:02:52.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:52 smithi016 bash[21452]: cephadm 2024-04-18T23:02:51.299886+0000 mgr.a (mgr.14152) 358 : cephadm 1 osd.5 crush weight is 0.0872955322265625 2024-04-18T23:02:52.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:52 smithi055 bash[23198]: audit 2024-04-18T23:02:51.281478+0000 mgr.a (mgr.14152) 354 : audit 0 from='client.14484 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi069", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T23:02:52.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:52 smithi055 bash[23198]: audit 2024-04-18T23:02:51.288595+0000 mon.a (mon.0) 630 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:02:52.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:52 smithi055 bash[23198]: cephadm 2024-04-18T23:02:51.289274+0000 mgr.a (mgr.14152) 355 : cephadm 1 Added label _no_schedule to host smithi069 2024-04-18T23:02:52.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:52 smithi055 bash[23198]: audit 2024-04-18T23:02:51.295082+0000 mon.a (mon.0) 631 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:02:52.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:52 smithi055 bash[23198]: cephadm 2024-04-18T23:02:51.295673+0000 mgr.a (mgr.14152) 356 : cephadm 1 Added label _no_conf_keyring to host smithi069 2024-04-18T23:02:52.701 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:52 smithi055 bash[23198]: audit 2024-04-18T23:02:51.296770+0000 mon.a (mon.0) 632 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-04-18T23:02:52.701 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:52 smithi055 bash[23198]: cephadm 2024-04-18T23:02:51.297895+0000 mgr.a (mgr.14152) 357 : cephadm 1 osd.4 crush weight is 0.0872955322265625 2024-04-18T23:02:52.701 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:52 smithi055 bash[23198]: audit 2024-04-18T23:02:51.298746+0000 mon.a (mon.0) 633 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-04-18T23:02:52.701 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:52 smithi055 bash[23198]: cephadm 2024-04-18T23:02:51.299886+0000 mgr.a (mgr.14152) 358 : cephadm 1 osd.5 crush weight is 0.0872955322265625 2024-04-18T23:02:53.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:53 smithi016 bash[21452]: audit 2024-04-18T23:02:51.671384+0000 mgr.a (mgr.14152) 359 : audit 0 from='client.14488 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi069", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T23:02:53.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:53 smithi016 bash[21452]: cluster 2024-04-18T23:02:51.949093+0000 mgr.a (mgr.14152) 360 : cluster 0 pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:53.701 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:53 smithi055 bash[23198]: audit 2024-04-18T23:02:51.671384+0000 mgr.a (mgr.14152) 359 : audit 0 from='client.14488 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi069", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T23:02:53.701 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:53 smithi055 bash[23198]: cluster 2024-04-18T23:02:51.949093+0000 mgr.a (mgr.14152) 360 : cluster 0 pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:55.248 INFO:journalctl@ceph.mon.c.smithi069.stdout:Apr 18 23:02:55 smithi069 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T23:02:55.249 INFO:journalctl@ceph.osd.4.smithi069.stdout:Apr 18 23:02:55 smithi069 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T23:02:55.249 INFO:journalctl@ceph.osd.5.smithi069.stdout:Apr 18 23:02:55 smithi069 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T23:02:55.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:55 smithi016 bash[21452]: cluster 2024-04-18T23:02:53.949702+0000 mgr.a (mgr.14152) 361 : cluster 0 pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:55.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:55 smithi055 bash[23198]: cluster 2024-04-18T23:02:53.949702+0000 mgr.a (mgr.14152) 361 : cluster 0 pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:56.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:56 smithi016 bash[21452]: audit 2024-04-18T23:02:55.314359+0000 mon.a (mon.0) 634 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:02:56.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:56 smithi016 bash[21452]: audit 2024-04-18T23:02:55.322224+0000 mon.a (mon.0) 635 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:02:56.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:56 smithi016 bash[21452]: audit 2024-04-18T23:02:55.423995+0000 mon.a (mon.0) 636 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T23:02:56.702 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:56 smithi055 bash[23198]: audit 2024-04-18T23:02:55.314359+0000 mon.a (mon.0) 634 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:02:56.702 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:56 smithi055 bash[23198]: audit 2024-04-18T23:02:55.322224+0000 mon.a (mon.0) 635 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:02:56.702 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:56 smithi055 bash[23198]: audit 2024-04-18T23:02:55.423995+0000 mon.a (mon.0) 636 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T23:02:57.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:57 smithi016 bash[21452]: cluster 2024-04-18T23:02:55.950284+0000 mgr.a (mgr.14152) 362 : cluster 0 pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:57.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:57 smithi055 bash[23198]: cluster 2024-04-18T23:02:55.950284+0000 mgr.a (mgr.14152) 362 : cluster 0 pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:58.919 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:58 smithi016 bash[21452]: audit 2024-04-18T23:02:57.623807+0000 mon.a (mon.0) 637 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:02:58.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:02:58 smithi016 bash[21452]: cluster 2024-04-18T23:02:57.950907+0000 mgr.a (mgr.14152) 363 : cluster 0 pgmap v315: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:02:58.950 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:58 smithi055 bash[23198]: audit 2024-04-18T23:02:57.623807+0000 mon.a (mon.0) 637 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:02:58.950 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:02:58 smithi055 bash[23198]: cluster 2024-04-18T23:02:57.950907+0000 mgr.a (mgr.14152) 363 : cluster 0 pgmap v315: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:03:01.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:01 smithi016 bash[21452]: cluster 2024-04-18T23:02:59.951504+0000 mgr.a (mgr.14152) 364 : cluster 0 pgmap v316: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:03:01.422 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:01 smithi016 bash[21452]: audit 2024-04-18T23:03:00.667860+0000 mon.a (mon.0) 638 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:01.422 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:01 smithi016 bash[21452]: audit 2024-04-18T23:03:00.676484+0000 mon.a (mon.0) 639 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:01.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:01 smithi055 bash[23198]: cluster 2024-04-18T23:02:59.951504+0000 mgr.a (mgr.14152) 364 : cluster 0 pgmap v316: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:03:01.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:01 smithi055 bash[23198]: audit 2024-04-18T23:03:00.667860+0000 mon.a (mon.0) 638 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:01.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:01 smithi055 bash[23198]: audit 2024-04-18T23:03:00.676484+0000 mon.a (mon.0) 639 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:02.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:02 smithi016 bash[21452]: audit 2024-04-18T23:03:01.356632+0000 mon.a (mon.0) 640 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:03:02.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:02 smithi016 bash[21452]: audit 2024-04-18T23:03:01.358620+0000 mon.a (mon.0) 641 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T23:03:02.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:02 smithi016 bash[21452]: cephadm 2024-04-18T23:03:01.361602+0000 mgr.a (mgr.14152) 365 : cephadm 1 Updating smithi016:/etc/ceph/ceph.conf 2024-04-18T23:03:02.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:02 smithi016 bash[21452]: cephadm 2024-04-18T23:03:01.362421+0000 mgr.a (mgr.14152) 366 : cephadm 1 Updating smithi055:/etc/ceph/ceph.conf 2024-04-18T23:03:02.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:02 smithi016 bash[21452]: cephadm 2024-04-18T23:03:01.362793+0000 mgr.a (mgr.14152) 367 : cephadm 1 Removing smithi069:/var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/config/ceph.conf 2024-04-18T23:03:02.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:02 smithi016 bash[21452]: cephadm 2024-04-18T23:03:01.480163+0000 mgr.a (mgr.14152) 368 : cephadm 1 Removing smithi069:/etc/ceph/ceph.client.admin.keyring 2024-04-18T23:03:02.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:02 smithi016 bash[21452]: audit 2024-04-18T23:03:01.615788+0000 mon.a (mon.0) 642 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:02.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:02 smithi016 bash[21452]: audit 2024-04-18T23:03:01.620996+0000 mon.a (mon.0) 643 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:02.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:02 smithi016 bash[21452]: audit 2024-04-18T23:03:01.800032+0000 mon.a (mon.0) 644 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:02.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:02 smithi016 bash[21452]: audit 2024-04-18T23:03:01.804117+0000 mon.a (mon.0) 645 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:02.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:02 smithi016 bash[21452]: audit 2024-04-18T23:03:01.808436+0000 mon.a (mon.0) 646 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:02.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:02 smithi016 bash[21452]: audit 2024-04-18T23:03:01.811943+0000 mon.a (mon.0) 647 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:02.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:02 smithi016 bash[21452]: audit 2024-04-18T23:03:01.814262+0000 mon.a (mon.0) 648 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-18T23:03:02.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:02 smithi016 bash[21452]: audit 2024-04-18T23:03:01.816173+0000 mon.a (mon.0) 649 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-18T23:03:02.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:02 smithi016 bash[21452]: audit 2024-04-18T23:03:01.817854+0000 mon.a (mon.0) 650 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-04-18T23:03:02.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:02 smithi016 bash[21452]: audit 2024-04-18T23:03:01.819424+0000 mon.a (mon.0) 651 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-04-18T23:03:02.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:02 smithi055 bash[23198]: audit 2024-04-18T23:03:01.356632+0000 mon.a (mon.0) 640 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:03:02.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:02 smithi055 bash[23198]: audit 2024-04-18T23:03:01.358620+0000 mon.a (mon.0) 641 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T23:03:02.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:02 smithi055 bash[23198]: cephadm 2024-04-18T23:03:01.361602+0000 mgr.a (mgr.14152) 365 : cephadm 1 Updating smithi016:/etc/ceph/ceph.conf 2024-04-18T23:03:02.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:02 smithi055 bash[23198]: cephadm 2024-04-18T23:03:01.362421+0000 mgr.a (mgr.14152) 366 : cephadm 1 Updating smithi055:/etc/ceph/ceph.conf 2024-04-18T23:03:02.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:02 smithi055 bash[23198]: cephadm 2024-04-18T23:03:01.362793+0000 mgr.a (mgr.14152) 367 : cephadm 1 Removing smithi069:/var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/config/ceph.conf 2024-04-18T23:03:02.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:02 smithi055 bash[23198]: cephadm 2024-04-18T23:03:01.480163+0000 mgr.a (mgr.14152) 368 : cephadm 1 Removing smithi069:/etc/ceph/ceph.client.admin.keyring 2024-04-18T23:03:02.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:02 smithi055 bash[23198]: audit 2024-04-18T23:03:01.615788+0000 mon.a (mon.0) 642 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:02.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:02 smithi055 bash[23198]: audit 2024-04-18T23:03:01.620996+0000 mon.a (mon.0) 643 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:02.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:02 smithi055 bash[23198]: audit 2024-04-18T23:03:01.800032+0000 mon.a (mon.0) 644 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:02.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:02 smithi055 bash[23198]: audit 2024-04-18T23:03:01.804117+0000 mon.a (mon.0) 645 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:02.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:02 smithi055 bash[23198]: audit 2024-04-18T23:03:01.808436+0000 mon.a (mon.0) 646 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:02.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:02 smithi055 bash[23198]: audit 2024-04-18T23:03:01.811943+0000 mon.a (mon.0) 647 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:02.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:02 smithi055 bash[23198]: audit 2024-04-18T23:03:01.814262+0000 mon.a (mon.0) 648 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-18T23:03:02.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:02 smithi055 bash[23198]: audit 2024-04-18T23:03:01.816173+0000 mon.a (mon.0) 649 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-18T23:03:02.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:02 smithi055 bash[23198]: audit 2024-04-18T23:03:01.817854+0000 mon.a (mon.0) 650 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-04-18T23:03:02.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:02 smithi055 bash[23198]: audit 2024-04-18T23:03:01.819424+0000 mon.a (mon.0) 651 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-04-18T23:03:03.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:02 smithi016 bash[21452]: debug 2024-04-18T23:03:02.825+0000 7fad4cd80700 -1 mon.a@0(leader).osd e46 definitely_dead 0 2024-04-18T23:03:03.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:03 smithi016 bash[21452]: cephadm 2024-04-18T23:03:01.545172+0000 mgr.a (mgr.14152) 369 : cephadm 1 Removing smithi069:/var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/config/ceph.client.admin.keyring 2024-04-18T23:03:03.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:03 smithi016 bash[21452]: cephadm 2024-04-18T23:03:01.628348+0000 mgr.a (mgr.14152) 370 : cephadm 1 Updating smithi055:/var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/config/ceph.conf 2024-04-18T23:03:03.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:03 smithi016 bash[21452]: cephadm 2024-04-18T23:03:01.628590+0000 mgr.a (mgr.14152) 371 : cephadm 1 Updating smithi016:/var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/config/ceph.conf 2024-04-18T23:03:03.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:03 smithi016 bash[21452]: audit 2024-04-18T23:03:01.814475+0000 mgr.a (mgr.14152) 372 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-18T23:03:03.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:03 smithi016 bash[21452]: audit 2024-04-18T23:03:01.816440+0000 mgr.a (mgr.14152) 373 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-18T23:03:03.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:03 smithi016 bash[21452]: audit 2024-04-18T23:03:01.818098+0000 mgr.a (mgr.14152) 374 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-04-18T23:03:03.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:03 smithi016 bash[21452]: cluster 2024-04-18T23:03:01.952004+0000 mgr.a (mgr.14152) 375 : cluster 0 pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:03:03.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:03 smithi016 bash[21452]: audit 2024-04-18T23:03:02.818580+0000 mon.a (mon.0) 652 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-04-18T23:03:03.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:03 smithi016 bash[21452]: cluster 2024-04-18T23:03:02.823197+0000 mon.a (mon.0) 653 : cluster 0 osdmap e46: 6 total, 6 up, 6 in 2024-04-18T23:03:03.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:03 smithi016 bash[21452]: audit 2024-04-18T23:03:02.825291+0000 mon.a (mon.0) 654 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-18T23:03:03.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:03 smithi016 bash[21452]: audit 2024-04-18T23:03:02.828076+0000 mon.a (mon.0) 655 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-04-18T23:03:03.171 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:03 smithi016 bash[21452]: audit 2024-04-18T23:03:02.830601+0000 mon.a (mon.0) 656 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-04-18T23:03:03.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:03 smithi055 bash[23198]: cephadm 2024-04-18T23:03:01.545172+0000 mgr.a (mgr.14152) 369 : cephadm 1 Removing smithi069:/var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/config/ceph.client.admin.keyring 2024-04-18T23:03:03.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:03 smithi055 bash[23198]: cephadm 2024-04-18T23:03:01.628348+0000 mgr.a (mgr.14152) 370 : cephadm 1 Updating smithi055:/var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/config/ceph.conf 2024-04-18T23:03:03.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:03 smithi055 bash[23198]: cephadm 2024-04-18T23:03:01.628590+0000 mgr.a (mgr.14152) 371 : cephadm 1 Updating smithi016:/var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/config/ceph.conf 2024-04-18T23:03:03.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:03 smithi055 bash[23198]: audit 2024-04-18T23:03:01.814475+0000 mgr.a (mgr.14152) 372 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-18T23:03:03.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:03 smithi055 bash[23198]: audit 2024-04-18T23:03:01.816440+0000 mgr.a (mgr.14152) 373 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-18T23:03:03.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:03 smithi055 bash[23198]: audit 2024-04-18T23:03:01.818098+0000 mgr.a (mgr.14152) 374 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-04-18T23:03:03.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:03 smithi055 bash[23198]: cluster 2024-04-18T23:03:01.952004+0000 mgr.a (mgr.14152) 375 : cluster 0 pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:03:03.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:03 smithi055 bash[23198]: audit 2024-04-18T23:03:02.818580+0000 mon.a (mon.0) 652 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-04-18T23:03:03.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:03 smithi055 bash[23198]: cluster 2024-04-18T23:03:02.823197+0000 mon.a (mon.0) 653 : cluster 0 osdmap e46: 6 total, 6 up, 6 in 2024-04-18T23:03:03.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:03 smithi055 bash[23198]: audit 2024-04-18T23:03:02.825291+0000 mon.a (mon.0) 654 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-18T23:03:03.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:03 smithi055 bash[23198]: audit 2024-04-18T23:03:02.828076+0000 mon.a (mon.0) 655 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-04-18T23:03:03.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:03 smithi055 bash[23198]: audit 2024-04-18T23:03:02.830601+0000 mon.a (mon.0) 656 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-04-18T23:03:04.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:04 smithi016 bash[21452]: cephadm 2024-04-18T23:03:02.824373+0000 mgr.a (mgr.14152) 376 : cephadm 1 osd.5 weight is now 0.0 2024-04-18T23:03:04.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:04 smithi016 bash[21452]: audit 2024-04-18T23:03:02.825663+0000 mgr.a (mgr.14152) 377 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-18T23:03:04.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:04 smithi016 bash[21452]: audit 2024-04-18T23:03:02.828444+0000 mgr.a (mgr.14152) 378 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-04-18T23:03:04.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:04 smithi016 bash[21452]: cluster 2024-04-18T23:03:03.818969+0000 mon.a (mon.0) 657 : cluster 3 Health check failed: 1 osds down (OSD_DOWN) 2024-04-18T23:03:04.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:04 smithi016 bash[21452]: audit 2024-04-18T23:03:03.821162+0000 mon.a (mon.0) 658 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-04-18T23:03:04.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:04 smithi016 bash[21452]: cluster 2024-04-18T23:03:03.826585+0000 mon.a (mon.0) 659 : cluster 0 osdmap e47: 6 total, 5 up, 6 in 2024-04-18T23:03:04.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:04 smithi055 bash[23198]: cephadm 2024-04-18T23:03:02.824373+0000 mgr.a (mgr.14152) 376 : cephadm 1 osd.5 weight is now 0.0 2024-04-18T23:03:04.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:04 smithi055 bash[23198]: audit 2024-04-18T23:03:02.825663+0000 mgr.a (mgr.14152) 377 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-18T23:03:04.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:04 smithi055 bash[23198]: audit 2024-04-18T23:03:02.828444+0000 mgr.a (mgr.14152) 378 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-04-18T23:03:04.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:04 smithi055 bash[23198]: cluster 2024-04-18T23:03:03.818969+0000 mon.a (mon.0) 657 : cluster 3 Health check failed: 1 osds down (OSD_DOWN) 2024-04-18T23:03:04.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:04 smithi055 bash[23198]: audit 2024-04-18T23:03:03.821162+0000 mon.a (mon.0) 658 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-04-18T23:03:04.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:04 smithi055 bash[23198]: cluster 2024-04-18T23:03:03.826585+0000 mon.a (mon.0) 659 : cluster 0 osdmap e47: 6 total, 5 up, 6 in 2024-04-18T23:03:04.498 INFO:journalctl@ceph.osd.4.smithi069.stdout:Apr 18 23:03:04 smithi069 systemd[1]: Stopping Ceph osd.4 for 1266e2ee-fdd6-11ee-bc92-c7b262605968... 2024-04-18T23:03:04.499 INFO:journalctl@ceph.osd.4.smithi069.stdout:Apr 18 23:03:04 smithi069 bash[26561]: debug 2024-04-18T23:03:04.371+0000 7fa74b937700 -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-04-18T23:03:04.499 INFO:journalctl@ceph.osd.4.smithi069.stdout:Apr 18 23:03:04 smithi069 bash[26561]: debug 2024-04-18T23:03:04.371+0000 7fa74b937700 -1 osd.4 46 *** Got signal Terminated *** 2024-04-18T23:03:04.499 INFO:journalctl@ceph.osd.4.smithi069.stdout:Apr 18 23:03:04 smithi069 bash[26561]: debug 2024-04-18T23:03:04.371+0000 7fa74b937700 -1 osd.4 46 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-18T23:03:05.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:05 smithi016 bash[21452]: cephadm 2024-04-18T23:03:03.828133+0000 mgr.a (mgr.14152) 379 : cephadm 1 osd.4 now down 2024-04-18T23:03:05.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:05 smithi016 bash[21452]: cephadm 2024-04-18T23:03:03.828811+0000 mgr.a (mgr.14152) 380 : cephadm 1 Removing daemon osd.4 from smithi069 -- ports [] 2024-04-18T23:03:05.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:05 smithi016 bash[21452]: cluster 2024-04-18T23:03:03.952552+0000 mgr.a (mgr.14152) 381 : cluster 0 pgmap v320: 1 pgs: 1 peering; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:03:05.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:05 smithi016 bash[21452]: cluster 2024-04-18T23:03:04.821126+0000 mon.a (mon.0) 660 : cluster 3 Health check failed: Reduced data availability: 1 pg peering (PG_AVAILABILITY) 2024-04-18T23:03:05.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:05 smithi016 bash[21452]: cluster 2024-04-18T23:03:04.833964+0000 mon.a (mon.0) 661 : cluster 0 osdmap e48: 6 total, 5 up, 6 in 2024-04-18T23:03:05.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:05 smithi055 bash[23198]: cephadm 2024-04-18T23:03:03.828133+0000 mgr.a (mgr.14152) 379 : cephadm 1 osd.4 now down 2024-04-18T23:03:05.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:05 smithi055 bash[23198]: cephadm 2024-04-18T23:03:03.828811+0000 mgr.a (mgr.14152) 380 : cephadm 1 Removing daemon osd.4 from smithi069 -- ports [] 2024-04-18T23:03:05.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:05 smithi055 bash[23198]: cluster 2024-04-18T23:03:03.952552+0000 mgr.a (mgr.14152) 381 : cluster 0 pgmap v320: 1 pgs: 1 peering; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:03:05.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:05 smithi055 bash[23198]: cluster 2024-04-18T23:03:04.821126+0000 mon.a (mon.0) 660 : cluster 3 Health check failed: Reduced data availability: 1 pg peering (PG_AVAILABILITY) 2024-04-18T23:03:05.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:05 smithi055 bash[23198]: cluster 2024-04-18T23:03:04.833964+0000 mon.a (mon.0) 661 : cluster 0 osdmap e48: 6 total, 5 up, 6 in 2024-04-18T23:03:05.620 INFO:journalctl@ceph.osd.4.smithi069.stdout:Apr 18 23:03:05 smithi069 bash[35367]: ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968-osd-4 2024-04-18T23:03:05.620 INFO:journalctl@ceph.osd.4.smithi069.stdout:Apr 18 23:03:05 smithi069 bash[35431]: Error response from daemon: No such container: ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968-osd-4 2024-04-18T23:03:06.697 INFO:teuthology.orchestra.run.smithi016.stderr:++ ceph orch ps --hostname smithi069 2024-04-18T23:03:07.084 INFO:teuthology.orchestra.run.smithi016.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-04-18T23:03:07.084 INFO:teuthology.orchestra.run.smithi016.stderr:osd.4 smithi069 running (3m) 6s ago 3m 45.3M 10.4G 19.0.0-2369-g1a6a3e74 adc0eab240f3 f6a90d91eb39 2024-04-18T23:03:07.084 INFO:teuthology.orchestra.run.smithi016.stderr:osd.5 smithi069 running (2m) 6s ago 2m 45.1M 10.4G 19.0.0-2369-g1a6a3e74 adc0eab240f3 1e5d7322f585 ' 2024-04-18T23:03:07.085 INFO:teuthology.orchestra.run.smithi016.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-04-18T23:03:07.085 INFO:teuthology.orchestra.run.smithi016.stderr:osd.4 smithi069 running (3m) 6s ago 3m 45.3M 10.4G 19.0.0-2369-g1a6a3e74 adc0eab240f3 f6a90d91eb39 2024-04-18T23:03:07.085 INFO:teuthology.orchestra.run.smithi016.stderr:osd.5 smithi069 running (2m) 6s ago 2m 45.1M 10.4G 19.0.0-2369-g1a6a3e74 adc0eab240f3 1e5d7322f585 ' '!=' 'No daemons reported' ']' 2024-04-18T23:03:07.085 INFO:teuthology.orchestra.run.smithi016.stderr:+ sleep 15 2024-04-18T23:03:07.169 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:06 smithi016 bash[21452]: cluster 2024-04-18T23:03:05.836848+0000 mon.a (mon.0) 662 : cluster 0 osdmap e49: 6 total, 5 up, 6 in 2024-04-18T23:03:07.169 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:06 smithi016 bash[21452]: cluster 2024-04-18T23:03:05.953116+0000 mgr.a (mgr.14152) 382 : cluster 0 pgmap v323: 1 pgs: 1 peering; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:03:07.200 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:06 smithi055 bash[23198]: cluster 2024-04-18T23:03:05.836848+0000 mon.a (mon.0) 662 : cluster 0 osdmap e49: 6 total, 5 up, 6 in 2024-04-18T23:03:07.200 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:06 smithi055 bash[23198]: cluster 2024-04-18T23:03:05.953116+0000 mgr.a (mgr.14152) 382 : cluster 0 pgmap v323: 1 pgs: 1 peering; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-04-18T23:03:07.748 INFO:journalctl@ceph.osd.5.smithi069.stdout:Apr 18 23:03:07 smithi069 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T23:03:07.749 INFO:journalctl@ceph.osd.4.smithi069.stdout:Apr 18 23:03:07 smithi069 systemd[1]: ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@osd.4.service: Deactivated successfully. 2024-04-18T23:03:07.749 INFO:journalctl@ceph.osd.4.smithi069.stdout:Apr 18 23:03:07 smithi069 systemd[1]: Stopped Ceph osd.4 for 1266e2ee-fdd6-11ee-bc92-c7b262605968. 2024-04-18T23:03:07.749 INFO:journalctl@ceph.osd.4.smithi069.stdout:Apr 18 23:03:07 smithi069 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T23:03:08.169 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:07 smithi016 bash[21452]: audit 2024-04-18T23:03:07.061557+0000 mgr.a (mgr.14152) 383 : audit 0 from='client.14492 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi069", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T23:03:08.169 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:07 smithi016 bash[21452]: audit 2024-04-18T23:03:07.654942+0000 mon.a (mon.0) 663 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-04-18T23:03:08.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:07 smithi016 bash[21452]: audit 2024-04-18T23:03:07.658088+0000 mon.a (mon.0) 664 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-04-18T23:03:08.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:07 smithi016 bash[21452]: audit 2024-04-18T23:03:07.664307+0000 mon.a (mon.0) 665 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-04-18T23:03:08.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:07 smithi016 bash[21452]: cluster 2024-04-18T23:03:07.665571+0000 mon.a (mon.0) 666 : cluster 1 Health check cleared: OSD_DOWN (was: 1 osds down) 2024-04-18T23:03:08.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:07 smithi016 bash[21452]: audit 2024-04-18T23:03:07.667535+0000 mon.a (mon.0) 667 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-04-18T23:03:08.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:07 smithi016 bash[21452]: cluster 2024-04-18T23:03:07.672307+0000 mon.a (mon.0) 668 : cluster 0 osdmap e50: 5 total, 5 up, 5 in 2024-04-18T23:03:08.200 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:07 smithi055 bash[23198]: audit 2024-04-18T23:03:07.061557+0000 mgr.a (mgr.14152) 383 : audit 0 from='client.14492 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi069", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T23:03:08.200 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:07 smithi055 bash[23198]: audit 2024-04-18T23:03:07.654942+0000 mon.a (mon.0) 663 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-04-18T23:03:08.200 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:07 smithi055 bash[23198]: audit 2024-04-18T23:03:07.658088+0000 mon.a (mon.0) 664 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-04-18T23:03:08.200 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:07 smithi055 bash[23198]: audit 2024-04-18T23:03:07.664307+0000 mon.a (mon.0) 665 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-04-18T23:03:08.200 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:07 smithi055 bash[23198]: cluster 2024-04-18T23:03:07.665571+0000 mon.a (mon.0) 666 : cluster 1 Health check cleared: OSD_DOWN (was: 1 osds down) 2024-04-18T23:03:08.201 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:07 smithi055 bash[23198]: audit 2024-04-18T23:03:07.667535+0000 mon.a (mon.0) 667 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-04-18T23:03:08.201 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:07 smithi055 bash[23198]: cluster 2024-04-18T23:03:07.672307+0000 mon.a (mon.0) 668 : cluster 0 osdmap e50: 5 total, 5 up, 5 in 2024-04-18T23:03:09.169 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:08 smithi016 bash[21452]: cephadm 2024-04-18T23:03:07.654287+0000 mgr.a (mgr.14152) 384 : cephadm 1 Removing key for osd.4 2024-04-18T23:03:09.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:08 smithi016 bash[21452]: cephadm 2024-04-18T23:03:07.663643+0000 mgr.a (mgr.14152) 385 : cephadm 1 Successfully removed osd.4 on smithi069 2024-04-18T23:03:09.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:08 smithi016 bash[21452]: cephadm 2024-04-18T23:03:07.673675+0000 mgr.a (mgr.14152) 386 : cephadm 1 Successfully purged osd.4 on smithi069 2024-04-18T23:03:09.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:08 smithi016 bash[21452]: cephadm 2024-04-18T23:03:07.673902+0000 mgr.a (mgr.14152) 387 : cephadm 1 Zapping devices for osd.4 on smithi069 2024-04-18T23:03:09.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:08 smithi016 bash[21452]: cluster 2024-04-18T23:03:07.953673+0000 mgr.a (mgr.14152) 388 : cluster 0 pgmap v325: 1 pgs: 1 peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:03:09.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:08 smithi016 bash[21452]: cluster 2024-04-18T23:03:08.674827+0000 mon.a (mon.0) 669 : cluster 0 osdmap e51: 5 total, 5 up, 5 in 2024-04-18T23:03:09.202 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:08 smithi055 bash[23198]: cephadm 2024-04-18T23:03:07.654287+0000 mgr.a (mgr.14152) 384 : cephadm 1 Removing key for osd.4 2024-04-18T23:03:09.202 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:08 smithi055 bash[23198]: cephadm 2024-04-18T23:03:07.663643+0000 mgr.a (mgr.14152) 385 : cephadm 1 Successfully removed osd.4 on smithi069 2024-04-18T23:03:09.202 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:08 smithi055 bash[23198]: cephadm 2024-04-18T23:03:07.673675+0000 mgr.a (mgr.14152) 386 : cephadm 1 Successfully purged osd.4 on smithi069 2024-04-18T23:03:09.202 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:08 smithi055 bash[23198]: cephadm 2024-04-18T23:03:07.673902+0000 mgr.a (mgr.14152) 387 : cephadm 1 Zapping devices for osd.4 on smithi069 2024-04-18T23:03:09.202 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:08 smithi055 bash[23198]: cluster 2024-04-18T23:03:07.953673+0000 mgr.a (mgr.14152) 388 : cluster 0 pgmap v325: 1 pgs: 1 peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:03:09.202 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:08 smithi055 bash[23198]: cluster 2024-04-18T23:03:08.674827+0000 mon.a (mon.0) 669 : cluster 0 osdmap e51: 5 total, 5 up, 5 in 2024-04-18T23:03:10.950 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:10 smithi055 bash[23198]: cluster 2024-04-18T23:03:09.677007+0000 mon.a (mon.0) 670 : cluster 0 osdmap e52: 5 total, 5 up, 5 in 2024-04-18T23:03:10.951 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:10 smithi055 bash[23198]: cluster 2024-04-18T23:03:09.954234+0000 mgr.a (mgr.14152) 389 : cluster 0 pgmap v328: 1 pgs: 1 remapped; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:03:10.951 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:10 smithi055 bash[23198]: cluster 2024-04-18T23:03:10.013157+0000 mon.a (mon.0) 671 : cluster 0 osdmap e53: 5 total, 5 up, 5 in 2024-04-18T23:03:11.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:10 smithi016 bash[21452]: cluster 2024-04-18T23:03:09.677007+0000 mon.a (mon.0) 670 : cluster 0 osdmap e52: 5 total, 5 up, 5 in 2024-04-18T23:03:11.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:10 smithi016 bash[21452]: cluster 2024-04-18T23:03:09.954234+0000 mgr.a (mgr.14152) 389 : cluster 0 pgmap v328: 1 pgs: 1 remapped; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:03:11.170 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:10 smithi016 bash[21452]: cluster 2024-04-18T23:03:10.013157+0000 mon.a (mon.0) 671 : cluster 0 osdmap e53: 5 total, 5 up, 5 in 2024-04-18T23:03:11.950 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:11 smithi055 bash[23198]: cluster 2024-04-18T23:03:10.672240+0000 mon.a (mon.0) 672 : cluster 1 Health check cleared: PG_AVAILABILITY (was: Reduced data availability: 1 pg peering) 2024-04-18T23:03:11.950 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:11 smithi055 bash[23198]: cluster 2024-04-18T23:03:10.672293+0000 mon.a (mon.0) 673 : cluster 1 Cluster is now healthy 2024-04-18T23:03:11.950 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:11 smithi055 bash[23198]: cluster 2024-04-18T23:03:11.014754+0000 mon.a (mon.0) 674 : cluster 0 osdmap e54: 5 total, 5 up, 5 in 2024-04-18T23:03:12.169 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:11 smithi016 bash[21452]: cluster 2024-04-18T23:03:10.672240+0000 mon.a (mon.0) 672 : cluster 1 Health check cleared: PG_AVAILABILITY (was: Reduced data availability: 1 pg peering) 2024-04-18T23:03:12.169 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:11 smithi016 bash[21452]: cluster 2024-04-18T23:03:10.672293+0000 mon.a (mon.0) 673 : cluster 1 Cluster is now healthy 2024-04-18T23:03:12.169 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:11 smithi016 bash[21452]: cluster 2024-04-18T23:03:11.014754+0000 mon.a (mon.0) 674 : cluster 0 osdmap e54: 5 total, 5 up, 5 in 2024-04-18T23:03:12.950 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:12 smithi055 bash[23198]: cluster 2024-04-18T23:03:11.954810+0000 mgr.a (mgr.14152) 390 : cluster 0 pgmap v331: 1 pgs: 1 remapped; 577 KiB data, 145 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:03:13.169 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:12 smithi016 bash[21452]: cluster 2024-04-18T23:03:11.954810+0000 mgr.a (mgr.14152) 390 : cluster 0 pgmap v331: 1 pgs: 1 remapped; 577 KiB data, 145 MiB used, 447 GiB / 447 GiB avail 2024-04-18T23:03:15.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:15 smithi016 bash[21452]: cluster 2024-04-18T23:03:13.955380+0000 mgr.a (mgr.14152) 391 : cluster 0 pgmap v332: 1 pgs: 1 active+clean; 577 KiB data, 145 MiB used, 447 GiB / 447 GiB avail; 109 KiB/s, 0 objects/s recovering 2024-04-18T23:03:15.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:15 smithi055 bash[23198]: cluster 2024-04-18T23:03:13.955380+0000 mgr.a (mgr.14152) 391 : cluster 0 pgmap v332: 1 pgs: 1 active+clean; 577 KiB data, 145 MiB used, 447 GiB / 447 GiB avail; 109 KiB/s, 0 objects/s recovering 2024-04-18T23:03:16.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:16 smithi016 bash[21452]: debug 2024-04-18T23:03:16.113+0000 7fad4cd80700 -1 mon.a@0(leader).osd e54 definitely_dead 0 2024-04-18T23:03:17.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:17 smithi016 bash[21452]: cluster 2024-04-18T23:03:15.955967+0000 mgr.a (mgr.14152) 392 : cluster 0 pgmap v333: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 92 KiB/s, 0 objects/s recovering 2024-04-18T23:03:17.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:17 smithi016 bash[21452]: cephadm 2024-04-18T23:03:16.112557+0000 mgr.a (mgr.14152) 393 : cephadm 1 Successfully zapped devices for osd.4 on smithi069 2024-04-18T23:03:17.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:17 smithi016 bash[21452]: audit 2024-04-18T23:03:16.113361+0000 mon.a (mon.0) 675 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-18T23:03:17.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:17 smithi016 bash[21452]: audit 2024-04-18T23:03:16.113775+0000 mgr.a (mgr.14152) 394 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-18T23:03:17.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:17 smithi016 bash[21452]: audit 2024-04-18T23:03:16.116280+0000 mon.a (mon.0) 676 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-04-18T23:03:17.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:17 smithi016 bash[21452]: audit 2024-04-18T23:03:16.116625+0000 mgr.a (mgr.14152) 395 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-04-18T23:03:17.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:17 smithi016 bash[21452]: audit 2024-04-18T23:03:16.118728+0000 mon.a (mon.0) 677 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-04-18T23:03:17.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:17 smithi055 bash[23198]: cluster 2024-04-18T23:03:15.955967+0000 mgr.a (mgr.14152) 392 : cluster 0 pgmap v333: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 92 KiB/s, 0 objects/s recovering 2024-04-18T23:03:17.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:17 smithi055 bash[23198]: cephadm 2024-04-18T23:03:16.112557+0000 mgr.a (mgr.14152) 393 : cephadm 1 Successfully zapped devices for osd.4 on smithi069 2024-04-18T23:03:17.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:17 smithi055 bash[23198]: audit 2024-04-18T23:03:16.113361+0000 mon.a (mon.0) 675 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-18T23:03:17.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:17 smithi055 bash[23198]: audit 2024-04-18T23:03:16.113775+0000 mgr.a (mgr.14152) 394 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-18T23:03:17.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:17 smithi055 bash[23198]: audit 2024-04-18T23:03:16.116280+0000 mon.a (mon.0) 676 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-04-18T23:03:17.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:17 smithi055 bash[23198]: audit 2024-04-18T23:03:16.116625+0000 mgr.a (mgr.14152) 395 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-04-18T23:03:17.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:17 smithi055 bash[23198]: audit 2024-04-18T23:03:16.118728+0000 mon.a (mon.0) 677 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-04-18T23:03:17.748 INFO:journalctl@ceph.osd.5.smithi069.stdout:Apr 18 23:03:17 smithi069 systemd[1]: Stopping Ceph osd.5 for 1266e2ee-fdd6-11ee-bc92-c7b262605968... 2024-04-18T23:03:17.749 INFO:journalctl@ceph.osd.5.smithi069.stdout:Apr 18 23:03:17 smithi069 bash[32040]: debug 2024-04-18T23:03:17.567+0000 7fdad9b5b700 -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-04-18T23:03:17.749 INFO:journalctl@ceph.osd.5.smithi069.stdout:Apr 18 23:03:17 smithi069 bash[32040]: debug 2024-04-18T23:03:17.567+0000 7fdad9b5b700 -1 osd.5 54 *** Got signal Terminated *** 2024-04-18T23:03:17.749 INFO:journalctl@ceph.osd.5.smithi069.stdout:Apr 18 23:03:17 smithi069 bash[32040]: debug 2024-04-18T23:03:17.567+0000 7fdad9b5b700 -1 osd.5 54 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-18T23:03:18.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:18 smithi016 bash[21452]: cluster 2024-04-18T23:03:17.012875+0000 mon.a (mon.0) 678 : cluster 3 Health check failed: 1 osds down (OSD_DOWN) 2024-04-18T23:03:18.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:18 smithi016 bash[21452]: cluster 2024-04-18T23:03:17.012962+0000 mon.a (mon.0) 679 : cluster 3 Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-04-18T23:03:18.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:18 smithi016 bash[21452]: audit 2024-04-18T23:03:17.015261+0000 mon.a (mon.0) 680 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-04-18T23:03:18.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:18 smithi016 bash[21452]: cluster 2024-04-18T23:03:17.020504+0000 mon.a (mon.0) 681 : cluster 0 osdmap e55: 5 total, 4 up, 5 in 2024-04-18T23:03:18.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:18 smithi016 bash[21452]: cephadm 2024-04-18T23:03:17.022050+0000 mgr.a (mgr.14152) 396 : cephadm 1 osd.5 now down 2024-04-18T23:03:18.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:18 smithi016 bash[21452]: cephadm 2024-04-18T23:03:17.022793+0000 mgr.a (mgr.14152) 397 : cephadm 1 Removing daemon osd.5 from smithi069 -- ports [] 2024-04-18T23:03:18.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:18 smithi055 bash[23198]: cluster 2024-04-18T23:03:17.012875+0000 mon.a (mon.0) 678 : cluster 3 Health check failed: 1 osds down (OSD_DOWN) 2024-04-18T23:03:18.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:18 smithi055 bash[23198]: cluster 2024-04-18T23:03:17.012962+0000 mon.a (mon.0) 679 : cluster 3 Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-04-18T23:03:18.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:18 smithi055 bash[23198]: audit 2024-04-18T23:03:17.015261+0000 mon.a (mon.0) 680 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-04-18T23:03:18.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:18 smithi055 bash[23198]: cluster 2024-04-18T23:03:17.020504+0000 mon.a (mon.0) 681 : cluster 0 osdmap e55: 5 total, 4 up, 5 in 2024-04-18T23:03:18.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:18 smithi055 bash[23198]: cephadm 2024-04-18T23:03:17.022050+0000 mgr.a (mgr.14152) 396 : cephadm 1 osd.5 now down 2024-04-18T23:03:18.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:18 smithi055 bash[23198]: cephadm 2024-04-18T23:03:17.022793+0000 mgr.a (mgr.14152) 397 : cephadm 1 Removing daemon osd.5 from smithi069 -- ports [] 2024-04-18T23:03:18.809 INFO:journalctl@ceph.osd.5.smithi069.stdout:Apr 18 23:03:18 smithi069 bash[35898]: ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968-osd-5 2024-04-18T23:03:18.809 INFO:journalctl@ceph.osd.5.smithi069.stdout:Apr 18 23:03:18 smithi069 bash[35963]: ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968-osd-5 2024-04-18T23:03:19.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:19 smithi016 bash[21452]: cluster 2024-04-18T23:03:17.956522+0000 mgr.a (mgr.14152) 398 : cluster 0 pgmap v335: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 73 KiB/s, 0 objects/s recovering 2024-04-18T23:03:19.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:19 smithi055 bash[23198]: cluster 2024-04-18T23:03:17.956522+0000 mgr.a (mgr.14152) 398 : cluster 0 pgmap v335: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 73 KiB/s, 0 objects/s recovering 2024-04-18T23:03:20.748 INFO:journalctl@ceph.osd.5.smithi069.stdout:Apr 18 23:03:20 smithi069 systemd[1]: ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@osd.5.service: Deactivated successfully. 2024-04-18T23:03:20.748 INFO:journalctl@ceph.osd.5.smithi069.stdout:Apr 18 23:03:20 smithi069 systemd[1]: Stopped Ceph osd.5 for 1266e2ee-fdd6-11ee-bc92-c7b262605968. 2024-04-18T23:03:20.748 INFO:journalctl@ceph.osd.5.smithi069.stdout:Apr 18 23:03:20 smithi069 systemd[1]: /etc/systemd/system/ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-18T23:03:21.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:21 smithi016 bash[21452]: cluster 2024-04-18T23:03:19.957093+0000 mgr.a (mgr.14152) 399 : cluster 0 pgmap v336: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 64 KiB/s, 0 objects/s recovering 2024-04-18T23:03:21.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:21 smithi016 bash[21452]: audit 2024-04-18T23:03:20.749255+0000 mon.a (mon.0) 682 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-04-18T23:03:21.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:21 smithi016 bash[21452]: audit 2024-04-18T23:03:20.752264+0000 mon.a (mon.0) 683 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-04-18T23:03:21.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:21 smithi016 bash[21452]: audit 2024-04-18T23:03:20.757876+0000 mon.a (mon.0) 684 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-04-18T23:03:21.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:21 smithi016 bash[21452]: cluster 2024-04-18T23:03:20.759039+0000 mon.a (mon.0) 685 : cluster 1 Health check cleared: OSD_DOWN (was: 1 osds down) 2024-04-18T23:03:21.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:21 smithi016 bash[21452]: cluster 2024-04-18T23:03:20.759093+0000 mon.a (mon.0) 686 : cluster 1 Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-04-18T23:03:21.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:21 smithi016 bash[21452]: cluster 2024-04-18T23:03:20.759124+0000 mon.a (mon.0) 687 : cluster 1 Cluster is now healthy 2024-04-18T23:03:21.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:21 smithi016 bash[21452]: audit 2024-04-18T23:03:20.761163+0000 mon.a (mon.0) 688 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-04-18T23:03:21.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:21 smithi016 bash[21452]: cluster 2024-04-18T23:03:20.765669+0000 mon.a (mon.0) 689 : cluster 0 osdmap e56: 4 total, 4 up, 4 in 2024-04-18T23:03:21.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:21 smithi055 bash[23198]: cluster 2024-04-18T23:03:19.957093+0000 mgr.a (mgr.14152) 399 : cluster 0 pgmap v336: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 64 KiB/s, 0 objects/s recovering 2024-04-18T23:03:21.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:21 smithi055 bash[23198]: audit 2024-04-18T23:03:20.749255+0000 mon.a (mon.0) 682 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-04-18T23:03:21.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:21 smithi055 bash[23198]: audit 2024-04-18T23:03:20.752264+0000 mon.a (mon.0) 683 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-04-18T23:03:21.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:21 smithi055 bash[23198]: audit 2024-04-18T23:03:20.757876+0000 mon.a (mon.0) 684 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-04-18T23:03:21.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:21 smithi055 bash[23198]: cluster 2024-04-18T23:03:20.759039+0000 mon.a (mon.0) 685 : cluster 1 Health check cleared: OSD_DOWN (was: 1 osds down) 2024-04-18T23:03:21.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:21 smithi055 bash[23198]: cluster 2024-04-18T23:03:20.759093+0000 mon.a (mon.0) 686 : cluster 1 Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-04-18T23:03:21.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:21 smithi055 bash[23198]: cluster 2024-04-18T23:03:20.759124+0000 mon.a (mon.0) 687 : cluster 1 Cluster is now healthy 2024-04-18T23:03:21.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:21 smithi055 bash[23198]: audit 2024-04-18T23:03:20.761163+0000 mon.a (mon.0) 688 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-04-18T23:03:21.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:21 smithi055 bash[23198]: cluster 2024-04-18T23:03:20.765669+0000 mon.a (mon.0) 689 : cluster 0 osdmap e56: 4 total, 4 up, 4 in 2024-04-18T23:03:22.087 INFO:teuthology.orchestra.run.smithi016.stderr:++ ceph orch ps --hostname smithi069 2024-04-18T23:03:22.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:22 smithi016 bash[21452]: cephadm 2024-04-18T23:03:20.748678+0000 mgr.a (mgr.14152) 400 : cephadm 1 Removing key for osd.5 2024-04-18T23:03:22.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:22 smithi016 bash[21452]: cephadm 2024-04-18T23:03:20.757219+0000 mgr.a (mgr.14152) 401 : cephadm 1 Successfully removed osd.5 on smithi069 2024-04-18T23:03:22.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:22 smithi016 bash[21452]: cephadm 2024-04-18T23:03:20.767052+0000 mgr.a (mgr.14152) 402 : cephadm 1 Successfully purged osd.5 on smithi069 2024-04-18T23:03:22.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:22 smithi016 bash[21452]: cephadm 2024-04-18T23:03:20.767274+0000 mgr.a (mgr.14152) 403 : cephadm 1 Zapping devices for osd.5 on smithi069 2024-04-18T23:03:22.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:22 smithi055 bash[23198]: cephadm 2024-04-18T23:03:20.748678+0000 mgr.a (mgr.14152) 400 : cephadm 1 Removing key for osd.5 2024-04-18T23:03:22.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:22 smithi055 bash[23198]: cephadm 2024-04-18T23:03:20.757219+0000 mgr.a (mgr.14152) 401 : cephadm 1 Successfully removed osd.5 on smithi069 2024-04-18T23:03:22.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:22 smithi055 bash[23198]: cephadm 2024-04-18T23:03:20.767052+0000 mgr.a (mgr.14152) 402 : cephadm 1 Successfully purged osd.5 on smithi069 2024-04-18T23:03:22.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:22 smithi055 bash[23198]: cephadm 2024-04-18T23:03:20.767274+0000 mgr.a (mgr.14152) 403 : cephadm 1 Zapping devices for osd.5 on smithi069 2024-04-18T23:03:22.463 INFO:teuthology.orchestra.run.smithi016.stderr:+ HOST_C_DAEMONS='No daemons reported' 2024-04-18T23:03:22.463 INFO:teuthology.orchestra.run.smithi016.stderr:+ '[' 'No daemons reported' '!=' 'No daemons reported' ']' 2024-04-18T23:03:22.463 INFO:teuthology.orchestra.run.smithi016.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-04-18T23:03:22.799 INFO:teuthology.orchestra.run.smithi016.stderr:17 2024-04-18T23:03:22.808 INFO:teuthology.orchestra.run.smithi016.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-04-18T23:03:22.827 INFO:teuthology.orchestra.run.smithi016.stderr:++ cat crushmap.txt 2024-04-18T23:03:22.828 INFO:teuthology.orchestra.run.smithi016.stderr:+ CRUSH_MAP='# begin crush map 2024-04-18T23:03:22.828 INFO:teuthology.orchestra.run.smithi016.stderr:tunable choose_local_tries 0 2024-04-18T23:03:22.828 INFO:teuthology.orchestra.run.smithi016.stderr:tunable choose_local_fallback_tries 0 2024-04-18T23:03:22.828 INFO:teuthology.orchestra.run.smithi016.stderr:tunable choose_total_tries 50 2024-04-18T23:03:22.828 INFO:teuthology.orchestra.run.smithi016.stderr:tunable chooseleaf_descend_once 1 2024-04-18T23:03:22.828 INFO:teuthology.orchestra.run.smithi016.stderr:tunable chooseleaf_vary_r 1 2024-04-18T23:03:22.829 INFO:teuthology.orchestra.run.smithi016.stderr:tunable chooseleaf_stable 1 2024-04-18T23:03:22.829 INFO:teuthology.orchestra.run.smithi016.stderr:tunable straw_calc_version 1 2024-04-18T23:03:22.829 INFO:teuthology.orchestra.run.smithi016.stderr:tunable allowed_bucket_algs 54 2024-04-18T23:03:22.829 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-18T23:03:22.829 INFO:teuthology.orchestra.run.smithi016.stderr:# devices 2024-04-18T23:03:22.829 INFO:teuthology.orchestra.run.smithi016.stderr:device 0 osd.0 class ssd 2024-04-18T23:03:22.829 INFO:teuthology.orchestra.run.smithi016.stderr:device 1 osd.1 class ssd 2024-04-18T23:03:22.829 INFO:teuthology.orchestra.run.smithi016.stderr:device 2 osd.2 class ssd 2024-04-18T23:03:22.830 INFO:teuthology.orchestra.run.smithi016.stderr:device 3 osd.3 class ssd 2024-04-18T23:03:22.830 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-18T23:03:22.830 INFO:teuthology.orchestra.run.smithi016.stderr:# types 2024-04-18T23:03:22.830 INFO:teuthology.orchestra.run.smithi016.stderr:type 0 osd 2024-04-18T23:03:22.830 INFO:teuthology.orchestra.run.smithi016.stderr:type 1 host 2024-04-18T23:03:22.830 INFO:teuthology.orchestra.run.smithi016.stderr:type 2 chassis 2024-04-18T23:03:22.830 INFO:teuthology.orchestra.run.smithi016.stderr:type 3 rack 2024-04-18T23:03:22.831 INFO:teuthology.orchestra.run.smithi016.stderr:type 4 row 2024-04-18T23:03:22.831 INFO:teuthology.orchestra.run.smithi016.stderr:type 5 pdu 2024-04-18T23:03:22.831 INFO:teuthology.orchestra.run.smithi016.stderr:type 6 pod 2024-04-18T23:03:22.831 INFO:teuthology.orchestra.run.smithi016.stderr:type 7 room 2024-04-18T23:03:22.831 INFO:teuthology.orchestra.run.smithi016.stderr:type 8 datacenter 2024-04-18T23:03:22.831 INFO:teuthology.orchestra.run.smithi016.stderr:type 9 zone 2024-04-18T23:03:22.831 INFO:teuthology.orchestra.run.smithi016.stderr:type 10 region 2024-04-18T23:03:22.831 INFO:teuthology.orchestra.run.smithi016.stderr:type 11 root 2024-04-18T23:03:22.831 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-18T23:03:22.832 INFO:teuthology.orchestra.run.smithi016.stderr:# buckets 2024-04-18T23:03:22.832 INFO:teuthology.orchestra.run.smithi016.stderr:host smithi016 { 2024-04-18T23:03:22.832 INFO:teuthology.orchestra.run.smithi016.stderr: id -3 # do not change unnecessarily 2024-04-18T23:03:22.832 INFO:teuthology.orchestra.run.smithi016.stderr: id -4 class ssd # do not change unnecessarily 2024-04-18T23:03:22.832 INFO:teuthology.orchestra.run.smithi016.stderr: # weight 0.17459 2024-04-18T23:03:22.832 INFO:teuthology.orchestra.run.smithi016.stderr: alg straw2 2024-04-18T23:03:22.832 INFO:teuthology.orchestra.run.smithi016.stderr: hash 0 # rjenkins1 2024-04-18T23:03:22.832 INFO:teuthology.orchestra.run.smithi016.stderr: item osd.0 weight 0.08730 2024-04-18T23:03:22.833 INFO:teuthology.orchestra.run.smithi016.stderr: item osd.1 weight 0.08730 2024-04-18T23:03:22.833 INFO:teuthology.orchestra.run.smithi016.stderr:} 2024-04-18T23:03:22.833 INFO:teuthology.orchestra.run.smithi016.stderr:host smithi055 { 2024-04-18T23:03:22.833 INFO:teuthology.orchestra.run.smithi016.stderr: id -5 # do not change unnecessarily 2024-04-18T23:03:22.833 INFO:teuthology.orchestra.run.smithi016.stderr: id -6 class ssd # do not change unnecessarily 2024-04-18T23:03:22.833 INFO:teuthology.orchestra.run.smithi016.stderr: # weight 0.17459 2024-04-18T23:03:22.833 INFO:teuthology.orchestra.run.smithi016.stderr: alg straw2 2024-04-18T23:03:22.834 INFO:teuthology.orchestra.run.smithi016.stderr: hash 0 # rjenkins1 2024-04-18T23:03:22.834 INFO:teuthology.orchestra.run.smithi016.stderr: item osd.2 weight 0.08730 2024-04-18T23:03:22.834 INFO:teuthology.orchestra.run.smithi016.stderr: item osd.3 weight 0.08730 2024-04-18T23:03:22.834 INFO:teuthology.orchestra.run.smithi016.stderr:} 2024-04-18T23:03:22.834 INFO:teuthology.orchestra.run.smithi016.stderr:host smithi069 { 2024-04-18T23:03:22.834 INFO:teuthology.orchestra.run.smithi016.stderr: id -7 # do not change unnecessarily 2024-04-18T23:03:22.834 INFO:teuthology.orchestra.run.smithi016.stderr: id -8 class ssd # do not change unnecessarily 2024-04-18T23:03:22.834 INFO:teuthology.orchestra.run.smithi016.stderr: # weight 0.00000 2024-04-18T23:03:22.835 INFO:teuthology.orchestra.run.smithi016.stderr: alg straw2 2024-04-18T23:03:22.835 INFO:teuthology.orchestra.run.smithi016.stderr: hash 0 # rjenkins1 2024-04-18T23:03:22.835 INFO:teuthology.orchestra.run.smithi016.stderr:} 2024-04-18T23:03:22.835 INFO:teuthology.orchestra.run.smithi016.stderr:root default { 2024-04-18T23:03:22.835 INFO:teuthology.orchestra.run.smithi016.stderr: id -1 # do not change unnecessarily 2024-04-18T23:03:22.835 INFO:teuthology.orchestra.run.smithi016.stderr: id -2 class ssd # do not change unnecessarily 2024-04-18T23:03:22.835 INFO:teuthology.orchestra.run.smithi016.stderr: # weight 0.34918 2024-04-18T23:03:22.835 INFO:teuthology.orchestra.run.smithi016.stderr: alg straw2 2024-04-18T23:03:22.836 INFO:teuthology.orchestra.run.smithi016.stderr: hash 0 # rjenkins1 2024-04-18T23:03:22.836 INFO:teuthology.orchestra.run.smithi016.stderr: item smithi016 weight 0.17459 2024-04-18T23:03:22.836 INFO:teuthology.orchestra.run.smithi016.stderr: item smithi055 weight 0.17459 2024-04-18T23:03:22.836 INFO:teuthology.orchestra.run.smithi016.stderr: item smithi069 weight 0.00000 2024-04-18T23:03:22.836 INFO:teuthology.orchestra.run.smithi016.stderr:} 2024-04-18T23:03:22.836 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-18T23:03:22.836 INFO:teuthology.orchestra.run.smithi016.stderr:# rules 2024-04-18T23:03:22.836 INFO:teuthology.orchestra.run.smithi016.stderr:rule replicated_rule { 2024-04-18T23:03:22.837 INFO:teuthology.orchestra.run.smithi016.stderr: id 0 2024-04-18T23:03:22.837 INFO:teuthology.orchestra.run.smithi016.stderr: type replicated 2024-04-18T23:03:22.837 INFO:teuthology.orchestra.run.smithi016.stderr: step take default 2024-04-18T23:03:22.837 INFO:teuthology.orchestra.run.smithi016.stderr: step choose firstn 0 type osd 2024-04-18T23:03:22.837 INFO:teuthology.orchestra.run.smithi016.stderr: step emit 2024-04-18T23:03:22.837 INFO:teuthology.orchestra.run.smithi016.stderr:} 2024-04-18T23:03:22.837 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-18T23:03:22.837 INFO:teuthology.orchestra.run.smithi016.stderr:# end crush map' 2024-04-18T23:03:22.838 INFO:teuthology.orchestra.run.smithi016.stderr:+ grep -q smithi069 2024-04-18T23:03:22.838 INFO:teuthology.orchestra.run.smithi016.stderr:+ ceph orch host rm smithi069 --rm-crush-entry 2024-04-18T23:03:23.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:23 smithi016 bash[21452]: cluster 2024-04-18T23:03:21.957627+0000 mgr.a (mgr.14152) 404 : cluster 0 pgmap v338: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:23.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:23 smithi016 bash[21452]: audit 2024-04-18T23:03:22.447852+0000 mgr.a (mgr.14152) 405 : audit 0 from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi069", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T23:03:23.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:23 smithi016 bash[21452]: audit 2024-04-18T23:03:22.798288+0000 mon.a (mon.0) 690 : audit 0 from='client.? 172.21.15.16:0/1757528721' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-04-18T23:03:23.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:23 smithi055 bash[23198]: cluster 2024-04-18T23:03:21.957627+0000 mgr.a (mgr.14152) 404 : cluster 0 pgmap v338: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:23.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:23 smithi055 bash[23198]: audit 2024-04-18T23:03:22.447852+0000 mgr.a (mgr.14152) 405 : audit 0 from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi069", "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T23:03:23.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:23 smithi055 bash[23198]: audit 2024-04-18T23:03:22.798288+0000 mon.a (mon.0) 690 : audit 0 from='client.? 172.21.15.16:0/1757528721' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-04-18T23:03:24.087 INFO:teuthology.orchestra.run.smithi016.stdout:Removed host 'smithi069' 2024-04-18T23:03:24.101 INFO:teuthology.orchestra.run.smithi016.stderr:+ sleep 30 2024-04-18T23:03:24.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:24 smithi016 bash[21452]: audit 2024-04-18T23:03:23.163702+0000 mgr.a (mgr.14152) 406 : audit 0 from='client.14504 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi069", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T23:03:24.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:24 smithi016 bash[21452]: audit 2024-04-18T23:03:23.164548+0000 mon.a (mon.0) 691 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi069"}]: dispatch 2024-04-18T23:03:24.457 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:24 smithi055 bash[23198]: audit 2024-04-18T23:03:23.163702+0000 mgr.a (mgr.14152) 406 : audit 0 from='client.14504 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi069", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-18T23:03:24.457 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:24 smithi055 bash[23198]: audit 2024-04-18T23:03:23.164548+0000 mon.a (mon.0) 691 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi069"}]: dispatch 2024-04-18T23:03:25.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:25 smithi016 bash[21452]: cluster 2024-04-18T23:03:23.958236+0000 mgr.a (mgr.14152) 407 : cluster 0 pgmap v339: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:25.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:25 smithi016 bash[21452]: audit 2024-04-18T23:03:24.058427+0000 mon.a (mon.0) 692 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi069"}]': finished 2024-04-18T23:03:25.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:25 smithi016 bash[21452]: cluster 2024-04-18T23:03:24.062530+0000 mon.a (mon.0) 693 : cluster 0 osdmap e57: 4 total, 4 up, 4 in 2024-04-18T23:03:25.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:25 smithi016 bash[21452]: audit 2024-04-18T23:03:24.069421+0000 mon.a (mon.0) 694 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:25.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:25 smithi016 bash[21452]: audit 2024-04-18T23:03:24.070530+0000 mon.a (mon.0) 695 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi069"}]: dispatch 2024-04-18T23:03:25.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:25 smithi016 bash[21452]: audit 2024-04-18T23:03:24.075866+0000 mon.a (mon.0) 696 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi069"}]': finished 2024-04-18T23:03:25.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:25 smithi016 bash[21452]: cephadm 2024-04-18T23:03:24.084224+0000 mgr.a (mgr.14152) 408 : cephadm 1 Removed host smithi069 2024-04-18T23:03:25.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:25 smithi016 bash[21452]: cephadm 2024-04-18T23:03:24.091163+0000 mgr.a (mgr.14152) 409 : cephadm 1 Successfully zapped devices for osd.5 on smithi069 2024-04-18T23:03:25.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:25 smithi016 bash[21452]: audit 2024-04-18T23:03:24.096780+0000 mon.a (mon.0) 697 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:25.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:25 smithi016 bash[21452]: cephadm 2024-04-18T23:03:24.163887+0000 mgr.a (mgr.14152) 410 : cephadm 1 Reconfiguring mon.a (monmap changed)... 2024-04-18T23:03:25.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:25 smithi016 bash[21452]: audit 2024-04-18T23:03:24.164511+0000 mon.a (mon.0) 698 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-18T23:03:25.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:25 smithi016 bash[21452]: audit 2024-04-18T23:03:24.165923+0000 mon.a (mon.0) 699 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-18T23:03:25.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:25 smithi016 bash[21452]: audit 2024-04-18T23:03:24.167315+0000 mon.a (mon.0) 700 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:03:25.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:25 smithi016 bash[21452]: cephadm 2024-04-18T23:03:24.168598+0000 mgr.a (mgr.14152) 411 : cephadm 1 Reconfiguring daemon mon.a on smithi016 2024-04-18T23:03:25.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:25 smithi055 bash[23198]: cluster 2024-04-18T23:03:23.958236+0000 mgr.a (mgr.14152) 407 : cluster 0 pgmap v339: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:25.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:25 smithi055 bash[23198]: audit 2024-04-18T23:03:24.058427+0000 mon.a (mon.0) 692 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi069"}]': finished 2024-04-18T23:03:25.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:25 smithi055 bash[23198]: cluster 2024-04-18T23:03:24.062530+0000 mon.a (mon.0) 693 : cluster 0 osdmap e57: 4 total, 4 up, 4 in 2024-04-18T23:03:25.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:25 smithi055 bash[23198]: audit 2024-04-18T23:03:24.069421+0000 mon.a (mon.0) 694 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:25.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:25 smithi055 bash[23198]: audit 2024-04-18T23:03:24.070530+0000 mon.a (mon.0) 695 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi069"}]: dispatch 2024-04-18T23:03:25.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:25 smithi055 bash[23198]: audit 2024-04-18T23:03:24.075866+0000 mon.a (mon.0) 696 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi069"}]': finished 2024-04-18T23:03:25.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:25 smithi055 bash[23198]: cephadm 2024-04-18T23:03:24.084224+0000 mgr.a (mgr.14152) 408 : cephadm 1 Removed host smithi069 2024-04-18T23:03:25.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:25 smithi055 bash[23198]: cephadm 2024-04-18T23:03:24.091163+0000 mgr.a (mgr.14152) 409 : cephadm 1 Successfully zapped devices for osd.5 on smithi069 2024-04-18T23:03:25.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:25 smithi055 bash[23198]: audit 2024-04-18T23:03:24.096780+0000 mon.a (mon.0) 697 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:25.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:25 smithi055 bash[23198]: cephadm 2024-04-18T23:03:24.163887+0000 mgr.a (mgr.14152) 410 : cephadm 1 Reconfiguring mon.a (monmap changed)... 2024-04-18T23:03:25.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:25 smithi055 bash[23198]: audit 2024-04-18T23:03:24.164511+0000 mon.a (mon.0) 698 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-18T23:03:25.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:25 smithi055 bash[23198]: audit 2024-04-18T23:03:24.165923+0000 mon.a (mon.0) 699 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-18T23:03:25.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:25 smithi055 bash[23198]: audit 2024-04-18T23:03:24.167315+0000 mon.a (mon.0) 700 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:03:25.452 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:25 smithi055 bash[23198]: cephadm 2024-04-18T23:03:24.168598+0000 mgr.a (mgr.14152) 411 : cephadm 1 Reconfiguring daemon mon.a on smithi016 2024-04-18T23:03:27.661 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:27 smithi016 bash[21452]: cluster 2024-04-18T23:03:25.958938+0000 mgr.a (mgr.14152) 412 : cluster 0 pgmap v341: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:27.661 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:27 smithi016 bash[21452]: audit 2024-04-18T23:03:26.386825+0000 mon.a (mon.0) 701 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:27.662 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:27 smithi016 bash[21452]: audit 2024-04-18T23:03:26.394772+0000 mon.a (mon.0) 702 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:27.662 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:27 smithi016 bash[21452]: cephadm 2024-04-18T23:03:26.438573+0000 mgr.a (mgr.14152) 413 : cephadm 1 Reconfiguring mgr.a (monmap changed)... 2024-04-18T23:03:27.662 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:27 smithi016 bash[21452]: audit 2024-04-18T23:03:26.439337+0000 mon.a (mon.0) 703 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-18T23:03:27.662 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:27 smithi016 bash[21452]: audit 2024-04-18T23:03:26.441591+0000 mon.a (mon.0) 704 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-18T23:03:27.662 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:27 smithi016 bash[21452]: audit 2024-04-18T23:03:26.443465+0000 mon.a (mon.0) 705 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:03:27.662 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:27 smithi016 bash[21452]: cephadm 2024-04-18T23:03:26.445662+0000 mgr.a (mgr.14152) 414 : cephadm 1 Reconfiguring daemon mgr.a on smithi016 2024-04-18T23:03:27.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:27 smithi055 bash[23198]: cluster 2024-04-18T23:03:25.958938+0000 mgr.a (mgr.14152) 412 : cluster 0 pgmap v341: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:27.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:27 smithi055 bash[23198]: audit 2024-04-18T23:03:26.386825+0000 mon.a (mon.0) 701 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:27.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:27 smithi055 bash[23198]: audit 2024-04-18T23:03:26.394772+0000 mon.a (mon.0) 702 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:27.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:27 smithi055 bash[23198]: cephadm 2024-04-18T23:03:26.438573+0000 mgr.a (mgr.14152) 413 : cephadm 1 Reconfiguring mgr.a (monmap changed)... 2024-04-18T23:03:27.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:27 smithi055 bash[23198]: audit 2024-04-18T23:03:26.439337+0000 mon.a (mon.0) 703 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-18T23:03:27.701 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:27 smithi055 bash[23198]: audit 2024-04-18T23:03:26.441591+0000 mon.a (mon.0) 704 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-18T23:03:27.701 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:27 smithi055 bash[23198]: audit 2024-04-18T23:03:26.443465+0000 mon.a (mon.0) 705 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:03:27.701 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:27 smithi055 bash[23198]: cephadm 2024-04-18T23:03:26.445662+0000 mgr.a (mgr.14152) 414 : cephadm 1 Reconfiguring daemon mgr.a on smithi016 2024-04-18T23:03:29.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:29 smithi016 bash[21452]: cluster 2024-04-18T23:03:27.959637+0000 mgr.a (mgr.14152) 415 : cluster 0 pgmap v342: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:29.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:29 smithi016 bash[21452]: audit 2024-04-18T23:03:28.585686+0000 mon.a (mon.0) 706 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:29.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:29 smithi016 bash[21452]: audit 2024-04-18T23:03:28.594269+0000 mon.a (mon.0) 707 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:29.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:29 smithi016 bash[21452]: audit 2024-04-18T23:03:28.616305+0000 mon.a (mon.0) 708 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-18T23:03:29.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:29 smithi016 bash[21452]: audit 2024-04-18T23:03:28.618008+0000 mon.a (mon.0) 709 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:03:29.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:29 smithi055 bash[23198]: cluster 2024-04-18T23:03:27.959637+0000 mgr.a (mgr.14152) 415 : cluster 0 pgmap v342: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:29.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:29 smithi055 bash[23198]: audit 2024-04-18T23:03:28.585686+0000 mon.a (mon.0) 706 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:29.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:29 smithi055 bash[23198]: audit 2024-04-18T23:03:28.594269+0000 mon.a (mon.0) 707 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:29.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:29 smithi055 bash[23198]: audit 2024-04-18T23:03:28.616305+0000 mon.a (mon.0) 708 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-18T23:03:29.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:29 smithi055 bash[23198]: audit 2024-04-18T23:03:28.618008+0000 mon.a (mon.0) 709 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:03:30.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:30 smithi016 bash[21452]: cephadm 2024-04-18T23:03:28.615657+0000 mgr.a (mgr.14152) 416 : cephadm 1 Reconfiguring osd.0 (monmap changed)... 2024-04-18T23:03:30.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:30 smithi016 bash[21452]: cephadm 2024-04-18T23:03:28.621050+0000 mgr.a (mgr.14152) 417 : cephadm 1 Reconfiguring daemon osd.0 on smithi016 2024-04-18T23:03:30.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:30 smithi055 bash[23198]: cephadm 2024-04-18T23:03:28.615657+0000 mgr.a (mgr.14152) 416 : cephadm 1 Reconfiguring osd.0 (monmap changed)... 2024-04-18T23:03:30.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:30 smithi055 bash[23198]: cephadm 2024-04-18T23:03:28.621050+0000 mgr.a (mgr.14152) 417 : cephadm 1 Reconfiguring daemon osd.0 on smithi016 2024-04-18T23:03:31.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:31 smithi016 bash[21452]: cluster 2024-04-18T23:03:29.960170+0000 mgr.a (mgr.14152) 418 : cluster 0 pgmap v343: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:31.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:31 smithi016 bash[21452]: audit 2024-04-18T23:03:30.765014+0000 mon.a (mon.0) 710 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:31.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:31 smithi016 bash[21452]: audit 2024-04-18T23:03:30.770054+0000 mon.a (mon.0) 711 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:31.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:31 smithi016 bash[21452]: audit 2024-04-18T23:03:30.791488+0000 mon.a (mon.0) 712 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-18T23:03:31.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:31 smithi016 bash[21452]: audit 2024-04-18T23:03:30.792593+0000 mon.a (mon.0) 713 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:03:31.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:31 smithi055 bash[23198]: cluster 2024-04-18T23:03:29.960170+0000 mgr.a (mgr.14152) 418 : cluster 0 pgmap v343: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:31.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:31 smithi055 bash[23198]: audit 2024-04-18T23:03:30.765014+0000 mon.a (mon.0) 710 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:31.701 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:31 smithi055 bash[23198]: audit 2024-04-18T23:03:30.770054+0000 mon.a (mon.0) 711 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:31.701 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:31 smithi055 bash[23198]: audit 2024-04-18T23:03:30.791488+0000 mon.a (mon.0) 712 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-18T23:03:31.701 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:31 smithi055 bash[23198]: audit 2024-04-18T23:03:30.792593+0000 mon.a (mon.0) 713 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:03:32.551 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:32 smithi016 bash[21452]: cephadm 2024-04-18T23:03:30.790972+0000 mgr.a (mgr.14152) 419 : cephadm 1 Reconfiguring osd.1 (monmap changed)... 2024-04-18T23:03:32.551 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:32 smithi016 bash[21452]: cephadm 2024-04-18T23:03:30.795057+0000 mgr.a (mgr.14152) 420 : cephadm 1 Reconfiguring daemon osd.1 on smithi016 2024-04-18T23:03:32.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:32 smithi055 bash[23198]: cephadm 2024-04-18T23:03:30.790972+0000 mgr.a (mgr.14152) 419 : cephadm 1 Reconfiguring osd.1 (monmap changed)... 2024-04-18T23:03:32.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:32 smithi055 bash[23198]: cephadm 2024-04-18T23:03:30.795057+0000 mgr.a (mgr.14152) 420 : cephadm 1 Reconfiguring daemon osd.1 on smithi016 2024-04-18T23:03:33.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:33 smithi016 bash[21452]: cluster 2024-04-18T23:03:31.960674+0000 mgr.a (mgr.14152) 421 : cluster 0 pgmap v344: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:33.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:33 smithi016 bash[21452]: audit 2024-04-18T23:03:33.085842+0000 mon.a (mon.0) 714 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:33.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:33 smithi016 bash[21452]: audit 2024-04-18T23:03:33.091134+0000 mon.a (mon.0) 715 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:33.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:33 smithi016 bash[21452]: audit 2024-04-18T23:03:33.114307+0000 mon.a (mon.0) 716 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-18T23:03:33.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:33 smithi016 bash[21452]: audit 2024-04-18T23:03:33.115539+0000 mon.a (mon.0) 717 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-18T23:03:33.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:33 smithi016 bash[21452]: audit 2024-04-18T23:03:33.116728+0000 mon.a (mon.0) 718 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:03:33.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:33 smithi055 bash[23198]: cluster 2024-04-18T23:03:31.960674+0000 mgr.a (mgr.14152) 421 : cluster 0 pgmap v344: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:33.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:33 smithi055 bash[23198]: audit 2024-04-18T23:03:33.085842+0000 mon.a (mon.0) 714 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:33.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:33 smithi055 bash[23198]: audit 2024-04-18T23:03:33.091134+0000 mon.a (mon.0) 715 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:33.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:33 smithi055 bash[23198]: audit 2024-04-18T23:03:33.114307+0000 mon.a (mon.0) 716 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-18T23:03:33.701 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:33 smithi055 bash[23198]: audit 2024-04-18T23:03:33.115539+0000 mon.a (mon.0) 717 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-18T23:03:33.701 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:33 smithi055 bash[23198]: audit 2024-04-18T23:03:33.116728+0000 mon.a (mon.0) 718 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:03:34.612 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:34 smithi055 bash[23198]: cephadm 2024-04-18T23:03:33.113808+0000 mgr.a (mgr.14152) 422 : cephadm 1 Reconfiguring mon.b (monmap changed)... 2024-04-18T23:03:34.612 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:34 smithi055 bash[23198]: cephadm 2024-04-18T23:03:33.118330+0000 mgr.a (mgr.14152) 423 : cephadm 1 Reconfiguring daemon mon.b on smithi055 2024-04-18T23:03:34.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:34 smithi016 bash[21452]: cephadm 2024-04-18T23:03:33.113808+0000 mgr.a (mgr.14152) 422 : cephadm 1 Reconfiguring mon.b (monmap changed)... 2024-04-18T23:03:34.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:34 smithi016 bash[21452]: cephadm 2024-04-18T23:03:33.118330+0000 mgr.a (mgr.14152) 423 : cephadm 1 Reconfiguring daemon mon.b on smithi055 2024-04-18T23:03:35.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:35 smithi055 bash[23198]: cluster 2024-04-18T23:03:33.961231+0000 mgr.a (mgr.14152) 424 : cluster 0 pgmap v345: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:35.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:35 smithi055 bash[23198]: audit 2024-04-18T23:03:35.075429+0000 mon.a (mon.0) 719 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:35.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:35 smithi055 bash[23198]: audit 2024-04-18T23:03:35.084412+0000 mon.a (mon.0) 720 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:35.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:35 smithi055 bash[23198]: audit 2024-04-18T23:03:35.088804+0000 mon.a (mon.0) 721 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-18T23:03:35.701 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:35 smithi055 bash[23198]: audit 2024-04-18T23:03:35.091022+0000 mon.a (mon.0) 722 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-18T23:03:35.701 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:35 smithi055 bash[23198]: audit 2024-04-18T23:03:35.092795+0000 mon.a (mon.0) 723 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:03:35.919 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:35 smithi016 bash[21452]: cluster 2024-04-18T23:03:33.961231+0000 mgr.a (mgr.14152) 424 : cluster 0 pgmap v345: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:35.919 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:35 smithi016 bash[21452]: audit 2024-04-18T23:03:35.075429+0000 mon.a (mon.0) 719 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:35.919 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:35 smithi016 bash[21452]: audit 2024-04-18T23:03:35.084412+0000 mon.a (mon.0) 720 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:35.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:35 smithi016 bash[21452]: audit 2024-04-18T23:03:35.088804+0000 mon.a (mon.0) 721 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-18T23:03:35.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:35 smithi016 bash[21452]: audit 2024-04-18T23:03:35.091022+0000 mon.a (mon.0) 722 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-18T23:03:35.920 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:35 smithi016 bash[21452]: audit 2024-04-18T23:03:35.092795+0000 mon.a (mon.0) 723 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:03:36.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:36 smithi055 bash[23198]: cephadm 2024-04-18T23:03:35.088083+0000 mgr.a (mgr.14152) 425 : cephadm 1 Reconfiguring mgr.b (monmap changed)... 2024-04-18T23:03:36.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:36 smithi055 bash[23198]: cephadm 2024-04-18T23:03:35.094969+0000 mgr.a (mgr.14152) 426 : cephadm 1 Reconfiguring daemon mgr.b on smithi055 2024-04-18T23:03:36.919 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:36 smithi016 bash[21452]: cephadm 2024-04-18T23:03:35.088083+0000 mgr.a (mgr.14152) 425 : cephadm 1 Reconfiguring mgr.b (monmap changed)... 2024-04-18T23:03:36.919 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:36 smithi016 bash[21452]: cephadm 2024-04-18T23:03:35.094969+0000 mgr.a (mgr.14152) 426 : cephadm 1 Reconfiguring daemon mgr.b on smithi055 2024-04-18T23:03:37.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:37 smithi055 bash[23198]: cluster 2024-04-18T23:03:35.961735+0000 mgr.a (mgr.14152) 427 : cluster 0 pgmap v346: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:37.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:37 smithi055 bash[23198]: audit 2024-04-18T23:03:37.151538+0000 mon.a (mon.0) 724 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:37.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:37 smithi055 bash[23198]: audit 2024-04-18T23:03:37.160816+0000 mon.a (mon.0) 725 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:37.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:37 smithi055 bash[23198]: audit 2024-04-18T23:03:37.167634+0000 mon.a (mon.0) 726 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-18T23:03:37.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:37 smithi055 bash[23198]: audit 2024-04-18T23:03:37.170525+0000 mon.a (mon.0) 727 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:03:37.919 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:37 smithi016 bash[21452]: cluster 2024-04-18T23:03:35.961735+0000 mgr.a (mgr.14152) 427 : cluster 0 pgmap v346: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:37.919 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:37 smithi016 bash[21452]: audit 2024-04-18T23:03:37.151538+0000 mon.a (mon.0) 724 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:37.919 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:37 smithi016 bash[21452]: audit 2024-04-18T23:03:37.160816+0000 mon.a (mon.0) 725 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:37.919 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:37 smithi016 bash[21452]: audit 2024-04-18T23:03:37.167634+0000 mon.a (mon.0) 726 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-18T23:03:37.919 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:37 smithi016 bash[21452]: audit 2024-04-18T23:03:37.170525+0000 mon.a (mon.0) 727 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:03:38.645 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:38 smithi055 bash[23198]: cephadm 2024-04-18T23:03:37.166763+0000 mgr.a (mgr.14152) 428 : cephadm 1 Reconfiguring osd.2 (monmap changed)... 2024-04-18T23:03:38.645 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:38 smithi055 bash[23198]: cephadm 2024-04-18T23:03:37.173465+0000 mgr.a (mgr.14152) 429 : cephadm 1 Reconfiguring daemon osd.2 on smithi055 2024-04-18T23:03:38.919 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:38 smithi016 bash[21452]: cephadm 2024-04-18T23:03:37.166763+0000 mgr.a (mgr.14152) 428 : cephadm 1 Reconfiguring osd.2 (monmap changed)... 2024-04-18T23:03:38.919 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:38 smithi016 bash[21452]: cephadm 2024-04-18T23:03:37.173465+0000 mgr.a (mgr.14152) 429 : cephadm 1 Reconfiguring daemon osd.2 on smithi055 2024-04-18T23:03:39.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:39 smithi055 bash[23198]: cluster 2024-04-18T23:03:37.962255+0000 mgr.a (mgr.14152) 430 : cluster 0 pgmap v347: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:39.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:39 smithi055 bash[23198]: audit 2024-04-18T23:03:39.152401+0000 mon.a (mon.0) 728 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:39.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:39 smithi055 bash[23198]: audit 2024-04-18T23:03:39.161497+0000 mon.a (mon.0) 729 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:39.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:39 smithi055 bash[23198]: audit 2024-04-18T23:03:39.193479+0000 mon.a (mon.0) 730 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-04-18T23:03:39.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:39 smithi055 bash[23198]: audit 2024-04-18T23:03:39.195502+0000 mon.a (mon.0) 731 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:03:39.919 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:39 smithi016 bash[21452]: cluster 2024-04-18T23:03:37.962255+0000 mgr.a (mgr.14152) 430 : cluster 0 pgmap v347: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:39.919 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:39 smithi016 bash[21452]: audit 2024-04-18T23:03:39.152401+0000 mon.a (mon.0) 728 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:39.919 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:39 smithi016 bash[21452]: audit 2024-04-18T23:03:39.161497+0000 mon.a (mon.0) 729 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:39.919 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:39 smithi016 bash[21452]: audit 2024-04-18T23:03:39.193479+0000 mon.a (mon.0) 730 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-04-18T23:03:39.919 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:39 smithi016 bash[21452]: audit 2024-04-18T23:03:39.195502+0000 mon.a (mon.0) 731 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:03:40.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:40 smithi055 bash[23198]: cephadm 2024-04-18T23:03:39.192833+0000 mgr.a (mgr.14152) 431 : cephadm 1 Reconfiguring osd.3 (monmap changed)... 2024-04-18T23:03:40.700 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:40 smithi055 bash[23198]: cephadm 2024-04-18T23:03:39.198487+0000 mgr.a (mgr.14152) 432 : cephadm 1 Reconfiguring daemon osd.3 on smithi055 2024-04-18T23:03:40.919 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:40 smithi016 bash[21452]: cephadm 2024-04-18T23:03:39.192833+0000 mgr.a (mgr.14152) 431 : cephadm 1 Reconfiguring osd.3 (monmap changed)... 2024-04-18T23:03:40.919 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:40 smithi016 bash[21452]: cephadm 2024-04-18T23:03:39.198487+0000 mgr.a (mgr.14152) 432 : cephadm 1 Reconfiguring daemon osd.3 on smithi055 2024-04-18T23:03:41.919 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:41 smithi016 bash[21452]: cluster 2024-04-18T23:03:39.962807+0000 mgr.a (mgr.14152) 433 : cluster 0 pgmap v348: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:41.919 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:41 smithi016 bash[21452]: audit 2024-04-18T23:03:41.335247+0000 mon.a (mon.0) 732 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:41.919 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:41 smithi016 bash[21452]: audit 2024-04-18T23:03:41.344581+0000 mon.a (mon.0) 733 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:41.919 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:41 smithi016 bash[21452]: audit 2024-04-18T23:03:41.369690+0000 mon.a (mon.0) 734 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T23:03:41.950 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:41 smithi055 bash[23198]: cluster 2024-04-18T23:03:39.962807+0000 mgr.a (mgr.14152) 433 : cluster 0 pgmap v348: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:41.950 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:41 smithi055 bash[23198]: audit 2024-04-18T23:03:41.335247+0000 mon.a (mon.0) 732 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:41.950 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:41 smithi055 bash[23198]: audit 2024-04-18T23:03:41.344581+0000 mon.a (mon.0) 733 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:41.950 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:41 smithi055 bash[23198]: audit 2024-04-18T23:03:41.369690+0000 mon.a (mon.0) 734 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-18T23:03:43.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:42 smithi016 bash[21452]: audit 2024-04-18T23:03:41.950563+0000 mon.a (mon.0) 735 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:43.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:42 smithi016 bash[21452]: cluster 2024-04-18T23:03:41.963129+0000 mgr.a (mgr.14152) 434 : cluster 0 pgmap v349: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:43.420 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:42 smithi016 bash[21452]: audit 2024-04-18T23:03:41.973810+0000 mon.a (mon.0) 736 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:43.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:42 smithi016 bash[21452]: audit 2024-04-18T23:03:42.722439+0000 mon.a (mon.0) 737 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:03:43.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:42 smithi016 bash[21452]: audit 2024-04-18T23:03:42.724464+0000 mon.a (mon.0) 738 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T23:03:43.421 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:42 smithi016 bash[21452]: audit 2024-04-18T23:03:42.735785+0000 mon.a (mon.0) 739 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:43.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:42 smithi055 bash[23198]: audit 2024-04-18T23:03:41.950563+0000 mon.a (mon.0) 735 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:43.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:42 smithi055 bash[23198]: cluster 2024-04-18T23:03:41.963129+0000 mgr.a (mgr.14152) 434 : cluster 0 pgmap v349: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:43.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:42 smithi055 bash[23198]: audit 2024-04-18T23:03:41.973810+0000 mon.a (mon.0) 736 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:43.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:42 smithi055 bash[23198]: audit 2024-04-18T23:03:42.722439+0000 mon.a (mon.0) 737 : audit 0 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-18T23:03:43.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:42 smithi055 bash[23198]: audit 2024-04-18T23:03:42.724464+0000 mon.a (mon.0) 738 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-18T23:03:43.451 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:42 smithi055 bash[23198]: audit 2024-04-18T23:03:42.735785+0000 mon.a (mon.0) 739 : audit 1 from='mgr.14152 172.21.15.16:0/4129366377' entity='mgr.a' 2024-04-18T23:03:44.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:43 smithi016 bash[21452]: cluster 2024-04-18T23:03:42.728154+0000 mgr.a (mgr.14152) 435 : cluster 0 pgmap v350: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:44.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:43 smithi016 bash[21452]: cluster 2024-04-18T23:03:42.943286+0000 mon.a (mon.0) 740 : cluster 3 Health check failed: 1 stray host(s) with 1 daemon(s) not managed by cephadm (CEPHADM_STRAY_HOST) 2024-04-18T23:03:44.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:43 smithi055 bash[23198]: cluster 2024-04-18T23:03:42.728154+0000 mgr.a (mgr.14152) 435 : cluster 0 pgmap v350: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:44.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:43 smithi055 bash[23198]: cluster 2024-04-18T23:03:42.943286+0000 mon.a (mon.0) 740 : cluster 3 Health check failed: 1 stray host(s) with 1 daemon(s) not managed by cephadm (CEPHADM_STRAY_HOST) 2024-04-18T23:03:46.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:45 smithi016 bash[21452]: cluster 2024-04-18T23:03:44.728737+0000 mgr.a (mgr.14152) 436 : cluster 0 pgmap v351: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:46.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:45 smithi055 bash[23198]: cluster 2024-04-18T23:03:44.728737+0000 mgr.a (mgr.14152) 436 : cluster 0 pgmap v351: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:48.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:47 smithi016 bash[21452]: cluster 2024-04-18T23:03:46.729423+0000 mgr.a (mgr.14152) 437 : cluster 0 pgmap v352: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:48.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:47 smithi055 bash[23198]: cluster 2024-04-18T23:03:46.729423+0000 mgr.a (mgr.14152) 437 : cluster 0 pgmap v352: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:50.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:49 smithi016 bash[21452]: cluster 2024-04-18T23:03:48.730148+0000 mgr.a (mgr.14152) 438 : cluster 0 pgmap v353: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:50.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:49 smithi055 bash[23198]: cluster 2024-04-18T23:03:48.730148+0000 mgr.a (mgr.14152) 438 : cluster 0 pgmap v353: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:52.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:51 smithi016 bash[21452]: cluster 2024-04-18T23:03:50.730860+0000 mgr.a (mgr.14152) 439 : cluster 0 pgmap v354: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:52.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:51 smithi055 bash[23198]: cluster 2024-04-18T23:03:50.730860+0000 mgr.a (mgr.14152) 439 : cluster 0 pgmap v354: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:54.103 INFO:teuthology.orchestra.run.smithi016.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-04-18T23:03:54.419 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:53 smithi016 bash[21452]: cluster 2024-04-18T23:03:52.731535+0000 mgr.a (mgr.14152) 440 : cluster 0 pgmap v355: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:54.445 INFO:teuthology.orchestra.run.smithi016.stderr:18 2024-04-18T23:03:54.450 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:53 smithi055 bash[23198]: cluster 2024-04-18T23:03:52.731535+0000 mgr.a (mgr.14152) 440 : cluster 0 pgmap v355: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-18T23:03:54.455 INFO:teuthology.orchestra.run.smithi016.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-04-18T23:03:54.474 INFO:teuthology.orchestra.run.smithi016.stderr:++ cat crushmap.txt 2024-04-18T23:03:54.476 INFO:teuthology.orchestra.run.smithi016.stderr:+ CRUSH_MAP='# begin crush map 2024-04-18T23:03:54.476 INFO:teuthology.orchestra.run.smithi016.stderr:tunable choose_local_tries 0 2024-04-18T23:03:54.476 INFO:teuthology.orchestra.run.smithi016.stderr:tunable choose_local_fallback_tries 0 2024-04-18T23:03:54.476 INFO:teuthology.orchestra.run.smithi016.stderr:tunable choose_total_tries 50 2024-04-18T23:03:54.476 INFO:teuthology.orchestra.run.smithi016.stderr:tunable chooseleaf_descend_once 1 2024-04-18T23:03:54.476 INFO:teuthology.orchestra.run.smithi016.stderr:tunable chooseleaf_vary_r 1 2024-04-18T23:03:54.476 INFO:teuthology.orchestra.run.smithi016.stderr:tunable chooseleaf_stable 1 2024-04-18T23:03:54.476 INFO:teuthology.orchestra.run.smithi016.stderr:tunable straw_calc_version 1 2024-04-18T23:03:54.476 INFO:teuthology.orchestra.run.smithi016.stderr:tunable allowed_bucket_algs 54 2024-04-18T23:03:54.476 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-18T23:03:54.476 INFO:teuthology.orchestra.run.smithi016.stderr:# devices 2024-04-18T23:03:54.476 INFO:teuthology.orchestra.run.smithi016.stderr:device 0 osd.0 class ssd 2024-04-18T23:03:54.476 INFO:teuthology.orchestra.run.smithi016.stderr:device 1 osd.1 class ssd 2024-04-18T23:03:54.477 INFO:teuthology.orchestra.run.smithi016.stderr:device 2 osd.2 class ssd 2024-04-18T23:03:54.477 INFO:teuthology.orchestra.run.smithi016.stderr:device 3 osd.3 class ssd 2024-04-18T23:03:54.477 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-18T23:03:54.477 INFO:teuthology.orchestra.run.smithi016.stderr:# types 2024-04-18T23:03:54.477 INFO:teuthology.orchestra.run.smithi016.stderr:type 0 osd 2024-04-18T23:03:54.477 INFO:teuthology.orchestra.run.smithi016.stderr:type 1 host 2024-04-18T23:03:54.477 INFO:teuthology.orchestra.run.smithi016.stderr:type 2 chassis 2024-04-18T23:03:54.477 INFO:teuthology.orchestra.run.smithi016.stderr:type 3 rack 2024-04-18T23:03:54.477 INFO:teuthology.orchestra.run.smithi016.stderr:type 4 row 2024-04-18T23:03:54.477 INFO:teuthology.orchestra.run.smithi016.stderr:type 5 pdu 2024-04-18T23:03:54.477 INFO:teuthology.orchestra.run.smithi016.stderr:type 6 pod 2024-04-18T23:03:54.477 INFO:teuthology.orchestra.run.smithi016.stderr:type 7 room 2024-04-18T23:03:54.477 INFO:teuthology.orchestra.run.smithi016.stderr:type 8 datacenter 2024-04-18T23:03:54.477 INFO:teuthology.orchestra.run.smithi016.stderr:type 9 zone 2024-04-18T23:03:54.477 INFO:teuthology.orchestra.run.smithi016.stderr:type 10 region 2024-04-18T23:03:54.477 INFO:teuthology.orchestra.run.smithi016.stderr:type 11 root 2024-04-18T23:03:54.477 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-18T23:03:54.478 INFO:teuthology.orchestra.run.smithi016.stderr:# buckets 2024-04-18T23:03:54.478 INFO:teuthology.orchestra.run.smithi016.stderr:host smithi016 { 2024-04-18T23:03:54.478 INFO:teuthology.orchestra.run.smithi016.stderr: id -3 # do not change unnecessarily 2024-04-18T23:03:54.478 INFO:teuthology.orchestra.run.smithi016.stderr: id -4 class ssd # do not change unnecessarily 2024-04-18T23:03:54.478 INFO:teuthology.orchestra.run.smithi016.stderr: # weight 0.17459 2024-04-18T23:03:54.478 INFO:teuthology.orchestra.run.smithi016.stderr: alg straw2 2024-04-18T23:03:54.478 INFO:teuthology.orchestra.run.smithi016.stderr: hash 0 # rjenkins1 2024-04-18T23:03:54.478 INFO:teuthology.orchestra.run.smithi016.stderr: item osd.0 weight 0.08730 2024-04-18T23:03:54.478 INFO:teuthology.orchestra.run.smithi016.stderr: item osd.1 weight 0.08730 2024-04-18T23:03:54.478 INFO:teuthology.orchestra.run.smithi016.stderr:} 2024-04-18T23:03:54.478 INFO:teuthology.orchestra.run.smithi016.stderr:host smithi055 { 2024-04-18T23:03:54.478 INFO:teuthology.orchestra.run.smithi016.stderr: id -5 # do not change unnecessarily 2024-04-18T23:03:54.478 INFO:teuthology.orchestra.run.smithi016.stderr: id -6 class ssd # do not change unnecessarily 2024-04-18T23:03:54.478 INFO:teuthology.orchestra.run.smithi016.stderr: # weight 0.17459 2024-04-18T23:03:54.478 INFO:teuthology.orchestra.run.smithi016.stderr: alg straw2 2024-04-18T23:03:54.479 INFO:teuthology.orchestra.run.smithi016.stderr: hash 0 # rjenkins1 2024-04-18T23:03:54.479 INFO:teuthology.orchestra.run.smithi016.stderr: item osd.2 weight 0.08730 2024-04-18T23:03:54.479 INFO:teuthology.orchestra.run.smithi016.stderr: item osd.3 weight 0.08730 2024-04-18T23:03:54.479 INFO:teuthology.orchestra.run.smithi016.stderr:} 2024-04-18T23:03:54.479 INFO:teuthology.orchestra.run.smithi016.stderr:root default { 2024-04-18T23:03:54.479 INFO:teuthology.orchestra.run.smithi016.stderr: id -1 # do not change unnecessarily 2024-04-18T23:03:54.479 INFO:teuthology.orchestra.run.smithi016.stderr: id -2 class ssd # do not change unnecessarily 2024-04-18T23:03:54.479 INFO:teuthology.orchestra.run.smithi016.stderr: # weight 0.34918 2024-04-18T23:03:54.479 INFO:teuthology.orchestra.run.smithi016.stderr: alg straw2 2024-04-18T23:03:54.479 INFO:teuthology.orchestra.run.smithi016.stderr: hash 0 # rjenkins1 2024-04-18T23:03:54.479 INFO:teuthology.orchestra.run.smithi016.stderr: item smithi016 weight 0.17459 2024-04-18T23:03:54.479 INFO:teuthology.orchestra.run.smithi016.stderr: item smithi055 weight 0.17459 2024-04-18T23:03:54.479 INFO:teuthology.orchestra.run.smithi016.stderr:} 2024-04-18T23:03:54.479 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-18T23:03:54.479 INFO:teuthology.orchestra.run.smithi016.stderr:# rules 2024-04-18T23:03:54.479 INFO:teuthology.orchestra.run.smithi016.stderr:rule replicated_rule { 2024-04-18T23:03:54.479 INFO:teuthology.orchestra.run.smithi016.stderr: id 0 2024-04-18T23:03:54.480 INFO:teuthology.orchestra.run.smithi016.stderr: type replicated 2024-04-18T23:03:54.480 INFO:teuthology.orchestra.run.smithi016.stderr: step take default 2024-04-18T23:03:54.480 INFO:teuthology.orchestra.run.smithi016.stderr: step choose firstn 0 type osd 2024-04-18T23:03:54.480 INFO:teuthology.orchestra.run.smithi016.stderr: step emit 2024-04-18T23:03:54.480 INFO:teuthology.orchestra.run.smithi016.stderr:} 2024-04-18T23:03:54.480 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-18T23:03:54.480 INFO:teuthology.orchestra.run.smithi016.stderr:# end crush map' 2024-04-18T23:03:54.480 INFO:teuthology.orchestra.run.smithi016.stderr:+ grep -q smithi069 2024-04-18T23:03:55.175 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-04-18T23:03:55.186 INFO:tasks.cephadm:Teardown begin 2024-04-18T23:03:55.186 DEBUG:teuthology.orchestra.run.smithi016:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-18T23:03:55.200 DEBUG:teuthology.orchestra.run.smithi055:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-18T23:03:55.216 DEBUG:teuthology.orchestra.run.smithi069:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-18T23:03:55.230 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-04-18T23:03:55.231 DEBUG:teuthology.orchestra.run.smithi016:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-18T23:03:55.237 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:54 smithi055 bash[23198]: audit 2024-04-18T23:03:54.444953+0000 mon.a (mon.0) 741 : audit 0 from='client.? 172.21.15.16:0/2306439609' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-04-18T23:03:55.252 DEBUG:teuthology.orchestra.run.smithi055:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-18T23:03:55.257 DEBUG:teuthology.orchestra.run.smithi069:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-18T23:03:55.275 INFO:tasks.cephadm:Stopping all daemons... 2024-04-18T23:03:55.276 INFO:tasks.cephadm.mon.a:Stopping mon.a... 2024-04-18T23:03:55.276 DEBUG:teuthology.orchestra.run.smithi016:> sudo systemctl stop ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@mon.a 2024-04-18T23:03:55.304 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:54 smithi016 bash[21452]: audit 2024-04-18T23:03:54.444953+0000 mon.a (mon.0) 741 : audit 0 from='client.? 172.21.15.16:0/2306439609' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-04-18T23:03:55.427 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:55 smithi016 systemd[1]: Stopping Ceph mon.a for 1266e2ee-fdd6-11ee-bc92-c7b262605968... 2024-04-18T23:03:55.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:55 smithi016 bash[21452]: debug 2024-04-18T23:03:55.425+0000 7fad5258b700 -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-04-18T23:03:55.669 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:55 smithi016 bash[21452]: debug 2024-04-18T23:03:55.425+0000 7fad5258b700 -1 mon.a@0(leader) e4 *** Got Signal Terminated *** 2024-04-18T23:03:56.261 DEBUG:teuthology.orchestra.run.smithi016:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@mon.a.service' 2024-04-18T23:03:56.311 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:56 smithi016 bash[45673]: ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968-mon-a 2024-04-18T23:03:56.311 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:56 smithi016 bash[45733]: Error response from daemon: No such container: ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968-mon-a 2024-04-18T23:03:56.311 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:56 smithi016 systemd[1]: ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@mon.a.service: Deactivated successfully. 2024-04-18T23:03:56.311 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 18 23:03:56 smithi016 systemd[1]: Stopped Ceph mon.a for 1266e2ee-fdd6-11ee-bc92-c7b262605968. 2024-04-18T23:03:56.336 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-18T23:03:56.336 INFO:tasks.cephadm.mon.a:Stopped mon.a 2024-04-18T23:03:56.336 INFO:tasks.cephadm.mon.c:Stopping mon.b... 2024-04-18T23:03:56.337 DEBUG:teuthology.orchestra.run.smithi055:> sudo systemctl stop ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@mon.b 2024-04-18T23:03:56.614 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:56 smithi055 systemd[1]: Stopping Ceph mon.b for 1266e2ee-fdd6-11ee-bc92-c7b262605968... 2024-04-18T23:03:56.614 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:56 smithi055 bash[23198]: debug 2024-04-18T23:03:56.504+0000 7f657d115700 -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-04-18T23:03:56.614 INFO:journalctl@ceph.mon.b.smithi055.stdout:Apr 18 23:03:56 smithi055 bash[23198]: debug 2024-04-18T23:03:56.504+0000 7f657d115700 -1 mon.b@1(peon) e4 *** Got Signal Terminated *** 2024-04-18T23:03:57.254 DEBUG:teuthology.orchestra.run.smithi055:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@mon.b.service' 2024-04-18T23:03:57.287 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-18T23:03:57.287 INFO:tasks.cephadm.mon.c:Stopped mon.b 2024-04-18T23:03:57.288 INFO:tasks.cephadm.mon.c:Stopping mon.c... 2024-04-18T23:03:57.288 DEBUG:teuthology.orchestra.run.smithi069:> sudo systemctl stop ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@mon.c 2024-04-18T23:03:57.319 DEBUG:teuthology.orchestra.run.smithi069:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@mon.c.service' 2024-04-18T23:03:57.396 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-18T23:03:57.396 INFO:tasks.cephadm.mon.c:Stopped mon.c 2024-04-18T23:03:57.396 INFO:tasks.cephadm.mgr.a:Stopping mgr.a... 2024-04-18T23:03:57.396 DEBUG:teuthology.orchestra.run.smithi016:> sudo systemctl stop ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@mgr.a 2024-04-18T23:03:57.670 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 23:03:57 smithi016 systemd[1]: Stopping Ceph mgr.a for 1266e2ee-fdd6-11ee-bc92-c7b262605968... 2024-04-18T23:03:57.670 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 23:03:57 smithi016 bash[21706]: debug 2024-04-18T23:03:57.545+0000 7f4408ed4700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mgr -n mgr.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug (PID: 1) UID: 0 2024-04-18T23:03:57.670 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 23:03:57 smithi016 bash[21706]: debug 2024-04-18T23:03:57.545+0000 7f4408ed4700 -1 mgr handle_mgr_signal *** Got signal Terminated *** 2024-04-18T23:03:58.520 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 18 23:03:58 smithi016 bash[45774]: ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968-mgr-a 2024-04-18T23:03:58.524 DEBUG:teuthology.orchestra.run.smithi016:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@mgr.a.service' 2024-04-18T23:03:58.548 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-18T23:03:58.548 INFO:tasks.cephadm.mgr.a:Stopped mgr.a 2024-04-18T23:03:58.548 INFO:tasks.cephadm.mgr.b:Stopping mgr.b... 2024-04-18T23:03:58.549 DEBUG:teuthology.orchestra.run.smithi055:> sudo systemctl stop ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@mgr.b 2024-04-18T23:03:58.950 INFO:journalctl@ceph.mgr.b.smithi055.stdout:Apr 18 23:03:58 smithi055 systemd[1]: Stopping Ceph mgr.b for 1266e2ee-fdd6-11ee-bc92-c7b262605968... 2024-04-18T23:03:59.459 DEBUG:teuthology.orchestra.run.smithi055:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@mgr.b.service' 2024-04-18T23:03:59.483 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-18T23:03:59.484 INFO:tasks.cephadm.mgr.b:Stopped mgr.b 2024-04-18T23:03:59.484 INFO:tasks.cephadm.osd.0:Stopping osd.0... 2024-04-18T23:03:59.484 DEBUG:teuthology.orchestra.run.smithi016:> sudo systemctl stop ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@osd.0 2024-04-18T23:03:59.919 INFO:journalctl@ceph.osd.0.smithi016.stdout:Apr 18 23:03:59 smithi016 systemd[1]: Stopping Ceph osd.0 for 1266e2ee-fdd6-11ee-bc92-c7b262605968... 2024-04-18T23:03:59.919 INFO:journalctl@ceph.osd.0.smithi016.stdout:Apr 18 23:03:59 smithi016 bash[31696]: debug 2024-04-18T23:03:59.633+0000 7fbe58dbc700 -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-04-18T23:03:59.919 INFO:journalctl@ceph.osd.0.smithi016.stdout:Apr 18 23:03:59 smithi016 bash[31696]: debug 2024-04-18T23:03:59.633+0000 7fbe58dbc700 -1 osd.0 57 *** Got signal Terminated *** 2024-04-18T23:03:59.919 INFO:journalctl@ceph.osd.0.smithi016.stdout:Apr 18 23:03:59 smithi016 bash[31696]: debug 2024-04-18T23:03:59.633+0000 7fbe58dbc700 -1 osd.0 57 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-18T23:04:06.169 INFO:journalctl@ceph.osd.0.smithi016.stdout:Apr 18 23:04:05 smithi016 bash[45872]: ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968-osd-0 2024-04-18T23:04:06.169 INFO:journalctl@ceph.osd.0.smithi016.stdout:Apr 18 23:04:05 smithi016 bash[45934]: Error response from daemon: No such container: ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968-osd-0 2024-04-18T23:04:07.777 DEBUG:teuthology.orchestra.run.smithi016:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@osd.0.service' 2024-04-18T23:04:07.804 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-18T23:04:07.805 INFO:tasks.cephadm.osd.0:Stopped osd.0 2024-04-18T23:04:07.805 INFO:tasks.cephadm.osd.1:Stopping osd.1... 2024-04-18T23:04:07.805 DEBUG:teuthology.orchestra.run.smithi016:> sudo systemctl stop ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@osd.1 2024-04-18T23:04:07.992 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 18 23:04:07 smithi016 systemd[1]: Stopping Ceph osd.1 for 1266e2ee-fdd6-11ee-bc92-c7b262605968... 2024-04-18T23:04:08.169 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 18 23:04:07 smithi016 bash[37387]: debug 2024-04-18T23:04:07.993+0000 7fdcc76bf700 -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-04-18T23:04:08.169 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 18 23:04:07 smithi016 bash[37387]: debug 2024-04-18T23:04:07.993+0000 7fdcc76bf700 -1 osd.1 57 *** Got signal Terminated *** 2024-04-18T23:04:08.169 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 18 23:04:07 smithi016 bash[37387]: debug 2024-04-18T23:04:07.993+0000 7fdcc76bf700 -1 osd.1 57 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-18T23:04:14.264 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 18 23:04:14 smithi016 bash[46068]: ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968-osd-1 2024-04-18T23:04:14.265 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 18 23:04:14 smithi016 bash[46137]: Error response from daemon: No such container: ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968-osd-1 2024-04-18T23:04:16.087 DEBUG:teuthology.orchestra.run.smithi016:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@osd.1.service' 2024-04-18T23:04:16.124 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-18T23:04:16.125 INFO:tasks.cephadm.osd.1:Stopped osd.1 2024-04-18T23:04:16.125 INFO:tasks.cephadm.osd.2:Stopping osd.2... 2024-04-18T23:04:16.125 DEBUG:teuthology.orchestra.run.smithi055:> sudo systemctl stop ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@osd.2 2024-04-18T23:04:16.450 INFO:journalctl@ceph.osd.2.smithi055.stdout:Apr 18 23:04:16 smithi055 systemd[1]: Stopping Ceph osd.2 for 1266e2ee-fdd6-11ee-bc92-c7b262605968... 2024-04-18T23:04:16.451 INFO:journalctl@ceph.osd.2.smithi055.stdout:Apr 18 23:04:16 smithi055 bash[26265]: debug 2024-04-18T23:04:16.276+0000 7ff65c3dc700 -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-04-18T23:04:16.451 INFO:journalctl@ceph.osd.2.smithi055.stdout:Apr 18 23:04:16 smithi055 bash[26265]: debug 2024-04-18T23:04:16.276+0000 7ff65c3dc700 -1 osd.2 57 *** Got signal Terminated *** 2024-04-18T23:04:16.451 INFO:journalctl@ceph.osd.2.smithi055.stdout:Apr 18 23:04:16 smithi055 bash[26265]: debug 2024-04-18T23:04:16.276+0000 7ff65c3dc700 -1 osd.2 57 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-18T23:04:22.450 INFO:journalctl@ceph.osd.2.smithi055.stdout:Apr 18 23:04:22 smithi055 bash[35597]: ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968-osd-2 2024-04-18T23:04:22.450 INFO:journalctl@ceph.osd.2.smithi055.stdout:Apr 18 23:04:22 smithi055 bash[35659]: Error response from daemon: No such container: ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968-osd-2 2024-04-18T23:04:23.952 DEBUG:teuthology.orchestra.run.smithi055:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@osd.2.service' 2024-04-18T23:04:23.978 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-18T23:04:23.979 INFO:tasks.cephadm.osd.2:Stopped osd.2 2024-04-18T23:04:23.979 INFO:tasks.cephadm.osd.3:Stopping osd.3... 2024-04-18T23:04:23.979 DEBUG:teuthology.orchestra.run.smithi055:> sudo systemctl stop ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@osd.3 2024-04-18T23:04:24.200 INFO:journalctl@ceph.osd.3.smithi055.stdout:Apr 18 23:04:24 smithi055 systemd[1]: Stopping Ceph osd.3 for 1266e2ee-fdd6-11ee-bc92-c7b262605968... 2024-04-18T23:04:24.201 INFO:journalctl@ceph.osd.3.smithi055.stdout:Apr 18 23:04:24 smithi055 bash[31682]: debug 2024-04-18T23:04:24.147+0000 7fc0f4dd8700 -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-04-18T23:04:24.201 INFO:journalctl@ceph.osd.3.smithi055.stdout:Apr 18 23:04:24 smithi055 bash[31682]: debug 2024-04-18T23:04:24.147+0000 7fc0f4dd8700 -1 osd.3 57 *** Got signal Terminated *** 2024-04-18T23:04:24.201 INFO:journalctl@ceph.osd.3.smithi055.stdout:Apr 18 23:04:24 smithi055 bash[31682]: debug 2024-04-18T23:04:24.147+0000 7fc0f4dd8700 -1 osd.3 57 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-18T23:04:27.950 INFO:journalctl@ceph.osd.3.smithi055.stdout:Apr 18 23:04:27 smithi055 bash[31682]: debug 2024-04-18T23:04:27.479+0000 7fc0f13cc700 -1 osd.3 57 heartbeat_check: no reply from 172.21.15.16:6806 osd.0 since back 2024-04-18T23:04:03.350744+0000 front 2024-04-18T23:04:03.350764+0000 (oldest deadline 2024-04-18T23:04:27.450507+0000) 2024-04-18T23:04:28.700 INFO:journalctl@ceph.osd.3.smithi055.stdout:Apr 18 23:04:28 smithi055 bash[31682]: debug 2024-04-18T23:04:28.443+0000 7fc0f13cc700 -1 osd.3 57 heartbeat_check: no reply from 172.21.15.16:6806 osd.0 since back 2024-04-18T23:04:03.350744+0000 front 2024-04-18T23:04:03.350764+0000 (oldest deadline 2024-04-18T23:04:27.450507+0000) 2024-04-18T23:04:30.450 INFO:journalctl@ceph.osd.3.smithi055.stdout:Apr 18 23:04:30 smithi055 bash[35795]: ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968-osd-3 2024-04-18T23:04:30.450 INFO:journalctl@ceph.osd.3.smithi055.stdout:Apr 18 23:04:30 smithi055 bash[35858]: Error response from daemon: No such container: ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968-osd-3 2024-04-18T23:04:31.919 DEBUG:teuthology.orchestra.run.smithi055:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@osd.3.service' 2024-04-18T23:04:31.954 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-18T23:04:31.955 INFO:tasks.cephadm.osd.3:Stopped osd.3 2024-04-18T23:04:31.955 INFO:tasks.cephadm.osd.4:Stopping osd.4... 2024-04-18T23:04:31.955 DEBUG:teuthology.orchestra.run.smithi069:> sudo systemctl stop ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@osd.4 2024-04-18T23:04:31.979 DEBUG:teuthology.orchestra.run.smithi069:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@osd.4.service' 2024-04-18T23:04:32.048 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-18T23:04:32.048 INFO:tasks.cephadm.osd.4:Stopped osd.4 2024-04-18T23:04:32.048 INFO:tasks.cephadm.osd.5:Stopping osd.5... 2024-04-18T23:04:32.048 DEBUG:teuthology.orchestra.run.smithi069:> sudo systemctl stop ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@osd.5 2024-04-18T23:04:32.121 DEBUG:teuthology.orchestra.run.smithi069:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1266e2ee-fdd6-11ee-bc92-c7b262605968@osd.5.service' 2024-04-18T23:04:32.192 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-18T23:04:32.193 INFO:tasks.cephadm.osd.5:Stopped osd.5 2024-04-18T23:04:32.193 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 --force --keep-logs 2024-04-18T23:04:32.366 INFO:teuthology.orchestra.run.smithi016.stdout:Deleting cluster with fsid: 1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T23:04:34.789 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 --force --keep-logs 2024-04-18T23:04:34.960 INFO:teuthology.orchestra.run.smithi055.stdout:Deleting cluster with fsid: 1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T23:04:37.433 DEBUG:teuthology.orchestra.run.smithi069:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 --force --keep-logs 2024-04-18T23:04:37.603 INFO:teuthology.orchestra.run.smithi069.stdout:Deleting cluster with fsid: 1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T23:04:39.129 DEBUG:teuthology.orchestra.run.smithi016:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-18T23:04:39.144 DEBUG:teuthology.orchestra.run.smithi055:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-18T23:04:39.158 DEBUG:teuthology.orchestra.run.smithi069:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-18T23:04:39.171 INFO:tasks.cephadm:Archiving crash dumps... 2024-04-18T23:04:39.172 DEBUG:teuthology.misc:Transferring archived files from smithi016:/var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-18_21:00:02-rados-squid-distro-default-smithi/7662605/remote/smithi016/crash 2024-04-18T23:04:39.173 DEBUG:teuthology.orchestra.run.smithi016:> sudo tar c -f - -C /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/crash -- . 2024-04-18T23:04:39.199 INFO:teuthology.orchestra.run.smithi016.stderr:tar: /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/crash: Cannot open: No such file or directory 2024-04-18T23:04:39.199 INFO:teuthology.orchestra.run.smithi016.stderr:tar: Error is not recoverable: exiting now 2024-04-18T23:04:39.201 DEBUG:teuthology.misc:Transferring archived files from smithi055:/var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-18_21:00:02-rados-squid-distro-default-smithi/7662605/remote/smithi055/crash 2024-04-18T23:04:39.202 DEBUG:teuthology.orchestra.run.smithi055:> sudo tar c -f - -C /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/crash -- . 2024-04-18T23:04:39.215 INFO:teuthology.orchestra.run.smithi055.stderr:tar: /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/crash: Cannot open: No such file or directory 2024-04-18T23:04:39.216 INFO:teuthology.orchestra.run.smithi055.stderr:tar: Error is not recoverable: exiting now 2024-04-18T23:04:39.218 DEBUG:teuthology.misc:Transferring archived files from smithi069:/var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-18_21:00:02-rados-squid-distro-default-smithi/7662605/remote/smithi069/crash 2024-04-18T23:04:39.218 DEBUG:teuthology.orchestra.run.smithi069:> sudo tar c -f - -C /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/crash -- . 2024-04-18T23:04:39.230 INFO:teuthology.orchestra.run.smithi069.stderr:tar: /var/lib/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/crash: Cannot open: No such file or directory 2024-04-18T23:04:39.230 INFO:teuthology.orchestra.run.smithi069.stderr:tar: Error is not recoverable: exiting now 2024-04-18T23:04:39.231 INFO:tasks.cephadm:Checking cluster log for badness... 2024-04-18T23:04:39.231 DEBUG:teuthology.orchestra.run.smithi016:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | head -n 1 2024-04-18T23:04:39.264 INFO:tasks.cephadm:Compressing logs... 2024-04-18T23:04:39.264 DEBUG:teuthology.orchestra.run.smithi016:> 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-04-18T23:04:39.308 DEBUG:teuthology.orchestra.run.smithi055:> 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-04-18T23:04:39.311 DEBUG:teuthology.orchestra.run.smithi069:> 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-04-18T23:04:39.319 INFO:teuthology.orchestra.run.smithi016.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-04-18T23:04:39.323 INFO:teuthology.orchestra.run.smithi055.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-04-18T23:04:39.324 INFO:teuthology.orchestra.run.smithi069.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-04-18T23:04:39.329 INFO:teuthology.orchestra.run.smithi055.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-18T23:04:39.330 INFO:teuthology.orchestra.run.smithi055.stderr:gzip -5 --verbose -- /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-osd.2.log 2024-04-18T23:04:39.332 INFO:teuthology.orchestra.run.smithi016.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-18T23:04:39.332 INFO:teuthology.orchestra.run.smithi016.stderr:gzip -5 --verbose -- /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-osd.0.log 2024-04-18T23:04:39.332 INFO:teuthology.orchestra.run.smithi016.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-mon.a.log 2024-04-18T23:04:39.332 INFO:teuthology.orchestra.run.smithi016.stderr:/var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph.cephadm.log 2024-04-18T23:04:39.332 INFO:teuthology.orchestra.run.smithi016.stderr:/var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-mon.a.log: gzip -5 --verbose -- /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-osd.1.log 2024-04-18T23:04:39.332 INFO:teuthology.orchestra.run.smithi016.stderr:/var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph.log 2024-04-18T23:04:39.334 INFO:teuthology.orchestra.run.smithi055.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph.cephadm.log 2024-04-18T23:04:39.334 INFO:teuthology.orchestra.run.smithi055.stderr:/var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-osd.3.log 2024-04-18T23:04:39.334 INFO:teuthology.orchestra.run.smithi055.stderr:gzip -5 --verbose -- /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph.log 2024-04-18T23:04:39.334 INFO:teuthology.orchestra.run.smithi055.stderr:/var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph.cephadm.log: /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-osd.3.log: gzip -5 --verbose -- /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-volume.log 2024-04-18T23:04:39.334 INFO:teuthology.orchestra.run.smithi055.stderr: 82.1% -- replaced with /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph.cephadm.log.gz 2024-04-18T23:04:39.334 INFO:teuthology.orchestra.run.smithi055.stderr: 89.4% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-18T23:04:39.334 INFO:teuthology.orchestra.run.smithi055.stderr:/var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph.log: gzip -5 --verbose -- /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-mgr.b.log 2024-04-18T23:04:39.334 INFO:teuthology.orchestra.run.smithi055.stderr:/var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph.audit.log 2024-04-18T23:04:39.334 INFO:teuthology.orchestra.run.smithi055.stderr:/var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-mgr.b.log: gzip -5 --verbose -- /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-mon.b.log 2024-04-18T23:04:39.334 INFO:teuthology.orchestra.run.smithi055.stderr: 86.2% -- replaced with /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph.log.gz 2024-04-18T23:04:39.336 INFO:teuthology.orchestra.run.smithi016.stderr: 82.7% -- replaced with /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph.cephadm.log.gz 2024-04-18T23:04:39.336 INFO:teuthology.orchestra.run.smithi016.stderr:/var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-osd.1.log: gzip -5 --verbose -- /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-volume.log 2024-04-18T23:04:39.336 INFO:teuthology.orchestra.run.smithi016.stderr:/var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph.log: gzip -5 --verbose -- /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph.audit.log 2024-04-18T23:04:39.337 INFO:teuthology.orchestra.run.smithi055.stderr:/var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph.audit.log: /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-mon.b.log: 89.8% -- replaced with /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph.audit.log.gz 2024-04-18T23:04:39.337 INFO:teuthology.orchestra.run.smithi055.stderr: 91.6% -- replaced with /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-mgr.b.log.gz 2024-04-18T23:04:39.338 INFO:teuthology.orchestra.run.smithi016.stderr:/var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-mgr.a.log 2024-04-18T23:04:39.338 INFO:teuthology.orchestra.run.smithi016.stderr:/var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph.audit.log: 86.4% -- replaced with /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph.log.gz 2024-04-18T23:04:39.338 INFO:teuthology.orchestra.run.smithi016.stderr: 89.6% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-18T23:04:39.338 INFO:teuthology.orchestra.run.smithi016.stderr:/var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-mgr.a.log: 89.5% -- replaced with /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph.audit.log.gz 2024-04-18T23:04:39.339 INFO:teuthology.orchestra.run.smithi055.stderr: 91.1% -- replaced with /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-volume.log.gz 2024-04-18T23:04:39.340 INFO:teuthology.orchestra.run.smithi016.stderr: 91.3% -- replaced with /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-volume.log.gz 2024-04-18T23:04:39.393 INFO:teuthology.orchestra.run.smithi016.stderr: 93.2% -- replaced with /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-osd.1.log.gz 2024-04-18T23:04:39.396 INFO:teuthology.orchestra.run.smithi016.stderr: 93.1% -- replaced with /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-osd.0.log.gz 2024-04-18T23:04:39.402 INFO:teuthology.orchestra.run.smithi055.stderr: 92.9% -- replaced with /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-osd.3.log.gz 2024-04-18T23:04:39.424 INFO:teuthology.orchestra.run.smithi055.stderr: 93.4% -- replaced with /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-osd.2.log.gz 2024-04-18T23:04:39.426 INFO:teuthology.orchestra.run.smithi016.stderr: 90.0% -- replaced with /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-mgr.a.log.gz 2024-04-18T23:04:39.432 INFO:teuthology.orchestra.run.smithi069.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-18T23:04:39.433 INFO:teuthology.orchestra.run.smithi069.stderr:gzip -5 --verbose -- /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph.cephadm.log 2024-04-18T23:04:39.434 INFO:teuthology.orchestra.run.smithi069.stderr:gzip -5 --verbose -- /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-osd.5.log 2024-04-18T23:04:39.434 INFO:teuthology.orchestra.run.smithi069.stderr:/var/log/ceph/cephadm.log: gzip/var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph.cephadm.log: -5 --verbose -- /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph.log 2024-04-18T23:04:39.434 INFO:teuthology.orchestra.run.smithi069.stderr:/var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-osd.5.log: 80.1% -- replaced with /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph.cephadm.log.gz 2024-04-18T23:04:39.434 INFO:teuthology.orchestra.run.smithi069.stderr:gzip -5 --verbose -- /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-volume.log 2024-04-18T23:04:39.435 INFO:teuthology.orchestra.run.smithi069.stderr:/var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph.log: gzip -5 --verbose -- /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-mon.c.log 2024-04-18T23:04:39.435 INFO:teuthology.orchestra.run.smithi069.stderr:/var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph.audit.log 2024-04-18T23:04:39.436 INFO:teuthology.orchestra.run.smithi069.stderr:/var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-mon.c.log: gzip -5 --verbose -- /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-osd.4.log 2024-04-18T23:04:39.436 INFO:teuthology.orchestra.run.smithi069.stderr: 86.8% -- replaced with /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph.log.gz 2024-04-18T23:04:39.437 INFO:teuthology.orchestra.run.smithi069.stderr:/var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph.audit.log: 88.5% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-18T23:04:39.437 INFO:teuthology.orchestra.run.smithi069.stderr:/var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-osd.4.log: 89.7% -- replaced with /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph.audit.log.gz 2024-04-18T23:04:39.445 INFO:teuthology.orchestra.run.smithi069.stderr: 91.1% -- replaced with /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-volume.log.gz 2024-04-18T23:04:39.447 INFO:teuthology.orchestra.run.smithi055.stderr: 92.6% -- replaced with /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-mon.b.log.gz 2024-04-18T23:04:39.448 INFO:teuthology.orchestra.run.smithi055.stderr: 2024-04-18T23:04:39.448 INFO:teuthology.orchestra.run.smithi055.stderr:real 0m0.135s 2024-04-18T23:04:39.448 INFO:teuthology.orchestra.run.smithi055.stderr:user 0m0.299s 2024-04-18T23:04:39.449 INFO:teuthology.orchestra.run.smithi055.stderr:sys 0m0.028s 2024-04-18T23:04:39.469 INFO:teuthology.orchestra.run.smithi069.stderr: 92.7% -- replaced with /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-osd.5.log.gz 2024-04-18T23:04:39.474 INFO:teuthology.orchestra.run.smithi069.stderr: 92.8% -- replaced with /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-osd.4.log.gz 2024-04-18T23:04:39.520 INFO:teuthology.orchestra.run.smithi069.stderr: 93.1% -- replaced with /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-mon.c.log.gz 2024-04-18T23:04:39.522 INFO:teuthology.orchestra.run.smithi069.stderr: 2024-04-18T23:04:39.522 INFO:teuthology.orchestra.run.smithi069.stderr:real 0m0.206s 2024-04-18T23:04:39.522 INFO:teuthology.orchestra.run.smithi069.stderr:user 0m0.186s 2024-04-18T23:04:39.522 INFO:teuthology.orchestra.run.smithi069.stderr:sys 0m0.015s 2024-04-18T23:04:39.648 INFO:teuthology.orchestra.run.smithi016.stderr: 90.9% -- replaced with /var/log/ceph/1266e2ee-fdd6-11ee-bc92-c7b262605968/ceph-mon.a.log.gz 2024-04-18T23:04:39.650 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-18T23:04:39.650 INFO:teuthology.orchestra.run.smithi016.stderr:real 0m0.339s 2024-04-18T23:04:39.650 INFO:teuthology.orchestra.run.smithi016.stderr:user 0m0.535s 2024-04-18T23:04:39.650 INFO:teuthology.orchestra.run.smithi016.stderr:sys 0m0.041s 2024-04-18T23:04:39.650 INFO:tasks.cephadm:Archiving logs... 2024-04-18T23:04:39.651 DEBUG:teuthology.misc:Transferring archived files from smithi016:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-18_21:00:02-rados-squid-distro-default-smithi/7662605/remote/smithi016/log 2024-04-18T23:04:39.651 DEBUG:teuthology.orchestra.run.smithi016:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-18T23:04:39.779 DEBUG:teuthology.misc:Transferring archived files from smithi055:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-18_21:00:02-rados-squid-distro-default-smithi/7662605/remote/smithi055/log 2024-04-18T23:04:39.779 DEBUG:teuthology.orchestra.run.smithi055:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-18T23:04:39.837 DEBUG:teuthology.misc:Transferring archived files from smithi069:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-18_21:00:02-rados-squid-distro-default-smithi/7662605/remote/smithi069/log 2024-04-18T23:04:39.837 DEBUG:teuthology.orchestra.run.smithi069:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-18T23:04:39.875 INFO:tasks.cephadm:Removing cluster... 2024-04-18T23:04:39.875 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 --force 2024-04-18T23:04:40.040 INFO:teuthology.orchestra.run.smithi016.stdout:Deleting cluster with fsid: 1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T23:04:41.350 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 --force 2024-04-18T23:04:41.525 INFO:teuthology.orchestra.run.smithi055.stdout:Deleting cluster with fsid: 1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T23:04:42.867 DEBUG:teuthology.orchestra.run.smithi069:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 1266e2ee-fdd6-11ee-bc92-c7b262605968 --force 2024-04-18T23:04:43.034 INFO:teuthology.orchestra.run.smithi069.stdout:Deleting cluster with fsid: 1266e2ee-fdd6-11ee-bc92-c7b262605968 2024-04-18T23:04:44.357 INFO:tasks.cephadm:Removing cephadm ... 2024-04-18T23:04:44.357 DEBUG:teuthology.orchestra.run.smithi016:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-18T23:04:44.363 DEBUG:teuthology.orchestra.run.smithi055:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-18T23:04:44.370 DEBUG:teuthology.orchestra.run.smithi069:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-18T23:04:44.375 INFO:tasks.cephadm:Teardown complete 2024-04-18T23:04:44.376 DEBUG:teuthology.run_tasks:Unwinding manager install 2024-04-18T23:04:44.385 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-04-18T23:04:44.386 DEBUG:teuthology.orchestra.run.smithi016:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-18T23:04:44.409 DEBUG:teuthology.orchestra.run.smithi055:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-18T23:04:44.414 DEBUG:teuthology.orchestra.run.smithi069:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-18T23:04:44.496 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-04-18T23:04:44.505 INFO:teuthology.task.clock:Checking final clock skew... 2024-04-18T23:04:44.505 DEBUG:teuthology.orchestra.run.smithi016:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-18T23:04:44.507 DEBUG:teuthology.orchestra.run.smithi055:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-18T23:04:44.510 DEBUG:teuthology.orchestra.run.smithi069:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-18T23:04:44.517 INFO:teuthology.orchestra.run.smithi016.stdout: remote refid st t when poll reach delay offset jitter 2024-04-18T23:04:44.517 INFO:teuthology.orchestra.run.smithi016.stdout:============================================================================== 2024-04-18T23:04:44.517 INFO:teuthology.orchestra.run.smithi016.stdout:+hv01.front.sepi 67.205.162.81 3 u 46 64 377 0.101 -2.113 0.754 2024-04-18T23:04:44.517 INFO:teuthology.orchestra.run.smithi016.stdout:*hv02.front.sepi 63.231.80.2 3 u 47 64 377 0.083 -0.617 0.719 2024-04-18T23:04:44.517 INFO:teuthology.orchestra.run.smithi016.stdout:+hv03.front.sepi 74.6.168.72 3 u 49 64 377 0.072 -0.403 0.779 2024-04-18T23:04:44.517 INFO:teuthology.orchestra.run.smithi016.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-04-18T23:04:44.520 INFO:teuthology.orchestra.run.smithi055.stdout: remote refid st t when poll reach delay offset jitter 2024-04-18T23:04:44.520 INFO:teuthology.orchestra.run.smithi055.stdout:============================================================================== 2024-04-18T23:04:44.521 INFO:teuthology.orchestra.run.smithi055.stdout:+hv01.front.sepi 67.205.162.81 3 u 51 64 377 0.093 -2.209 2.619 2024-04-18T23:04:44.521 INFO:teuthology.orchestra.run.smithi055.stdout:*hv02.front.sepi 63.231.80.2 3 u 55 64 377 0.079 -4.385 2.233 2024-04-18T23:04:44.521 INFO:teuthology.orchestra.run.smithi055.stdout:+hv03.front.sepi 74.6.168.72 3 u 47 64 377 0.092 -4.338 2.292 2024-04-18T23:04:44.521 INFO:teuthology.orchestra.run.smithi055.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-04-18T23:04:44.524 INFO:teuthology.orchestra.run.smithi069.stdout: remote refid st t when poll reach delay offset jitter 2024-04-18T23:04:44.524 INFO:teuthology.orchestra.run.smithi069.stdout:============================================================================== 2024-04-18T23:04:44.524 INFO:teuthology.orchestra.run.smithi069.stdout:*hv01.front.sepi 67.205.162.81 3 u 50 64 377 0.084 -4.348 1.436 2024-04-18T23:04:44.524 INFO:teuthology.orchestra.run.smithi069.stdout:+hv02.front.sepi 63.231.80.2 3 u 56 64 377 0.117 -3.613 1.667 2024-04-18T23:04:44.524 INFO:teuthology.orchestra.run.smithi069.stdout:+hv03.front.sepi 74.6.168.72 3 u 51 64 377 0.096 -0.754 2.490 2024-04-18T23:04:44.524 INFO:teuthology.orchestra.run.smithi069.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-04-18T23:04:44.525 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-04-18T23:04:44.534 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-04-18T23:04:44.534 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-04-18T23:04:44.542 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-04-18T23:04:44.550 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-04-18T23:04:44.561 INFO:teuthology.task.internal:Duration was 1405.626281 seconds 2024-04-18T23:04:44.562 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-04-18T23:04:44.571 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-04-18T23:04:44.571 DEBUG:teuthology.orchestra.run.smithi016:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-18T23:04:44.574 DEBUG:teuthology.orchestra.run.smithi055:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-18T23:04:44.576 DEBUG:teuthology.orchestra.run.smithi069:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-18T23:04:44.612 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-04-18T23:04:44.612 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi016.front.sepia.ceph.com 2024-04-18T23:04:44.612 DEBUG:teuthology.orchestra.run.smithi016:> 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-04-18T23:04:44.661 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi055.front.sepia.ceph.com 2024-04-18T23:04:44.661 DEBUG:teuthology.orchestra.run.smithi055:> 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-04-18T23:04:44.671 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi069.front.sepia.ceph.com 2024-04-18T23:04:44.672 DEBUG:teuthology.orchestra.run.smithi069:> 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-04-18T23:04:44.681 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-04-18T23:04:44.681 DEBUG:teuthology.orchestra.run.smithi016:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-18T23:04:44.705 DEBUG:teuthology.orchestra.run.smithi055:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-18T23:04:44.714 DEBUG:teuthology.orchestra.run.smithi069:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-18T23:04:44.755 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-04-18T23:04:44.755 DEBUG:teuthology.orchestra.run.smithi016:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-18T23:04:44.785 DEBUG:teuthology.orchestra.run.smithi055:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-18T23:04:44.790 DEBUG:teuthology.orchestra.run.smithi069:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-18T23:04:44.871 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-04-18T23:04:44.881 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-04-18T23:04:44.881 DEBUG:teuthology.orchestra.run.smithi016:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-18T23:04:44.895 DEBUG:teuthology.orchestra.run.smithi055:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-18T23:04:44.909 DEBUG:teuthology.orchestra.run.smithi069:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-18T23:04:44.921 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-04-18T23:04:44.931 DEBUG:teuthology.orchestra.run.smithi016:> 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-04-18T23:04:44.940 DEBUG:teuthology.orchestra.run.smithi055:> 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-04-18T23:04:44.950 INFO:teuthology.orchestra.run.smithi016.stdout:kernel.core_pattern = core 2024-04-18T23:04:44.954 DEBUG:teuthology.orchestra.run.smithi069:> 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-04-18T23:04:44.964 INFO:teuthology.orchestra.run.smithi055.stdout:kernel.core_pattern = core 2024-04-18T23:04:44.971 INFO:teuthology.orchestra.run.smithi069.stdout:kernel.core_pattern = core 2024-04-18T23:04:44.998 DEBUG:teuthology.orchestra.run.smithi016:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-18T23:04:45.023 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-18T23:04:45.023 DEBUG:teuthology.orchestra.run.smithi055:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-18T23:04:45.028 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-18T23:04:45.029 DEBUG:teuthology.orchestra.run.smithi069:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-18T23:04:45.046 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-18T23:04:45.047 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-04-18T23:04:45.056 INFO:teuthology.task.internal:Transferring archived files... 2024-04-18T23:04:45.057 DEBUG:teuthology.misc:Transferring archived files from smithi016:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-18_21:00:02-rados-squid-distro-default-smithi/7662605/remote/smithi016 2024-04-18T23:04:45.057 DEBUG:teuthology.orchestra.run.smithi016:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-18T23:04:45.090 DEBUG:teuthology.misc:Transferring archived files from smithi055:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-18_21:00:02-rados-squid-distro-default-smithi/7662605/remote/smithi055 2024-04-18T23:04:45.090 DEBUG:teuthology.orchestra.run.smithi055:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-18T23:04:45.112 DEBUG:teuthology.misc:Transferring archived files from smithi069:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-18_21:00:02-rados-squid-distro-default-smithi/7662605/remote/smithi069 2024-04-18T23:04:45.113 DEBUG:teuthology.orchestra.run.smithi069:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-18T23:04:45.134 INFO:teuthology.task.internal:Removing archive directory... 2024-04-18T23:04:45.134 DEBUG:teuthology.orchestra.run.smithi016:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-18T23:04:45.136 DEBUG:teuthology.orchestra.run.smithi055:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-18T23:04:45.150 DEBUG:teuthology.orchestra.run.smithi069:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-18T23:04:45.179 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-04-18T23:04:45.191 INFO:teuthology.task.internal:Not uploading archives. 2024-04-18T23:04:45.191 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-04-18T23:04:45.200 INFO:teuthology.task.internal:Tidying up after the test... 2024-04-18T23:04:45.200 DEBUG:teuthology.orchestra.run.smithi016:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-18T23:04:45.203 DEBUG:teuthology.orchestra.run.smithi055:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-18T23:04:45.205 DEBUG:teuthology.orchestra.run.smithi069:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-18T23:04:45.207 INFO:teuthology.orchestra.run.smithi016.stdout: 658465 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 18 23:04 /home/ubuntu/cephtest 2024-04-18T23:04:45.209 INFO:teuthology.orchestra.run.smithi055.stdout: 658643 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 18 23:04 /home/ubuntu/cephtest 2024-04-18T23:04:45.228 INFO:teuthology.orchestra.run.smithi069.stdout: 658616 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 18 23:04 /home/ubuntu/cephtest 2024-04-18T23:04:45.229 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-04-18T23:04:45.239 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-04-18T23:04:45.261 INFO:teuthology.run:Summary data: description: rados/cephadm/workunits/{0-distro/ubuntu_22.04 agent/off mon_election/classic task/test_host_drain} duration: 1405.6262814998627 flavor: default owner: scheduled_teuthology@teuthology success: true 2024-04-18T23:04:45.262 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-18T23:04:45.353 INFO:teuthology.run:pass