2024-09-16T05:00:39.421 INFO:root:teuthology version: 1.2.2.dev2+g3752d38 2024-09-16T05:00:39.438 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-16T05:00:39.524 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-09-15_21:00:02-rados-squid-distro-default-smithi/7906112 branch: squid description: rados/cephadm/workunits/{0-distro/ubuntu_22.04 agent/on mon_election/connectivity task/test_host_drain} email: ceph-qa@ceph.com first_in_suite: false job_id: '7906112' kernel: kdb: 1 sha1: distro ktype: distro last_in_suite: false machine_type: smithi name: teuthology-2024-09-15_21:00:02-rados-squid-distro-default-smithi no_nested_subset: false os_type: ubuntu os_version: '22.04' overrides: admin_socket: branch: squid ceph: conf: global: mon election default strategy: 3 mgr: debug mgr: 20 debug ms: 1 mgr/cephadm/use_agent: true mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) - MON_DOWN - mons down - mon down - out of quorum - CEPHADM_STRAY_HOST - CEPHADM_STRAY_DAEMON - CEPHADM_FAILED_DAEMON log-only-match: - CEPHADM_ sha1: 8921c8ef947807b717db041d85f0761b7914d5fc ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 8921c8ef947807b717db041d85f0761b7914d5fc workunit: branch: squid sha1: ad35db06e8924912f01e32b35576297c0f1352b4 owner: scheduled_teuthology@teuthology priority: 700 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: 5616 sha1: 8921c8ef947807b717db041d85f0761b7914d5fc sleep_before_teardown: 0 subset: 15927/100000 suite: rados suite_branch: squid suite_path: /home/teuthworker/src/git.ceph.com_ceph_ad35db06e8924912f01e32b35576297c0f1352b4/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: ad35db06e8924912f01e32b35576297c0f1352b4 targets: smithi029.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBIBOOYUGDou8Sw+ZzyrI8D8oLEZcRkKZFv2afJ/cYqdx9KCpTked7GesLi4xCdrCpsndRjTFuSkcV1NAiecj6sg= smithi081.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBNCLgEE96PtV33mcyMm5eqMhJLBicMgpP4TuLGo7NRwVim+P6Av6G+y/3BYC4JWOfqoIbC2Xnp09oLBsQydD6tE= smithi167.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFSWJT9MaA9Qbec5jdjWYYKwC4VYqqklPiIBwKxEJVE4GLpWbXZPvfzwMB6BfgH0oEKM/BcnHe59aHknt7k/4MA= tasks: - install: null - cephadm: null - cephadm.shell: host.a: - "set -ex\nHOSTNAMES=$(ceph orch host ls --format json | jq -r '.[] | .hostname')\n\ for host in $HOSTNAMES; do\n # find the hostname for \"host.c\" which will\ \ have no mgr\n HAS_MGRS=$(ceph orch ps --hostname ${host} --format json |\ \ jq 'any(.daemon_type == \"mgr\")')\n if [ \"$HAS_MGRS\" == \"false\" ]; then\n\ \ HOST_C=\"${host}\"\n fi\ndone\n# One last thing to worry about before\ \ draining the host\n# is that the teuthology test tends to put the explicit\n\ # hostnames in the placement for the mon service.\n# We want to make sure we\ \ can drain without providing\n# --force and there is a check for the host being\ \ removed\n# being listed explicitly in the placements. Therefore,\n# we should\ \ remove it from the mon placement.\nceph orch ls mon --export > mon.yaml\n\ sed /\"$HOST_C\"/d mon.yaml > mon_adjusted.yaml\nceph orch apply -i mon_adjusted.yaml\n\ # now drain that host\nceph orch host drain $HOST_C --zap-osd-devices\n# wait\ \ for drain to complete\nHOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C)\n\ while [ \"$HOST_C_DAEMONS\" != \"No daemons reported\" ]; do\n sleep 15\n \ \ HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C)\ndone\n# we want to check\ \ the ability to remove the host from\n# the CRUSH map, so we should first verify\ \ the host is in\n# the CRUSH map.\nceph osd getcrushmap -o compiled-crushmap\n\ crushtool -d compiled-crushmap -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\n\ if ! grep -q \"$HOST_C\" <<< \"$CRUSH_MAP\"; then\n printf \"Expected to see\ \ $HOST_C in CRUSH map. Saw:\\n\\n$CRUSH_MAP\"\n exit 1\nfi\n# If the drain\ \ was successful, we should be able to remove the\n# host without force with\ \ no issues. If there are still daemons\n# we will get a response telling us\ \ to drain the host and a\n# non-zero return code\nceph orch host rm $HOST_C\ \ --rm-crush-entry\n# verify we've successfully removed the host from the CRUSH\ \ map\nsleep 30\nceph osd getcrushmap -o compiled-crushmap\ncrushtool -d compiled-crushmap\ \ -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\nif grep -q \"$HOST_C\" <<<\ \ \"$CRUSH_MAP\"; then\n printf \"Saw $HOST_C in CRUSH map after it should\ \ have been removed.\\n\\n$CRUSH_MAP\"\n exit 1\nfi\n" teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: 3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a timestamp: 2024-09-15_21:00:02 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.3401856 2024-09-16T05:00:39.524 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_ad35db06e8924912f01e32b35576297c0f1352b4/qa; will attempt to use it 2024-09-16T05:00:39.525 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_ad35db06e8924912f01e32b35576297c0f1352b4/qa/tasks 2024-09-16T05:00:39.526 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-09-16T05:00:39.528 INFO:teuthology.task.internal:Checking packages... 2024-09-16T05:00:39.553 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash '8921c8ef947807b717db041d85f0761b7914d5fc' 2024-09-16T05:00:39.553 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-09-16T05:00:39.553 INFO:teuthology.packaging:ref: None 2024-09-16T05:00:39.554 INFO:teuthology.packaging:tag: None 2024-09-16T05:00:39.554 INFO:teuthology.packaging:branch: squid 2024-09-16T05:00:39.554 INFO:teuthology.packaging:sha1: 8921c8ef947807b717db041d85f0761b7914d5fc 2024-09-16T05:00:39.554 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&ref=squid 2024-09-16T05:00:39.777 INFO:teuthology.task.internal:Found packages for ceph version 19.1.1-326-g8921c8ef-1jammy 2024-09-16T05:00:39.778 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-09-16T05:00:39.785 INFO:teuthology.task.internal:no buildpackages task found 2024-09-16T05:00:39.785 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-09-16T05:00:39.792 INFO:teuthology.task.internal:Saving configuration 2024-09-16T05:00:39.805 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-09-16T05:00:39.816 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-09-16T05:00:39.838 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi029.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-15_21:00:02-rados-squid-distro-default-smithi/7906112', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-16 04:53:59.520045', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILKvM8hbFIrSH80qvh+HGJ/gbX8U2LurUO3BW1GZPR9h'} 2024-09-16T05:00:39.859 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi081.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-15_21:00:02-rados-squid-distro-default-smithi/7906112', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-16 04:53:59.516904', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILoA/yGNYP/k2MYFRiq4zMrUXFQRuzDPtKuO/7oVoFy6'} 2024-09-16T05:00:39.880 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi167.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-15_21:00:02-rados-squid-distro-default-smithi/7906112', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-16 04:53:59.518561', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOjhTk3ImGI2hjFLELKpq7hYsEOPaXcLb+OkizuvLBK9'} 2024-09-16T05:00:39.880 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-09-16T05:00:39.887 INFO:teuthology.task.internal:roles: ubuntu@smithi029.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-09-16T05:00:39.887 INFO:teuthology.task.internal:roles: ubuntu@smithi081.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-09-16T05:00:39.887 INFO:teuthology.task.internal:roles: ubuntu@smithi167.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-09-16T05:00:39.887 INFO:teuthology.run_tasks:Running task console_log... 2024-09-16T05:00:39.971 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f7cd426ee60>, signals=[15]) 2024-09-16T05:00:39.972 INFO:teuthology.run_tasks:Running task internal.connect... 2024-09-16T05:00:39.978 INFO:teuthology.task.internal:Opening connections... 2024-09-16T05:00:39.978 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi029.front.sepia.ceph.com 2024-09-16T05:00:39.979 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi029.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T05:00:40.063 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi081.front.sepia.ceph.com 2024-09-16T05:00:40.064 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi081.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T05:00:40.147 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi167.front.sepia.ceph.com 2024-09-16T05:00:40.148 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi167.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T05:00:40.247 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-09-16T05:00:40.256 DEBUG:teuthology.orchestra.run.smithi029:> uname -m 2024-09-16T05:00:40.261 INFO:teuthology.orchestra.run.smithi029.stdout:x86_64 2024-09-16T05:00:40.261 DEBUG:teuthology.orchestra.run.smithi029:> cat /etc/os-release 2024-09-16T05:00:40.308 INFO:teuthology.orchestra.run.smithi029.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-16T05:00:40.309 INFO:teuthology.orchestra.run.smithi029.stdout:NAME="Ubuntu" 2024-09-16T05:00:40.309 INFO:teuthology.orchestra.run.smithi029.stdout:VERSION_ID="22.04" 2024-09-16T05:00:40.309 INFO:teuthology.orchestra.run.smithi029.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-16T05:00:40.309 INFO:teuthology.orchestra.run.smithi029.stdout:VERSION_CODENAME=jammy 2024-09-16T05:00:40.309 INFO:teuthology.orchestra.run.smithi029.stdout:ID=ubuntu 2024-09-16T05:00:40.309 INFO:teuthology.orchestra.run.smithi029.stdout:ID_LIKE=debian 2024-09-16T05:00:40.309 INFO:teuthology.orchestra.run.smithi029.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-16T05:00:40.309 INFO:teuthology.orchestra.run.smithi029.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-16T05:00:40.309 INFO:teuthology.orchestra.run.smithi029.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-16T05:00:40.310 INFO:teuthology.orchestra.run.smithi029.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-16T05:00:40.310 INFO:teuthology.orchestra.run.smithi029.stdout:UBUNTU_CODENAME=jammy 2024-09-16T05:00:40.310 INFO:teuthology.lock.ops:Updating smithi029.front.sepia.ceph.com on lock server 2024-09-16T05:00:40.333 DEBUG:teuthology.orchestra.run.smithi081:> uname -m 2024-09-16T05:00:40.339 INFO:teuthology.orchestra.run.smithi081.stdout:x86_64 2024-09-16T05:00:40.339 DEBUG:teuthology.orchestra.run.smithi081:> cat /etc/os-release 2024-09-16T05:00:40.385 INFO:teuthology.orchestra.run.smithi081.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-16T05:00:40.385 INFO:teuthology.orchestra.run.smithi081.stdout:NAME="Ubuntu" 2024-09-16T05:00:40.386 INFO:teuthology.orchestra.run.smithi081.stdout:VERSION_ID="22.04" 2024-09-16T05:00:40.386 INFO:teuthology.orchestra.run.smithi081.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-16T05:00:40.386 INFO:teuthology.orchestra.run.smithi081.stdout:VERSION_CODENAME=jammy 2024-09-16T05:00:40.386 INFO:teuthology.orchestra.run.smithi081.stdout:ID=ubuntu 2024-09-16T05:00:40.386 INFO:teuthology.orchestra.run.smithi081.stdout:ID_LIKE=debian 2024-09-16T05:00:40.386 INFO:teuthology.orchestra.run.smithi081.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-16T05:00:40.386 INFO:teuthology.orchestra.run.smithi081.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-16T05:00:40.386 INFO:teuthology.orchestra.run.smithi081.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-16T05:00:40.386 INFO:teuthology.orchestra.run.smithi081.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-16T05:00:40.386 INFO:teuthology.orchestra.run.smithi081.stdout:UBUNTU_CODENAME=jammy 2024-09-16T05:00:40.386 INFO:teuthology.lock.ops:Updating smithi081.front.sepia.ceph.com on lock server 2024-09-16T05:00:40.408 DEBUG:teuthology.orchestra.run.smithi167:> uname -m 2024-09-16T05:00:40.413 INFO:teuthology.orchestra.run.smithi167.stdout:x86_64 2024-09-16T05:00:40.413 DEBUG:teuthology.orchestra.run.smithi167:> cat /etc/os-release 2024-09-16T05:00:40.460 INFO:teuthology.orchestra.run.smithi167.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-16T05:00:40.460 INFO:teuthology.orchestra.run.smithi167.stdout:NAME="Ubuntu" 2024-09-16T05:00:40.460 INFO:teuthology.orchestra.run.smithi167.stdout:VERSION_ID="22.04" 2024-09-16T05:00:40.460 INFO:teuthology.orchestra.run.smithi167.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-16T05:00:40.460 INFO:teuthology.orchestra.run.smithi167.stdout:VERSION_CODENAME=jammy 2024-09-16T05:00:40.460 INFO:teuthology.orchestra.run.smithi167.stdout:ID=ubuntu 2024-09-16T05:00:40.460 INFO:teuthology.orchestra.run.smithi167.stdout:ID_LIKE=debian 2024-09-16T05:00:40.460 INFO:teuthology.orchestra.run.smithi167.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-16T05:00:40.460 INFO:teuthology.orchestra.run.smithi167.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-16T05:00:40.461 INFO:teuthology.orchestra.run.smithi167.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-16T05:00:40.461 INFO:teuthology.orchestra.run.smithi167.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-16T05:00:40.461 INFO:teuthology.orchestra.run.smithi167.stdout:UBUNTU_CODENAME=jammy 2024-09-16T05:00:40.461 INFO:teuthology.lock.ops:Updating smithi167.front.sepia.ceph.com on lock server 2024-09-16T05:00:40.483 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-09-16T05:00:40.493 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-09-16T05:00:40.501 INFO:teuthology.task.internal:Checking for old test directory... 2024-09-16T05:00:40.501 DEBUG:teuthology.orchestra.run.smithi029:> test '!' -e /home/ubuntu/cephtest 2024-09-16T05:00:40.504 DEBUG:teuthology.orchestra.run.smithi081:> test '!' -e /home/ubuntu/cephtest 2024-09-16T05:00:40.506 DEBUG:teuthology.orchestra.run.smithi167:> test '!' -e /home/ubuntu/cephtest 2024-09-16T05:00:40.511 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-09-16T05:00:40.516 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-09-16T05:00:40.517 DEBUG:teuthology.orchestra.run.smithi029:> test -z $(ls -A /var/lib/ceph) 2024-09-16T05:00:40.554 DEBUG:teuthology.orchestra.run.smithi081:> test -z $(ls -A /var/lib/ceph) 2024-09-16T05:00:40.556 DEBUG:teuthology.orchestra.run.smithi167:> test -z $(ls -A /var/lib/ceph) 2024-09-16T05:00:40.642 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-09-16T05:00:40.710 INFO:teuthology.run_tasks:Running task kernel... 2024-09-16T05:00:40.727 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-09-16T05:00:40.727 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}, 'host.c': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-09-16T05:00:40.727 DEBUG:teuthology.orchestra.run.smithi029:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-16T05:00:40.728 DEBUG:teuthology.orchestra.run.smithi081:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-16T05:00:40.728 DEBUG:teuthology.orchestra.run.smithi167:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-16T05:00:40.732 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-16T05:00:40.733 DEBUG:teuthology.orchestra.run.smithi081:> uname -r 2024-09-16T05:00:40.734 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-16T05:00:40.734 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-16T05:00:40.734 DEBUG:teuthology.orchestra.run.smithi167:> uname -r 2024-09-16T05:00:40.735 DEBUG:teuthology.orchestra.run.smithi029:> uname -r 2024-09-16T05:00:40.780 INFO:teuthology.orchestra.run.smithi167.stdout:5.15.0-56-generic 2024-09-16T05:00:40.780 INFO:teuthology.task.kernel:Running kernel on smithi167: 5.15.0-56-generic 2024-09-16T05:00:40.780 DEBUG:teuthology.orchestra.run.smithi167:> sudo apt-get clean 2024-09-16T05:00:40.782 INFO:teuthology.orchestra.run.smithi081.stdout:5.15.0-56-generic 2024-09-16T05:00:40.782 INFO:teuthology.orchestra.run.smithi029.stdout:5.15.0-56-generic 2024-09-16T05:00:40.782 INFO:teuthology.task.kernel:Running kernel on smithi081: 5.15.0-56-generic 2024-09-16T05:00:40.782 DEBUG:teuthology.orchestra.run.smithi081:> sudo apt-get clean 2024-09-16T05:00:40.783 INFO:teuthology.task.kernel:Running kernel on smithi029: 5.15.0-56-generic 2024-09-16T05:00:40.783 DEBUG:teuthology.orchestra.run.smithi029:> sudo apt-get clean 2024-09-16T05:00:40.911 DEBUG:teuthology.orchestra.run.smithi167:> sudo apt-get update 2024-09-16T05:00:40.924 DEBUG:teuthology.orchestra.run.smithi081:> sudo apt-get update 2024-09-16T05:00:40.926 DEBUG:teuthology.orchestra.run.smithi029:> sudo apt-get update 2024-09-16T05:00:41.098 INFO:teuthology.orchestra.run.smithi167.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-16T05:00:41.109 INFO:teuthology.orchestra.run.smithi167.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-16T05:00:41.114 INFO:teuthology.orchestra.run.smithi029.stdout:Get:1 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-16T05:00:41.179 INFO:teuthology.orchestra.run.smithi167.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-16T05:00:41.195 INFO:teuthology.orchestra.run.smithi081.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-16T05:00:41.195 INFO:teuthology.orchestra.run.smithi081.stdout:Get:2 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-16T05:00:41.209 INFO:teuthology.orchestra.run.smithi167.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-16T05:00:41.219 INFO:teuthology.orchestra.run.smithi029.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-16T05:00:41.259 INFO:teuthology.orchestra.run.smithi081.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-16T05:00:41.301 INFO:teuthology.orchestra.run.smithi029.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-16T05:00:41.344 INFO:teuthology.orchestra.run.smithi167.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [696 kB] 2024-09-16T05:00:41.357 INFO:teuthology.orchestra.run.smithi029.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [539 kB] 2024-09-16T05:00:41.413 INFO:teuthology.orchestra.run.smithi167.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [2,023 kB] 2024-09-16T05:00:41.426 INFO:teuthology.orchestra.run.smithi029.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,806 kB] 2024-09-16T05:00:41.448 INFO:teuthology.orchestra.run.smithi167.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [352 kB] 2024-09-16T05:00:41.451 INFO:teuthology.orchestra.run.smithi167.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-16T05:00:41.451 INFO:teuthology.orchestra.run.smithi167.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-16T05:00:41.452 INFO:teuthology.orchestra.run.smithi167.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,437 kB] 2024-09-16T05:00:41.463 INFO:teuthology.orchestra.run.smithi029.stdout:Get:6 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [295 kB] 2024-09-16T05:00:41.466 INFO:teuthology.orchestra.run.smithi029.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-16T05:00:41.466 INFO:teuthology.orchestra.run.smithi029.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,377 kB] 2024-09-16T05:00:41.468 INFO:teuthology.orchestra.run.smithi167.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [419 kB] 2024-09-16T05:00:41.471 INFO:teuthology.orchestra.run.smithi167.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-16T05:00:41.471 INFO:teuthology.orchestra.run.smithi167.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,124 kB] 2024-09-16T05:00:41.479 INFO:teuthology.orchestra.run.smithi167.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [732 kB] 2024-09-16T05:00:41.485 INFO:teuthology.orchestra.run.smithi167.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-16T05:00:41.485 INFO:teuthology.orchestra.run.smithi029.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-16T05:00:41.486 INFO:teuthology.orchestra.run.smithi029.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [409 kB] 2024-09-16T05:00:41.487 INFO:teuthology.orchestra.run.smithi167.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.1 kB] 2024-09-16T05:00:41.487 INFO:teuthology.orchestra.run.smithi167.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-16T05:00:41.489 INFO:teuthology.orchestra.run.smithi029.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-16T05:00:41.489 INFO:teuthology.orchestra.run.smithi029.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [627 kB] 2024-09-16T05:00:41.494 INFO:teuthology.orchestra.run.smithi029.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [902 kB] 2024-09-16T05:00:41.499 INFO:teuthology.orchestra.run.smithi029.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [176 kB] 2024-09-16T05:00:41.501 INFO:teuthology.orchestra.run.smithi029.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.2 kB] 2024-09-16T05:00:41.501 INFO:teuthology.orchestra.run.smithi029.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-16T05:00:41.501 INFO:teuthology.orchestra.run.smithi029.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-16T05:00:41.516 INFO:teuthology.orchestra.run.smithi167.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-16T05:00:41.516 INFO:teuthology.orchestra.run.smithi167.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-16T05:00:41.517 INFO:teuthology.orchestra.run.smithi167.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-16T05:00:41.517 INFO:teuthology.orchestra.run.smithi167.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-16T05:00:41.517 INFO:teuthology.orchestra.run.smithi167.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-16T05:00:41.517 INFO:teuthology.orchestra.run.smithi029.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-16T05:00:41.517 INFO:teuthology.orchestra.run.smithi029.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-16T05:00:41.518 INFO:teuthology.orchestra.run.smithi167.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-16T05:00:41.518 INFO:teuthology.orchestra.run.smithi167.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-09-16T05:00:41.518 INFO:teuthology.orchestra.run.smithi167.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-16T05:00:41.535 INFO:teuthology.orchestra.run.smithi167.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-16T05:00:41.536 INFO:teuthology.orchestra.run.smithi167.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-16T05:00:41.536 INFO:teuthology.orchestra.run.smithi167.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [672 B] 2024-09-16T05:00:41.614 INFO:teuthology.orchestra.run.smithi081.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-16T05:00:41.633 INFO:teuthology.orchestra.run.smithi081.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,806 kB] 2024-09-16T05:00:41.657 INFO:teuthology.orchestra.run.smithi029.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-16T05:00:41.663 INFO:teuthology.orchestra.run.smithi167.stdout:Get:29 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,806 kB] 2024-09-16T05:00:41.753 INFO:teuthology.orchestra.run.smithi081.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [696 kB] 2024-09-16T05:00:41.795 INFO:teuthology.orchestra.run.smithi029.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [2,023 kB] 2024-09-16T05:00:41.956 INFO:teuthology.orchestra.run.smithi081.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [2,023 kB] 2024-09-16T05:00:42.054 INFO:teuthology.orchestra.run.smithi081.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [539 kB] 2024-09-16T05:00:42.074 INFO:teuthology.orchestra.run.smithi081.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [295 kB] 2024-09-16T05:00:42.079 INFO:teuthology.orchestra.run.smithi081.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-16T05:00:42.080 INFO:teuthology.orchestra.run.smithi081.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,377 kB] 2024-09-16T05:00:42.081 INFO:teuthology.orchestra.run.smithi167.stdout:Get:30 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [539 kB] 2024-09-16T05:00:42.098 INFO:teuthology.orchestra.run.smithi167.stdout:Get:31 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [295 kB] 2024-09-16T05:00:42.105 INFO:teuthology.orchestra.run.smithi081.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [352 kB] 2024-09-16T05:00:42.107 INFO:teuthology.orchestra.run.smithi167.stdout:Get:32 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-16T05:00:42.107 INFO:teuthology.orchestra.run.smithi167.stdout:Get:33 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-16T05:00:42.109 INFO:teuthology.orchestra.run.smithi167.stdout:Get:34 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,377 kB] 2024-09-16T05:00:42.113 INFO:teuthology.orchestra.run.smithi029.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [696 kB] 2024-09-16T05:00:42.124 INFO:teuthology.orchestra.run.smithi081.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-16T05:00:42.125 INFO:teuthology.orchestra.run.smithi081.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-16T05:00:42.127 INFO:teuthology.orchestra.run.smithi081.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,437 kB] 2024-09-16T05:00:42.149 INFO:teuthology.orchestra.run.smithi029.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [352 kB] 2024-09-16T05:00:42.163 INFO:teuthology.orchestra.run.smithi029.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-16T05:00:42.164 INFO:teuthology.orchestra.run.smithi029.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,437 kB] 2024-09-16T05:00:42.179 INFO:teuthology.orchestra.run.smithi081.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-16T05:00:42.180 INFO:teuthology.orchestra.run.smithi081.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [409 kB] 2024-09-16T05:00:42.191 INFO:teuthology.orchestra.run.smithi081.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-16T05:00:42.205 INFO:teuthology.orchestra.run.smithi167.stdout:Get:35 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [409 kB] 2024-09-16T05:00:42.206 INFO:teuthology.orchestra.run.smithi081.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [902 kB] 2024-09-16T05:00:42.216 INFO:teuthology.orchestra.run.smithi167.stdout:Get:36 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-16T05:00:42.216 INFO:teuthology.orchestra.run.smithi167.stdout:Get:37 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [627 kB] 2024-09-16T05:00:42.221 INFO:teuthology.orchestra.run.smithi081.stdout:Get:20 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [627 kB] 2024-09-16T05:00:42.231 INFO:teuthology.orchestra.run.smithi081.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [419 kB] 2024-09-16T05:00:42.232 INFO:teuthology.orchestra.run.smithi081.stdout:Get:22 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [176 kB] 2024-09-16T05:00:42.233 INFO:teuthology.orchestra.run.smithi167.stdout:Get:38 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [902 kB] 2024-09-16T05:00:42.234 INFO:teuthology.orchestra.run.smithi029.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-16T05:00:42.235 INFO:teuthology.orchestra.run.smithi029.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [419 kB] 2024-09-16T05:00:42.237 INFO:teuthology.orchestra.run.smithi081.stdout:Get:23 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.2 kB] 2024-09-16T05:00:42.238 INFO:teuthology.orchestra.run.smithi081.stdout:Get:24 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-16T05:00:42.238 INFO:teuthology.orchestra.run.smithi081.stdout:Get:25 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-16T05:00:42.243 INFO:teuthology.orchestra.run.smithi081.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-16T05:00:42.243 INFO:teuthology.orchestra.run.smithi081.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,124 kB] 2024-09-16T05:00:42.250 INFO:teuthology.orchestra.run.smithi029.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-16T05:00:42.251 INFO:teuthology.orchestra.run.smithi029.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [732 kB] 2024-09-16T05:00:42.260 INFO:teuthology.orchestra.run.smithi167.stdout:Get:39 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [176 kB] 2024-09-16T05:00:42.264 INFO:teuthology.orchestra.run.smithi167.stdout:Get:40 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.2 kB] 2024-09-16T05:00:42.266 INFO:teuthology.orchestra.run.smithi167.stdout:Get:41 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-16T05:00:42.267 INFO:teuthology.orchestra.run.smithi167.stdout:Get:42 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-16T05:00:42.268 INFO:teuthology.orchestra.run.smithi167.stdout:Get:43 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-16T05:00:42.272 INFO:teuthology.orchestra.run.smithi029.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,124 kB] 2024-09-16T05:00:42.273 INFO:teuthology.orchestra.run.smithi081.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [732 kB] 2024-09-16T05:00:42.294 INFO:teuthology.orchestra.run.smithi081.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-16T05:00:42.301 INFO:teuthology.orchestra.run.smithi081.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.1 kB] 2024-09-16T05:00:42.302 INFO:teuthology.orchestra.run.smithi029.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-16T05:00:42.304 INFO:teuthology.orchestra.run.smithi081.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-16T05:00:42.305 INFO:teuthology.orchestra.run.smithi081.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-16T05:00:42.306 INFO:teuthology.orchestra.run.smithi081.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-16T05:00:42.307 INFO:teuthology.orchestra.run.smithi029.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.1 kB] 2024-09-16T05:00:42.309 INFO:teuthology.orchestra.run.smithi029.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-16T05:00:42.309 INFO:teuthology.orchestra.run.smithi029.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-16T05:00:42.317 INFO:teuthology.orchestra.run.smithi081.stdout:Get:34 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-16T05:00:42.318 INFO:teuthology.orchestra.run.smithi081.stdout:Get:35 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-16T05:00:42.343 INFO:teuthology.orchestra.run.smithi167.stdout:Get:44 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-16T05:00:42.352 INFO:teuthology.orchestra.run.smithi081.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-16T05:00:42.352 INFO:teuthology.orchestra.run.smithi081.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-16T05:00:42.355 INFO:teuthology.orchestra.run.smithi081.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-16T05:00:42.360 INFO:teuthology.orchestra.run.smithi029.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-16T05:00:42.360 INFO:teuthology.orchestra.run.smithi029.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-16T05:00:42.361 INFO:teuthology.orchestra.run.smithi029.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-16T05:00:42.362 INFO:teuthology.orchestra.run.smithi029.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-16T05:00:42.364 INFO:teuthology.orchestra.run.smithi029.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-16T05:00:42.389 INFO:teuthology.orchestra.run.smithi081.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-16T05:00:42.390 INFO:teuthology.orchestra.run.smithi081.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-09-16T05:00:42.390 INFO:teuthology.orchestra.run.smithi081.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-16T05:00:42.391 INFO:teuthology.orchestra.run.smithi081.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-16T05:00:42.391 INFO:teuthology.orchestra.run.smithi081.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-16T05:00:42.433 INFO:teuthology.orchestra.run.smithi081.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [672 B] 2024-09-16T05:00:42.441 INFO:teuthology.orchestra.run.smithi029.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-09-16T05:00:42.442 INFO:teuthology.orchestra.run.smithi029.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-16T05:00:42.442 INFO:teuthology.orchestra.run.smithi029.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-16T05:00:42.443 INFO:teuthology.orchestra.run.smithi029.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-16T05:00:42.444 INFO:teuthology.orchestra.run.smithi029.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [672 B] 2024-09-16T05:00:47.805 INFO:teuthology.orchestra.run.smithi167.stdout:Fetched 16.0 MB in 2s (7,417 kB/s) 2024-09-16T05:00:48.536 INFO:teuthology.orchestra.run.smithi029.stdout:Fetched 16.0 MB in 2s (7,196 kB/s) 2024-09-16T05:00:48.550 INFO:teuthology.orchestra.run.smithi081.stdout:Fetched 16.0 MB in 3s (5,824 kB/s) 2024-09-16T05:00:49.383 INFO:teuthology.orchestra.run.smithi167.stdout:Reading package lists... 2024-09-16T05:00:49.402 DEBUG:teuthology.orchestra.run.smithi167:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-16T05:00:49.463 INFO:teuthology.orchestra.run.smithi167.stdout:Reading package lists... 2024-09-16T05:00:49.673 INFO:teuthology.orchestra.run.smithi167.stdout:Building dependency tree... 2024-09-16T05:00:49.673 INFO:teuthology.orchestra.run.smithi167.stdout:Reading state information... 2024-09-16T05:00:49.847 INFO:teuthology.orchestra.run.smithi167.stdout:The following packages were automatically installed and are no longer required: 2024-09-16T05:00:49.847 INFO:teuthology.orchestra.run.smithi167.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-16T05:00:49.847 INFO:teuthology.orchestra.run.smithi167.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-16T05:00:49.848 INFO:teuthology.orchestra.run.smithi167.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-16T05:00:49.848 INFO:teuthology.orchestra.run.smithi167.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-16T05:00:49.848 INFO:teuthology.orchestra.run.smithi167.stdout: python2.7-minimal 2024-09-16T05:00:49.848 INFO:teuthology.orchestra.run.smithi167.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-16T05:00:49.849 INFO:teuthology.orchestra.run.smithi167.stdout:The following additional packages will be installed: 2024-09-16T05:00:49.849 INFO:teuthology.orchestra.run.smithi167.stdout: linux-generic linux-headers-5.15.0-121 linux-headers-5.15.0-121-generic 2024-09-16T05:00:49.849 INFO:teuthology.orchestra.run.smithi167.stdout: linux-headers-generic linux-image-5.15.0-121-generic 2024-09-16T05:00:49.850 INFO:teuthology.orchestra.run.smithi167.stdout: linux-modules-5.15.0-121-generic linux-modules-extra-5.15.0-121-generic 2024-09-16T05:00:49.851 INFO:teuthology.orchestra.run.smithi167.stdout:Suggested packages: 2024-09-16T05:00:49.851 INFO:teuthology.orchestra.run.smithi167.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-16T05:00:49.851 INFO:teuthology.orchestra.run.smithi167.stdout:Recommended packages: 2024-09-16T05:00:49.851 INFO:teuthology.orchestra.run.smithi167.stdout: thermald 2024-09-16T05:00:49.893 INFO:teuthology.orchestra.run.smithi167.stdout:The following NEW packages will be installed: 2024-09-16T05:00:49.893 INFO:teuthology.orchestra.run.smithi167.stdout: linux-headers-5.15.0-121 linux-headers-5.15.0-121-generic 2024-09-16T05:00:49.893 INFO:teuthology.orchestra.run.smithi167.stdout: linux-image-5.15.0-121-generic linux-modules-5.15.0-121-generic 2024-09-16T05:00:49.893 INFO:teuthology.orchestra.run.smithi167.stdout: linux-modules-extra-5.15.0-121-generic 2024-09-16T05:00:49.895 INFO:teuthology.orchestra.run.smithi167.stdout:The following packages will be upgraded: 2024-09-16T05:00:49.895 INFO:teuthology.orchestra.run.smithi167.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-16T05:00:49.896 INFO:teuthology.orchestra.run.smithi081.stdout:Reading package lists... 2024-09-16T05:00:49.915 DEBUG:teuthology.orchestra.run.smithi081:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-16T05:00:49.977 INFO:teuthology.orchestra.run.smithi081.stdout:Reading package lists... 2024-09-16T05:00:50.073 INFO:teuthology.orchestra.run.smithi167.stdout:3 upgraded, 5 newly installed, 0 to remove and 344 not upgraded. 2024-09-16T05:00:50.074 INFO:teuthology.orchestra.run.smithi167.stdout:Need to get 113 MB of archives. 2024-09-16T05:00:50.074 INFO:teuthology.orchestra.run.smithi167.stdout:After this operation, 584 MB of additional disk space will be used. 2024-09-16T05:00:50.074 INFO:teuthology.orchestra.run.smithi167.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-121-generic amd64 5.15.0-121.131 [22.7 MB] 2024-09-16T05:00:50.166 INFO:teuthology.orchestra.run.smithi081.stdout:Building dependency tree... 2024-09-16T05:00:50.166 INFO:teuthology.orchestra.run.smithi081.stdout:Reading state information... 2024-09-16T05:00:50.329 INFO:teuthology.orchestra.run.smithi081.stdout:The following packages were automatically installed and are no longer required: 2024-09-16T05:00:50.329 INFO:teuthology.orchestra.run.smithi081.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-16T05:00:50.330 INFO:teuthology.orchestra.run.smithi081.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-16T05:00:50.330 INFO:teuthology.orchestra.run.smithi081.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-16T05:00:50.330 INFO:teuthology.orchestra.run.smithi081.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-16T05:00:50.330 INFO:teuthology.orchestra.run.smithi081.stdout: python2.7-minimal 2024-09-16T05:00:50.331 INFO:teuthology.orchestra.run.smithi081.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-16T05:00:50.331 INFO:teuthology.orchestra.run.smithi081.stdout:The following additional packages will be installed: 2024-09-16T05:00:50.331 INFO:teuthology.orchestra.run.smithi081.stdout: linux-generic linux-headers-5.15.0-121 linux-headers-5.15.0-121-generic 2024-09-16T05:00:50.332 INFO:teuthology.orchestra.run.smithi081.stdout: linux-headers-generic linux-image-5.15.0-121-generic 2024-09-16T05:00:50.332 INFO:teuthology.orchestra.run.smithi081.stdout: linux-modules-5.15.0-121-generic linux-modules-extra-5.15.0-121-generic 2024-09-16T05:00:50.333 INFO:teuthology.orchestra.run.smithi081.stdout:Suggested packages: 2024-09-16T05:00:50.333 INFO:teuthology.orchestra.run.smithi081.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-16T05:00:50.334 INFO:teuthology.orchestra.run.smithi081.stdout:Recommended packages: 2024-09-16T05:00:50.334 INFO:teuthology.orchestra.run.smithi081.stdout: thermald 2024-09-16T05:00:50.382 INFO:teuthology.orchestra.run.smithi081.stdout:The following NEW packages will be installed: 2024-09-16T05:00:50.383 INFO:teuthology.orchestra.run.smithi081.stdout: linux-headers-5.15.0-121 linux-headers-5.15.0-121-generic 2024-09-16T05:00:50.383 INFO:teuthology.orchestra.run.smithi081.stdout: linux-image-5.15.0-121-generic linux-modules-5.15.0-121-generic 2024-09-16T05:00:50.383 INFO:teuthology.orchestra.run.smithi081.stdout: linux-modules-extra-5.15.0-121-generic 2024-09-16T05:00:50.384 INFO:teuthology.orchestra.run.smithi081.stdout:The following packages will be upgraded: 2024-09-16T05:00:50.384 INFO:teuthology.orchestra.run.smithi081.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-16T05:00:50.563 INFO:teuthology.orchestra.run.smithi081.stdout:3 upgraded, 5 newly installed, 0 to remove and 344 not upgraded. 2024-09-16T05:00:50.563 INFO:teuthology.orchestra.run.smithi081.stdout:Need to get 113 MB of archives. 2024-09-16T05:00:50.563 INFO:teuthology.orchestra.run.smithi081.stdout:After this operation, 584 MB of additional disk space will be used. 2024-09-16T05:00:50.563 INFO:teuthology.orchestra.run.smithi081.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-121-generic amd64 5.15.0-121.131 [22.7 MB] 2024-09-16T05:00:51.162 INFO:teuthology.orchestra.run.smithi029.stdout:Reading package lists... 2024-09-16T05:00:51.181 DEBUG:teuthology.orchestra.run.smithi029:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-16T05:00:51.292 INFO:teuthology.orchestra.run.smithi029.stdout:Reading package lists... 2024-09-16T05:00:51.498 INFO:teuthology.orchestra.run.smithi167.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-121-generic amd64 5.15.0-121.131 [11.5 MB] 2024-09-16T05:00:51.508 INFO:teuthology.orchestra.run.smithi029.stdout:Building dependency tree... 2024-09-16T05:00:51.509 INFO:teuthology.orchestra.run.smithi029.stdout:Reading state information... 2024-09-16T05:00:51.706 INFO:teuthology.orchestra.run.smithi029.stdout:The following packages were automatically installed and are no longer required: 2024-09-16T05:00:51.706 INFO:teuthology.orchestra.run.smithi029.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-16T05:00:51.707 INFO:teuthology.orchestra.run.smithi029.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-16T05:00:51.707 INFO:teuthology.orchestra.run.smithi029.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-16T05:00:51.707 INFO:teuthology.orchestra.run.smithi029.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-16T05:00:51.708 INFO:teuthology.orchestra.run.smithi029.stdout: python2.7-minimal 2024-09-16T05:00:51.708 INFO:teuthology.orchestra.run.smithi029.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-16T05:00:51.709 INFO:teuthology.orchestra.run.smithi029.stdout:The following additional packages will be installed: 2024-09-16T05:00:51.709 INFO:teuthology.orchestra.run.smithi029.stdout: linux-generic linux-headers-5.15.0-121 linux-headers-5.15.0-121-generic 2024-09-16T05:00:51.709 INFO:teuthology.orchestra.run.smithi029.stdout: linux-headers-generic linux-image-5.15.0-121-generic 2024-09-16T05:00:51.709 INFO:teuthology.orchestra.run.smithi029.stdout: linux-modules-5.15.0-121-generic linux-modules-extra-5.15.0-121-generic 2024-09-16T05:00:51.711 INFO:teuthology.orchestra.run.smithi029.stdout:Suggested packages: 2024-09-16T05:00:51.711 INFO:teuthology.orchestra.run.smithi029.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-16T05:00:51.711 INFO:teuthology.orchestra.run.smithi029.stdout:Recommended packages: 2024-09-16T05:00:51.711 INFO:teuthology.orchestra.run.smithi029.stdout: thermald 2024-09-16T05:00:51.763 INFO:teuthology.orchestra.run.smithi029.stdout:The following NEW packages will be installed: 2024-09-16T05:00:51.763 INFO:teuthology.orchestra.run.smithi029.stdout: linux-headers-5.15.0-121 linux-headers-5.15.0-121-generic 2024-09-16T05:00:51.764 INFO:teuthology.orchestra.run.smithi029.stdout: linux-image-5.15.0-121-generic linux-modules-5.15.0-121-generic 2024-09-16T05:00:51.764 INFO:teuthology.orchestra.run.smithi029.stdout: linux-modules-extra-5.15.0-121-generic 2024-09-16T05:00:51.765 INFO:teuthology.orchestra.run.smithi029.stdout:The following packages will be upgraded: 2024-09-16T05:00:51.765 INFO:teuthology.orchestra.run.smithi029.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-16T05:00:51.818 INFO:teuthology.orchestra.run.smithi029.stdout:3 upgraded, 5 newly installed, 0 to remove and 344 not upgraded. 2024-09-16T05:00:51.818 INFO:teuthology.orchestra.run.smithi029.stdout:Need to get 113 MB of archives. 2024-09-16T05:00:51.819 INFO:teuthology.orchestra.run.smithi029.stdout:After this operation, 584 MB of additional disk space will be used. 2024-09-16T05:00:51.819 INFO:teuthology.orchestra.run.smithi029.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-121-generic amd64 5.15.0-121.131 [22.7 MB] 2024-09-16T05:00:51.850 INFO:teuthology.orchestra.run.smithi167.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-121-generic amd64 5.15.0-121.131 [63.9 MB] 2024-09-16T05:00:52.159 INFO:teuthology.orchestra.run.smithi081.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-121-generic amd64 5.15.0-121.131 [11.5 MB] 2024-09-16T05:00:52.222 INFO:teuthology.orchestra.run.smithi029.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-121-generic amd64 5.15.0-121.131 [11.5 MB] 2024-09-16T05:00:52.415 INFO:teuthology.orchestra.run.smithi081.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-121-generic amd64 5.15.0-121.131 [63.9 MB] 2024-09-16T05:00:52.594 INFO:teuthology.orchestra.run.smithi029.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-121-generic amd64 5.15.0-121.131 [63.9 MB] 2024-09-16T05:00:53.252 INFO:teuthology.orchestra.run.smithi081.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.121.121 [1,694 B] 2024-09-16T05:00:53.270 INFO:teuthology.orchestra.run.smithi081.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.121.121 [2,464 B] 2024-09-16T05:00:53.288 INFO:teuthology.orchestra.run.smithi081.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-121 all 5.15.0-121.131 [12.3 MB] 2024-09-16T05:00:53.501 INFO:teuthology.orchestra.run.smithi081.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-121-generic amd64 5.15.0-121.131 [2,827 kB] 2024-09-16T05:00:53.540 INFO:teuthology.orchestra.run.smithi081.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.121.121 [2,316 B] 2024-09-16T05:00:53.838 INFO:teuthology.orchestra.run.smithi029.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.121.121 [1,694 B] 2024-09-16T05:00:53.839 INFO:teuthology.orchestra.run.smithi029.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.121.121 [2,464 B] 2024-09-16T05:00:53.839 INFO:teuthology.orchestra.run.smithi029.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-121 all 5.15.0-121.131 [12.3 MB] 2024-09-16T05:00:53.950 INFO:teuthology.orchestra.run.smithi081.stdout:Fetched 113 MB in 3s (36.0 MB/s) 2024-09-16T05:00:54.094 INFO:teuthology.orchestra.run.smithi167.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.121.121 [1,694 B] 2024-09-16T05:00:54.094 INFO:teuthology.orchestra.run.smithi167.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.121.121 [2,464 B] 2024-09-16T05:00:54.094 INFO:teuthology.orchestra.run.smithi167.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-121 all 5.15.0-121.131 [12.3 MB] 2024-09-16T05:00:54.104 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package linux-modules-5.15.0-121-generic. 2024-09-16T05:00:54.176 INFO:teuthology.orchestra.run.smithi029.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-121-generic amd64 5.15.0-121.131 [2,827 kB] 2024-09-16T05:00:54.198 INFO:teuthology.orchestra.run.smithi029.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.121.121 [2,316 B] 2024-09-16T05:00:54.481 INFO:teuthology.orchestra.run.smithi167.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-121-generic amd64 5.15.0-121.131 [2,827 kB] 2024-09-16T05:00:54.563 INFO:teuthology.orchestra.run.smithi167.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.121.121 [2,316 B] 2024-09-16T05:00:54.631 INFO:teuthology.orchestra.run.smithi029.stdout:Fetched 113 MB in 2s (46.7 MB/s) 2024-09-16T05:00:54.879 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package linux-modules-5.15.0-121-generic. 2024-09-16T05:00:54.956 INFO:teuthology.orchestra.run.smithi167.stdout:Fetched 113 MB in 5s (24.3 MB/s) 2024-09-16T05:00:55.114 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package linux-modules-5.15.0-121-generic. 2024-09-16T05:00:56.168 INFO:teuthology.orchestra.run.smithi081.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 129542 files and directories currently installed.) 2024-09-16T05:00:56.172 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../0-linux-modules-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-16T05:00:56.235 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking linux-modules-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T05:00:57.128 INFO:teuthology.orchestra.run.smithi167.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 129542 files and directories currently installed.) 2024-09-16T05:00:57.132 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../0-linux-modules-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-16T05:00:57.220 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking linux-modules-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T05:00:58.126 INFO:teuthology.orchestra.run.smithi029.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 129542 files and directories currently installed.) 2024-09-16T05:00:58.133 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../0-linux-modules-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-16T05:00:58.213 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking linux-modules-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T05:00:58.737 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package linux-image-5.15.0-121-generic. 2024-09-16T05:00:58.758 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../1-linux-image-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-16T05:00:58.855 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking linux-image-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T05:00:59.298 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package linux-image-5.15.0-121-generic. 2024-09-16T05:00:59.319 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../1-linux-image-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-16T05:00:59.331 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-121-generic. 2024-09-16T05:00:59.352 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-16T05:00:59.390 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking linux-modules-extra-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T05:00:59.396 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking linux-image-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T05:00:59.868 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-121-generic. 2024-09-16T05:00:59.888 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-16T05:00:59.926 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking linux-modules-extra-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T05:01:01.635 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package linux-image-5.15.0-121-generic. 2024-09-16T05:01:01.657 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../1-linux-image-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-16T05:01:01.749 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking linux-image-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T05:01:02.493 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-121-generic. 2024-09-16T05:01:02.519 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-16T05:01:02.560 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking linux-modules-extra-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T05:01:05.925 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../3-linux-generic_5.15.0.121.121_amd64.deb ... 2024-09-16T05:01:06.052 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking linux-generic (5.15.0.121.121) over (5.15.0.56.54) ... 2024-09-16T05:01:06.369 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.121.121_amd64.deb ... 2024-09-16T05:01:06.497 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking linux-image-generic (5.15.0.121.121) over (5.15.0.56.54) ... 2024-09-16T05:01:06.545 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../3-linux-generic_5.15.0.121.121_amd64.deb ... 2024-09-16T05:01:06.655 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking linux-generic (5.15.0.121.121) over (5.15.0.56.54) ... 2024-09-16T05:01:06.809 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package linux-headers-5.15.0-121. 2024-09-16T05:01:06.831 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../5-linux-headers-5.15.0-121_5.15.0-121.131_all.deb ... 2024-09-16T05:01:06.875 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking linux-headers-5.15.0-121 (5.15.0-121.131) ... 2024-09-16T05:01:06.980 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.121.121_amd64.deb ... 2024-09-16T05:01:07.092 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking linux-image-generic (5.15.0.121.121) over (5.15.0.56.54) ... 2024-09-16T05:01:07.379 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package linux-headers-5.15.0-121. 2024-09-16T05:01:07.402 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../5-linux-headers-5.15.0-121_5.15.0-121.131_all.deb ... 2024-09-16T05:01:07.446 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking linux-headers-5.15.0-121 (5.15.0-121.131) ... 2024-09-16T05:01:11.017 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../3-linux-generic_5.15.0.121.121_amd64.deb ... 2024-09-16T05:01:11.143 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking linux-generic (5.15.0.121.121) over (5.15.0.56.54) ... 2024-09-16T05:01:11.863 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.121.121_amd64.deb ... 2024-09-16T05:01:11.993 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking linux-image-generic (5.15.0.121.121) over (5.15.0.56.54) ... 2024-09-16T05:01:12.374 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package linux-headers-5.15.0-121. 2024-09-16T05:01:12.397 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../5-linux-headers-5.15.0-121_5.15.0-121.131_all.deb ... 2024-09-16T05:01:12.441 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking linux-headers-5.15.0-121 (5.15.0-121.131) ... 2024-09-16T05:01:12.801 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package linux-headers-5.15.0-121-generic. 2024-09-16T05:01:12.837 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../6-linux-headers-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-16T05:01:12.875 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking linux-headers-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T05:01:12.938 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package linux-headers-5.15.0-121-generic. 2024-09-16T05:01:12.975 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../6-linux-headers-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-16T05:01:13.013 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking linux-headers-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T05:01:15.979 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.121.121_amd64.deb ... 2024-09-16T05:01:16.015 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.121.121_amd64.deb ... 2024-09-16T05:01:16.102 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking linux-headers-generic (5.15.0.121.121) over (5.15.0.56.54) ... 2024-09-16T05:01:16.138 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking linux-headers-generic (5.15.0.121.121) over (5.15.0.56.54) ... 2024-09-16T05:01:16.497 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up linux-headers-5.15.0-121 (5.15.0-121.131) ... 2024-09-16T05:01:16.896 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up linux-headers-5.15.0-121 (5.15.0-121.131) ... 2024-09-16T05:01:17.068 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up linux-headers-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T05:01:17.466 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up linux-headers-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T05:01:17.567 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up linux-headers-generic (5.15.0.121.121) ... 2024-09-16T05:01:17.686 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up linux-headers-generic (5.15.0.121.121) ... 2024-09-16T05:01:17.695 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up linux-image-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T05:01:17.797 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up linux-image-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T05:01:19.013 INFO:teuthology.orchestra.run.smithi167.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-16T05:01:19.013 INFO:teuthology.orchestra.run.smithi167.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-09-16T05:01:19.014 INFO:teuthology.orchestra.run.smithi167.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-121-generic 2024-09-16T05:01:19.014 INFO:teuthology.orchestra.run.smithi167.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-121-generic 2024-09-16T05:01:19.125 INFO:teuthology.orchestra.run.smithi081.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-16T05:01:19.125 INFO:teuthology.orchestra.run.smithi081.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-09-16T05:01:19.125 INFO:teuthology.orchestra.run.smithi081.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-121-generic 2024-09-16T05:01:19.125 INFO:teuthology.orchestra.run.smithi081.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-121-generic 2024-09-16T05:01:19.174 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up linux-modules-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T05:01:19.292 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up linux-modules-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T05:01:20.566 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up linux-modules-extra-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T05:01:20.726 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up linux-modules-extra-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T05:01:20.872 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package linux-headers-5.15.0-121-generic. 2024-09-16T05:01:20.909 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../6-linux-headers-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-16T05:01:20.997 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking linux-headers-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T05:01:21.909 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up linux-image-generic (5.15.0.121.121) ... 2024-09-16T05:01:22.035 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up linux-generic (5.15.0.121.121) ... 2024-09-16T05:01:22.103 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up linux-image-generic (5.15.0.121.121) ... 2024-09-16T05:01:22.162 INFO:teuthology.orchestra.run.smithi167.stdout:Processing triggers for linux-image-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T05:01:22.212 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up linux-generic (5.15.0.121.121) ... 2024-09-16T05:01:22.229 INFO:teuthology.orchestra.run.smithi167.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-16T05:01:22.229 INFO:teuthology.orchestra.run.smithi167.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-121-generic 2024-09-16T05:01:22.330 INFO:teuthology.orchestra.run.smithi081.stdout:Processing triggers for linux-image-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T05:01:22.397 INFO:teuthology.orchestra.run.smithi081.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-16T05:01:22.397 INFO:teuthology.orchestra.run.smithi081.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-121-generic 2024-09-16T05:01:23.471 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.121.121_amd64.deb ... 2024-09-16T05:01:23.594 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking linux-headers-generic (5.15.0.121.121) over (5.15.0.56.54) ... 2024-09-16T05:01:25.934 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up linux-headers-5.15.0-121 (5.15.0-121.131) ... 2024-09-16T05:01:26.065 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up linux-headers-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T05:01:26.192 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up linux-headers-generic (5.15.0.121.121) ... 2024-09-16T05:01:26.354 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up linux-image-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T05:01:27.735 INFO:teuthology.orchestra.run.smithi029.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-16T05:01:27.735 INFO:teuthology.orchestra.run.smithi029.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-09-16T05:01:27.735 INFO:teuthology.orchestra.run.smithi029.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-121-generic 2024-09-16T05:01:27.735 INFO:teuthology.orchestra.run.smithi029.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-121-generic 2024-09-16T05:01:27.917 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up linux-modules-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T05:01:29.375 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up linux-modules-extra-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T05:01:30.863 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up linux-image-generic (5.15.0.121.121) ... 2024-09-16T05:01:30.990 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up linux-generic (5.15.0.121.121) ... 2024-09-16T05:01:31.117 INFO:teuthology.orchestra.run.smithi029.stdout:Processing triggers for linux-image-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T05:01:31.191 INFO:teuthology.orchestra.run.smithi029.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-16T05:01:31.191 INFO:teuthology.orchestra.run.smithi029.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-121-generic 2024-09-16T05:01:36.048 INFO:teuthology.orchestra.run.smithi167.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-16T05:01:36.048 INFO:teuthology.orchestra.run.smithi167.stdout:Sourcing file `/etc/default/grub' 2024-09-16T05:01:36.066 INFO:teuthology.orchestra.run.smithi167.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-16T05:01:36.085 INFO:teuthology.orchestra.run.smithi167.stdout:Generating grub configuration file ... 2024-09-16T05:01:36.218 INFO:teuthology.orchestra.run.smithi081.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-16T05:01:36.219 INFO:teuthology.orchestra.run.smithi081.stdout:Sourcing file `/etc/default/grub' 2024-09-16T05:01:36.232 INFO:teuthology.orchestra.run.smithi081.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-16T05:01:36.246 INFO:teuthology.orchestra.run.smithi081.stdout:Generating grub configuration file ... 2024-09-16T05:01:36.443 INFO:teuthology.orchestra.run.smithi167.stdout:Found linux image: /boot/vmlinuz-5.15.0-121-generic 2024-09-16T05:01:36.459 INFO:teuthology.orchestra.run.smithi167.stdout:Found initrd image: /boot/initrd.img-5.15.0-121-generic 2024-09-16T05:01:36.554 INFO:teuthology.orchestra.run.smithi081.stdout:Found linux image: /boot/vmlinuz-5.15.0-121-generic 2024-09-16T05:01:36.577 INFO:teuthology.orchestra.run.smithi081.stdout:Found initrd image: /boot/initrd.img-5.15.0-121-generic 2024-09-16T05:01:36.797 INFO:teuthology.orchestra.run.smithi167.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-16T05:01:36.803 INFO:teuthology.orchestra.run.smithi167.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-16T05:01:36.870 INFO:teuthology.orchestra.run.smithi167.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-16T05:01:36.876 INFO:teuthology.orchestra.run.smithi167.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-16T05:01:36.939 INFO:teuthology.orchestra.run.smithi081.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-16T05:01:36.945 INFO:teuthology.orchestra.run.smithi081.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-16T05:01:37.012 INFO:teuthology.orchestra.run.smithi081.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-16T05:01:37.018 INFO:teuthology.orchestra.run.smithi081.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-16T05:01:37.023 INFO:teuthology.orchestra.run.smithi167.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-16T05:01:37.023 INFO:teuthology.orchestra.run.smithi167.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-16T05:01:37.023 INFO:teuthology.orchestra.run.smithi167.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-16T05:01:37.063 INFO:teuthology.orchestra.run.smithi167.stdout:done 2024-09-16T05:01:37.170 INFO:teuthology.orchestra.run.smithi081.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-16T05:01:37.170 INFO:teuthology.orchestra.run.smithi081.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-16T05:01:37.170 INFO:teuthology.orchestra.run.smithi081.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-16T05:01:37.212 INFO:teuthology.orchestra.run.smithi081.stdout:done 2024-09-16T05:01:37.506 DEBUG:teuthology.orchestra.run.smithi167:> dpkg -s linux-image-generic 2024-09-16T05:01:37.524 INFO:teuthology.orchestra.run.smithi167.stdout:Package: linux-image-generic 2024-09-16T05:01:37.524 INFO:teuthology.orchestra.run.smithi167.stdout:Status: install ok installed 2024-09-16T05:01:37.525 INFO:teuthology.orchestra.run.smithi167.stdout:Priority: optional 2024-09-16T05:01:37.525 INFO:teuthology.orchestra.run.smithi167.stdout:Section: kernel 2024-09-16T05:01:37.525 INFO:teuthology.orchestra.run.smithi167.stdout:Installed-Size: 21 2024-09-16T05:01:37.525 INFO:teuthology.orchestra.run.smithi167.stdout:Maintainer: Ubuntu Kernel Team 2024-09-16T05:01:37.525 INFO:teuthology.orchestra.run.smithi167.stdout:Architecture: amd64 2024-09-16T05:01:37.525 INFO:teuthology.orchestra.run.smithi167.stdout:Source: linux-meta 2024-09-16T05:01:37.525 INFO:teuthology.orchestra.run.smithi167.stdout:Version: 5.15.0.121.121 2024-09-16T05:01:37.525 INFO:teuthology.orchestra.run.smithi167.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-121), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-16T05:01:37.525 INFO:teuthology.orchestra.run.smithi167.stdout:Depends: linux-image-5.15.0-121-generic, linux-modules-extra-5.15.0-121-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-16T05:01:37.525 INFO:teuthology.orchestra.run.smithi167.stdout:Recommends: thermald 2024-09-16T05:01:37.525 INFO:teuthology.orchestra.run.smithi167.stdout:Description: Generic Linux kernel image 2024-09-16T05:01:37.525 INFO:teuthology.orchestra.run.smithi167.stdout: This package will always depend on the latest generic kernel image 2024-09-16T05:01:37.526 INFO:teuthology.orchestra.run.smithi167.stdout: available. 2024-09-16T05:01:37.527 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-121-generic 2024-09-16T05:01:37.527 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-16T05:01:37.527 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-16T05:01:37.527 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2024-09-16T05:01:37.527 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi167.front.sepia.ceph.com, path=None, version=distro) 2024-09-16T05:01:37.527 DEBUG:teuthology.orchestra.run.smithi167:> sudo apt-get clean 2024-09-16T05:01:37.695 DEBUG:teuthology.orchestra.run.smithi081:> dpkg -s linux-image-generic 2024-09-16T05:01:37.700 DEBUG:teuthology.orchestra.run.smithi167:> sudo apt-get update 2024-09-16T05:01:37.720 INFO:teuthology.orchestra.run.smithi081.stdout:Package: linux-image-generic 2024-09-16T05:01:37.720 INFO:teuthology.orchestra.run.smithi081.stdout:Status: install ok installed 2024-09-16T05:01:37.720 INFO:teuthology.orchestra.run.smithi081.stdout:Priority: optional 2024-09-16T05:01:37.720 INFO:teuthology.orchestra.run.smithi081.stdout:Section: kernel 2024-09-16T05:01:37.720 INFO:teuthology.orchestra.run.smithi081.stdout:Installed-Size: 21 2024-09-16T05:01:37.720 INFO:teuthology.orchestra.run.smithi081.stdout:Maintainer: Ubuntu Kernel Team 2024-09-16T05:01:37.720 INFO:teuthology.orchestra.run.smithi081.stdout:Architecture: amd64 2024-09-16T05:01:37.721 INFO:teuthology.orchestra.run.smithi081.stdout:Source: linux-meta 2024-09-16T05:01:37.721 INFO:teuthology.orchestra.run.smithi081.stdout:Version: 5.15.0.121.121 2024-09-16T05:01:37.721 INFO:teuthology.orchestra.run.smithi081.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-121), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-16T05:01:37.721 INFO:teuthology.orchestra.run.smithi081.stdout:Depends: linux-image-5.15.0-121-generic, linux-modules-extra-5.15.0-121-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-16T05:01:37.721 INFO:teuthology.orchestra.run.smithi081.stdout:Recommends: thermald 2024-09-16T05:01:37.721 INFO:teuthology.orchestra.run.smithi081.stdout:Description: Generic Linux kernel image 2024-09-16T05:01:37.721 INFO:teuthology.orchestra.run.smithi081.stdout: This package will always depend on the latest generic kernel image 2024-09-16T05:01:37.721 INFO:teuthology.orchestra.run.smithi081.stdout: available. 2024-09-16T05:01:37.721 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-121-generic 2024-09-16T05:01:37.721 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-16T05:01:37.721 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-16T05:01:37.722 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-09-16T05:01:37.722 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi081.front.sepia.ceph.com, path=None, version=distro) 2024-09-16T05:01:37.722 DEBUG:teuthology.orchestra.run.smithi081:> sudo apt-get clean 2024-09-16T05:01:37.901 DEBUG:teuthology.orchestra.run.smithi081:> sudo apt-get update 2024-09-16T05:01:37.952 INFO:teuthology.orchestra.run.smithi167.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-16T05:01:37.952 INFO:teuthology.orchestra.run.smithi167.stdout:Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-16T05:01:38.022 INFO:teuthology.orchestra.run.smithi081.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-16T05:01:38.023 INFO:teuthology.orchestra.run.smithi081.stdout:Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-16T05:01:38.023 INFO:teuthology.orchestra.run.smithi167.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-16T05:01:38.031 INFO:teuthology.orchestra.run.smithi081.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-16T05:01:38.047 INFO:teuthology.orchestra.run.smithi081.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-16T05:01:38.379 INFO:teuthology.orchestra.run.smithi167.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-16T05:01:38.575 INFO:teuthology.orchestra.run.smithi167.stdout:Fetched 128 kB in 1s (184 kB/s) 2024-09-16T05:01:39.492 INFO:teuthology.orchestra.run.smithi081.stdout:Reading package lists... 2024-09-16T05:01:39.510 DEBUG:teuthology.orchestra.run.smithi081:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-16T05:01:39.563 INFO:teuthology.orchestra.run.smithi081.stdout:Reading package lists... 2024-09-16T05:01:39.616 INFO:teuthology.orchestra.run.smithi167.stdout:Reading package lists... 2024-09-16T05:01:39.634 DEBUG:teuthology.orchestra.run.smithi167:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-16T05:01:39.696 INFO:teuthology.orchestra.run.smithi167.stdout:Reading package lists... 2024-09-16T05:01:39.763 INFO:teuthology.orchestra.run.smithi081.stdout:Building dependency tree... 2024-09-16T05:01:39.764 INFO:teuthology.orchestra.run.smithi081.stdout:Reading state information... 2024-09-16T05:01:39.886 INFO:teuthology.orchestra.run.smithi167.stdout:Building dependency tree... 2024-09-16T05:01:39.894 INFO:teuthology.orchestra.run.smithi167.stdout:Reading state information... 2024-09-16T05:01:39.930 INFO:teuthology.orchestra.run.smithi081.stdout:linux-image-generic is already the newest version (5.15.0.121.121). 2024-09-16T05:01:39.931 INFO:teuthology.orchestra.run.smithi081.stdout:The following packages were automatically installed and are no longer required: 2024-09-16T05:01:39.931 INFO:teuthology.orchestra.run.smithi081.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-16T05:01:39.931 INFO:teuthology.orchestra.run.smithi081.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-16T05:01:39.931 INFO:teuthology.orchestra.run.smithi081.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-16T05:01:39.931 INFO:teuthology.orchestra.run.smithi081.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-16T05:01:39.931 INFO:teuthology.orchestra.run.smithi081.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-16T05:01:39.932 INFO:teuthology.orchestra.run.smithi081.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-16T05:01:39.973 INFO:teuthology.orchestra.run.smithi081.stdout:0 upgraded, 0 newly installed, 0 to remove and 344 not upgraded. 2024-09-16T05:01:39.975 DEBUG:teuthology.orchestra.run.smithi081:> dpkg -s linux-image-generic 2024-09-16T05:01:40.028 INFO:teuthology.orchestra.run.smithi081.stdout:Package: linux-image-generic 2024-09-16T05:01:40.028 INFO:teuthology.orchestra.run.smithi081.stdout:Status: install ok installed 2024-09-16T05:01:40.028 INFO:teuthology.orchestra.run.smithi081.stdout:Priority: optional 2024-09-16T05:01:40.028 INFO:teuthology.orchestra.run.smithi081.stdout:Section: kernel 2024-09-16T05:01:40.028 INFO:teuthology.orchestra.run.smithi081.stdout:Installed-Size: 21 2024-09-16T05:01:40.028 INFO:teuthology.orchestra.run.smithi081.stdout:Maintainer: Ubuntu Kernel Team 2024-09-16T05:01:40.028 INFO:teuthology.orchestra.run.smithi081.stdout:Architecture: amd64 2024-09-16T05:01:40.028 INFO:teuthology.orchestra.run.smithi081.stdout:Source: linux-meta 2024-09-16T05:01:40.028 INFO:teuthology.orchestra.run.smithi081.stdout:Version: 5.15.0.121.121 2024-09-16T05:01:40.028 INFO:teuthology.orchestra.run.smithi081.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-121), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-16T05:01:40.028 INFO:teuthology.orchestra.run.smithi081.stdout:Depends: linux-image-5.15.0-121-generic, linux-modules-extra-5.15.0-121-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-16T05:01:40.029 INFO:teuthology.orchestra.run.smithi081.stdout:Recommends: thermald 2024-09-16T05:01:40.029 INFO:teuthology.orchestra.run.smithi081.stdout:Description: Generic Linux kernel image 2024-09-16T05:01:40.029 INFO:teuthology.orchestra.run.smithi081.stdout: This package will always depend on the latest generic kernel image 2024-09-16T05:01:40.029 INFO:teuthology.orchestra.run.smithi081.stdout: available. 2024-09-16T05:01:40.029 DEBUG:teuthology.orchestra.run.smithi081:> mktemp 2024-09-16T05:01:40.062 INFO:teuthology.orchestra.run.smithi167.stdout:linux-image-generic is already the newest version (5.15.0.121.121). 2024-09-16T05:01:40.062 INFO:teuthology.orchestra.run.smithi167.stdout:The following packages were automatically installed and are no longer required: 2024-09-16T05:01:40.062 INFO:teuthology.orchestra.run.smithi167.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-16T05:01:40.062 INFO:teuthology.orchestra.run.smithi167.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-16T05:01:40.062 INFO:teuthology.orchestra.run.smithi167.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-16T05:01:40.063 INFO:teuthology.orchestra.run.smithi167.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-16T05:01:40.063 INFO:teuthology.orchestra.run.smithi167.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-16T05:01:40.063 INFO:teuthology.orchestra.run.smithi167.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-16T05:01:40.072 INFO:teuthology.orchestra.run.smithi081.stdout:/tmp/tmp.CWCyUCxoMC 2024-09-16T05:01:40.072 DEBUG:teuthology.orchestra.run.smithi081:> sudo cp /boot/grub/grub.cfg /tmp/tmp.CWCyUCxoMC 2024-09-16T05:01:40.104 INFO:teuthology.orchestra.run.smithi167.stdout:0 upgraded, 0 newly installed, 0 to remove and 344 not upgraded. 2024-09-16T05:01:40.105 DEBUG:teuthology.orchestra.run.smithi167:> dpkg -s linux-image-generic 2024-09-16T05:01:40.117 INFO:teuthology.orchestra.run.smithi167.stdout:Package: linux-image-generic 2024-09-16T05:01:40.117 INFO:teuthology.orchestra.run.smithi167.stdout:Status: install ok installed 2024-09-16T05:01:40.117 INFO:teuthology.orchestra.run.smithi167.stdout:Priority: optional 2024-09-16T05:01:40.117 INFO:teuthology.orchestra.run.smithi167.stdout:Section: kernel 2024-09-16T05:01:40.117 INFO:teuthology.orchestra.run.smithi167.stdout:Installed-Size: 21 2024-09-16T05:01:40.118 INFO:teuthology.orchestra.run.smithi167.stdout:Maintainer: Ubuntu Kernel Team 2024-09-16T05:01:40.118 INFO:teuthology.orchestra.run.smithi167.stdout:Architecture: amd64 2024-09-16T05:01:40.118 INFO:teuthology.orchestra.run.smithi167.stdout:Source: linux-meta 2024-09-16T05:01:40.118 INFO:teuthology.orchestra.run.smithi167.stdout:Version: 5.15.0.121.121 2024-09-16T05:01:40.118 INFO:teuthology.orchestra.run.smithi167.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-121), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-16T05:01:40.118 INFO:teuthology.orchestra.run.smithi167.stdout:Depends: linux-image-5.15.0-121-generic, linux-modules-extra-5.15.0-121-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-16T05:01:40.118 INFO:teuthology.orchestra.run.smithi167.stdout:Recommends: thermald 2024-09-16T05:01:40.118 INFO:teuthology.orchestra.run.smithi167.stdout:Description: Generic Linux kernel image 2024-09-16T05:01:40.118 INFO:teuthology.orchestra.run.smithi167.stdout: This package will always depend on the latest generic kernel image 2024-09-16T05:01:40.118 INFO:teuthology.orchestra.run.smithi167.stdout: available. 2024-09-16T05:01:40.118 DEBUG:teuthology.orchestra.run.smithi167:> mktemp 2024-09-16T05:01:40.128 DEBUG:teuthology.orchestra.run.smithi081:> sudo chmod 0666 /tmp/tmp.CWCyUCxoMC 2024-09-16T05:01:40.164 INFO:teuthology.orchestra.run.smithi167.stdout:/tmp/tmp.uIqrchVBs0 2024-09-16T05:01:40.164 DEBUG:teuthology.orchestra.run.smithi167:> sudo cp /boot/grub/grub.cfg /tmp/tmp.uIqrchVBs0 2024-09-16T05:01:40.233 DEBUG:teuthology.orchestra.run.smithi167:> sudo chmod 0666 /tmp/tmp.uIqrchVBs0 2024-09-16T05:01:40.252 DEBUG:teuthology.orchestra.remote:smithi081:/tmp/tmp.CWCyUCxoMC is 10KB 2024-09-16T05:01:40.265 DEBUG:teuthology.orchestra.run.smithi081:> rm -fr /tmp/tmp.CWCyUCxoMC 2024-09-16T05:01:40.271 DEBUG:teuthology.orchestra.run.smithi081:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-16T05:01:40.324 DEBUG:teuthology.orchestra.run.smithi081:> set -ex 2024-09-16T05:01:40.324 DEBUG:teuthology.orchestra.run.smithi081:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-16T05:01:40.324 DEBUG:teuthology.orchestra.run.smithi081:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-16T05:01:40.354 DEBUG:teuthology.orchestra.remote:smithi167:/tmp/tmp.uIqrchVBs0 is 10KB 2024-09-16T05:01:40.367 DEBUG:teuthology.orchestra.run.smithi167:> rm -fr /tmp/tmp.uIqrchVBs0 2024-09-16T05:01:40.373 DEBUG:teuthology.orchestra.run.smithi167:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-16T05:01:40.388 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-121-generic 2024-09-16T05:01:40.389 DEBUG:teuthology.orchestra.run.smithi081:> sudo update-grub 2024-09-16T05:01:40.427 DEBUG:teuthology.orchestra.run.smithi167:> set -ex 2024-09-16T05:01:40.427 DEBUG:teuthology.orchestra.run.smithi167:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-16T05:01:40.427 DEBUG:teuthology.orchestra.run.smithi167:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-16T05:01:40.495 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-121-generic 2024-09-16T05:01:40.495 DEBUG:teuthology.orchestra.run.smithi167:> sudo update-grub 2024-09-16T05:01:41.599 INFO:teuthology.orchestra.run.smithi081.stderr:Sourcing file `/etc/default/grub' 2024-09-16T05:01:41.600 INFO:teuthology.orchestra.run.smithi081.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-16T05:01:41.602 INFO:teuthology.orchestra.run.smithi081.stderr:Generating grub configuration file ... 2024-09-16T05:01:41.696 INFO:teuthology.orchestra.run.smithi167.stderr:Sourcing file `/etc/default/grub' 2024-09-16T05:01:41.697 INFO:teuthology.orchestra.run.smithi167.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-16T05:01:41.699 INFO:teuthology.orchestra.run.smithi167.stderr:Generating grub configuration file ... 2024-09-16T05:01:41.785 INFO:teuthology.orchestra.run.smithi081.stderr:Found linux image: /boot/vmlinuz-5.15.0-121-generic 2024-09-16T05:01:41.791 INFO:teuthology.orchestra.run.smithi081.stderr:Found initrd image: /boot/initrd.img-5.15.0-121-generic 2024-09-16T05:01:41.894 INFO:teuthology.orchestra.run.smithi167.stderr:Found linux image: /boot/vmlinuz-5.15.0-121-generic 2024-09-16T05:01:41.900 INFO:teuthology.orchestra.run.smithi167.stderr:Found initrd image: /boot/initrd.img-5.15.0-121-generic 2024-09-16T05:01:42.068 INFO:teuthology.orchestra.run.smithi081.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-16T05:01:42.073 INFO:teuthology.orchestra.run.smithi081.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-16T05:01:42.112 INFO:teuthology.orchestra.run.smithi081.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-16T05:01:42.117 INFO:teuthology.orchestra.run.smithi081.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-16T05:01:42.200 INFO:teuthology.orchestra.run.smithi167.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-16T05:01:42.205 INFO:teuthology.orchestra.run.smithi167.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-16T05:01:42.247 INFO:teuthology.orchestra.run.smithi167.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-16T05:01:42.252 INFO:teuthology.orchestra.run.smithi167.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-16T05:01:42.271 INFO:teuthology.orchestra.run.smithi081.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-16T05:01:42.271 INFO:teuthology.orchestra.run.smithi081.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-16T05:01:42.272 INFO:teuthology.orchestra.run.smithi081.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-16T05:01:42.284 INFO:teuthology.orchestra.run.smithi081.stderr:done 2024-09-16T05:01:42.300 DEBUG:teuthology.orchestra.run.smithi081:> sudo shutdown -r now 2024-09-16T05:01:42.412 INFO:teuthology.orchestra.run.smithi167.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-16T05:01:42.412 INFO:teuthology.orchestra.run.smithi167.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-16T05:01:42.412 INFO:teuthology.orchestra.run.smithi167.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-16T05:01:42.424 INFO:teuthology.orchestra.run.smithi167.stderr:done 2024-09-16T05:01:42.438 DEBUG:teuthology.orchestra.run.smithi167:> sudo shutdown -r now 2024-09-16T05:01:49.605 INFO:teuthology.orchestra.run.smithi029.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-16T05:01:49.605 INFO:teuthology.orchestra.run.smithi029.stdout:Sourcing file `/etc/default/grub' 2024-09-16T05:01:49.678 INFO:teuthology.orchestra.run.smithi029.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-16T05:01:49.700 INFO:teuthology.orchestra.run.smithi029.stdout:Generating grub configuration file ... 2024-09-16T05:01:50.012 INFO:teuthology.orchestra.run.smithi029.stdout:Found linux image: /boot/vmlinuz-5.15.0-121-generic 2024-09-16T05:01:50.091 INFO:teuthology.orchestra.run.smithi029.stdout:Found initrd image: /boot/initrd.img-5.15.0-121-generic 2024-09-16T05:01:50.404 INFO:teuthology.orchestra.run.smithi029.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-16T05:01:50.410 INFO:teuthology.orchestra.run.smithi029.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-16T05:01:50.504 INFO:teuthology.orchestra.run.smithi029.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-16T05:01:50.510 INFO:teuthology.orchestra.run.smithi029.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-16T05:01:50.907 INFO:teuthology.orchestra.run.smithi029.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-16T05:01:50.907 INFO:teuthology.orchestra.run.smithi029.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-16T05:01:50.907 INFO:teuthology.orchestra.run.smithi029.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-16T05:01:51.000 INFO:teuthology.orchestra.run.smithi029.stdout:done 2024-09-16T05:01:51.637 DEBUG:teuthology.orchestra.run.smithi029:> dpkg -s linux-image-generic 2024-09-16T05:01:51.665 INFO:teuthology.orchestra.run.smithi029.stdout:Package: linux-image-generic 2024-09-16T05:01:51.666 INFO:teuthology.orchestra.run.smithi029.stdout:Status: install ok installed 2024-09-16T05:01:51.666 INFO:teuthology.orchestra.run.smithi029.stdout:Priority: optional 2024-09-16T05:01:51.666 INFO:teuthology.orchestra.run.smithi029.stdout:Section: kernel 2024-09-16T05:01:51.666 INFO:teuthology.orchestra.run.smithi029.stdout:Installed-Size: 21 2024-09-16T05:01:51.666 INFO:teuthology.orchestra.run.smithi029.stdout:Maintainer: Ubuntu Kernel Team 2024-09-16T05:01:51.666 INFO:teuthology.orchestra.run.smithi029.stdout:Architecture: amd64 2024-09-16T05:01:51.666 INFO:teuthology.orchestra.run.smithi029.stdout:Source: linux-meta 2024-09-16T05:01:51.666 INFO:teuthology.orchestra.run.smithi029.stdout:Version: 5.15.0.121.121 2024-09-16T05:01:51.666 INFO:teuthology.orchestra.run.smithi029.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-121), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-16T05:01:51.666 INFO:teuthology.orchestra.run.smithi029.stdout:Depends: linux-image-5.15.0-121-generic, linux-modules-extra-5.15.0-121-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-16T05:01:51.666 INFO:teuthology.orchestra.run.smithi029.stdout:Recommends: thermald 2024-09-16T05:01:51.666 INFO:teuthology.orchestra.run.smithi029.stdout:Description: Generic Linux kernel image 2024-09-16T05:01:51.667 INFO:teuthology.orchestra.run.smithi029.stdout: This package will always depend on the latest generic kernel image 2024-09-16T05:01:51.667 INFO:teuthology.orchestra.run.smithi029.stdout: available. 2024-09-16T05:01:51.667 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-121-generic 2024-09-16T05:01:51.667 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-16T05:01:51.667 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-16T05:01:51.667 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-09-16T05:01:51.667 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi029.front.sepia.ceph.com, path=None, version=distro) 2024-09-16T05:01:51.667 DEBUG:teuthology.orchestra.run.smithi029:> sudo apt-get clean 2024-09-16T05:01:51.840 DEBUG:teuthology.orchestra.run.smithi029:> sudo apt-get update 2024-09-16T05:01:52.081 INFO:teuthology.orchestra.run.smithi029.stdout:Get:1 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-16T05:01:52.146 INFO:teuthology.orchestra.run.smithi029.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-16T05:01:52.205 INFO:teuthology.orchestra.run.smithi029.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-16T05:01:52.287 INFO:teuthology.orchestra.run.smithi029.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-16T05:01:52.633 INFO:teuthology.orchestra.run.smithi029.stdout:Fetched 129 kB in 1s (210 kB/s) 2024-09-16T05:01:53.675 INFO:teuthology.orchestra.run.smithi029.stdout:Reading package lists... 2024-09-16T05:01:53.694 DEBUG:teuthology.orchestra.run.smithi029:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-16T05:01:53.748 INFO:teuthology.orchestra.run.smithi029.stdout:Reading package lists... 2024-09-16T05:01:53.939 INFO:teuthology.orchestra.run.smithi029.stdout:Building dependency tree... 2024-09-16T05:01:53.940 INFO:teuthology.orchestra.run.smithi029.stdout:Reading state information... 2024-09-16T05:01:54.117 INFO:teuthology.orchestra.run.smithi029.stdout:linux-image-generic is already the newest version (5.15.0.121.121). 2024-09-16T05:01:54.117 INFO:teuthology.orchestra.run.smithi029.stdout:The following packages were automatically installed and are no longer required: 2024-09-16T05:01:54.117 INFO:teuthology.orchestra.run.smithi029.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-16T05:01:54.117 INFO:teuthology.orchestra.run.smithi029.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-16T05:01:54.117 INFO:teuthology.orchestra.run.smithi029.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-16T05:01:54.117 INFO:teuthology.orchestra.run.smithi029.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-16T05:01:54.118 INFO:teuthology.orchestra.run.smithi029.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-16T05:01:54.118 INFO:teuthology.orchestra.run.smithi029.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-16T05:01:54.159 INFO:teuthology.orchestra.run.smithi029.stdout:0 upgraded, 0 newly installed, 0 to remove and 344 not upgraded. 2024-09-16T05:01:54.161 DEBUG:teuthology.orchestra.run.smithi029:> dpkg -s linux-image-generic 2024-09-16T05:01:54.225 INFO:teuthology.orchestra.run.smithi029.stdout:Package: linux-image-generic 2024-09-16T05:01:54.226 INFO:teuthology.orchestra.run.smithi029.stdout:Status: install ok installed 2024-09-16T05:01:54.226 INFO:teuthology.orchestra.run.smithi029.stdout:Priority: optional 2024-09-16T05:01:54.226 INFO:teuthology.orchestra.run.smithi029.stdout:Section: kernel 2024-09-16T05:01:54.226 INFO:teuthology.orchestra.run.smithi029.stdout:Installed-Size: 21 2024-09-16T05:01:54.226 INFO:teuthology.orchestra.run.smithi029.stdout:Maintainer: Ubuntu Kernel Team 2024-09-16T05:01:54.226 INFO:teuthology.orchestra.run.smithi029.stdout:Architecture: amd64 2024-09-16T05:01:54.226 INFO:teuthology.orchestra.run.smithi029.stdout:Source: linux-meta 2024-09-16T05:01:54.226 INFO:teuthology.orchestra.run.smithi029.stdout:Version: 5.15.0.121.121 2024-09-16T05:01:54.226 INFO:teuthology.orchestra.run.smithi029.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-121), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-16T05:01:54.226 INFO:teuthology.orchestra.run.smithi029.stdout:Depends: linux-image-5.15.0-121-generic, linux-modules-extra-5.15.0-121-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-16T05:01:54.227 INFO:teuthology.orchestra.run.smithi029.stdout:Recommends: thermald 2024-09-16T05:01:54.227 INFO:teuthology.orchestra.run.smithi029.stdout:Description: Generic Linux kernel image 2024-09-16T05:01:54.227 INFO:teuthology.orchestra.run.smithi029.stdout: This package will always depend on the latest generic kernel image 2024-09-16T05:01:54.227 INFO:teuthology.orchestra.run.smithi029.stdout: available. 2024-09-16T05:01:54.227 DEBUG:teuthology.orchestra.run.smithi029:> mktemp 2024-09-16T05:01:54.274 INFO:teuthology.orchestra.run.smithi029.stdout:/tmp/tmp.1Yu8JfAPly 2024-09-16T05:01:54.274 DEBUG:teuthology.orchestra.run.smithi029:> sudo cp /boot/grub/grub.cfg /tmp/tmp.1Yu8JfAPly 2024-09-16T05:01:54.337 DEBUG:teuthology.orchestra.run.smithi029:> sudo chmod 0666 /tmp/tmp.1Yu8JfAPly 2024-09-16T05:01:54.461 DEBUG:teuthology.orchestra.remote:smithi029:/tmp/tmp.1Yu8JfAPly is 10KB 2024-09-16T05:01:54.473 DEBUG:teuthology.orchestra.run.smithi029:> rm -fr /tmp/tmp.1Yu8JfAPly 2024-09-16T05:01:54.479 DEBUG:teuthology.orchestra.run.smithi029:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-16T05:01:54.532 DEBUG:teuthology.orchestra.run.smithi029:> set -ex 2024-09-16T05:01:54.532 DEBUG:teuthology.orchestra.run.smithi029:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-16T05:01:54.532 DEBUG:teuthology.orchestra.run.smithi029:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-16T05:01:54.626 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-121-generic 2024-09-16T05:01:54.626 DEBUG:teuthology.orchestra.run.smithi029:> sudo update-grub 2024-09-16T05:01:57.243 INFO:teuthology.orchestra.run.smithi029.stderr:Sourcing file `/etc/default/grub' 2024-09-16T05:01:57.252 INFO:teuthology.orchestra.run.smithi029.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-16T05:01:57.277 INFO:teuthology.orchestra.run.smithi029.stderr:Generating grub configuration file ... 2024-09-16T05:01:57.537 INFO:teuthology.orchestra.run.smithi029.stderr:Found linux image: /boot/vmlinuz-5.15.0-121-generic 2024-09-16T05:01:57.544 INFO:teuthology.orchestra.run.smithi029.stderr:Found initrd image: /boot/initrd.img-5.15.0-121-generic 2024-09-16T05:01:57.774 INFO:teuthology.orchestra.run.smithi029.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-16T05:01:57.780 INFO:teuthology.orchestra.run.smithi029.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-16T05:01:57.821 INFO:teuthology.orchestra.run.smithi029.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-16T05:01:57.827 INFO:teuthology.orchestra.run.smithi029.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-16T05:01:57.962 INFO:teuthology.orchestra.run.smithi029.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-16T05:01:57.962 INFO:teuthology.orchestra.run.smithi029.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-16T05:01:57.962 INFO:teuthology.orchestra.run.smithi029.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-16T05:01:57.992 INFO:teuthology.orchestra.run.smithi029.stderr:done 2024-09-16T05:01:58.000 DEBUG:teuthology.orchestra.run.smithi029:> sudo shutdown -r now 2024-09-16T05:02:12.318 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-09-16T05:02:12.318 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi081.front.sepia.ceph.com' 2024-09-16T05:02:12.320 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi081.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T05:02:12.441 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2024-09-16T05:02:12.441 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi167.front.sepia.ceph.com' 2024-09-16T05:02:12.441 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi167.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T05:02:28.066 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-09-16T05:02:28.066 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi029.front.sepia.ceph.com' 2024-09-16T05:02:28.067 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi029.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T05:02:30.721 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.81 2024-09-16T05:02:30.977 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.167 2024-09-16T05:02:39.729 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi081.front.sepia.ceph.com' 2024-09-16T05:02:39.730 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi081.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T05:02:39.978 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi167.front.sepia.ceph.com' 2024-09-16T05:02:39.978 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi167.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T05:02:42.781 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.81 2024-09-16T05:02:43.041 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.167 2024-09-16T05:02:46.589 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.29 2024-09-16T05:02:54.789 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi081.front.sepia.ceph.com' 2024-09-16T05:02:54.790 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi081.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T05:02:55.042 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi167.front.sepia.ceph.com' 2024-09-16T05:02:55.042 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi167.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T05:02:55.590 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi029.front.sepia.ceph.com' 2024-09-16T05:02:55.591 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi029.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T05:02:58.109 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.167 2024-09-16T05:03:13.121 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi167.front.sepia.ceph.com' 2024-09-16T05:03:13.122 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi167.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T05:03:26.453 DEBUG:teuthology.orchestra.run.smithi081:> true 2024-09-16T05:03:27.055 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi081.front.sepia.ceph.com' 2024-09-16T05:03:27.055 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-121-generic"... 2024-09-16T05:03:27.056 DEBUG:teuthology.orchestra.run.smithi081:> uname -r 2024-09-16T05:03:27.108 INFO:teuthology.orchestra.run.smithi081.stdout:5.15.0-121-generic 2024-09-16T05:03:27.108 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-121-generic vs 5.15.0-121-generic 2024-09-16T05:03:27.108 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-16T05:03:27.108 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-16T05:03:28.110 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-09-16T05:03:28.110 DEBUG:teuthology.orchestra.run.smithi081:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-16T05:03:28.181 INFO:teuthology.orchestra.run.smithi081.stdout:ttyS1 2024-09-16T05:03:28.221 DEBUG:teuthology.parallel:result is None 2024-09-16T05:03:44.966 DEBUG:teuthology.orchestra.run.smithi167:> true 2024-09-16T05:03:45.521 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi167.front.sepia.ceph.com' 2024-09-16T05:03:45.522 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "5.15.0-121-generic"... 2024-09-16T05:03:45.522 DEBUG:teuthology.orchestra.run.smithi167:> uname -r 2024-09-16T05:03:45.570 INFO:teuthology.orchestra.run.smithi167.stdout:5.15.0-121-generic 2024-09-16T05:03:45.570 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-121-generic vs 5.15.0-121-generic 2024-09-16T05:03:45.570 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-16T05:03:45.570 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-16T05:03:46.571 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-09-16T05:03:46.572 DEBUG:teuthology.orchestra.run.smithi167:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-16T05:03:46.929 INFO:teuthology.orchestra.run.smithi167.stdout:ttyS1 2024-09-16T05:03:46.950 DEBUG:teuthology.parallel:result is None 2024-09-16T05:03:55.593 DEBUG:teuthology.orchestra.remote:timed out 2024-09-16T05:04:07.596 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi029.front.sepia.ceph.com' 2024-09-16T05:04:07.597 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi029.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T05:04:07.842 DEBUG:teuthology.orchestra.run.smithi029:> true 2024-09-16T05:04:08.786 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi029.front.sepia.ceph.com' 2024-09-16T05:04:08.786 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-121-generic"... 2024-09-16T05:04:08.786 DEBUG:teuthology.orchestra.run.smithi029:> uname -r 2024-09-16T05:04:08.834 INFO:teuthology.orchestra.run.smithi029.stdout:5.15.0-121-generic 2024-09-16T05:04:08.834 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-121-generic vs 5.15.0-121-generic 2024-09-16T05:04:08.834 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-16T05:04:08.834 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-16T05:04:09.835 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-09-16T05:04:09.836 DEBUG:teuthology.orchestra.run.smithi029:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-16T05:04:09.960 INFO:teuthology.orchestra.run.smithi029.stdout:ttyS1 2024-09-16T05:04:09.996 DEBUG:teuthology.parallel:result is None 2024-09-16T05:04:09.996 INFO:teuthology.run_tasks:Running task internal.base... 2024-09-16T05:04:10.004 INFO:teuthology.task.internal:Creating test directory... 2024-09-16T05:04:10.004 DEBUG:teuthology.orchestra.run.smithi029:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-16T05:04:10.007 DEBUG:teuthology.orchestra.run.smithi081:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-16T05:04:10.010 DEBUG:teuthology.orchestra.run.smithi167:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-16T05:04:10.017 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-09-16T05:04:10.023 INFO:teuthology.run_tasks:Running task internal.archive... 2024-09-16T05:04:10.030 INFO:teuthology.task.internal:Creating archive directory... 2024-09-16T05:04:10.031 DEBUG:teuthology.orchestra.run.smithi029:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-16T05:04:10.055 DEBUG:teuthology.orchestra.run.smithi081:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-16T05:04:10.058 DEBUG:teuthology.orchestra.run.smithi167:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-16T05:04:10.084 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-09-16T05:04:10.092 INFO:teuthology.task.internal:Enabling coredump saving... 2024-09-16T05:04:10.092 DEBUG:teuthology.orchestra.run.smithi029:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-09-16T05:04:10.111 DEBUG:teuthology.orchestra.run.smithi081:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-09-16T05:04:10.116 DEBUG:teuthology.orchestra.run.smithi167:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-09-16T05:04:10.127 INFO:teuthology.orchestra.run.smithi029.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-16T05:04:10.136 INFO:teuthology.orchestra.run.smithi029.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-16T05:04:10.136 INFO:teuthology.orchestra.run.smithi081.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-16T05:04:10.143 INFO:teuthology.orchestra.run.smithi081.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-16T05:04:10.146 INFO:teuthology.orchestra.run.smithi167.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-16T05:04:10.155 INFO:teuthology.orchestra.run.smithi167.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-16T05:04:10.156 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-09-16T05:04:10.163 INFO:teuthology.task.internal:Configuring sudo... 2024-09-16T05:04:10.164 DEBUG:teuthology.orchestra.run.smithi029:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-16T05:04:10.182 DEBUG:teuthology.orchestra.run.smithi081:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-16T05:04:10.188 DEBUG:teuthology.orchestra.run.smithi167:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-16T05:04:10.217 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-09-16T05:04:10.225 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-09-16T05:04:10.226 DEBUG:teuthology.orchestra.run.smithi029:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-16T05:04:10.243 DEBUG:teuthology.orchestra.run.smithi081:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-16T05:04:10.245 DEBUG:teuthology.orchestra.run.smithi167:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-16T05:04:10.264 DEBUG:teuthology.orchestra.run.smithi029:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-16T05:04:10.294 DEBUG:teuthology.orchestra.run.smithi029:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-16T05:04:10.342 DEBUG:teuthology.orchestra.run.smithi029:> set -ex 2024-09-16T05:04:10.342 DEBUG:teuthology.orchestra.run.smithi029:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-16T05:04:10.401 DEBUG:teuthology.orchestra.run.smithi081:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-16T05:04:10.407 DEBUG:teuthology.orchestra.run.smithi081:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-16T05:04:10.456 DEBUG:teuthology.orchestra.run.smithi081:> set -ex 2024-09-16T05:04:10.456 DEBUG:teuthology.orchestra.run.smithi081:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-16T05:04:10.519 DEBUG:teuthology.orchestra.run.smithi167:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-16T05:04:10.526 DEBUG:teuthology.orchestra.run.smithi167:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-16T05:04:10.573 DEBUG:teuthology.orchestra.run.smithi167:> set -ex 2024-09-16T05:04:10.573 DEBUG:teuthology.orchestra.run.smithi167:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-16T05:04:10.636 DEBUG:teuthology.orchestra.run.smithi029:> sudo service rsyslog restart 2024-09-16T05:04:10.639 DEBUG:teuthology.orchestra.run.smithi081:> sudo service rsyslog restart 2024-09-16T05:04:10.641 DEBUG:teuthology.orchestra.run.smithi167:> sudo service rsyslog restart 2024-09-16T05:04:10.710 INFO:teuthology.run_tasks:Running task internal.timer... 2024-09-16T05:04:10.717 INFO:teuthology.task.internal:Starting timer... 2024-09-16T05:04:10.717 INFO:teuthology.run_tasks:Running task pcp... 2024-09-16T05:04:10.728 INFO:teuthology.run_tasks:Running task selinux... 2024-09-16T05:04:10.738 DEBUG:teuthology.task.selinux:Excluding smithi029: OS 'ubuntu' does not support SELinux 2024-09-16T05:04:10.739 DEBUG:teuthology.task.selinux:Excluding smithi081: OS 'ubuntu' does not support SELinux 2024-09-16T05:04:10.739 DEBUG:teuthology.task.selinux:Excluding smithi167: OS 'ubuntu' does not support SELinux 2024-09-16T05:04:10.739 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-09-16T05:04:10.739 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-09-16T05:04:10.739 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-09-16T05:04:10.739 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-09-16T05:04:10.748 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-09-16T05:04:10.760 INFO:teuthology.task.ansible:Playbook: [{'import_playbook': 'ansible_managed.yml'}, {'import_playbook': 'teuthology.yml'}, {'hosts': 'testnodes', 'tasks': [{'set_fact': {'ran_from_cephlab_playbook': True}}]}, {'import_playbook': 'testnodes.yml'}, {'import_playbook': 'container-host.yml'}, {'import_playbook': 'cobbler.yml'}, {'import_playbook': 'paddles.yml'}, {'import_playbook': 'pulpito.yml'}, {'hosts': 'testnodes', 'become': True, 'tasks': [{'name': 'Touch /ceph-qa-ready', 'file': {'path': '/ceph-qa-ready', 'state': 'touch'}, 'when': 'ran_from_cephlab_playbook|bool'}]}] 2024-09-16T05:04:10.760 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi029.front.sepia.ceph.com,smithi081.front.sepia.ceph.com,smithi167.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-09-16T05:12:04.294 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi029.front.sepia.ceph.com'), Remote(name='ubuntu@smithi081.front.sepia.ceph.com'), Remote(name='ubuntu@smithi167.front.sepia.ceph.com')] 2024-09-16T05:12:04.295 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi029.front.sepia.ceph.com' 2024-09-16T05:12:04.297 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi029.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T05:12:04.382 DEBUG:teuthology.orchestra.run.smithi029:> true 2024-09-16T05:12:04.461 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi029.front.sepia.ceph.com' 2024-09-16T05:12:04.462 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi081.front.sepia.ceph.com' 2024-09-16T05:12:04.462 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi081.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T05:12:04.574 DEBUG:teuthology.orchestra.run.smithi081:> true 2024-09-16T05:12:04.653 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi081.front.sepia.ceph.com' 2024-09-16T05:12:04.654 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi167.front.sepia.ceph.com' 2024-09-16T05:12:04.655 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi167.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T05:12:04.736 DEBUG:teuthology.orchestra.run.smithi167:> true 2024-09-16T05:12:04.817 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi167.front.sepia.ceph.com' 2024-09-16T05:12:04.818 INFO:teuthology.run_tasks:Running task clock... 2024-09-16T05:12:04.828 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-09-16T05:12:04.828 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-16T05:12:04.829 DEBUG:teuthology.orchestra.run.smithi029:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-16T05:12:04.831 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-16T05:12:04.832 DEBUG:teuthology.orchestra.run.smithi081:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-16T05:12:04.834 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-16T05:12:04.834 DEBUG:teuthology.orchestra.run.smithi167:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-16T05:12:04.856 INFO:teuthology.orchestra.run.smithi029.stdout:16 Sep 05:12:04 ntpd[18385]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-16T05:12:04.856 INFO:teuthology.orchestra.run.smithi029.stdout:16 Sep 05:12:04 ntpd[18385]: Command line: ntpd -gq 2024-09-16T05:12:04.856 INFO:teuthology.orchestra.run.smithi029.stdout:16 Sep 05:12:04 ntpd[18385]: ---------------------------------------------------- 2024-09-16T05:12:04.856 INFO:teuthology.orchestra.run.smithi029.stdout:16 Sep 05:12:04 ntpd[18385]: ntp-4 is maintained by Network Time Foundation, 2024-09-16T05:12:04.856 INFO:teuthology.orchestra.run.smithi029.stdout:16 Sep 05:12:04 ntpd[18385]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-16T05:12:04.856 INFO:teuthology.orchestra.run.smithi029.stdout:16 Sep 05:12:04 ntpd[18385]: corporation. Support and training for ntp-4 are 2024-09-16T05:12:04.856 INFO:teuthology.orchestra.run.smithi029.stdout:16 Sep 05:12:04 ntpd[18385]: available at https://www.nwtime.org/support 2024-09-16T05:12:04.857 INFO:teuthology.orchestra.run.smithi029.stdout:16 Sep 05:12:04 ntpd[18385]: ---------------------------------------------------- 2024-09-16T05:12:04.857 INFO:teuthology.orchestra.run.smithi029.stdout:16 Sep 05:12:04 ntpd[18385]: proto: precision = 0.064 usec (-24) 2024-09-16T05:12:04.857 INFO:teuthology.orchestra.run.smithi029.stdout:16 Sep 05:12:04 ntpd[18385]: basedate set to 2022-02-04 2024-09-16T05:12:04.857 INFO:teuthology.orchestra.run.smithi029.stdout:16 Sep 05:12:04 ntpd[18385]: gps base set to 2022-02-06 (week 2196) 2024-09-16T05:12:04.858 INFO:teuthology.orchestra.run.smithi029.stdout:16 Sep 05:12:04 ntpd[18385]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-16T05:12:04.858 INFO:teuthology.orchestra.run.smithi029.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-16T05:12:04.858 INFO:teuthology.orchestra.run.smithi029.stdout:16 Sep 05:12:04 ntpd[18385]: restrict ::: KOD does nothing without LIMITED. 2024-09-16T05:12:04.858 INFO:teuthology.orchestra.run.smithi029.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-16T05:12:04.859 INFO:teuthology.orchestra.run.smithi029.stdout:16 Sep 05:12:04 ntpd[18385]: Listen and drop on 0 v6wildcard [::]:123 2024-09-16T05:12:04.859 INFO:teuthology.orchestra.run.smithi029.stdout:16 Sep 05:12:04 ntpd[18385]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-16T05:12:04.859 INFO:teuthology.orchestra.run.smithi029.stdout:16 Sep 05:12:04 ntpd[18385]: Listen normally on 2 lo 127.0.0.1:123 2024-09-16T05:12:04.859 INFO:teuthology.orchestra.run.smithi029.stdout:16 Sep 05:12:04 ntpd[18385]: Listen normally on 3 ens1f0 172.21.15.29:123 2024-09-16T05:12:04.859 INFO:teuthology.orchestra.run.smithi029.stdout:16 Sep 05:12:04 ntpd[18385]: Listen normally on 4 lo [::1]:123 2024-09-16T05:12:04.860 INFO:teuthology.orchestra.run.smithi029.stdout:16 Sep 05:12:04 ntpd[18385]: Listen normally on 5 ens1f0 [fe80::ec4:7aff:febd:125a%3]:123 2024-09-16T05:12:04.860 INFO:teuthology.orchestra.run.smithi029.stdout:16 Sep 05:12:04 ntpd[18385]: Listening on routing socket on fd #22 for interface updates 2024-09-16T05:12:04.863 INFO:teuthology.orchestra.run.smithi081.stdout:16 Sep 05:12:04 ntpd[18494]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-16T05:12:04.863 INFO:teuthology.orchestra.run.smithi081.stdout:16 Sep 05:12:04 ntpd[18494]: Command line: ntpd -gq 2024-09-16T05:12:04.863 INFO:teuthology.orchestra.run.smithi081.stdout:16 Sep 05:12:04 ntpd[18494]: ---------------------------------------------------- 2024-09-16T05:12:04.863 INFO:teuthology.orchestra.run.smithi081.stdout:16 Sep 05:12:04 ntpd[18494]: ntp-4 is maintained by Network Time Foundation, 2024-09-16T05:12:04.863 INFO:teuthology.orchestra.run.smithi081.stdout:16 Sep 05:12:04 ntpd[18494]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-16T05:12:04.863 INFO:teuthology.orchestra.run.smithi081.stdout:16 Sep 05:12:04 ntpd[18494]: corporation. Support and training for ntp-4 are 2024-09-16T05:12:04.863 INFO:teuthology.orchestra.run.smithi081.stdout:16 Sep 05:12:04 ntpd[18494]: available at https://www.nwtime.org/support 2024-09-16T05:12:04.863 INFO:teuthology.orchestra.run.smithi081.stdout:16 Sep 05:12:04 ntpd[18494]: ---------------------------------------------------- 2024-09-16T05:12:04.864 INFO:teuthology.orchestra.run.smithi081.stdout:16 Sep 05:12:04 ntpd[18494]: proto: precision = 0.044 usec (-24) 2024-09-16T05:12:04.864 INFO:teuthology.orchestra.run.smithi081.stdout:16 Sep 05:12:04 ntpd[18494]: basedate set to 2022-02-04 2024-09-16T05:12:04.864 INFO:teuthology.orchestra.run.smithi081.stdout:16 Sep 05:12:04 ntpd[18494]: gps base set to 2022-02-06 (week 2196) 2024-09-16T05:12:04.864 INFO:teuthology.orchestra.run.smithi081.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-16T05:12:04.865 INFO:teuthology.orchestra.run.smithi081.stdout:16 Sep 05:12:04 ntpd[18494]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-16T05:12:04.865 INFO:teuthology.orchestra.run.smithi081.stdout:16 Sep 05:12:04 ntpd[18494]: restrict ::: KOD does nothing without LIMITED. 2024-09-16T05:12:04.865 INFO:teuthology.orchestra.run.smithi081.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-16T05:12:04.866 INFO:teuthology.orchestra.run.smithi081.stdout:16 Sep 05:12:04 ntpd[18494]: Listen and drop on 0 v6wildcard [::]:123 2024-09-16T05:12:04.866 INFO:teuthology.orchestra.run.smithi081.stdout:16 Sep 05:12:04 ntpd[18494]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-16T05:12:04.866 INFO:teuthology.orchestra.run.smithi081.stdout:16 Sep 05:12:04 ntpd[18494]: Listen normally on 2 lo 127.0.0.1:123 2024-09-16T05:12:04.866 INFO:teuthology.orchestra.run.smithi081.stdout:16 Sep 05:12:04 ntpd[18494]: Listen normally on 3 enp3s0f1 172.21.15.81:123 2024-09-16T05:12:04.866 INFO:teuthology.orchestra.run.smithi081.stdout:16 Sep 05:12:04 ntpd[18494]: Listen normally on 4 lo [::1]:123 2024-09-16T05:12:04.866 INFO:teuthology.orchestra.run.smithi081.stdout:16 Sep 05:12:04 ntpd[18494]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe8f:d753%5]:123 2024-09-16T05:12:04.866 INFO:teuthology.orchestra.run.smithi081.stdout:16 Sep 05:12:04 ntpd[18494]: Listening on routing socket on fd #22 for interface updates 2024-09-16T05:12:04.886 INFO:teuthology.orchestra.run.smithi167.stdout:16 Sep 05:12:04 ntpd[18465]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-16T05:12:04.886 INFO:teuthology.orchestra.run.smithi167.stdout:16 Sep 05:12:04 ntpd[18465]: Command line: ntpd -gq 2024-09-16T05:12:04.886 INFO:teuthology.orchestra.run.smithi167.stdout:16 Sep 05:12:04 ntpd[18465]: ---------------------------------------------------- 2024-09-16T05:12:04.886 INFO:teuthology.orchestra.run.smithi167.stdout:16 Sep 05:12:04 ntpd[18465]: ntp-4 is maintained by Network Time Foundation, 2024-09-16T05:12:04.886 INFO:teuthology.orchestra.run.smithi167.stdout:16 Sep 05:12:04 ntpd[18465]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-16T05:12:04.887 INFO:teuthology.orchestra.run.smithi167.stdout:16 Sep 05:12:04 ntpd[18465]: corporation. Support and training for ntp-4 are 2024-09-16T05:12:04.887 INFO:teuthology.orchestra.run.smithi167.stdout:16 Sep 05:12:04 ntpd[18465]: available at https://www.nwtime.org/support 2024-09-16T05:12:04.887 INFO:teuthology.orchestra.run.smithi167.stdout:16 Sep 05:12:04 ntpd[18465]: ---------------------------------------------------- 2024-09-16T05:12:04.887 INFO:teuthology.orchestra.run.smithi167.stdout:16 Sep 05:12:04 ntpd[18465]: proto: precision = 0.044 usec (-24) 2024-09-16T05:12:04.887 INFO:teuthology.orchestra.run.smithi167.stdout:16 Sep 05:12:04 ntpd[18465]: basedate set to 2022-02-04 2024-09-16T05:12:04.887 INFO:teuthology.orchestra.run.smithi167.stdout:16 Sep 05:12:04 ntpd[18465]: gps base set to 2022-02-06 (week 2196) 2024-09-16T05:12:04.888 INFO:teuthology.orchestra.run.smithi167.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-16T05:12:04.888 INFO:teuthology.orchestra.run.smithi167.stdout:16 Sep 05:12:04 ntpd[18465]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-16T05:12:04.888 INFO:teuthology.orchestra.run.smithi167.stdout:16 Sep 05:12:04 ntpd[18465]: restrict ::: KOD does nothing without LIMITED. 2024-09-16T05:12:04.888 INFO:teuthology.orchestra.run.smithi167.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-16T05:12:04.889 INFO:teuthology.orchestra.run.smithi167.stdout:16 Sep 05:12:04 ntpd[18465]: Listen and drop on 0 v6wildcard [::]:123 2024-09-16T05:12:04.889 INFO:teuthology.orchestra.run.smithi167.stdout:16 Sep 05:12:04 ntpd[18465]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-16T05:12:04.889 INFO:teuthology.orchestra.run.smithi167.stdout:16 Sep 05:12:04 ntpd[18465]: Listen normally on 2 lo 127.0.0.1:123 2024-09-16T05:12:04.890 INFO:teuthology.orchestra.run.smithi167.stdout:16 Sep 05:12:04 ntpd[18465]: Listen normally on 3 enp3s0f1 172.21.15.167:123 2024-09-16T05:12:04.890 INFO:teuthology.orchestra.run.smithi167.stdout:16 Sep 05:12:04 ntpd[18465]: Listen normally on 4 lo [::1]:123 2024-09-16T05:12:04.890 INFO:teuthology.orchestra.run.smithi167.stdout:16 Sep 05:12:04 ntpd[18465]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:7309%5]:123 2024-09-16T05:12:04.890 INFO:teuthology.orchestra.run.smithi167.stdout:16 Sep 05:12:04 ntpd[18465]: Listening on routing socket on fd #22 for interface updates 2024-09-16T05:12:05.857 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:05 ntpd[18385]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:05.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:05 ntpd[18385]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:05.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:05 ntpd[18385]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:05.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:05 ntpd[18385]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:05.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:05 ntpd[18385]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:05.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:05 ntpd[18385]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:05.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:05 ntpd[18385]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T05:12:05.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:05 ntpd[18385]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T05:12:05.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:05 ntpd[18385]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:05.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:05 ntpd[18385]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:05.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:05 ntpd[18385]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T05:12:05.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:05 ntpd[18385]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T05:12:05.863 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:05 ntpd[18494]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:05.863 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:05 ntpd[18494]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:05.864 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:05 ntpd[18494]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:05.864 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:05 ntpd[18494]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:05.865 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:05 ntpd[18494]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:05.865 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:05 ntpd[18494]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:05.865 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:05 ntpd[18494]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T05:12:05.865 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:05 ntpd[18494]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T05:12:05.865 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:05 ntpd[18494]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:05.865 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:05 ntpd[18494]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:05.865 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:05 ntpd[18494]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T05:12:05.865 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:05 ntpd[18494]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T05:12:05.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:05 ntpd[18465]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:05.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:05 ntpd[18465]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:05.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:05 ntpd[18465]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:05.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:05 ntpd[18465]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:05.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:05 ntpd[18465]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:05.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:05 ntpd[18465]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:05.888 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:05 ntpd[18465]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T05:12:05.888 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:05 ntpd[18465]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T05:12:05.888 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:05 ntpd[18465]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:05.888 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:05 ntpd[18465]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:05.888 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:05 ntpd[18465]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T05:12:05.888 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:05 ntpd[18465]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T05:12:06.856 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:06 ntpd[18385]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:06.857 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:06 ntpd[18385]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:06.863 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:06 ntpd[18494]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:06.863 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:06 ntpd[18494]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:06.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:06 ntpd[18465]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:06.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:06 ntpd[18465]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:06.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:06 ntpd[18465]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:06.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:06 ntpd[18465]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:06.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:06 ntpd[18465]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T05:12:06.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:06 ntpd[18465]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T05:12:07.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:07 ntpd[18385]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:07.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:07 ntpd[18385]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:07.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:07 ntpd[18385]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:07.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:07 ntpd[18385]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:07.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:07 ntpd[18385]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:07.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:07 ntpd[18385]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:07.859 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:07 ntpd[18385]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:07.859 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:07 ntpd[18385]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:07.859 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:07 ntpd[18385]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T05:12:07.859 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:07 ntpd[18385]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T05:12:07.859 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:07 ntpd[18385]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:07.859 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:07 ntpd[18385]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:07.859 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:07 ntpd[18385]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T05:12:07.859 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:07 ntpd[18385]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T05:12:07.859 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:07 ntpd[18385]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:07.859 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:07 ntpd[18385]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:07.859 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:07 ntpd[18385]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T05:12:07.859 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:07 ntpd[18385]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T05:12:07.864 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:07 ntpd[18494]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:07.864 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:07 ntpd[18494]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:07.864 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:07 ntpd[18494]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:07.864 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:07 ntpd[18494]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:07.864 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:07 ntpd[18494]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:07.864 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:07 ntpd[18494]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:07.864 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:07 ntpd[18494]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T05:12:07.864 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:07 ntpd[18494]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T05:12:07.864 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:07 ntpd[18494]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:07.865 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:07 ntpd[18494]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:07.865 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:07 ntpd[18494]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T05:12:07.865 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:07 ntpd[18494]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T05:12:07.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:07 ntpd[18465]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:07.888 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:07 ntpd[18465]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:07.888 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:07 ntpd[18465]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:07.888 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:07 ntpd[18465]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:07.888 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:07 ntpd[18465]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:07.888 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:07 ntpd[18465]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:07.888 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:07 ntpd[18465]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:07.888 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:07 ntpd[18465]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:07.888 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:07 ntpd[18465]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T05:12:07.888 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:07 ntpd[18465]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T05:12:07.888 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:07 ntpd[18465]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:07.888 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:07 ntpd[18465]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:07.889 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:07 ntpd[18465]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T05:12:07.889 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:07 ntpd[18465]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T05:12:08.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:08 ntpd[18465]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:08.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:08 ntpd[18465]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:08.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:08 ntpd[18465]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:08.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:08 ntpd[18465]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:08.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:08 ntpd[18465]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T05:12:08.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:08 ntpd[18465]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T05:12:09.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:09 ntpd[18385]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:09.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:09 ntpd[18385]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:09.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:09 ntpd[18385]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:09.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:09 ntpd[18385]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:09.860 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:09 ntpd[18385]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:09.860 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:09 ntpd[18385]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:09.860 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:09 ntpd[18385]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:09.860 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:09 ntpd[18385]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:09.860 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:09 ntpd[18385]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T05:12:09.860 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:09 ntpd[18385]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T05:12:09.860 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:09 ntpd[18385]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:09.860 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:09 ntpd[18385]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:09.860 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:09 ntpd[18385]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T05:12:09.860 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:09 ntpd[18385]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T05:12:09.860 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:09 ntpd[18385]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:09.860 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:09 ntpd[18385]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:09.861 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:09 ntpd[18385]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T05:12:09.861 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:09 ntpd[18385]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T05:12:09.864 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:09 ntpd[18494]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:09.864 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:09 ntpd[18494]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:09.864 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:09 ntpd[18494]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:09.864 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:09 ntpd[18494]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:09.865 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:09 ntpd[18494]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:09.865 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:09 ntpd[18494]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:09.865 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:09 ntpd[18494]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:09.865 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:09 ntpd[18494]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:09.865 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:09 ntpd[18494]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T05:12:09.865 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:09 ntpd[18494]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T05:12:09.865 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:09 ntpd[18494]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:09.865 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:09 ntpd[18494]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:09.865 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:09 ntpd[18494]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T05:12:09.865 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:09 ntpd[18494]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T05:12:09.865 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:09 ntpd[18494]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:09.865 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:09 ntpd[18494]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:09.866 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:09 ntpd[18494]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T05:12:09.866 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:09 ntpd[18494]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T05:12:09.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:09 ntpd[18465]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:09.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:09 ntpd[18465]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:09.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:09 ntpd[18465]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:09.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:09 ntpd[18465]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:09.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:09 ntpd[18465]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:09.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:09 ntpd[18465]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:09.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:09 ntpd[18465]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T05:12:09.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:09 ntpd[18465]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T05:12:09.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:09 ntpd[18465]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:09.888 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:09 ntpd[18465]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:09.888 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:09 ntpd[18465]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T05:12:09.888 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:09 ntpd[18465]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T05:12:10.888 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:10 ntpd[18465]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:10.888 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:10 ntpd[18465]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:10.888 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:10 ntpd[18465]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:10.888 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:10 ntpd[18465]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:10.889 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:10 ntpd[18465]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T05:12:10.889 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:10 ntpd[18465]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T05:12:11.857 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:11 ntpd[18385]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:11.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:11 ntpd[18385]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:11.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:11 ntpd[18385]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:11.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:11 ntpd[18385]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:11.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:11 ntpd[18385]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:11.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:11 ntpd[18385]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:11.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:11 ntpd[18385]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:11.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:11 ntpd[18385]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:11.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:11 ntpd[18385]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T05:12:11.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:11 ntpd[18385]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T05:12:11.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:11 ntpd[18385]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:11.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:11 ntpd[18385]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:11.858 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:11 ntpd[18385]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T05:12:11.859 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:11 ntpd[18385]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T05:12:11.859 INFO:teuthology.orchestra.run.smithi029.stdout:16 Sep 05:12:11 ntpd[18385]: ntpd: time slew -0.000524 s 2024-09-16T05:12:11.859 INFO:teuthology.orchestra.run.smithi029.stdout:ntpd: time slew -0.000524s 2024-09-16T05:12:11.859 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:11 ntpd[18385]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-16T05:12:11.859 INFO:teuthology.orchestra.run.smithi029.stderr:16 Sep 05:12:11 ntpd[18385]: can't open /var/log/ntpstats/loopstats.20240916: Permission denied 2024-09-16T05:12:11.864 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:11 ntpd[18494]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:11.864 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:11 ntpd[18494]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:11.864 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:11 ntpd[18494]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:11.864 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:11 ntpd[18494]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:11.864 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:11 ntpd[18494]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:11.864 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:11 ntpd[18494]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:11.864 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:11 ntpd[18494]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:11.864 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:11 ntpd[18494]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:11.865 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:11 ntpd[18494]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T05:12:11.865 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:11 ntpd[18494]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T05:12:11.865 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:11 ntpd[18494]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:11.865 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:11 ntpd[18494]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:11.865 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:11 ntpd[18494]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T05:12:11.865 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:11 ntpd[18494]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T05:12:11.865 INFO:teuthology.orchestra.run.smithi081.stdout:16 Sep 05:12:11 ntpd[18494]: ntpd: time slew -0.003950 s 2024-09-16T05:12:11.865 INFO:teuthology.orchestra.run.smithi081.stdout:ntpd: time slew -0.003950s 2024-09-16T05:12:11.866 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:11 ntpd[18494]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-16T05:12:11.866 INFO:teuthology.orchestra.run.smithi081.stderr:16 Sep 05:12:11 ntpd[18494]: can't open /var/log/ntpstats/loopstats.20240916: Permission denied 2024-09-16T05:12:11.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:11 ntpd[18465]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:11.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:11 ntpd[18465]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:11.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:11 ntpd[18465]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:11.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:11 ntpd[18465]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:11.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:11 ntpd[18465]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T05:12:11.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:11 ntpd[18465]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T05:12:11.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:11 ntpd[18465]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T05:12:11.887 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:11 ntpd[18465]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T05:12:11.888 INFO:teuthology.orchestra.run.smithi167.stdout:16 Sep 05:12:11 ntpd[18465]: ntpd: time slew -0.000499 s 2024-09-16T05:12:11.888 INFO:teuthology.orchestra.run.smithi167.stdout:ntpd: time slew -0.000499s 2024-09-16T05:12:11.888 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:11 ntpd[18465]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-16T05:12:11.888 INFO:teuthology.orchestra.run.smithi167.stderr:16 Sep 05:12:11 ntpd[18465]: can't open /var/log/ntpstats/loopstats.20240916: Permission denied 2024-09-16T05:12:11.918 INFO:teuthology.orchestra.run.smithi029.stdout: remote refid st t when poll reach delay offset jitter 2024-09-16T05:12:11.918 INFO:teuthology.orchestra.run.smithi029.stdout:============================================================================== 2024-09-16T05:12:11.918 INFO:teuthology.orchestra.run.smithi029.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T05:12:11.918 INFO:teuthology.orchestra.run.smithi029.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T05:12:11.919 INFO:teuthology.orchestra.run.smithi029.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T05:12:11.919 INFO:teuthology.orchestra.run.smithi029.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T05:12:11.923 INFO:teuthology.orchestra.run.smithi081.stdout: remote refid st t when poll reach delay offset jitter 2024-09-16T05:12:11.923 INFO:teuthology.orchestra.run.smithi081.stdout:============================================================================== 2024-09-16T05:12:11.923 INFO:teuthology.orchestra.run.smithi081.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T05:12:11.923 INFO:teuthology.orchestra.run.smithi081.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T05:12:11.923 INFO:teuthology.orchestra.run.smithi081.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T05:12:11.923 INFO:teuthology.orchestra.run.smithi081.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T05:12:11.946 INFO:teuthology.orchestra.run.smithi167.stdout: remote refid st t when poll reach delay offset jitter 2024-09-16T05:12:11.946 INFO:teuthology.orchestra.run.smithi167.stdout:============================================================================== 2024-09-16T05:12:11.946 INFO:teuthology.orchestra.run.smithi167.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T05:12:11.946 INFO:teuthology.orchestra.run.smithi167.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T05:12:11.946 INFO:teuthology.orchestra.run.smithi167.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T05:12:11.946 INFO:teuthology.orchestra.run.smithi167.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T05:12:11.947 INFO:teuthology.run_tasks:Running task install... 2024-09-16T05:12:11.956 DEBUG:teuthology.task.install:project ceph 2024-09-16T05:12:11.956 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': '8921c8ef947807b717db041d85f0761b7914d5fc'}} 2024-09-16T05:12:11.956 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': '8921c8ef947807b717db041d85f0761b7914d5fc'} 2024-09-16T05:12:11.956 INFO:teuthology.task.install:Using flavor: default 2024-09-16T05:12:11.961 DEBUG:teuthology.task.install:Package list is: {'deb': ['ceph', 'cephadm', 'ceph-mds', 'ceph-mgr', 'ceph-common', 'ceph-fuse', 'ceph-test', 'ceph-volume', 'radosgw', 'python3-rados', 'python3-rgw', 'python3-cephfs', 'python3-rbd', 'libcephfs2', 'libcephfs-dev', 'librados2', 'librbd1', 'rbd-fuse'], 'rpm': ['ceph-radosgw', 'ceph-test', 'ceph', 'ceph-base', 'cephadm', 'ceph-immutable-object-cache', 'ceph-mgr', 'ceph-mgr-dashboard', 'ceph-mgr-diskprediction-local', 'ceph-mgr-rook', 'ceph-mgr-cephadm', 'ceph-fuse', 'ceph-volume', 'librados-devel', 'libcephfs2', 'libcephfs-devel', 'librados2', 'librbd1', 'python3-rados', 'python3-rgw', 'python3-cephfs', 'python3-rbd', 'rbd-fuse', 'rbd-mirror', 'rbd-nbd']} 2024-09-16T05:12:11.961 INFO:teuthology.task.install:extra packages: [] 2024-09-16T05:12:11.962 DEBUG:teuthology.orchestra.run.smithi029:> sudo apt-key list | grep Ceph 2024-09-16T05:12:11.962 DEBUG:teuthology.orchestra.run.smithi081:> sudo apt-key list | grep Ceph 2024-09-16T05:12:11.963 DEBUG:teuthology.orchestra.run.smithi167:> sudo apt-key list | grep Ceph 2024-09-16T05:12:12.021 INFO:teuthology.orchestra.run.smithi029.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-09-16T05:12:12.023 INFO:teuthology.orchestra.run.smithi081.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-09-16T05:12:12.044 INFO:teuthology.orchestra.run.smithi167.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-09-16T05:12:12.050 INFO:teuthology.orchestra.run.smithi029.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-09-16T05:12:12.050 INFO:teuthology.orchestra.run.smithi029.stdout:uid [ unknown] Ceph.com (release key) 2024-09-16T05:12:12.050 INFO:teuthology.task.install.deb:Installing packages: ceph, cephadm, ceph-mds, ceph-mgr, ceph-common, ceph-fuse, ceph-test, ceph-volume, radosgw, python3-rados, python3-rgw, python3-cephfs, python3-rbd, libcephfs2, libcephfs-dev, librados2, librbd1, rbd-fuse on remote deb x86_64 2024-09-16T05:12:12.051 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=8921c8ef947807b717db041d85f0761b7914d5fc 2024-09-16T05:12:12.056 INFO:teuthology.orchestra.run.smithi081.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-09-16T05:12:12.056 INFO:teuthology.orchestra.run.smithi081.stdout:uid [ unknown] Ceph.com (release key) 2024-09-16T05:12:12.056 INFO:teuthology.task.install.deb:Installing packages: ceph, cephadm, ceph-mds, ceph-mgr, ceph-common, ceph-fuse, ceph-test, ceph-volume, radosgw, python3-rados, python3-rgw, python3-cephfs, python3-rbd, libcephfs2, libcephfs-dev, librados2, librbd1, rbd-fuse on remote deb x86_64 2024-09-16T05:12:12.056 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=8921c8ef947807b717db041d85f0761b7914d5fc 2024-09-16T05:12:12.072 INFO:teuthology.orchestra.run.smithi167.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-09-16T05:12:12.072 INFO:teuthology.orchestra.run.smithi167.stdout:uid [ unknown] Ceph.com (release key) 2024-09-16T05:12:12.073 INFO:teuthology.task.install.deb:Installing packages: ceph, cephadm, ceph-mds, ceph-mgr, ceph-common, ceph-fuse, ceph-test, ceph-volume, radosgw, python3-rados, python3-rgw, python3-cephfs, python3-rbd, libcephfs2, libcephfs-dev, librados2, librbd1, rbd-fuse on remote deb x86_64 2024-09-16T05:12:12.073 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=8921c8ef947807b717db041d85f0761b7914d5fc 2024-09-16T05:12:12.199 INFO:teuthology.task.install.deb:Pulling from https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default/ 2024-09-16T05:12:12.199 INFO:teuthology.task.install.deb:Package version is 19.1.1-326-g8921c8ef-1jammy 2024-09-16T05:12:12.206 INFO:teuthology.task.install.deb:Pulling from https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default/ 2024-09-16T05:12:12.206 INFO:teuthology.task.install.deb:Package version is 19.1.1-326-g8921c8ef-1jammy 2024-09-16T05:12:12.213 INFO:teuthology.task.install.deb:Pulling from https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default/ 2024-09-16T05:12:12.214 INFO:teuthology.task.install.deb:Package version is 19.1.1-326-g8921c8ef-1jammy 2024-09-16T05:12:12.310 DEBUG:teuthology.orchestra.run.smithi029:> set -ex 2024-09-16T05:12:12.311 DEBUG:teuthology.orchestra.run.smithi029:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-09-16T05:12:12.322 DEBUG:teuthology.orchestra.run.smithi081:> set -ex 2024-09-16T05:12:12.322 DEBUG:teuthology.orchestra.run.smithi081:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-09-16T05:12:12.325 DEBUG:teuthology.orchestra.run.smithi167:> set -ex 2024-09-16T05:12:12.325 DEBUG:teuthology.orchestra.run.smithi167:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-09-16T05:12:12.327 DEBUG:teuthology.orchestra.run.smithi029:> sudo apt-get update 2024-09-16T05:12:12.341 DEBUG:teuthology.orchestra.run.smithi167:> sudo apt-get update 2024-09-16T05:12:12.371 DEBUG:teuthology.orchestra.run.smithi081:> sudo apt-get update 2024-09-16T05:12:12.500 INFO:teuthology.orchestra.run.smithi029.stdout:Hit:1 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-16T05:12:12.509 INFO:teuthology.orchestra.run.smithi167.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-16T05:12:12.509 INFO:teuthology.orchestra.run.smithi167.stdout:Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-16T05:12:12.520 INFO:teuthology.orchestra.run.smithi167.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-16T05:12:12.537 INFO:teuthology.orchestra.run.smithi167.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-16T05:12:12.540 INFO:teuthology.orchestra.run.smithi081.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-16T05:12:12.549 INFO:teuthology.orchestra.run.smithi081.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-16T05:12:12.553 INFO:teuthology.orchestra.run.smithi029.stdout:Ign:2 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy InRelease 2024-09-16T05:12:12.564 INFO:teuthology.orchestra.run.smithi167.stdout:Ign:5 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy InRelease 2024-09-16T05:12:12.566 INFO:teuthology.orchestra.run.smithi081.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-16T05:12:12.574 INFO:teuthology.orchestra.run.smithi029.stdout:Get:3 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy Release [7,662 B] 2024-09-16T05:12:12.589 INFO:teuthology.orchestra.run.smithi167.stdout:Get:6 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy Release [7,662 B] 2024-09-16T05:12:12.594 INFO:teuthology.orchestra.run.smithi081.stdout:Ign:4 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy InRelease 2024-09-16T05:12:12.596 INFO:teuthology.orchestra.run.smithi029.stdout:Ign:4 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy Release.gpg 2024-09-16T05:12:12.611 INFO:teuthology.orchestra.run.smithi167.stdout:Ign:7 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy Release.gpg 2024-09-16T05:12:12.616 INFO:teuthology.orchestra.run.smithi081.stdout:Get:5 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy Release [7,662 B] 2024-09-16T05:12:12.617 INFO:teuthology.orchestra.run.smithi029.stdout:Get:5 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,422 B] 2024-09-16T05:12:12.618 INFO:teuthology.orchestra.run.smithi029.stdout:Hit:6 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-16T05:12:12.632 INFO:teuthology.orchestra.run.smithi167.stdout:Get:8 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 Packages [17.9 kB] 2024-09-16T05:12:12.638 INFO:teuthology.orchestra.run.smithi081.stdout:Ign:6 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy Release.gpg 2024-09-16T05:12:12.659 INFO:teuthology.orchestra.run.smithi167.stdout:Get:9 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,422 B] 2024-09-16T05:12:12.660 INFO:teuthology.orchestra.run.smithi081.stdout:Get:7 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 Packages [17.9 kB] 2024-09-16T05:12:12.665 INFO:teuthology.orchestra.run.smithi029.stdout:Get:7 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 Packages [17.9 kB] 2024-09-16T05:12:12.665 INFO:teuthology.orchestra.run.smithi081.stdout:Hit:8 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-16T05:12:12.687 INFO:teuthology.orchestra.run.smithi081.stdout:Get:9 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,422 B] 2024-09-16T05:12:12.700 INFO:teuthology.orchestra.run.smithi029.stdout:Hit:8 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-16T05:12:12.782 INFO:teuthology.orchestra.run.smithi029.stdout:Hit:9 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-16T05:12:12.873 INFO:teuthology.orchestra.run.smithi167.stdout:Fetched 29.0 kB in 0s (83.8 kB/s) 2024-09-16T05:12:12.894 INFO:teuthology.orchestra.run.smithi081.stdout:Fetched 29.0 kB in 0s (86.3 kB/s) 2024-09-16T05:12:12.923 INFO:teuthology.orchestra.run.smithi029.stdout:Fetched 29.0 kB in 0s (70.0 kB/s) 2024-09-16T05:12:13.893 INFO:teuthology.orchestra.run.smithi167.stdout:Reading package lists... 2024-09-16T05:12:13.910 DEBUG:teuthology.orchestra.run.smithi167:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=19.1.1-326-g8921c8ef-1jammy cephadm=19.1.1-326-g8921c8ef-1jammy ceph-mds=19.1.1-326-g8921c8ef-1jammy ceph-mgr=19.1.1-326-g8921c8ef-1jammy ceph-common=19.1.1-326-g8921c8ef-1jammy ceph-fuse=19.1.1-326-g8921c8ef-1jammy ceph-test=19.1.1-326-g8921c8ef-1jammy ceph-volume=19.1.1-326-g8921c8ef-1jammy radosgw=19.1.1-326-g8921c8ef-1jammy python3-rados=19.1.1-326-g8921c8ef-1jammy python3-rgw=19.1.1-326-g8921c8ef-1jammy python3-cephfs=19.1.1-326-g8921c8ef-1jammy python3-rbd=19.1.1-326-g8921c8ef-1jammy libcephfs2=19.1.1-326-g8921c8ef-1jammy libcephfs-dev=19.1.1-326-g8921c8ef-1jammy librados2=19.1.1-326-g8921c8ef-1jammy librbd1=19.1.1-326-g8921c8ef-1jammy rbd-fuse=19.1.1-326-g8921c8ef-1jammy 2024-09-16T05:12:13.933 INFO:teuthology.orchestra.run.smithi029.stdout:Reading package lists... 2024-09-16T05:12:13.949 DEBUG:teuthology.orchestra.run.smithi029:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=19.1.1-326-g8921c8ef-1jammy cephadm=19.1.1-326-g8921c8ef-1jammy ceph-mds=19.1.1-326-g8921c8ef-1jammy ceph-mgr=19.1.1-326-g8921c8ef-1jammy ceph-common=19.1.1-326-g8921c8ef-1jammy ceph-fuse=19.1.1-326-g8921c8ef-1jammy ceph-test=19.1.1-326-g8921c8ef-1jammy ceph-volume=19.1.1-326-g8921c8ef-1jammy radosgw=19.1.1-326-g8921c8ef-1jammy python3-rados=19.1.1-326-g8921c8ef-1jammy python3-rgw=19.1.1-326-g8921c8ef-1jammy python3-cephfs=19.1.1-326-g8921c8ef-1jammy python3-rbd=19.1.1-326-g8921c8ef-1jammy libcephfs2=19.1.1-326-g8921c8ef-1jammy libcephfs-dev=19.1.1-326-g8921c8ef-1jammy librados2=19.1.1-326-g8921c8ef-1jammy librbd1=19.1.1-326-g8921c8ef-1jammy rbd-fuse=19.1.1-326-g8921c8ef-1jammy 2024-09-16T05:12:13.950 INFO:teuthology.orchestra.run.smithi081.stdout:Reading package lists... 2024-09-16T05:12:13.967 DEBUG:teuthology.orchestra.run.smithi081:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=19.1.1-326-g8921c8ef-1jammy cephadm=19.1.1-326-g8921c8ef-1jammy ceph-mds=19.1.1-326-g8921c8ef-1jammy ceph-mgr=19.1.1-326-g8921c8ef-1jammy ceph-common=19.1.1-326-g8921c8ef-1jammy ceph-fuse=19.1.1-326-g8921c8ef-1jammy ceph-test=19.1.1-326-g8921c8ef-1jammy ceph-volume=19.1.1-326-g8921c8ef-1jammy radosgw=19.1.1-326-g8921c8ef-1jammy python3-rados=19.1.1-326-g8921c8ef-1jammy python3-rgw=19.1.1-326-g8921c8ef-1jammy python3-cephfs=19.1.1-326-g8921c8ef-1jammy python3-rbd=19.1.1-326-g8921c8ef-1jammy libcephfs2=19.1.1-326-g8921c8ef-1jammy libcephfs-dev=19.1.1-326-g8921c8ef-1jammy librados2=19.1.1-326-g8921c8ef-1jammy librbd1=19.1.1-326-g8921c8ef-1jammy rbd-fuse=19.1.1-326-g8921c8ef-1jammy 2024-09-16T05:12:13.976 INFO:teuthology.orchestra.run.smithi167.stdout:Reading package lists... 2024-09-16T05:12:14.015 INFO:teuthology.orchestra.run.smithi029.stdout:Reading package lists... 2024-09-16T05:12:14.031 INFO:teuthology.orchestra.run.smithi081.stdout:Reading package lists... 2024-09-16T05:12:14.190 INFO:teuthology.orchestra.run.smithi167.stdout:Building dependency tree... 2024-09-16T05:12:14.191 INFO:teuthology.orchestra.run.smithi167.stdout:Reading state information... 2024-09-16T05:12:14.229 INFO:teuthology.orchestra.run.smithi029.stdout:Building dependency tree... 2024-09-16T05:12:14.230 INFO:teuthology.orchestra.run.smithi029.stdout:Reading state information... 2024-09-16T05:12:14.245 INFO:teuthology.orchestra.run.smithi081.stdout:Building dependency tree... 2024-09-16T05:12:14.245 INFO:teuthology.orchestra.run.smithi081.stdout:Reading state information... 2024-09-16T05:12:14.387 INFO:teuthology.orchestra.run.smithi167.stdout:The following packages were automatically installed and are no longer required: 2024-09-16T05:12:14.387 INFO:teuthology.orchestra.run.smithi167.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-16T05:12:14.387 INFO:teuthology.orchestra.run.smithi167.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-16T05:12:14.388 INFO:teuthology.orchestra.run.smithi167.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-16T05:12:14.388 INFO:teuthology.orchestra.run.smithi167.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-16T05:12:14.388 INFO:teuthology.orchestra.run.smithi167.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-16T05:12:14.388 INFO:teuthology.orchestra.run.smithi167.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-16T05:12:14.389 INFO:teuthology.orchestra.run.smithi167.stdout:The following additional packages will be installed: 2024-09-16T05:12:14.389 INFO:teuthology.orchestra.run.smithi167.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-09-16T05:12:14.389 INFO:teuthology.orchestra.run.smithi167.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-09-16T05:12:14.389 INFO:teuthology.orchestra.run.smithi167.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev liboath0 libonig5 2024-09-16T05:12:14.389 INFO:teuthology.orchestra.run.smithi167.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-09-16T05:12:14.390 INFO:teuthology.orchestra.run.smithi167.stdout: librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 2024-09-16T05:12:14.391 INFO:teuthology.orchestra.run.smithi167.stdout: lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli pkg-config 2024-09-16T05:12:14.391 INFO:teuthology.orchestra.run.smithi167.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-09-16T05:12:14.391 INFO:teuthology.orchestra.run.smithi167.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-09-16T05:12:14.391 INFO:teuthology.orchestra.run.smithi167.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-09-16T05:12:14.391 INFO:teuthology.orchestra.run.smithi167.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-09-16T05:12:14.391 INFO:teuthology.orchestra.run.smithi167.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-09-16T05:12:14.391 INFO:teuthology.orchestra.run.smithi167.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-09-16T05:12:14.391 INFO:teuthology.orchestra.run.smithi167.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-09-16T05:12:14.391 INFO:teuthology.orchestra.run.smithi167.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-09-16T05:12:14.391 INFO:teuthology.orchestra.run.smithi167.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-09-16T05:12:14.391 INFO:teuthology.orchestra.run.smithi167.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-16T05:12:14.391 INFO:teuthology.orchestra.run.smithi167.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-09-16T05:12:14.391 INFO:teuthology.orchestra.run.smithi167.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-09-16T05:12:14.392 INFO:teuthology.orchestra.run.smithi167.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-09-16T05:12:14.392 INFO:teuthology.orchestra.run.smithi167.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-09-16T05:12:14.392 INFO:teuthology.orchestra.run.smithi167.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-09-16T05:12:14.392 INFO:teuthology.orchestra.run.smithi167.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-09-16T05:12:14.392 INFO:teuthology.orchestra.run.smithi167.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-09-16T05:12:14.392 INFO:teuthology.orchestra.run.smithi167.stdout: xmlstarlet zip 2024-09-16T05:12:14.392 INFO:teuthology.orchestra.run.smithi167.stdout:Suggested packages: 2024-09-16T05:12:14.392 INFO:teuthology.orchestra.run.smithi167.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-09-16T05:12:14.392 INFO:teuthology.orchestra.run.smithi167.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-09-16T05:12:14.393 INFO:teuthology.orchestra.run.smithi167.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-09-16T05:12:14.393 INFO:teuthology.orchestra.run.smithi167.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-09-16T05:12:14.393 INFO:teuthology.orchestra.run.smithi167.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-09-16T05:12:14.393 INFO:teuthology.orchestra.run.smithi167.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-09-16T05:12:14.393 INFO:teuthology.orchestra.run.smithi167.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-09-16T05:12:14.393 INFO:teuthology.orchestra.run.smithi167.stdout:Recommended packages: 2024-09-16T05:12:14.393 INFO:teuthology.orchestra.run.smithi167.stdout: btrfs-tools 2024-09-16T05:12:14.439 INFO:teuthology.orchestra.run.smithi081.stdout:The following packages were automatically installed and are no longer required: 2024-09-16T05:12:14.439 INFO:teuthology.orchestra.run.smithi081.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-16T05:12:14.440 INFO:teuthology.orchestra.run.smithi081.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-16T05:12:14.440 INFO:teuthology.orchestra.run.smithi081.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-16T05:12:14.440 INFO:teuthology.orchestra.run.smithi081.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-16T05:12:14.440 INFO:teuthology.orchestra.run.smithi081.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-16T05:12:14.440 INFO:teuthology.orchestra.run.smithi081.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-16T05:12:14.443 INFO:teuthology.orchestra.run.smithi081.stdout:The following additional packages will be installed: 2024-09-16T05:12:14.444 INFO:teuthology.orchestra.run.smithi081.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-09-16T05:12:14.444 INFO:teuthology.orchestra.run.smithi081.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-09-16T05:12:14.444 INFO:teuthology.orchestra.run.smithi081.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev liboath0 libonig5 2024-09-16T05:12:14.444 INFO:teuthology.orchestra.run.smithi081.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-09-16T05:12:14.444 INFO:teuthology.orchestra.run.smithi081.stdout: librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 2024-09-16T05:12:14.444 INFO:teuthology.orchestra.run.smithi081.stdout: lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli pkg-config 2024-09-16T05:12:14.444 INFO:teuthology.orchestra.run.smithi081.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-09-16T05:12:14.444 INFO:teuthology.orchestra.run.smithi081.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-09-16T05:12:14.444 INFO:teuthology.orchestra.run.smithi081.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-09-16T05:12:14.444 INFO:teuthology.orchestra.run.smithi081.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-09-16T05:12:14.445 INFO:teuthology.orchestra.run.smithi081.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-09-16T05:12:14.445 INFO:teuthology.orchestra.run.smithi081.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-09-16T05:12:14.445 INFO:teuthology.orchestra.run.smithi081.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-09-16T05:12:14.445 INFO:teuthology.orchestra.run.smithi081.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-09-16T05:12:14.445 INFO:teuthology.orchestra.run.smithi081.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-09-16T05:12:14.445 INFO:teuthology.orchestra.run.smithi081.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-16T05:12:14.445 INFO:teuthology.orchestra.run.smithi081.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-09-16T05:12:14.445 INFO:teuthology.orchestra.run.smithi081.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-09-16T05:12:14.445 INFO:teuthology.orchestra.run.smithi081.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-09-16T05:12:14.445 INFO:teuthology.orchestra.run.smithi081.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-09-16T05:12:14.445 INFO:teuthology.orchestra.run.smithi081.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-09-16T05:12:14.445 INFO:teuthology.orchestra.run.smithi081.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-09-16T05:12:14.445 INFO:teuthology.orchestra.run.smithi081.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-09-16T05:12:14.445 INFO:teuthology.orchestra.run.smithi081.stdout: xmlstarlet zip 2024-09-16T05:12:14.445 INFO:teuthology.orchestra.run.smithi081.stdout:Suggested packages: 2024-09-16T05:12:14.446 INFO:teuthology.orchestra.run.smithi081.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-09-16T05:12:14.446 INFO:teuthology.orchestra.run.smithi081.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-09-16T05:12:14.446 INFO:teuthology.orchestra.run.smithi081.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-09-16T05:12:14.446 INFO:teuthology.orchestra.run.smithi081.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-09-16T05:12:14.446 INFO:teuthology.orchestra.run.smithi081.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-09-16T05:12:14.446 INFO:teuthology.orchestra.run.smithi081.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-09-16T05:12:14.446 INFO:teuthology.orchestra.run.smithi081.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-09-16T05:12:14.446 INFO:teuthology.orchestra.run.smithi081.stdout:Recommended packages: 2024-09-16T05:12:14.446 INFO:teuthology.orchestra.run.smithi081.stdout: btrfs-tools 2024-09-16T05:12:14.447 INFO:teuthology.orchestra.run.smithi029.stdout:The following packages were automatically installed and are no longer required: 2024-09-16T05:12:14.447 INFO:teuthology.orchestra.run.smithi029.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-16T05:12:14.448 INFO:teuthology.orchestra.run.smithi029.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-16T05:12:14.448 INFO:teuthology.orchestra.run.smithi029.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-16T05:12:14.448 INFO:teuthology.orchestra.run.smithi029.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-16T05:12:14.448 INFO:teuthology.orchestra.run.smithi029.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-16T05:12:14.448 INFO:teuthology.orchestra.run.smithi029.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-16T05:12:14.449 INFO:teuthology.orchestra.run.smithi029.stdout:The following additional packages will be installed: 2024-09-16T05:12:14.449 INFO:teuthology.orchestra.run.smithi029.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-09-16T05:12:14.449 INFO:teuthology.orchestra.run.smithi029.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-09-16T05:12:14.449 INFO:teuthology.orchestra.run.smithi029.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev liboath0 libonig5 2024-09-16T05:12:14.449 INFO:teuthology.orchestra.run.smithi029.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-09-16T05:12:14.450 INFO:teuthology.orchestra.run.smithi029.stdout: librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 2024-09-16T05:12:14.450 INFO:teuthology.orchestra.run.smithi029.stdout: lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli pkg-config 2024-09-16T05:12:14.451 INFO:teuthology.orchestra.run.smithi029.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-09-16T05:12:14.451 INFO:teuthology.orchestra.run.smithi029.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-09-16T05:12:14.451 INFO:teuthology.orchestra.run.smithi029.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-09-16T05:12:14.451 INFO:teuthology.orchestra.run.smithi029.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-09-16T05:12:14.451 INFO:teuthology.orchestra.run.smithi029.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-09-16T05:12:14.451 INFO:teuthology.orchestra.run.smithi029.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-09-16T05:12:14.451 INFO:teuthology.orchestra.run.smithi029.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-09-16T05:12:14.451 INFO:teuthology.orchestra.run.smithi029.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-09-16T05:12:14.451 INFO:teuthology.orchestra.run.smithi029.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-09-16T05:12:14.451 INFO:teuthology.orchestra.run.smithi029.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-16T05:12:14.451 INFO:teuthology.orchestra.run.smithi029.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-09-16T05:12:14.451 INFO:teuthology.orchestra.run.smithi029.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-09-16T05:12:14.451 INFO:teuthology.orchestra.run.smithi029.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-09-16T05:12:14.451 INFO:teuthology.orchestra.run.smithi029.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-09-16T05:12:14.452 INFO:teuthology.orchestra.run.smithi029.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-09-16T05:12:14.452 INFO:teuthology.orchestra.run.smithi029.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-09-16T05:12:14.452 INFO:teuthology.orchestra.run.smithi029.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-09-16T05:12:14.452 INFO:teuthology.orchestra.run.smithi029.stdout: xmlstarlet zip 2024-09-16T05:12:14.452 INFO:teuthology.orchestra.run.smithi029.stdout:Suggested packages: 2024-09-16T05:12:14.452 INFO:teuthology.orchestra.run.smithi029.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-09-16T05:12:14.452 INFO:teuthology.orchestra.run.smithi029.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-09-16T05:12:14.452 INFO:teuthology.orchestra.run.smithi029.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-09-16T05:12:14.453 INFO:teuthology.orchestra.run.smithi029.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-09-16T05:12:14.453 INFO:teuthology.orchestra.run.smithi029.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-09-16T05:12:14.453 INFO:teuthology.orchestra.run.smithi029.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-09-16T05:12:14.453 INFO:teuthology.orchestra.run.smithi029.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-09-16T05:12:14.453 INFO:teuthology.orchestra.run.smithi029.stdout:Recommended packages: 2024-09-16T05:12:14.453 INFO:teuthology.orchestra.run.smithi029.stdout: btrfs-tools 2024-09-16T05:12:14.497 INFO:teuthology.orchestra.run.smithi167.stdout:The following NEW packages will be installed: 2024-09-16T05:12:14.497 INFO:teuthology.orchestra.run.smithi167.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-09-16T05:12:14.497 INFO:teuthology.orchestra.run.smithi167.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-09-16T05:12:14.497 INFO:teuthology.orchestra.run.smithi167.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-09-16T05:12:14.497 INFO:teuthology.orchestra.run.smithi167.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-09-16T05:12:14.497 INFO:teuthology.orchestra.run.smithi167.stdout: liblua5.3-dev liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 2024-09-16T05:12:14.497 INFO:teuthology.orchestra.run.smithi167.stdout: libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-09-16T05:12:14.498 INFO:teuthology.orchestra.run.smithi167.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-09-16T05:12:14.498 INFO:teuthology.orchestra.run.smithi167.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-09-16T05:12:14.498 INFO:teuthology.orchestra.run.smithi167.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-09-16T05:12:14.498 INFO:teuthology.orchestra.run.smithi167.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-09-16T05:12:14.499 INFO:teuthology.orchestra.run.smithi167.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-09-16T05:12:14.499 INFO:teuthology.orchestra.run.smithi167.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-09-16T05:12:14.499 INFO:teuthology.orchestra.run.smithi167.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-09-16T05:12:14.499 INFO:teuthology.orchestra.run.smithi167.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-09-16T05:12:14.499 INFO:teuthology.orchestra.run.smithi167.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-09-16T05:12:14.499 INFO:teuthology.orchestra.run.smithi167.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-09-16T05:12:14.499 INFO:teuthology.orchestra.run.smithi167.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-09-16T05:12:14.499 INFO:teuthology.orchestra.run.smithi167.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-16T05:12:14.500 INFO:teuthology.orchestra.run.smithi167.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-09-16T05:12:14.500 INFO:teuthology.orchestra.run.smithi167.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-09-16T05:12:14.500 INFO:teuthology.orchestra.run.smithi167.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-09-16T05:12:14.500 INFO:teuthology.orchestra.run.smithi167.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-09-16T05:12:14.500 INFO:teuthology.orchestra.run.smithi167.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-09-16T05:12:14.500 INFO:teuthology.orchestra.run.smithi167.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-09-16T05:12:14.500 INFO:teuthology.orchestra.run.smithi167.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-09-16T05:12:14.500 INFO:teuthology.orchestra.run.smithi167.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-09-16T05:12:14.548 INFO:teuthology.orchestra.run.smithi081.stdout:The following NEW packages will be installed: 2024-09-16T05:12:14.548 INFO:teuthology.orchestra.run.smithi081.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-09-16T05:12:14.548 INFO:teuthology.orchestra.run.smithi081.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-09-16T05:12:14.548 INFO:teuthology.orchestra.run.smithi081.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-09-16T05:12:14.548 INFO:teuthology.orchestra.run.smithi081.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-09-16T05:12:14.548 INFO:teuthology.orchestra.run.smithi081.stdout: liblua5.3-dev liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 2024-09-16T05:12:14.548 INFO:teuthology.orchestra.run.smithi081.stdout: libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-09-16T05:12:14.549 INFO:teuthology.orchestra.run.smithi081.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-09-16T05:12:14.549 INFO:teuthology.orchestra.run.smithi081.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-09-16T05:12:14.549 INFO:teuthology.orchestra.run.smithi081.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-09-16T05:12:14.550 INFO:teuthology.orchestra.run.smithi081.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-09-16T05:12:14.550 INFO:teuthology.orchestra.run.smithi081.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-09-16T05:12:14.550 INFO:teuthology.orchestra.run.smithi081.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-09-16T05:12:14.550 INFO:teuthology.orchestra.run.smithi081.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-09-16T05:12:14.550 INFO:teuthology.orchestra.run.smithi081.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-09-16T05:12:14.550 INFO:teuthology.orchestra.run.smithi081.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-09-16T05:12:14.550 INFO:teuthology.orchestra.run.smithi081.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-09-16T05:12:14.550 INFO:teuthology.orchestra.run.smithi081.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-09-16T05:12:14.550 INFO:teuthology.orchestra.run.smithi081.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-16T05:12:14.550 INFO:teuthology.orchestra.run.smithi081.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-09-16T05:12:14.550 INFO:teuthology.orchestra.run.smithi081.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-09-16T05:12:14.550 INFO:teuthology.orchestra.run.smithi081.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-09-16T05:12:14.550 INFO:teuthology.orchestra.run.smithi081.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-09-16T05:12:14.550 INFO:teuthology.orchestra.run.smithi081.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-09-16T05:12:14.551 INFO:teuthology.orchestra.run.smithi081.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-09-16T05:12:14.551 INFO:teuthology.orchestra.run.smithi081.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-09-16T05:12:14.551 INFO:teuthology.orchestra.run.smithi081.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-09-16T05:12:14.560 INFO:teuthology.orchestra.run.smithi167.stdout:0 upgraded, 118 newly installed, 0 to remove and 331 not upgraded. 2024-09-16T05:12:14.560 INFO:teuthology.orchestra.run.smithi167.stdout:Need to get 181 MB of archives. 2024-09-16T05:12:14.560 INFO:teuthology.orchestra.run.smithi167.stdout:After this operation, 829 MB of additional disk space will be used. 2024-09-16T05:12:14.560 INFO:teuthology.orchestra.run.smithi167.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-09-16T05:12:14.564 INFO:teuthology.orchestra.run.smithi029.stdout:The following NEW packages will be installed: 2024-09-16T05:12:14.564 INFO:teuthology.orchestra.run.smithi029.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-09-16T05:12:14.564 INFO:teuthology.orchestra.run.smithi029.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-09-16T05:12:14.564 INFO:teuthology.orchestra.run.smithi029.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-09-16T05:12:14.565 INFO:teuthology.orchestra.run.smithi029.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-09-16T05:12:14.565 INFO:teuthology.orchestra.run.smithi029.stdout: liblua5.3-dev liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 2024-09-16T05:12:14.566 INFO:teuthology.orchestra.run.smithi029.stdout: libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-09-16T05:12:14.566 INFO:teuthology.orchestra.run.smithi029.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-09-16T05:12:14.566 INFO:teuthology.orchestra.run.smithi029.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-09-16T05:12:14.566 INFO:teuthology.orchestra.run.smithi029.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-09-16T05:12:14.566 INFO:teuthology.orchestra.run.smithi029.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-09-16T05:12:14.566 INFO:teuthology.orchestra.run.smithi029.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-09-16T05:12:14.566 INFO:teuthology.orchestra.run.smithi029.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-09-16T05:12:14.566 INFO:teuthology.orchestra.run.smithi029.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-09-16T05:12:14.566 INFO:teuthology.orchestra.run.smithi029.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-09-16T05:12:14.566 INFO:teuthology.orchestra.run.smithi029.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-09-16T05:12:14.566 INFO:teuthology.orchestra.run.smithi029.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-09-16T05:12:14.566 INFO:teuthology.orchestra.run.smithi029.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-09-16T05:12:14.566 INFO:teuthology.orchestra.run.smithi029.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-16T05:12:14.567 INFO:teuthology.orchestra.run.smithi029.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-09-16T05:12:14.567 INFO:teuthology.orchestra.run.smithi029.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-09-16T05:12:14.567 INFO:teuthology.orchestra.run.smithi029.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-09-16T05:12:14.567 INFO:teuthology.orchestra.run.smithi029.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-09-16T05:12:14.567 INFO:teuthology.orchestra.run.smithi029.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-09-16T05:12:14.567 INFO:teuthology.orchestra.run.smithi029.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-09-16T05:12:14.567 INFO:teuthology.orchestra.run.smithi029.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-09-16T05:12:14.567 INFO:teuthology.orchestra.run.smithi029.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-09-16T05:12:14.610 INFO:teuthology.orchestra.run.smithi081.stdout:0 upgraded, 118 newly installed, 0 to remove and 331 not upgraded. 2024-09-16T05:12:14.610 INFO:teuthology.orchestra.run.smithi081.stdout:Need to get 181 MB of archives. 2024-09-16T05:12:14.610 INFO:teuthology.orchestra.run.smithi081.stdout:After this operation, 829 MB of additional disk space will be used. 2024-09-16T05:12:14.610 INFO:teuthology.orchestra.run.smithi081.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-09-16T05:12:14.641 INFO:teuthology.orchestra.run.smithi167.stdout:Get:2 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.1.1-326-g8921c8ef-1jammy [3,590 kB] 2024-09-16T05:12:14.646 INFO:teuthology.orchestra.run.smithi167.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-09-16T05:12:14.649 INFO:teuthology.orchestra.run.smithi167.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-09-16T05:12:14.666 INFO:teuthology.orchestra.run.smithi167.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-09-16T05:12:14.694 INFO:teuthology.orchestra.run.smithi081.stdout:Get:2 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.1.1-326-g8921c8ef-1jammy [3,590 kB] 2024-09-16T05:12:14.699 INFO:teuthology.orchestra.run.smithi081.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-09-16T05:12:14.701 INFO:teuthology.orchestra.run.smithi081.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-09-16T05:12:14.710 INFO:teuthology.orchestra.run.smithi029.stdout:0 upgraded, 118 newly installed, 0 to remove and 331 not upgraded. 2024-09-16T05:12:14.710 INFO:teuthology.orchestra.run.smithi029.stdout:Need to get 181 MB of archives. 2024-09-16T05:12:14.710 INFO:teuthology.orchestra.run.smithi029.stdout:After this operation, 829 MB of additional disk space will be used. 2024-09-16T05:12:14.711 INFO:teuthology.orchestra.run.smithi029.stdout:Get:1 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.1.1-326-g8921c8ef-1jammy [3,590 kB] 2024-09-16T05:12:14.719 INFO:teuthology.orchestra.run.smithi081.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-09-16T05:12:14.723 INFO:teuthology.orchestra.run.smithi167.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-09-16T05:12:14.729 INFO:teuthology.orchestra.run.smithi167.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-09-16T05:12:14.741 INFO:teuthology.orchestra.run.smithi167.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-09-16T05:12:14.745 INFO:teuthology.orchestra.run.smithi167.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-09-16T05:12:14.746 INFO:teuthology.orchestra.run.smithi167.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-09-16T05:12:14.747 INFO:teuthology.orchestra.run.smithi167.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-09-16T05:12:14.754 INFO:teuthology.orchestra.run.smithi167.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline-dev amd64 8.1.2-1 [166 kB] 2024-09-16T05:12:14.756 INFO:teuthology.orchestra.run.smithi029.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-09-16T05:12:14.757 INFO:teuthology.orchestra.run.smithi167.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblua5.3-dev amd64 5.3.6-1build1 [167 kB] 2024-09-16T05:12:14.759 INFO:teuthology.orchestra.run.smithi167.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua5.1 amd64 5.1.5-8.1build4 [94.6 kB] 2024-09-16T05:12:14.760 INFO:teuthology.orchestra.run.smithi167.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-09-16T05:12:14.762 INFO:teuthology.orchestra.run.smithi167.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-09-16T05:12:14.765 INFO:teuthology.orchestra.run.smithi167.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.2 [175 kB] 2024-09-16T05:12:14.778 INFO:teuthology.orchestra.run.smithi167.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy/universe amd64 luarocks all 3.8.0+dfsg1-1 [140 kB] 2024-09-16T05:12:14.778 INFO:teuthology.orchestra.run.smithi081.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-09-16T05:12:14.780 INFO:teuthology.orchestra.run.smithi167.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-09-16T05:12:14.780 INFO:teuthology.orchestra.run.smithi167.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-09-16T05:12:14.780 INFO:teuthology.orchestra.run.smithi167.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-cheroot all 8.5.2+ds1-1ubuntu3.1 [71.1 kB] 2024-09-16T05:12:14.781 INFO:teuthology.orchestra.run.smithi167.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-09-16T05:12:14.782 INFO:teuthology.orchestra.run.smithi167.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-09-16T05:12:14.782 INFO:teuthology.orchestra.run.smithi167.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-09-16T05:12:14.782 INFO:teuthology.orchestra.run.smithi167.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-09-16T05:12:14.783 INFO:teuthology.orchestra.run.smithi081.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-09-16T05:12:14.795 INFO:teuthology.orchestra.run.smithi081.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-09-16T05:12:14.796 INFO:teuthology.orchestra.run.smithi167.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-09-16T05:12:14.797 INFO:teuthology.orchestra.run.smithi167.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-09-16T05:12:14.799 INFO:teuthology.orchestra.run.smithi081.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-09-16T05:12:14.799 INFO:teuthology.orchestra.run.smithi081.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-09-16T05:12:14.800 INFO:teuthology.orchestra.run.smithi081.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-09-16T05:12:14.809 INFO:teuthology.orchestra.run.smithi081.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline-dev amd64 8.1.2-1 [166 kB] 2024-09-16T05:12:14.811 INFO:teuthology.orchestra.run.smithi081.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblua5.3-dev amd64 5.3.6-1build1 [167 kB] 2024-09-16T05:12:14.813 INFO:teuthology.orchestra.run.smithi081.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua5.1 amd64 5.1.5-8.1build4 [94.6 kB] 2024-09-16T05:12:14.814 INFO:teuthology.orchestra.run.smithi167.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-09-16T05:12:14.815 INFO:teuthology.orchestra.run.smithi081.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-09-16T05:12:14.816 INFO:teuthology.orchestra.run.smithi167.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-09-16T05:12:14.817 INFO:teuthology.orchestra.run.smithi081.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-09-16T05:12:14.817 INFO:teuthology.orchestra.run.smithi167.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-09-16T05:12:14.817 INFO:teuthology.orchestra.run.smithi167.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-09-16T05:12:14.818 INFO:teuthology.orchestra.run.smithi167.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-mako all 1.1.3+ds1-2ubuntu0.1 [60.5 kB] 2024-09-16T05:12:14.819 INFO:teuthology.orchestra.run.smithi081.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.2 [175 kB] 2024-09-16T05:12:14.819 INFO:teuthology.orchestra.run.smithi167.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-09-16T05:12:14.819 INFO:teuthology.orchestra.run.smithi167.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-09-16T05:12:14.819 INFO:teuthology.orchestra.run.smithi167.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-webob all 1:1.8.6-1.1ubuntu0.1 [86.7 kB] 2024-09-16T05:12:14.829 INFO:teuthology.orchestra.run.smithi167.stdout:Get:36 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.1.1-326-g8921c8ef-1jammy [3,241 kB] 2024-09-16T05:12:14.830 INFO:teuthology.orchestra.run.smithi167.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-09-16T05:12:14.831 INFO:teuthology.orchestra.run.smithi167.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-09-16T05:12:14.833 INFO:teuthology.orchestra.run.smithi081.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy/universe amd64 luarocks all 3.8.0+dfsg1-1 [140 kB] 2024-09-16T05:12:14.834 INFO:teuthology.orchestra.run.smithi081.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-09-16T05:12:14.835 INFO:teuthology.orchestra.run.smithi081.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-09-16T05:12:14.835 INFO:teuthology.orchestra.run.smithi081.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-cheroot all 8.5.2+ds1-1ubuntu3.1 [71.1 kB] 2024-09-16T05:12:14.836 INFO:teuthology.orchestra.run.smithi081.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-09-16T05:12:14.837 INFO:teuthology.orchestra.run.smithi081.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-09-16T05:12:14.837 INFO:teuthology.orchestra.run.smithi081.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-09-16T05:12:14.837 INFO:teuthology.orchestra.run.smithi081.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-09-16T05:12:14.847 INFO:teuthology.orchestra.run.smithi167.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-09-16T05:12:14.851 INFO:teuthology.orchestra.run.smithi081.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-09-16T05:12:14.851 INFO:teuthology.orchestra.run.smithi081.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-09-16T05:12:14.853 INFO:teuthology.orchestra.run.smithi167.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-09-16T05:12:14.853 INFO:teuthology.orchestra.run.smithi167.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-09-16T05:12:14.854 INFO:teuthology.orchestra.run.smithi167.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-09-16T05:12:14.854 INFO:teuthology.orchestra.run.smithi167.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-09-16T05:12:14.855 INFO:teuthology.orchestra.run.smithi167.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-09-16T05:12:14.857 INFO:teuthology.orchestra.run.smithi167.stdout:Get:45 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-idna all 3.3-1ubuntu0.1 [52.1 kB] 2024-09-16T05:12:14.858 INFO:teuthology.orchestra.run.smithi167.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-09-16T05:12:14.864 INFO:teuthology.orchestra.run.smithi167.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-09-16T05:12:14.865 INFO:teuthology.orchestra.run.smithi167.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.2 [181 kB] 2024-09-16T05:12:14.867 INFO:teuthology.orchestra.run.smithi081.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-09-16T05:12:14.870 INFO:teuthology.orchestra.run.smithi081.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-09-16T05:12:14.871 INFO:teuthology.orchestra.run.smithi081.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-09-16T05:12:14.871 INFO:teuthology.orchestra.run.smithi081.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-09-16T05:12:14.871 INFO:teuthology.orchestra.run.smithi081.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-mako all 1.1.3+ds1-2ubuntu0.1 [60.5 kB] 2024-09-16T05:12:14.872 INFO:teuthology.orchestra.run.smithi081.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-09-16T05:12:14.873 INFO:teuthology.orchestra.run.smithi081.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-09-16T05:12:14.873 INFO:teuthology.orchestra.run.smithi081.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-webob all 1:1.8.6-1.1ubuntu0.1 [86.7 kB] 2024-09-16T05:12:14.881 INFO:teuthology.orchestra.run.smithi167.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-09-16T05:12:14.882 INFO:teuthology.orchestra.run.smithi167.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-09-16T05:12:14.883 INFO:teuthology.orchestra.run.smithi167.stdout:Get:51 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-09-16T05:12:14.885 INFO:teuthology.orchestra.run.smithi081.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-09-16T05:12:14.886 INFO:teuthology.orchestra.run.smithi081.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-09-16T05:12:14.886 INFO:teuthology.orchestra.run.smithi167.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-09-16T05:12:14.902 INFO:teuthology.orchestra.run.smithi081.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-09-16T05:12:14.908 INFO:teuthology.orchestra.run.smithi081.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-09-16T05:12:14.908 INFO:teuthology.orchestra.run.smithi081.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-09-16T05:12:14.908 INFO:teuthology.orchestra.run.smithi081.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-09-16T05:12:14.909 INFO:teuthology.orchestra.run.smithi081.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-09-16T05:12:14.910 INFO:teuthology.orchestra.run.smithi081.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-09-16T05:12:14.912 INFO:teuthology.orchestra.run.smithi081.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-idna all 3.3-1ubuntu0.1 [52.1 kB] 2024-09-16T05:12:14.913 INFO:teuthology.orchestra.run.smithi081.stdout:Get:45 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-09-16T05:12:14.914 INFO:teuthology.orchestra.run.smithi167.stdout:Get:53 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.1.1-326-g8921c8ef-1jammy [719 kB] 2024-09-16T05:12:14.919 INFO:teuthology.orchestra.run.smithi081.stdout:Get:46 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-09-16T05:12:14.920 INFO:teuthology.orchestra.run.smithi081.stdout:Get:47 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.2 [181 kB] 2024-09-16T05:12:14.937 INFO:teuthology.orchestra.run.smithi081.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-09-16T05:12:14.938 INFO:teuthology.orchestra.run.smithi081.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-09-16T05:12:14.938 INFO:teuthology.orchestra.run.smithi081.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-09-16T05:12:14.941 INFO:teuthology.orchestra.run.smithi081.stdout:Get:51 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-babel-localedata all 2.8.0+dfsg.1-7 [4,982 kB] 2024-09-16T05:12:14.941 INFO:teuthology.orchestra.run.smithi167.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-09-16T05:12:14.942 INFO:teuthology.orchestra.run.smithi167.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.2 [108 kB] 2024-09-16T05:12:14.943 INFO:teuthology.orchestra.run.smithi167.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-09-16T05:12:14.943 INFO:teuthology.orchestra.run.smithi167.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-09-16T05:12:14.944 INFO:teuthology.orchestra.run.smithi167.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-09-16T05:12:14.945 INFO:teuthology.orchestra.run.smithi167.stdout:Get:59 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.1.1-326-g8921c8ef-1jammy [356 kB] 2024-09-16T05:12:14.952 INFO:teuthology.orchestra.run.smithi167.stdout:Get:60 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.1.1-326-g8921c8ef-1jammy [32.8 kB] 2024-09-16T05:12:14.953 INFO:teuthology.orchestra.run.smithi167.stdout:Get:61 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.1.1-326-g8921c8ef-1jammy [180 kB] 2024-09-16T05:12:14.957 INFO:teuthology.orchestra.run.smithi167.stdout:Get:62 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.1.1-326-g8921c8ef-1jammy [67.8 kB] 2024-09-16T05:12:14.958 INFO:teuthology.orchestra.run.smithi167.stdout:Get:63 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.1.1-326-g8921c8ef-1jammy [333 kB] 2024-09-16T05:12:14.962 INFO:teuthology.orchestra.run.smithi167.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-09-16T05:12:14.965 INFO:teuthology.orchestra.run.smithi167.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-09-16T05:12:14.965 INFO:teuthology.orchestra.run.smithi167.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-09-16T05:12:14.965 INFO:teuthology.orchestra.run.smithi167.stdout:Get:67 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.1.1-326-g8921c8ef-1jammy [6,875 kB] 2024-09-16T05:12:14.979 INFO:teuthology.orchestra.run.smithi167.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-09-16T05:12:14.979 INFO:teuthology.orchestra.run.smithi167.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-09-16T05:12:14.979 INFO:teuthology.orchestra.run.smithi167.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-09-16T05:12:14.980 INFO:teuthology.orchestra.run.smithi167.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-09-16T05:12:14.980 INFO:teuthology.orchestra.run.smithi167.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-09-16T05:12:14.981 INFO:teuthology.orchestra.run.smithi167.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-requests-oauthlib all 1.3.0+ds-0.1 [18.7 kB] 2024-09-16T05:12:14.985 INFO:teuthology.orchestra.run.smithi081.stdout:Get:52 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.1.1-326-g8921c8ef-1jammy [3,241 kB] 2024-09-16T05:12:14.993 INFO:teuthology.orchestra.run.smithi167.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-09-16T05:12:14.994 INFO:teuthology.orchestra.run.smithi167.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-09-16T05:12:14.995 INFO:teuthology.orchestra.run.smithi081.stdout:Get:53 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-09-16T05:12:14.995 INFO:teuthology.orchestra.run.smithi081.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.2 [108 kB] 2024-09-16T05:12:14.995 INFO:teuthology.orchestra.run.smithi081.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-09-16T05:12:14.996 INFO:teuthology.orchestra.run.smithi081.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-09-16T05:12:14.997 INFO:teuthology.orchestra.run.smithi167.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-09-16T05:12:14.997 INFO:teuthology.orchestra.run.smithi081.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-09-16T05:12:15.010 INFO:teuthology.orchestra.run.smithi167.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-09-16T05:12:15.011 INFO:teuthology.orchestra.run.smithi167.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-09-16T05:12:15.012 INFO:teuthology.orchestra.run.smithi167.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-09-16T05:12:15.014 INFO:teuthology.orchestra.run.smithi081.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-09-16T05:12:15.015 INFO:teuthology.orchestra.run.smithi167.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-09-16T05:12:15.015 INFO:teuthology.orchestra.run.smithi081.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-09-16T05:12:15.016 INFO:teuthology.orchestra.run.smithi081.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-09-16T05:12:15.018 INFO:teuthology.orchestra.run.smithi167.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-socket amd64 3.0~rc1+git+ac3201d-6 [78.9 kB] 2024-09-16T05:12:15.018 INFO:teuthology.orchestra.run.smithi167.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-09-16T05:12:15.019 INFO:teuthology.orchestra.run.smithi167.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.3 [474 kB] 2024-09-16T05:12:15.027 INFO:teuthology.orchestra.run.smithi167.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-09-16T05:12:15.028 INFO:teuthology.orchestra.run.smithi167.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-09-16T05:12:15.030 INFO:teuthology.orchestra.run.smithi081.stdout:Get:61 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-09-16T05:12:15.030 INFO:teuthology.orchestra.run.smithi081.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-09-16T05:12:15.031 INFO:teuthology.orchestra.run.smithi167.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-09-16T05:12:15.032 INFO:teuthology.orchestra.run.smithi081.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-09-16T05:12:15.032 INFO:teuthology.orchestra.run.smithi081.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-09-16T05:12:15.033 INFO:teuthology.orchestra.run.smithi081.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-09-16T05:12:15.033 INFO:teuthology.orchestra.run.smithi081.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-09-16T05:12:15.049 INFO:teuthology.orchestra.run.smithi167.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-09-16T05:12:15.050 INFO:teuthology.orchestra.run.smithi081.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-09-16T05:12:15.050 INFO:teuthology.orchestra.run.smithi081.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-09-16T05:12:15.050 INFO:teuthology.orchestra.run.smithi167.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-09-16T05:12:15.051 INFO:teuthology.orchestra.run.smithi167.stdout:Get:89 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-09-16T05:12:15.052 INFO:teuthology.orchestra.run.smithi167.stdout:Get:90 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-09-16T05:12:15.052 INFO:teuthology.orchestra.run.smithi167.stdout:Get:91 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-09-16T05:12:15.053 INFO:teuthology.orchestra.run.smithi081.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-09-16T05:12:15.054 INFO:teuthology.orchestra.run.smithi081.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-09-16T05:12:15.056 INFO:teuthology.orchestra.run.smithi081.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-09-16T05:12:15.056 INFO:teuthology.orchestra.run.smithi081.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-09-16T05:12:15.059 INFO:teuthology.orchestra.run.smithi167.stdout:Get:92 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-09-16T05:12:15.059 INFO:teuthology.orchestra.run.smithi167.stdout:Get:93 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-09-16T05:12:15.067 INFO:teuthology.orchestra.run.smithi167.stdout:Get:94 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-09-16T05:12:15.067 INFO:teuthology.orchestra.run.smithi081.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-09-16T05:12:15.068 INFO:teuthology.orchestra.run.smithi167.stdout:Get:95 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-09-16T05:12:15.070 INFO:teuthology.orchestra.run.smithi167.stdout:Get:96 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-09-16T05:12:15.070 INFO:teuthology.orchestra.run.smithi081.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-socket amd64 3.0~rc1+git+ac3201d-6 [78.9 kB] 2024-09-16T05:12:15.070 INFO:teuthology.orchestra.run.smithi081.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-09-16T05:12:15.071 INFO:teuthology.orchestra.run.smithi081.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.3 [474 kB] 2024-09-16T05:12:15.084 INFO:teuthology.orchestra.run.smithi081.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-09-16T05:12:15.085 INFO:teuthology.orchestra.run.smithi081.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-09-16T05:12:15.088 INFO:teuthology.orchestra.run.smithi081.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-09-16T05:12:15.088 INFO:teuthology.orchestra.run.smithi081.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-09-16T05:12:15.088 INFO:teuthology.orchestra.run.smithi081.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-09-16T05:12:15.089 INFO:teuthology.orchestra.run.smithi081.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-09-16T05:12:15.101 INFO:teuthology.orchestra.run.smithi081.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-09-16T05:12:15.101 INFO:teuthology.orchestra.run.smithi081.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-09-16T05:12:15.108 INFO:teuthology.orchestra.run.smithi081.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-09-16T05:12:15.108 INFO:teuthology.orchestra.run.smithi081.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-09-16T05:12:15.118 INFO:teuthology.orchestra.run.smithi081.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-09-16T05:12:15.120 INFO:teuthology.orchestra.run.smithi081.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-09-16T05:12:15.120 INFO:teuthology.orchestra.run.smithi081.stdout:Get:89 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-09-16T05:12:15.122 INFO:teuthology.orchestra.run.smithi081.stdout:Get:90 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.1.1-326-g8921c8ef-1jammy [719 kB] 2024-09-16T05:12:15.152 INFO:teuthology.orchestra.run.smithi167.stdout:Get:97 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.1.1-326-g8921c8ef-1jammy [112 kB] 2024-09-16T05:12:15.153 INFO:teuthology.orchestra.run.smithi029.stdout:Get:3 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.1.1-326-g8921c8ef-1jammy [3,241 kB] 2024-09-16T05:12:15.154 INFO:teuthology.orchestra.run.smithi167.stdout:Get:98 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.1.1-326-g8921c8ef-1jammy [472 kB] 2024-09-16T05:12:15.176 INFO:teuthology.orchestra.run.smithi029.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-09-16T05:12:15.179 INFO:teuthology.orchestra.run.smithi081.stdout:Get:91 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.1.1-326-g8921c8ef-1jammy [356 kB] 2024-09-16T05:12:15.186 INFO:teuthology.orchestra.run.smithi081.stdout:Get:92 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.1.1-326-g8921c8ef-1jammy [32.8 kB] 2024-09-16T05:12:15.187 INFO:teuthology.orchestra.run.smithi167.stdout:Get:99 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.1.1-326-g8921c8ef-1jammy [25.9 MB] 2024-09-16T05:12:15.187 INFO:teuthology.orchestra.run.smithi081.stdout:Get:93 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.1.1-326-g8921c8ef-1jammy [180 kB] 2024-09-16T05:12:15.189 INFO:teuthology.orchestra.run.smithi029.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-09-16T05:12:15.191 INFO:teuthology.orchestra.run.smithi081.stdout:Get:94 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.1.1-326-g8921c8ef-1jammy [67.8 kB] 2024-09-16T05:12:15.193 INFO:teuthology.orchestra.run.smithi081.stdout:Get:95 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.1.1-326-g8921c8ef-1jammy [333 kB] 2024-09-16T05:12:15.244 INFO:teuthology.orchestra.run.smithi081.stdout:Get:96 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.1.1-326-g8921c8ef-1jammy [6,875 kB] 2024-09-16T05:12:15.270 INFO:teuthology.orchestra.run.smithi029.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-09-16T05:12:15.500 INFO:teuthology.orchestra.run.smithi029.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-09-16T05:12:15.511 INFO:teuthology.orchestra.run.smithi029.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-09-16T05:12:15.540 INFO:teuthology.orchestra.run.smithi029.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-09-16T05:12:15.549 INFO:teuthology.orchestra.run.smithi029.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-09-16T05:12:15.550 INFO:teuthology.orchestra.run.smithi029.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-09-16T05:12:15.551 INFO:teuthology.orchestra.run.smithi029.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-09-16T05:12:15.552 INFO:teuthology.orchestra.run.smithi029.stdout:Get:13 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.1.1-326-g8921c8ef-1jammy [719 kB] 2024-09-16T05:12:15.567 INFO:teuthology.orchestra.run.smithi029.stdout:Get:14 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.1.1-326-g8921c8ef-1jammy [356 kB] 2024-09-16T05:12:15.570 INFO:teuthology.orchestra.run.smithi029.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline-dev amd64 8.1.2-1 [166 kB] 2024-09-16T05:12:15.574 INFO:teuthology.orchestra.run.smithi029.stdout:Get:16 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.1.1-326-g8921c8ef-1jammy [32.8 kB] 2024-09-16T05:12:15.574 INFO:teuthology.orchestra.run.smithi029.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblua5.3-dev amd64 5.3.6-1build1 [167 kB] 2024-09-16T05:12:15.575 INFO:teuthology.orchestra.run.smithi029.stdout:Get:18 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.1.1-326-g8921c8ef-1jammy [180 kB] 2024-09-16T05:12:15.579 INFO:teuthology.orchestra.run.smithi029.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua5.1 amd64 5.1.5-8.1build4 [94.6 kB] 2024-09-16T05:12:15.579 INFO:teuthology.orchestra.run.smithi029.stdout:Get:20 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.1.1-326-g8921c8ef-1jammy [67.8 kB] 2024-09-16T05:12:15.581 INFO:teuthology.orchestra.run.smithi029.stdout:Get:21 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.1.1-326-g8921c8ef-1jammy [333 kB] 2024-09-16T05:12:15.582 INFO:teuthology.orchestra.run.smithi029.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-09-16T05:12:15.599 INFO:teuthology.orchestra.run.smithi081.stdout:Get:97 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.1.1-326-g8921c8ef-1jammy [112 kB] 2024-09-16T05:12:15.601 INFO:teuthology.orchestra.run.smithi081.stdout:Get:98 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.1.1-326-g8921c8ef-1jammy [472 kB] 2024-09-16T05:12:15.609 INFO:teuthology.orchestra.run.smithi081.stdout:Get:99 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.1.1-326-g8921c8ef-1jammy [25.9 MB] 2024-09-16T05:12:15.618 INFO:teuthology.orchestra.run.smithi029.stdout:Get:23 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.1.1-326-g8921c8ef-1jammy [6,875 kB] 2024-09-16T05:12:15.664 INFO:teuthology.orchestra.run.smithi029.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-09-16T05:12:15.669 INFO:teuthology.orchestra.run.smithi029.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.2 [175 kB] 2024-09-16T05:12:15.673 INFO:teuthology.orchestra.run.smithi029.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy/universe amd64 luarocks all 3.8.0+dfsg1-1 [140 kB] 2024-09-16T05:12:15.677 INFO:teuthology.orchestra.run.smithi029.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-09-16T05:12:15.678 INFO:teuthology.orchestra.run.smithi029.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-09-16T05:12:15.679 INFO:teuthology.orchestra.run.smithi029.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-cheroot all 8.5.2+ds1-1ubuntu3.1 [71.1 kB] 2024-09-16T05:12:15.681 INFO:teuthology.orchestra.run.smithi029.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-09-16T05:12:15.681 INFO:teuthology.orchestra.run.smithi029.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-09-16T05:12:15.682 INFO:teuthology.orchestra.run.smithi029.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-09-16T05:12:15.746 INFO:teuthology.orchestra.run.smithi029.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-09-16T05:12:15.765 INFO:teuthology.orchestra.run.smithi029.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-09-16T05:12:15.766 INFO:teuthology.orchestra.run.smithi029.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-09-16T05:12:15.766 INFO:teuthology.orchestra.run.smithi029.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-09-16T05:12:15.772 INFO:teuthology.orchestra.run.smithi029.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-09-16T05:12:15.773 INFO:teuthology.orchestra.run.smithi029.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-09-16T05:12:15.774 INFO:teuthology.orchestra.run.smithi029.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-09-16T05:12:15.774 INFO:teuthology.orchestra.run.smithi029.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-09-16T05:12:15.776 INFO:teuthology.orchestra.run.smithi029.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-09-16T05:12:15.828 INFO:teuthology.orchestra.run.smithi029.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-09-16T05:12:15.859 INFO:teuthology.orchestra.run.smithi029.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-webob all 1:1.8.6-1.1ubuntu0.1 [86.7 kB] 2024-09-16T05:12:15.861 INFO:teuthology.orchestra.run.smithi029.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-09-16T05:12:15.863 INFO:teuthology.orchestra.run.smithi029.stdout:Get:45 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-09-16T05:12:15.864 INFO:teuthology.orchestra.run.smithi029.stdout:Get:46 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-09-16T05:12:15.875 INFO:teuthology.orchestra.run.smithi029.stdout:Get:47 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-09-16T05:12:15.875 INFO:teuthology.orchestra.run.smithi029.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-09-16T05:12:15.910 INFO:teuthology.orchestra.run.smithi029.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-09-16T05:12:15.911 INFO:teuthology.orchestra.run.smithi029.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-09-16T05:12:15.913 INFO:teuthology.orchestra.run.smithi029.stdout:Get:51 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-09-16T05:12:15.991 INFO:teuthology.orchestra.run.smithi029.stdout:Get:52 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-idna all 3.3-1ubuntu0.1 [52.1 kB] 2024-09-16T05:12:15.992 INFO:teuthology.orchestra.run.smithi029.stdout:Get:53 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-09-16T05:12:15.995 INFO:teuthology.orchestra.run.smithi029.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-09-16T05:12:15.997 INFO:teuthology.orchestra.run.smithi029.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.2 [181 kB] 2024-09-16T05:12:16.001 INFO:teuthology.orchestra.run.smithi029.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-09-16T05:12:16.004 INFO:teuthology.orchestra.run.smithi029.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-09-16T05:12:16.072 INFO:teuthology.orchestra.run.smithi029.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-09-16T05:12:16.077 INFO:teuthology.orchestra.run.smithi029.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-babel-localedata all 2.8.0+dfsg.1-7 [4,982 kB] 2024-09-16T05:12:16.190 INFO:teuthology.orchestra.run.smithi167.stdout:Get:100 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.1.1-326-g8921c8ef-1jammy [5,145 kB] 2024-09-16T05:12:16.195 INFO:teuthology.orchestra.run.smithi029.stdout:Get:60 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.1.1-326-g8921c8ef-1jammy [112 kB] 2024-09-16T05:12:16.197 INFO:teuthology.orchestra.run.smithi029.stdout:Get:61 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.1.1-326-g8921c8ef-1jammy [472 kB] 2024-09-16T05:12:16.241 INFO:teuthology.orchestra.run.smithi029.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-09-16T05:12:16.243 INFO:teuthology.orchestra.run.smithi029.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.2 [108 kB] 2024-09-16T05:12:16.244 INFO:teuthology.orchestra.run.smithi029.stdout:Get:64 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.1.1-326-g8921c8ef-1jammy [25.9 MB] 2024-09-16T05:12:16.246 INFO:teuthology.orchestra.run.smithi029.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-09-16T05:12:16.247 INFO:teuthology.orchestra.run.smithi029.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-09-16T05:12:16.249 INFO:teuthology.orchestra.run.smithi029.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-09-16T05:12:16.286 INFO:teuthology.orchestra.run.smithi029.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-09-16T05:12:16.289 INFO:teuthology.orchestra.run.smithi029.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-09-16T05:12:16.289 INFO:teuthology.orchestra.run.smithi029.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-09-16T05:12:16.323 INFO:teuthology.orchestra.run.smithi167.stdout:Get:101 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.1.1-326-g8921c8ef-1jammy [245 kB] 2024-09-16T05:12:16.328 INFO:teuthology.orchestra.run.smithi167.stdout:Get:102 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.1.1-326-g8921c8ef-1jammy [124 kB] 2024-09-16T05:12:16.331 INFO:teuthology.orchestra.run.smithi167.stdout:Get:103 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.1.1-326-g8921c8ef-1jammy [1,555 kB] 2024-09-16T05:12:16.347 INFO:teuthology.orchestra.run.smithi029.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-09-16T05:12:16.347 INFO:teuthology.orchestra.run.smithi029.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-09-16T05:12:16.384 INFO:teuthology.orchestra.run.smithi167.stdout:Get:104 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.1.1-326-g8921c8ef-1jammy [6,143 kB] 2024-09-16T05:12:16.408 INFO:teuthology.orchestra.run.smithi029.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-09-16T05:12:16.409 INFO:teuthology.orchestra.run.smithi029.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-09-16T05:12:16.410 INFO:teuthology.orchestra.run.smithi029.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-09-16T05:12:16.411 INFO:teuthology.orchestra.run.smithi029.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-09-16T05:12:16.412 INFO:teuthology.orchestra.run.smithi029.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-09-16T05:12:16.413 INFO:teuthology.orchestra.run.smithi029.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-09-16T05:12:16.420 INFO:teuthology.orchestra.run.smithi029.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-09-16T05:12:16.496 INFO:teuthology.orchestra.run.smithi029.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-09-16T05:12:16.499 INFO:teuthology.orchestra.run.smithi029.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-09-16T05:12:16.501 INFO:teuthology.orchestra.run.smithi029.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-09-16T05:12:16.578 INFO:teuthology.orchestra.run.smithi029.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-09-16T05:12:16.585 INFO:teuthology.orchestra.run.smithi029.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-socket amd64 3.0~rc1+git+ac3201d-6 [78.9 kB] 2024-09-16T05:12:16.587 INFO:teuthology.orchestra.run.smithi029.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-09-16T05:12:16.589 INFO:teuthology.orchestra.run.smithi029.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.3 [474 kB] 2024-09-16T05:12:16.600 INFO:teuthology.orchestra.run.smithi029.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-09-16T05:12:16.601 INFO:teuthology.orchestra.run.smithi029.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-09-16T05:12:16.609 INFO:teuthology.orchestra.run.smithi029.stdout:Get:89 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-09-16T05:12:16.612 INFO:teuthology.orchestra.run.smithi167.stdout:Get:105 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.1.1-326-g8921c8ef-1jammy [22.8 MB] 2024-09-16T05:12:16.659 INFO:teuthology.orchestra.run.smithi029.stdout:Get:90 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-09-16T05:12:16.661 INFO:teuthology.orchestra.run.smithi029.stdout:Get:91 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-09-16T05:12:16.662 INFO:teuthology.orchestra.run.smithi029.stdout:Get:92 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-09-16T05:12:16.741 INFO:teuthology.orchestra.run.smithi029.stdout:Get:93 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-09-16T05:12:16.743 INFO:teuthology.orchestra.run.smithi029.stdout:Get:94 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-09-16T05:12:16.763 INFO:teuthology.orchestra.run.smithi029.stdout:Get:95 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-09-16T05:12:16.763 INFO:teuthology.orchestra.run.smithi029.stdout:Get:96 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-09-16T05:12:16.764 INFO:teuthology.orchestra.run.smithi029.stdout:Get:97 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-09-16T05:12:16.770 INFO:teuthology.orchestra.run.smithi029.stdout:Get:98 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-09-16T05:12:16.771 INFO:teuthology.orchestra.run.smithi029.stdout:Get:99 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-09-16T05:12:16.794 INFO:teuthology.orchestra.run.smithi081.stdout:Get:100 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.1.1-326-g8921c8ef-1jammy [5,145 kB] 2024-09-16T05:12:16.967 INFO:teuthology.orchestra.run.smithi081.stdout:Get:101 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.1.1-326-g8921c8ef-1jammy [245 kB] 2024-09-16T05:12:16.972 INFO:teuthology.orchestra.run.smithi081.stdout:Get:102 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.1.1-326-g8921c8ef-1jammy [124 kB] 2024-09-16T05:12:16.975 INFO:teuthology.orchestra.run.smithi081.stdout:Get:103 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.1.1-326-g8921c8ef-1jammy [1,555 kB] 2024-09-16T05:12:17.070 INFO:teuthology.orchestra.run.smithi081.stdout:Get:104 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.1.1-326-g8921c8ef-1jammy [6,143 kB] 2024-09-16T05:12:17.330 INFO:teuthology.orchestra.run.smithi081.stdout:Get:105 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.1.1-326-g8921c8ef-1jammy [22.8 MB] 2024-09-16T05:12:17.518 INFO:teuthology.orchestra.run.smithi167.stdout:Get:106 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.1.1-326-g8921c8ef-1jammy [14.1 kB] 2024-09-16T05:12:17.518 INFO:teuthology.orchestra.run.smithi167.stdout:Get:107 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.1.1-326-g8921c8ef-1jammy [877 kB] 2024-09-16T05:12:17.535 INFO:teuthology.orchestra.run.smithi167.stdout:Get:108 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.1.1-326-g8921c8ef-1jammy [2,462 kB] 2024-09-16T05:12:17.577 INFO:teuthology.orchestra.run.smithi167.stdout:Get:109 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.1.1-326-g8921c8ef-1jammy [794 kB] 2024-09-16T05:12:17.601 INFO:teuthology.orchestra.run.smithi167.stdout:Get:110 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.1.1-326-g8921c8ef-1jammy [152 kB] 2024-09-16T05:12:17.603 INFO:teuthology.orchestra.run.smithi167.stdout:Get:111 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.1.1-326-g8921c8ef-1jammy [2,275 kB] 2024-09-16T05:12:17.676 INFO:teuthology.orchestra.run.smithi167.stdout:Get:112 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.1.1-326-g8921c8ef-1jammy [8,625 kB] 2024-09-16T05:12:17.986 INFO:teuthology.orchestra.run.smithi167.stdout:Get:113 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.1.1-326-g8921c8ef-1jammy [14.2 kB] 2024-09-16T05:12:17.987 INFO:teuthology.orchestra.run.smithi167.stdout:Get:114 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.1.1-326-g8921c8ef-1jammy [51.4 MB] 2024-09-16T05:12:18.468 INFO:teuthology.orchestra.run.smithi081.stdout:Get:106 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.1.1-326-g8921c8ef-1jammy [14.1 kB] 2024-09-16T05:12:18.468 INFO:teuthology.orchestra.run.smithi081.stdout:Get:107 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.1.1-326-g8921c8ef-1jammy [877 kB] 2024-09-16T05:12:18.485 INFO:teuthology.orchestra.run.smithi081.stdout:Get:108 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.1.1-326-g8921c8ef-1jammy [2,462 kB] 2024-09-16T05:12:18.561 INFO:teuthology.orchestra.run.smithi081.stdout:Get:109 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.1.1-326-g8921c8ef-1jammy [794 kB] 2024-09-16T05:12:18.603 INFO:teuthology.orchestra.run.smithi081.stdout:Get:110 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.1.1-326-g8921c8ef-1jammy [152 kB] 2024-09-16T05:12:18.606 INFO:teuthology.orchestra.run.smithi081.stdout:Get:111 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.1.1-326-g8921c8ef-1jammy [2,275 kB] 2024-09-16T05:12:18.667 INFO:teuthology.orchestra.run.smithi029.stdout:Get:100 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.1.1-326-g8921c8ef-1jammy [5,145 kB] 2024-09-16T05:12:18.695 INFO:teuthology.orchestra.run.smithi081.stdout:Get:112 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.1.1-326-g8921c8ef-1jammy [8,625 kB] 2024-09-16T05:12:19.079 INFO:teuthology.orchestra.run.smithi029.stdout:Get:101 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.1.1-326-g8921c8ef-1jammy [245 kB] 2024-09-16T05:12:19.085 INFO:teuthology.orchestra.run.smithi029.stdout:Get:102 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.1.1-326-g8921c8ef-1jammy [124 kB] 2024-09-16T05:12:19.088 INFO:teuthology.orchestra.run.smithi029.stdout:Get:103 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.1.1-326-g8921c8ef-1jammy [1,555 kB] 2024-09-16T05:12:19.116 INFO:teuthology.orchestra.run.smithi081.stdout:Get:113 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.1.1-326-g8921c8ef-1jammy [14.2 kB] 2024-09-16T05:12:19.116 INFO:teuthology.orchestra.run.smithi081.stdout:Get:114 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.1.1-326-g8921c8ef-1jammy [51.4 MB] 2024-09-16T05:12:19.265 INFO:teuthology.orchestra.run.smithi029.stdout:Get:104 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.1.1-326-g8921c8ef-1jammy [6,143 kB] 2024-09-16T05:12:19.833 INFO:teuthology.orchestra.run.smithi029.stdout:Get:105 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.1.1-326-g8921c8ef-1jammy [22.8 MB] 2024-09-16T05:12:19.928 INFO:teuthology.orchestra.run.smithi167.stdout:Get:115 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.1.1-326-g8921c8ef-1jammy [130 kB] 2024-09-16T05:12:19.930 INFO:teuthology.orchestra.run.smithi167.stdout:Get:116 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.1.1-326-g8921c8ef-1jammy [39.0 kB] 2024-09-16T05:12:19.931 INFO:teuthology.orchestra.run.smithi167.stdout:Get:117 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.1.1-326-g8921c8ef-1jammy [13.6 MB] 2024-09-16T05:12:20.300 INFO:teuthology.orchestra.run.smithi167.stdout:Get:118 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.1.1-326-g8921c8ef-1jammy [91.5 kB] 2024-09-16T05:12:20.869 INFO:teuthology.orchestra.run.smithi167.stdout:Fetched 181 MB in 6s (31.2 MB/s) 2024-09-16T05:12:21.003 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-09-16T05:12:21.097 INFO:teuthology.orchestra.run.smithi167.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 165990 files and directories currently installed.) 2024-09-16T05:12:21.102 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-09-16T05:12:21.151 INFO:teuthology.orchestra.run.smithi029.stdout:Get:106 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.1.1-326-g8921c8ef-1jammy [14.1 kB] 2024-09-16T05:12:21.152 INFO:teuthology.orchestra.run.smithi029.stdout:Get:107 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.1.1-326-g8921c8ef-1jammy [877 kB] 2024-09-16T05:12:21.169 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-16T05:12:21.169 INFO:teuthology.orchestra.run.smithi029.stdout:Get:108 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.1.1-326-g8921c8ef-1jammy [2,462 kB] 2024-09-16T05:12:21.173 INFO:teuthology.orchestra.run.smithi081.stdout:Get:115 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.1.1-326-g8921c8ef-1jammy [130 kB] 2024-09-16T05:12:21.175 INFO:teuthology.orchestra.run.smithi081.stdout:Get:116 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.1.1-326-g8921c8ef-1jammy [39.0 kB] 2024-09-16T05:12:21.176 INFO:teuthology.orchestra.run.smithi081.stdout:Get:117 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.1.1-326-g8921c8ef-1jammy [13.6 MB] 2024-09-16T05:12:21.218 INFO:teuthology.orchestra.run.smithi029.stdout:Get:109 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.1.1-326-g8921c8ef-1jammy [794 kB] 2024-09-16T05:12:21.245 INFO:teuthology.orchestra.run.smithi029.stdout:Get:110 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.1.1-326-g8921c8ef-1jammy [152 kB] 2024-09-16T05:12:21.247 INFO:teuthology.orchestra.run.smithi029.stdout:Get:111 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.1.1-326-g8921c8ef-1jammy [2,275 kB] 2024-09-16T05:12:21.360 INFO:teuthology.orchestra.run.smithi029.stdout:Get:112 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.1.1-326-g8921c8ef-1jammy [8,625 kB] 2024-09-16T05:12:21.447 INFO:teuthology.orchestra.run.smithi081.stdout:Get:118 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.1.1-326-g8921c8ef-1jammy [91.5 kB] 2024-09-16T05:12:21.456 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-09-16T05:12:21.482 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-09-16T05:12:21.525 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-16T05:12:21.625 INFO:teuthology.orchestra.run.smithi029.stdout:Get:113 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.1.1-326-g8921c8ef-1jammy [14.2 kB] 2024-09-16T05:12:21.626 INFO:teuthology.orchestra.run.smithi029.stdout:Get:114 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.1.1-326-g8921c8ef-1jammy [51.4 MB] 2024-09-16T05:12:21.867 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-09-16T05:12:21.893 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-09-16T05:12:21.933 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-16T05:12:22.004 INFO:teuthology.orchestra.run.smithi081.stdout:Fetched 181 MB in 7s (26.3 MB/s) 2024-09-16T05:12:22.135 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-09-16T05:12:22.232 INFO:teuthology.orchestra.run.smithi081.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 165990 files and directories currently installed.) 2024-09-16T05:12:22.239 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-09-16T05:12:22.309 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-16T05:12:22.329 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-09-16T05:12:22.355 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-16T05:12:22.404 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T05:12:22.587 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-09-16T05:12:22.614 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-09-16T05:12:22.645 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-16T05:12:22.782 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-09-16T05:12:22.808 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-16T05:12:22.848 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T05:12:22.958 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-09-16T05:12:22.983 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-09-16T05:12:23.023 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-16T05:12:23.193 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-09-16T05:12:23.219 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-16T05:12:23.260 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T05:12:23.461 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-09-16T05:12:23.482 INFO:teuthology.orchestra.run.smithi029.stdout:Get:115 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.1.1-326-g8921c8ef-1jammy [130 kB] 2024-09-16T05:12:23.485 INFO:teuthology.orchestra.run.smithi029.stdout:Get:116 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.1.1-326-g8921c8ef-1jammy [39.0 kB] 2024-09-16T05:12:23.486 INFO:teuthology.orchestra.run.smithi029.stdout:Get:117 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.1.1-326-g8921c8ef-1jammy [13.6 MB] 2024-09-16T05:12:23.487 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-16T05:12:23.535 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T05:12:23.636 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-09-16T05:12:23.662 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-09-16T05:12:23.696 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-16T05:12:23.768 INFO:teuthology.orchestra.run.smithi029.stdout:Get:118 https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.1.1-326-g8921c8ef-1jammy [91.5 kB] 2024-09-16T05:12:23.880 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-09-16T05:12:23.907 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-16T05:12:23.939 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T05:12:23.974 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package librados2. 2024-09-16T05:12:23.997 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../007-librados2_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:24.049 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking librados2 (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:24.275 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-09-16T05:12:24.301 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-16T05:12:24.342 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T05:12:24.375 INFO:teuthology.orchestra.run.smithi029.stdout:Fetched 181 MB in 9s (19.7 MB/s) 2024-09-16T05:12:24.494 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package librbd1. 2024-09-16T05:12:24.520 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../008-librbd1_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:24.541 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-09-16T05:12:24.560 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking librbd1 (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:24.644 INFO:teuthology.orchestra.run.smithi029.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 165990 files and directories currently installed.) 2024-09-16T05:12:24.650 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-09-16T05:12:24.695 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-09-16T05:12:24.721 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-09-16T05:12:24.731 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-16T05:12:24.761 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-16T05:12:25.013 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package libcephfs2. 2024-09-16T05:12:25.030 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../009-libcephfs2_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:25.047 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-09-16T05:12:25.048 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package librados2. 2024-09-16T05:12:25.071 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking libcephfs2 (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:25.074 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../007-librados2_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:25.074 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-09-16T05:12:25.106 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking librados2 (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:25.114 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-16T05:12:25.349 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-rados. 2024-09-16T05:12:25.375 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../010-python3-rados_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:25.415 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-rados (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:25.496 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-09-16T05:12:25.523 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-09-16T05:12:25.571 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-16T05:12:25.575 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package librbd1. 2024-09-16T05:12:25.602 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../008-librbd1_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:25.642 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking librbd1 (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:25.702 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-09-16T05:12:25.728 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../011-python3-ceph-argparse_19.1.1-326-g8921c8ef-1jammy_all.deb ... 2024-09-16T05:12:25.768 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-ceph-argparse (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:26.020 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-cephfs. 2024-09-16T05:12:26.036 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../012-python3-cephfs_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:26.061 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-09-16T05:12:26.079 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-cephfs (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:26.087 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package libcephfs2. 2024-09-16T05:12:26.088 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-16T05:12:26.113 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../009-libcephfs2_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:26.136 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T05:12:26.153 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking libcephfs2 (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:26.390 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-ceph-common. 2024-09-16T05:12:26.416 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../013-python3-ceph-common_19.1.1-326-g8921c8ef-1jammy_all.deb ... 2024-09-16T05:12:26.431 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-rados. 2024-09-16T05:12:26.446 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../010-python3-rados_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:26.456 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-ceph-common (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:26.481 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-rados (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:26.593 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-09-16T05:12:26.620 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-16T05:12:26.660 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T05:12:26.784 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-09-16T05:12:26.793 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-wcwidth. 2024-09-16T05:12:26.810 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../011-python3-ceph-argparse_19.1.1-326-g8921c8ef-1jammy_all.deb ... 2024-09-16T05:12:26.819 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../014-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-09-16T05:12:26.852 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-ceph-argparse (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:26.859 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-16T05:12:27.050 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-09-16T05:12:27.077 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-16T05:12:27.103 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-cephfs. 2024-09-16T05:12:27.117 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T05:12:27.129 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../012-python3-cephfs_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:27.169 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-cephfs (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:27.215 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-prettytable. 2024-09-16T05:12:27.242 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../015-python3-prettytable_2.5.0-2_all.deb ... 2024-09-16T05:12:27.287 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-09-16T05:12:27.481 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-ceph-common. 2024-09-16T05:12:27.506 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-09-16T05:12:27.507 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../013-python3-ceph-common_19.1.1-326-g8921c8ef-1jammy_all.deb ... 2024-09-16T05:12:27.533 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-09-16T05:12:27.547 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-ceph-common (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:27.548 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-rbd. 2024-09-16T05:12:27.573 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-16T05:12:27.575 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../016-python3-rbd_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:27.615 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-rbd (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:27.878 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-wcwidth. 2024-09-16T05:12:27.902 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../014-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-09-16T05:12:27.921 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package librados2. 2024-09-16T05:12:27.942 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-16T05:12:27.947 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../007-librados2_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:27.959 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-09-16T05:12:27.986 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../017-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-09-16T05:12:27.988 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking librados2 (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:28.034 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-16T05:12:28.220 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-prettytable. 2024-09-16T05:12:28.246 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../015-python3-prettytable_2.5.0-2_all.deb ... 2024-09-16T05:12:28.278 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-09-16T05:12:28.346 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-09-16T05:12:28.372 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../018-libreadline-dev_8.1.2-1_amd64.deb ... 2024-09-16T05:12:28.420 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-09-16T05:12:28.497 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-rbd. 2024-09-16T05:12:28.516 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../016-python3-rbd_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:28.528 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package librbd1. 2024-09-16T05:12:28.554 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../008-librbd1_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:28.555 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-rbd (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:28.594 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking librbd1 (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:28.740 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-09-16T05:12:28.755 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../019-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-09-16T05:12:28.798 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-09-16T05:12:28.892 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-09-16T05:12:28.919 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../017-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-09-16T05:12:28.959 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-16T05:12:29.092 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package libcephfs2. 2024-09-16T05:12:29.119 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../009-libcephfs2_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:29.127 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package lua5.1. 2024-09-16T05:12:29.153 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../020-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-09-16T05:12:29.158 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking libcephfs2 (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:29.193 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-09-16T05:12:29.253 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-09-16T05:12:29.268 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../018-libreadline-dev_8.1.2-1_amd64.deb ... 2024-09-16T05:12:29.306 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-09-16T05:12:29.464 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-rados. 2024-09-16T05:12:29.480 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../010-python3-rados_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:29.522 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-rados (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:29.555 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package lua-any. 2024-09-16T05:12:29.581 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../021-lua-any_27ubuntu1_all.deb ... 2024-09-16T05:12:29.629 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking lua-any (27ubuntu1) ... 2024-09-16T05:12:29.869 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-09-16T05:12:29.896 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../011-python3-ceph-argparse_19.1.1-326-g8921c8ef-1jammy_all.deb ... 2024-09-16T05:12:29.924 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package zip. 2024-09-16T05:12:29.936 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-ceph-argparse (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:29.950 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../022-zip_3.0-12build2_amd64.deb ... 2024-09-16T05:12:29.990 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking zip (3.0-12build2) ... 2024-09-16T05:12:30.114 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-09-16T05:12:30.130 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../019-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-09-16T05:12:30.164 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-09-16T05:12:30.192 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-cephfs. 2024-09-16T05:12:30.207 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../012-python3-cephfs_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:30.250 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-cephfs (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:30.294 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package unzip. 2024-09-16T05:12:30.320 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../023-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-09-16T05:12:30.360 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-09-16T05:12:30.485 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package lua5.1. 2024-09-16T05:12:30.511 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../020-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-09-16T05:12:30.551 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-09-16T05:12:30.582 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-ceph-common. 2024-09-16T05:12:30.609 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../013-python3-ceph-common_19.1.1-326-g8921c8ef-1jammy_all.deb ... 2024-09-16T05:12:30.657 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-ceph-common (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:30.756 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package luarocks. 2024-09-16T05:12:30.782 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../024-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-09-16T05:12:30.831 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-09-16T05:12:30.862 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package lua-any. 2024-09-16T05:12:30.886 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../021-lua-any_27ubuntu1_all.deb ... 2024-09-16T05:12:30.929 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking lua-any (27ubuntu1) ... 2024-09-16T05:12:30.996 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-wcwidth. 2024-09-16T05:12:31.022 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../014-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-09-16T05:12:31.062 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-16T05:12:31.157 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package zip. 2024-09-16T05:12:31.172 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../022-zip_3.0-12build2_amd64.deb ... 2024-09-16T05:12:31.205 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package librgw2. 2024-09-16T05:12:31.206 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking zip (3.0-12build2) ... 2024-09-16T05:12:31.232 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../025-librgw2_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:31.272 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking librgw2 (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:31.403 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-prettytable. 2024-09-16T05:12:31.429 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../015-python3-prettytable_2.5.0-2_all.deb ... 2024-09-16T05:12:31.469 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-09-16T05:12:31.494 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package unzip. 2024-09-16T05:12:31.520 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../023-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-09-16T05:12:31.560 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-09-16T05:12:31.741 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-rbd. 2024-09-16T05:12:31.756 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../016-python3-rbd_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:31.799 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-rgw. 2024-09-16T05:12:31.814 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../026-python3-rgw_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:31.839 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-rbd (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:31.857 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-rgw (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:31.956 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package luarocks. 2024-09-16T05:12:31.982 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../024-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-09-16T05:12:32.022 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-09-16T05:12:32.177 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package liboath0:amd64. 2024-09-16T05:12:32.204 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../027-liboath0_2.6.7-3build1_amd64.deb ... 2024-09-16T05:12:32.206 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-09-16T05:12:32.232 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../017-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-09-16T05:12:32.235 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-09-16T05:12:32.281 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-16T05:12:32.380 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package librgw2. 2024-09-16T05:12:32.407 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../025-librgw2_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:32.447 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking librgw2 (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:32.547 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package libradosstriper1. 2024-09-16T05:12:32.576 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../028-libradosstriper1_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:32.579 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-09-16T05:12:32.605 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../018-libreadline-dev_8.1.2-1_amd64.deb ... 2024-09-16T05:12:32.613 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking libradosstriper1 (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:32.645 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-09-16T05:12:33.016 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-rgw. 2024-09-16T05:12:33.031 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../026-python3-rgw_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:33.042 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package ceph-common. 2024-09-16T05:12:33.068 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../029-ceph-common_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:33.074 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-rgw (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:33.108 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking ceph-common (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:33.318 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-09-16T05:12:33.334 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../019-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-09-16T05:12:33.376 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-09-16T05:12:33.411 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package liboath0:amd64. 2024-09-16T05:12:33.437 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../027-liboath0_2.6.7-3build1_amd64.deb ... 2024-09-16T05:12:33.477 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-09-16T05:12:33.722 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package libradosstriper1. 2024-09-16T05:12:33.737 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../028-libradosstriper1_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:33.751 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package lua5.1. 2024-09-16T05:12:33.772 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking libradosstriper1 (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:33.777 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../020-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-09-16T05:12:33.817 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-09-16T05:12:34.124 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package lua-any. 2024-09-16T05:12:34.140 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../021-lua-any_27ubuntu1_all.deb ... 2024-09-16T05:12:34.174 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking lua-any (27ubuntu1) ... 2024-09-16T05:12:34.183 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package ceph-common. 2024-09-16T05:12:34.213 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../029-ceph-common_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:34.259 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking ceph-common (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:34.420 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package zip. 2024-09-16T05:12:34.436 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../022-zip_3.0-12build2_amd64.deb ... 2024-09-16T05:12:34.479 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking zip (3.0-12build2) ... 2024-09-16T05:12:34.563 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package ceph-base. 2024-09-16T05:12:34.590 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../030-ceph-base_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:34.639 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking ceph-base (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:34.811 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package unzip. 2024-09-16T05:12:34.838 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../023-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-09-16T05:12:34.878 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-09-16T05:12:35.253 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package luarocks. 2024-09-16T05:12:35.280 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../024-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-09-16T05:12:35.320 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-09-16T05:12:35.501 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-09-16T05:12:35.528 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../031-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-09-16T05:12:35.568 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-09-16T05:12:35.622 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package ceph-base. 2024-09-16T05:12:35.650 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../030-ceph-base_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:35.698 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking ceph-base (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:35.704 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package librgw2. 2024-09-16T05:12:35.730 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../025-librgw2_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:35.771 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking librgw2 (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:35.837 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-cheroot. 2024-09-16T05:12:35.854 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../032-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-09-16T05:12:35.887 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-16T05:12:36.190 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-09-16T05:12:36.217 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../033-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-09-16T05:12:36.243 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-09-16T05:12:36.256 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-09-16T05:12:36.270 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../031-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-09-16T05:12:36.301 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-09-16T05:12:36.466 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-rgw. 2024-09-16T05:12:36.483 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../026-python3-rgw_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:36.525 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-rgw (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:36.559 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-jaraco.text. 2024-09-16T05:12:36.579 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-cheroot. 2024-09-16T05:12:36.586 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../034-python3-jaraco.text_3.6.0-2_all.deb ... 2024-09-16T05:12:36.606 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../032-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-09-16T05:12:36.626 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-09-16T05:12:36.646 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-16T05:12:36.865 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package liboath0:amd64. 2024-09-16T05:12:36.892 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../027-liboath0_2.6.7-3build1_amd64.deb ... 2024-09-16T05:12:36.929 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-09-16T05:12:36.932 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-09-16T05:12:36.932 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-09-16T05:12:36.957 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../035-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-09-16T05:12:36.959 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../033-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-09-16T05:12:36.991 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-09-16T05:12:36.995 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-09-16T05:12:37.237 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package libradosstriper1. 2024-09-16T05:12:37.248 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-tempora. 2024-09-16T05:12:37.263 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../028-libradosstriper1_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:37.275 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../036-python3-tempora_4.1.2-1_all.deb ... 2024-09-16T05:12:37.277 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-jaraco.text. 2024-09-16T05:12:37.304 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../034-python3-jaraco.text_3.6.0-2_all.deb ... 2024-09-16T05:12:37.304 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking libradosstriper1 (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:37.307 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-09-16T05:12:37.344 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-09-16T05:12:37.609 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-portend. 2024-09-16T05:12:37.636 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../037-python3-portend_3.0.0-1_all.deb ... 2024-09-16T05:12:37.646 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-09-16T05:12:37.673 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../035-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-09-16T05:12:37.676 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-09-16T05:12:37.713 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-09-16T05:12:37.719 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package ceph-common. 2024-09-16T05:12:37.746 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../029-ceph-common_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:37.786 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking ceph-common (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:37.991 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-tempora. 2024-09-16T05:12:38.004 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-09-16T05:12:38.017 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../036-python3-tempora_4.1.2-1_all.deb ... 2024-09-16T05:12:38.031 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../038-python3-zc.lockfile_2.0-1_all.deb ... 2024-09-16T05:12:38.057 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-09-16T05:12:38.070 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-09-16T05:12:38.302 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-portend. 2024-09-16T05:12:38.329 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../037-python3-portend_3.0.0-1_all.deb ... 2024-09-16T05:12:38.340 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-cherrypy3. 2024-09-16T05:12:38.367 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../039-python3-cherrypy3_18.6.1-4_all.deb ... 2024-09-16T05:12:38.369 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-09-16T05:12:38.398 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-09-16T05:12:38.672 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-09-16T05:12:38.699 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../038-python3-zc.lockfile_2.0-1_all.deb ... 2024-09-16T05:12:38.738 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-09-16T05:12:38.743 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-natsort. 2024-09-16T05:12:38.770 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../040-python3-natsort_8.0.2-1_all.deb ... 2024-09-16T05:12:38.810 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-09-16T05:12:39.041 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-cherrypy3. 2024-09-16T05:12:39.068 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../039-python3-cherrypy3_18.6.1-4_all.deb ... 2024-09-16T05:12:39.108 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-09-16T05:12:39.124 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-logutils. 2024-09-16T05:12:39.149 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../041-python3-logutils_0.3.3-8_all.deb ... 2024-09-16T05:12:39.188 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-09-16T05:12:39.450 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-markupsafe. 2024-09-16T05:12:39.454 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-natsort. 2024-09-16T05:12:39.465 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../042-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-09-16T05:12:39.480 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../040-python3-natsort_8.0.2-1_all.deb ... 2024-09-16T05:12:39.499 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-09-16T05:12:39.520 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-09-16T05:12:39.811 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-mako. 2024-09-16T05:12:39.838 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../043-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-09-16T05:12:39.877 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-16T05:12:39.889 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package ceph-base. 2024-09-16T05:12:39.916 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../030-ceph-base_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:39.966 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking ceph-base (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:39.986 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-logutils. 2024-09-16T05:12:40.013 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../041-python3-logutils_0.3.3-8_all.deb ... 2024-09-16T05:12:40.081 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-09-16T05:12:40.214 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-simplegeneric. 2024-09-16T05:12:40.241 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../044-python3-simplegeneric_0.8.1-3_all.deb ... 2024-09-16T05:12:40.389 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-09-16T05:12:40.410 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-markupsafe. 2024-09-16T05:12:40.436 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../042-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-09-16T05:12:40.476 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-09-16T05:12:40.691 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-singledispatch. 2024-09-16T05:12:40.699 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-09-16T05:12:40.718 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../045-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-09-16T05:12:40.726 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../031-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-09-16T05:12:40.758 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-09-16T05:12:40.765 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-09-16T05:12:40.779 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-mako. 2024-09-16T05:12:40.806 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../043-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-09-16T05:12:40.845 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-16T05:12:41.019 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-webob. 2024-09-16T05:12:41.046 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../046-python3-webob_1%3a1.8.6-1.1ubuntu0.1_all.deb ... 2024-09-16T05:12:41.077 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-16T05:12:41.080 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-cheroot. 2024-09-16T05:12:41.107 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../032-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-09-16T05:12:41.132 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-simplegeneric. 2024-09-16T05:12:41.147 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-16T05:12:41.148 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../044-python3-simplegeneric_0.8.1-3_all.deb ... 2024-09-16T05:12:41.182 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-09-16T05:12:41.397 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-waitress. 2024-09-16T05:12:41.424 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../047-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-09-16T05:12:41.443 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-singledispatch. 2024-09-16T05:12:41.466 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-16T05:12:41.470 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../045-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-09-16T05:12:41.496 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-09-16T05:12:41.510 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-09-16T05:12:41.523 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../033-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-09-16T05:12:41.562 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-09-16T05:12:41.783 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-tempita. 2024-09-16T05:12:41.810 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../048-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-09-16T05:12:41.813 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-webob. 2024-09-16T05:12:41.839 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../046-python3-webob_1%3a1.8.6-1.1ubuntu0.1_all.deb ... 2024-09-16T05:12:41.849 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-09-16T05:12:41.879 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-16T05:12:41.884 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-jaraco.text. 2024-09-16T05:12:41.911 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../034-python3-jaraco.text_3.6.0-2_all.deb ... 2024-09-16T05:12:41.951 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-09-16T05:12:42.161 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-paste. 2024-09-16T05:12:42.188 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../049-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-09-16T05:12:42.216 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-waitress. 2024-09-16T05:12:42.227 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-09-16T05:12:42.242 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../047-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-09-16T05:12:42.249 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-09-16T05:12:42.276 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../035-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-09-16T05:12:42.285 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-16T05:12:42.324 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-09-16T05:12:42.573 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-09-16T05:12:42.577 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-tempita. 2024-09-16T05:12:42.600 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../050-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-09-16T05:12:42.603 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../048-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-09-16T05:12:42.629 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-tempora. 2024-09-16T05:12:42.639 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-09-16T05:12:42.644 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-09-16T05:12:42.656 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../036-python3-tempora_4.1.2-1_all.deb ... 2024-09-16T05:12:42.696 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-09-16T05:12:42.888 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-paste. 2024-09-16T05:12:42.915 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../049-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-09-16T05:12:42.942 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-pastedeploy. 2024-09-16T05:12:42.955 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-09-16T05:12:42.969 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../051-python3-pastedeploy_2.1.1-1_all.deb ... 2024-09-16T05:12:43.009 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-09-16T05:12:43.011 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-portend. 2024-09-16T05:12:43.037 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../037-python3-portend_3.0.0-1_all.deb ... 2024-09-16T05:12:43.086 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-09-16T05:12:43.275 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-09-16T05:12:43.287 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-webtest. 2024-09-16T05:12:43.290 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../050-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-09-16T05:12:43.313 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../052-python3-webtest_2.0.35-1_all.deb ... 2024-09-16T05:12:43.333 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-09-16T05:12:43.353 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-09-16T05:12:43.401 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-09-16T05:12:43.428 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../038-python3-zc.lockfile_2.0-1_all.deb ... 2024-09-16T05:12:43.467 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-09-16T05:12:43.594 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-pastedeploy. 2024-09-16T05:12:43.606 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-pecan. 2024-09-16T05:12:43.621 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../051-python3-pastedeploy_2.1.1-1_all.deb ... 2024-09-16T05:12:43.629 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../053-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-09-16T05:12:43.661 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-09-16T05:12:43.664 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-09-16T05:12:43.789 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-cherrypy3. 2024-09-16T05:12:43.814 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../039-python3-cherrypy3_18.6.1-4_all.deb ... 2024-09-16T05:12:43.856 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-09-16T05:12:43.964 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-webtest. 2024-09-16T05:12:43.977 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-certifi. 2024-09-16T05:12:43.990 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../052-python3-webtest_2.0.35-1_all.deb ... 2024-09-16T05:12:43.993 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../054-python3-certifi_2020.6.20-1_all.deb ... 2024-09-16T05:12:44.027 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-09-16T05:12:44.030 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-09-16T05:12:44.197 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-natsort. 2024-09-16T05:12:44.224 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../040-python3-natsort_8.0.2-1_all.deb ... 2024-09-16T05:12:44.264 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-09-16T05:12:44.308 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-pecan. 2024-09-16T05:12:44.335 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../053-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-09-16T05:12:44.355 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-idna. 2024-09-16T05:12:44.375 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-09-16T05:12:44.382 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../055-python3-idna_3.3-1ubuntu0.1_all.deb ... 2024-09-16T05:12:44.421 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-idna (3.3-1ubuntu0.1) ... 2024-09-16T05:12:44.579 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-logutils. 2024-09-16T05:12:44.606 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../041-python3-logutils_0.3.3-8_all.deb ... 2024-09-16T05:12:44.697 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-certifi. 2024-09-16T05:12:44.723 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../054-python3-certifi_2020.6.20-1_all.deb ... 2024-09-16T05:12:44.750 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-urllib3. 2024-09-16T05:12:44.755 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-09-16T05:12:44.776 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../056-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-09-16T05:12:44.816 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-16T05:12:44.846 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-09-16T05:12:45.058 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-idna. 2024-09-16T05:12:45.084 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../055-python3-idna_3.3-1ubuntu0.1_all.deb ... 2024-09-16T05:12:45.124 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-idna (3.3-1ubuntu0.1) ... 2024-09-16T05:12:45.185 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-markupsafe. 2024-09-16T05:12:45.195 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-requests. 2024-09-16T05:12:45.211 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../042-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-09-16T05:12:45.222 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../057-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-09-16T05:12:45.251 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-09-16T05:12:45.261 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-16T05:12:45.453 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-urllib3. 2024-09-16T05:12:45.479 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../056-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-09-16T05:12:45.519 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-16T05:12:45.548 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-werkzeug. 2024-09-16T05:12:45.575 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../058-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.2_all.deb ... 2024-09-16T05:12:45.575 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-mako. 2024-09-16T05:12:45.602 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../043-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-09-16T05:12:45.614 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-16T05:12:45.642 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-16T05:12:45.839 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-requests. 2024-09-16T05:12:45.865 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../057-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-09-16T05:12:45.907 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-16T05:12:45.909 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-09-16T05:12:45.936 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../059-ceph-mgr-modules-core_19.1.1-326-g8921c8ef-1jammy_all.deb ... 2024-09-16T05:12:45.975 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking ceph-mgr-modules-core (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:46.099 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-simplegeneric. 2024-09-16T05:12:46.126 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../044-python3-simplegeneric_0.8.1-3_all.deb ... 2024-09-16T05:12:46.174 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-09-16T05:12:46.217 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-werkzeug. 2024-09-16T05:12:46.244 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../058-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.2_all.deb ... 2024-09-16T05:12:46.285 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-16T05:12:46.313 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-09-16T05:12:46.341 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../060-libsqlite3-mod-ceph_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:46.380 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking libsqlite3-mod-ceph (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:46.546 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-singledispatch. 2024-09-16T05:12:46.573 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../045-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-09-16T05:12:46.587 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-09-16T05:12:46.614 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../059-ceph-mgr-modules-core_19.1.1-326-g8921c8ef-1jammy_all.deb ... 2024-09-16T05:12:46.629 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-09-16T05:12:46.653 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking ceph-mgr-modules-core (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:46.683 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-bcrypt. 2024-09-16T05:12:46.710 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../061-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-09-16T05:12:46.749 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-09-16T05:12:47.011 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-webob. 2024-09-16T05:12:47.035 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-openssl. 2024-09-16T05:12:47.037 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../046-python3-webob_1%3a1.8.6-1.1ubuntu0.1_all.deb ... 2024-09-16T05:12:47.050 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-09-16T05:12:47.062 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../062-python3-openssl_21.0.0-1_all.deb ... 2024-09-16T05:12:47.077 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../060-libsqlite3-mod-ceph_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:47.085 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-16T05:12:47.104 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-09-16T05:12:47.116 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking libsqlite3-mod-ceph (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:47.420 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-bcrypt. 2024-09-16T05:12:47.438 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package ceph-mgr. 2024-09-16T05:12:47.446 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../061-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-09-16T05:12:47.466 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../063-ceph-mgr_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:47.486 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-09-16T05:12:47.505 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking ceph-mgr (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:47.534 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-waitress. 2024-09-16T05:12:47.561 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../047-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-09-16T05:12:47.621 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-16T05:12:48.240 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-openssl. 2024-09-16T05:12:48.266 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../062-python3-openssl_21.0.0-1_all.deb ... 2024-09-16T05:12:48.656 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-09-16T05:12:48.784 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package ceph-mon. 2024-09-16T05:12:48.811 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../064-ceph-mon_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:48.850 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking ceph-mon (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:48.968 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package ceph-mgr. 2024-09-16T05:12:48.994 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../063-ceph-mgr_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:49.034 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking ceph-mgr (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:49.429 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package ceph-mon. 2024-09-16T05:12:49.456 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../064-ceph-mon_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:49.462 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package ceph-osd. 2024-09-16T05:12:49.489 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../065-ceph-osd_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:49.496 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking ceph-mon (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:49.529 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking ceph-osd (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:49.598 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-tempita. 2024-09-16T05:12:49.625 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../048-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-09-16T05:12:49.682 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-09-16T05:12:50.066 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package ceph-osd. 2024-09-16T05:12:50.093 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../065-ceph-osd_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:50.132 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking ceph-osd (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:50.239 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-paste. 2024-09-16T05:12:50.266 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../049-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-09-16T05:12:50.322 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-09-16T05:12:50.721 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-09-16T05:12:50.748 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../050-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-09-16T05:12:50.782 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package ceph. 2024-09-16T05:12:50.796 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-09-16T05:12:50.809 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../066-ceph_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:50.848 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking ceph (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:51.120 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package ceph. 2024-09-16T05:12:51.146 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../066-ceph_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:51.176 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package ceph-fuse. 2024-09-16T05:12:51.177 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-pastedeploy. 2024-09-16T05:12:51.190 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking ceph (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:51.203 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../067-ceph-fuse_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:51.203 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../051-python3-pastedeploy_2.1.1-1_all.deb ... 2024-09-16T05:12:51.243 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking ceph-fuse (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:51.259 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-09-16T05:12:51.506 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package ceph-fuse. 2024-09-16T05:12:51.532 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../067-ceph-fuse_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:51.571 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package ceph-mds. 2024-09-16T05:12:51.572 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking ceph-fuse (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:51.592 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-webtest. 2024-09-16T05:12:51.597 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../068-ceph-mds_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:51.619 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../052-python3-webtest_2.0.35-1_all.deb ... 2024-09-16T05:12:51.629 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking ceph-mds (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:51.667 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-09-16T05:12:51.942 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package ceph-mds. 2024-09-16T05:12:51.969 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../068-ceph-mds_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:51.998 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-pecan. 2024-09-16T05:12:51.999 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package cephadm. 2024-09-16T05:12:52.009 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking ceph-mds (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:52.025 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../069-cephadm_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:52.026 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../053-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-09-16T05:12:52.065 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-09-16T05:12:52.065 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking cephadm (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:52.345 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package cephadm. 2024-09-16T05:12:52.372 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../069-cephadm_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:52.403 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking cephadm (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:52.418 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-asyncssh. 2024-09-16T05:12:52.434 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-certifi. 2024-09-16T05:12:52.445 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../070-python3-asyncssh_2.5.0-1_all.deb ... 2024-09-16T05:12:52.461 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../054-python3-certifi_2020.6.20-1_all.deb ... 2024-09-16T05:12:52.484 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-09-16T05:12:52.509 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-09-16T05:12:52.714 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-asyncssh. 2024-09-16T05:12:52.741 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../070-python3-asyncssh_2.5.0-1_all.deb ... 2024-09-16T05:12:52.781 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-09-16T05:12:52.798 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python-babel-localedata. 2024-09-16T05:12:52.824 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../071-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-09-16T05:12:52.864 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-idna. 2024-09-16T05:12:52.864 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-16T05:12:52.891 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../055-python3-idna_3.3-1ubuntu0.1_all.deb ... 2024-09-16T05:12:52.931 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-idna (3.3-1ubuntu0.1) ... 2024-09-16T05:12:53.092 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python-babel-localedata. 2024-09-16T05:12:53.119 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../071-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-09-16T05:12:53.158 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-16T05:12:53.254 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-urllib3. 2024-09-16T05:12:53.281 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../056-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-09-16T05:12:53.321 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-16T05:12:53.657 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-requests. 2024-09-16T05:12:53.680 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../057-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-09-16T05:12:53.720 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-16T05:12:53.936 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-babel. 2024-09-16T05:12:53.952 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../072-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-09-16T05:12:53.986 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-09-16T05:12:54.017 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-werkzeug. 2024-09-16T05:12:54.043 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../058-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.2_all.deb ... 2024-09-16T05:12:54.092 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-16T05:12:54.214 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-babel. 2024-09-16T05:12:54.241 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../072-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-09-16T05:12:54.280 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-09-16T05:12:54.281 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-jinja2. 2024-09-16T05:12:54.296 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../073-python3-jinja2_3.0.3-1ubuntu0.2_all.deb ... 2024-09-16T05:12:54.339 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-16T05:12:54.391 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-09-16T05:12:54.418 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../059-ceph-mgr-modules-core_19.1.1-326-g8921c8ef-1jammy_all.deb ... 2024-09-16T05:12:54.457 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking ceph-mgr-modules-core (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:54.583 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-jinja2. 2024-09-16T05:12:54.610 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../073-python3-jinja2_3.0.3-1ubuntu0.2_all.deb ... 2024-09-16T05:12:54.650 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-16T05:12:54.651 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-09-16T05:12:54.678 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../074-ceph-mgr-cephadm_19.1.1-326-g8921c8ef-1jammy_all.deb ... 2024-09-16T05:12:54.717 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking ceph-mgr-cephadm (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:54.851 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-09-16T05:12:54.878 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../060-libsqlite3-mod-ceph_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:54.918 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking libsqlite3-mod-ceph (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:55.003 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-09-16T05:12:55.004 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-repoze.lru. 2024-09-16T05:12:55.030 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../074-ceph-mgr-cephadm_19.1.1-326-g8921c8ef-1jammy_all.deb ... 2024-09-16T05:12:55.031 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../075-python3-repoze.lru_0.7-2_all.deb ... 2024-09-16T05:12:55.069 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking ceph-mgr-cephadm (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:55.070 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-09-16T05:12:55.382 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-routes. 2024-09-16T05:12:55.409 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../076-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-09-16T05:12:55.415 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-repoze.lru. 2024-09-16T05:12:55.442 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../075-python3-repoze.lru_0.7-2_all.deb ... 2024-09-16T05:12:55.448 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-09-16T05:12:55.474 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-bcrypt. 2024-09-16T05:12:55.481 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-09-16T05:12:55.501 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../061-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-09-16T05:12:55.549 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-09-16T05:12:55.751 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-routes. 2024-09-16T05:12:55.777 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../076-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-09-16T05:12:55.785 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-09-16T05:12:55.801 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../077-ceph-mgr-dashboard_19.1.1-326-g8921c8ef-1jammy_all.deb ... 2024-09-16T05:12:55.809 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-09-16T05:12:55.843 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking ceph-mgr-dashboard (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:55.862 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-openssl. 2024-09-16T05:12:55.890 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../062-python3-openssl_21.0.0-1_all.deb ... 2024-09-16T05:12:55.929 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-09-16T05:12:56.121 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-09-16T05:12:56.147 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../077-ceph-mgr-dashboard_19.1.1-326-g8921c8ef-1jammy_all.deb ... 2024-09-16T05:12:56.178 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking ceph-mgr-dashboard (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:56.253 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package ceph-mgr. 2024-09-16T05:12:56.269 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../063-ceph-mgr_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:56.303 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking ceph-mgr (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:56.735 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package ceph-mon. 2024-09-16T05:12:56.762 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../064-ceph-mon_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:56.810 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking ceph-mon (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:57.090 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-09-16T05:12:57.106 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../078-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-09-16T05:12:57.140 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-16T05:12:57.401 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-09-16T05:12:57.428 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../078-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-09-16T05:12:57.467 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-16T05:12:57.550 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package ceph-osd. 2024-09-16T05:12:57.577 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../065-ceph-osd_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:57.611 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-joblib. 2024-09-16T05:12:57.616 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking ceph-osd (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:57.637 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../079-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-09-16T05:12:57.677 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-09-16T05:12:57.965 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-joblib. 2024-09-16T05:12:57.992 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../079-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-09-16T05:12:58.022 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-09-16T05:12:58.031 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-09-16T05:12:58.058 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../080-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-09-16T05:12:58.097 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-09-16T05:12:58.384 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-sklearn. 2024-09-16T05:12:58.384 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-09-16T05:12:58.410 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../081-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-09-16T05:12:58.411 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../080-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-09-16T05:12:58.450 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-16T05:12:58.450 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-09-16T05:12:58.745 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-sklearn. 2024-09-16T05:12:58.772 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../081-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-09-16T05:12:58.812 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-16T05:12:58.983 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package ceph. 2024-09-16T05:12:58.999 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../066-ceph_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:59.041 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking ceph (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:59.134 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-09-16T05:12:59.162 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../082-ceph-mgr-diskprediction-local_19.1.1-326-g8921c8ef-1jammy_all.deb ... 2024-09-16T05:12:59.286 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking ceph-mgr-diskprediction-local (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:59.372 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package ceph-fuse. 2024-09-16T05:12:59.399 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../067-ceph-fuse_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:59.439 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking ceph-fuse (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:59.537 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-09-16T05:12:59.565 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../082-ceph-mgr-diskprediction-local_19.1.1-326-g8921c8ef-1jammy_all.deb ... 2024-09-16T05:12:59.698 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking ceph-mgr-diskprediction-local (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:12:59.836 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package ceph-mds. 2024-09-16T05:12:59.863 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../068-ceph-mds_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:12:59.903 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking ceph-mds (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:00.299 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-cachetools. 2024-09-16T05:13:00.328 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../083-python3-cachetools_5.0.0-1_all.deb ... 2024-09-16T05:13:00.365 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-09-16T05:13:00.369 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package cephadm. 2024-09-16T05:13:00.395 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../069-cephadm_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:13:00.435 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking cephadm (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:00.593 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-cachetools. 2024-09-16T05:13:00.620 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../083-python3-cachetools_5.0.0-1_all.deb ... 2024-09-16T05:13:00.659 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-09-16T05:13:00.668 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-pyasn1. 2024-09-16T05:13:00.695 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../084-python3-pyasn1_0.4.8-1_all.deb ... 2024-09-16T05:13:00.734 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-09-16T05:13:00.774 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-asyncssh. 2024-09-16T05:13:00.802 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../070-python3-asyncssh_2.5.0-1_all.deb ... 2024-09-16T05:13:00.841 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-09-16T05:13:00.929 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-pyasn1. 2024-09-16T05:13:00.956 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../084-python3-pyasn1_0.4.8-1_all.deb ... 2024-09-16T05:13:01.004 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-09-16T05:13:01.196 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python-babel-localedata. 2024-09-16T05:13:01.224 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../071-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-09-16T05:13:01.271 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-16T05:13:01.280 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-09-16T05:13:01.306 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../085-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-09-16T05:13:01.346 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-09-16T05:13:01.472 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-09-16T05:13:01.499 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../085-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-09-16T05:13:01.591 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-09-16T05:13:01.658 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-rsa. 2024-09-16T05:13:01.685 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../086-python3-rsa_4.8-1_all.deb ... 2024-09-16T05:13:01.724 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-rsa (4.8-1) ... 2024-09-16T05:13:01.902 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-rsa. 2024-09-16T05:13:01.929 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../086-python3-rsa_4.8-1_all.deb ... 2024-09-16T05:13:01.969 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-rsa (4.8-1) ... 2024-09-16T05:13:02.028 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-google-auth. 2024-09-16T05:13:02.056 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../087-python3-google-auth_1.5.1-3_all.deb ... 2024-09-16T05:13:02.095 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-09-16T05:13:02.298 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-google-auth. 2024-09-16T05:13:02.322 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../087-python3-google-auth_1.5.1-3_all.deb ... 2024-09-16T05:13:02.323 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-babel. 2024-09-16T05:13:02.351 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../072-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-09-16T05:13:02.364 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-09-16T05:13:02.398 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-09-16T05:13:02.423 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-09-16T05:13:02.450 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../088-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-09-16T05:13:02.489 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-16T05:13:02.659 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-09-16T05:13:02.676 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../088-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-09-16T05:13:02.709 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-16T05:13:02.713 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-jinja2. 2024-09-16T05:13:02.730 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../073-python3-jinja2_3.0.3-1ubuntu0.2_all.deb ... 2024-09-16T05:13:02.772 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-16T05:13:02.776 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-websocket. 2024-09-16T05:13:02.803 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../089-python3-websocket_1.2.3-1_all.deb ... 2024-09-16T05:13:02.842 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-09-16T05:13:02.979 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-websocket. 2024-09-16T05:13:03.006 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../089-python3-websocket_1.2.3-1_all.deb ... 2024-09-16T05:13:03.045 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-09-16T05:13:03.146 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-09-16T05:13:03.154 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-kubernetes. 2024-09-16T05:13:03.173 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../074-ceph-mgr-cephadm_19.1.1-326-g8921c8ef-1jammy_all.deb ... 2024-09-16T05:13:03.182 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../090-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-09-16T05:13:03.212 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking ceph-mgr-cephadm (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:03.213 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-16T05:13:03.357 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-kubernetes. 2024-09-16T05:13:03.384 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../090-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-09-16T05:13:03.424 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-16T05:13:03.560 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-repoze.lru. 2024-09-16T05:13:03.587 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../075-python3-repoze.lru_0.7-2_all.deb ... 2024-09-16T05:13:03.627 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-09-16T05:13:03.885 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-09-16T05:13:03.902 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../091-ceph-mgr-k8sevents_19.1.1-326-g8921c8ef-1jammy_all.deb ... 2024-09-16T05:13:03.942 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-routes. 2024-09-16T05:13:03.943 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking ceph-mgr-k8sevents (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:03.970 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../076-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-09-16T05:13:04.013 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-09-16T05:13:04.016 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-09-16T05:13:04.040 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../091-ceph-mgr-k8sevents_19.1.1-326-g8921c8ef-1jammy_all.deb ... 2024-09-16T05:13:04.079 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking ceph-mgr-k8sevents (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:04.205 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package libonig5:amd64. 2024-09-16T05:13:04.232 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../092-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-09-16T05:13:04.263 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-16T05:13:04.357 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-09-16T05:13:04.385 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../077-ceph-mgr-dashboard_19.1.1-326-g8921c8ef-1jammy_all.deb ... 2024-09-16T05:13:04.399 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package libonig5:amd64. 2024-09-16T05:13:04.426 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../092-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-09-16T05:13:04.432 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking ceph-mgr-dashboard (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:04.465 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-16T05:13:04.608 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package libjq1:amd64. 2024-09-16T05:13:04.635 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../093-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-09-16T05:13:04.674 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-16T05:13:04.802 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package libjq1:amd64. 2024-09-16T05:13:04.817 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../093-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-09-16T05:13:04.860 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-16T05:13:04.936 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package jq. 2024-09-16T05:13:04.963 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../094-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-09-16T05:13:05.002 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-09-16T05:13:05.104 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package jq. 2024-09-16T05:13:05.120 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../094-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-09-16T05:13:05.154 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-09-16T05:13:05.229 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package socat. 2024-09-16T05:13:05.245 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../095-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-09-16T05:13:05.279 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-09-16T05:13:05.407 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package socat. 2024-09-16T05:13:05.423 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../095-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-09-16T05:13:05.465 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-09-16T05:13:05.558 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package xmlstarlet. 2024-09-16T05:13:05.574 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../096-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-09-16T05:13:05.616 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-09-16T05:13:05.760 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package xmlstarlet. 2024-09-16T05:13:05.787 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../096-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-09-16T05:13:05.827 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-09-16T05:13:05.979 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package ceph-test. 2024-09-16T05:13:06.007 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../097-ceph-test_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:13:06.045 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking ceph-test (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:06.198 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package ceph-test. 2024-09-16T05:13:06.214 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../097-ceph-test_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:13:06.256 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking ceph-test (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:06.401 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-09-16T05:13:06.429 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../078-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-09-16T05:13:06.476 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-16T05:13:06.984 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-joblib. 2024-09-16T05:13:07.012 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../079-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-09-16T05:13:07.051 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-09-16T05:13:07.390 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-09-16T05:13:07.418 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../080-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-09-16T05:13:07.465 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-09-16T05:13:07.788 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-sklearn. 2024-09-16T05:13:07.816 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../081-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-09-16T05:13:07.855 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-16T05:13:08.359 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package ceph-volume. 2024-09-16T05:13:08.386 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../098-ceph-volume_19.1.1-326-g8921c8ef-1jammy_all.deb ... 2024-09-16T05:13:08.425 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking ceph-volume (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:08.524 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-09-16T05:13:08.536 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package ceph-volume. 2024-09-16T05:13:08.552 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../082-ceph-mgr-diskprediction-local_19.1.1-326-g8921c8ef-1jammy_all.deb ... 2024-09-16T05:13:08.563 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../098-ceph-volume_19.1.1-326-g8921c8ef-1jammy_all.deb ... 2024-09-16T05:13:08.602 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking ceph-volume (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:08.686 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking ceph-mgr-diskprediction-local (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:08.738 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package libcephfs-dev. 2024-09-16T05:13:08.765 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../099-libcephfs-dev_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:13:08.804 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking libcephfs-dev (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:08.923 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package libcephfs-dev. 2024-09-16T05:13:08.939 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../099-libcephfs-dev_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:13:08.981 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking libcephfs-dev (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:09.249 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package lua-socket:amd64. 2024-09-16T05:13:09.276 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../100-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-09-16T05:13:09.292 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package lua-socket:amd64. 2024-09-16T05:13:09.307 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-09-16T05:13:09.308 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../100-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-09-16T05:13:09.342 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-09-16T05:13:09.613 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package lua-sec:amd64. 2024-09-16T05:13:09.628 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package lua-sec:amd64. 2024-09-16T05:13:09.641 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../101-lua-sec_1.0.2-1_amd64.deb ... 2024-09-16T05:13:09.656 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../101-lua-sec_1.0.2-1_amd64.deb ... 2024-09-16T05:13:09.680 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-09-16T05:13:09.695 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-09-16T05:13:10.034 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package nvme-cli. 2024-09-16T05:13:10.061 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../102-nvme-cli_1.16-3ubuntu0.3_amd64.deb ... 2024-09-16T05:13:10.091 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package nvme-cli. 2024-09-16T05:13:10.100 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking nvme-cli (1.16-3ubuntu0.3) ... 2024-09-16T05:13:10.118 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../102-nvme-cli_1.16-3ubuntu0.3_amd64.deb ... 2024-09-16T05:13:10.157 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking nvme-cli (1.16-3ubuntu0.3) ... 2024-09-16T05:13:10.195 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-cachetools. 2024-09-16T05:13:10.222 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../083-python3-cachetools_5.0.0-1_all.deb ... 2024-09-16T05:13:10.270 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-09-16T05:13:10.530 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package pkg-config. 2024-09-16T05:13:10.686 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../103-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-09-16T05:13:10.686 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-09-16T05:13:10.686 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-pyasn1. 2024-09-16T05:13:10.686 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../084-python3-pyasn1_0.4.8-1_all.deb ... 2024-09-16T05:13:10.686 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-09-16T05:13:10.686 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package pkg-config. 2024-09-16T05:13:10.687 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../103-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-09-16T05:13:10.687 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-09-16T05:13:10.844 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-09-16T05:13:10.849 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../104-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-09-16T05:13:10.867 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-09-16T05:13:10.893 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-09-16T05:13:10.893 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../104-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-09-16T05:13:10.932 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-09-16T05:13:10.941 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-09-16T05:13:10.968 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../085-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-09-16T05:13:11.007 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-09-16T05:13:11.278 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-iniconfig. 2024-09-16T05:13:11.306 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../105-python3-iniconfig_1.1.1-2_all.deb ... 2024-09-16T05:13:11.345 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-09-16T05:13:11.352 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-iniconfig. 2024-09-16T05:13:11.380 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../105-python3-iniconfig_1.1.1-2_all.deb ... 2024-09-16T05:13:11.418 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-09-16T05:13:11.506 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-rsa. 2024-09-16T05:13:11.533 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../086-python3-rsa_4.8-1_all.deb ... 2024-09-16T05:13:11.572 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-rsa (4.8-1) ... 2024-09-16T05:13:11.589 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-pastescript. 2024-09-16T05:13:11.617 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../106-python3-pastescript_2.0.2-4_all.deb ... 2024-09-16T05:13:11.656 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-09-16T05:13:11.897 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-google-auth. 2024-09-16T05:13:11.914 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../087-python3-google-auth_1.5.1-3_all.deb ... 2024-09-16T05:13:11.947 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-pastescript. 2024-09-16T05:13:11.955 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-09-16T05:13:11.974 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../106-python3-pastescript_2.0.2-4_all.deb ... 2024-09-16T05:13:12.013 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-09-16T05:13:12.151 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-pluggy. 2024-09-16T05:13:12.179 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../107-python3-pluggy_0.13.0-7.1_all.deb ... 2024-09-16T05:13:12.217 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-09-16T05:13:12.271 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-09-16T05:13:12.299 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../088-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-09-16T05:13:12.338 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-16T05:13:12.341 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-pluggy. 2024-09-16T05:13:12.369 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../107-python3-pluggy_0.13.0-7.1_all.deb ... 2024-09-16T05:13:12.408 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-09-16T05:13:12.529 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-psutil. 2024-09-16T05:13:12.556 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../108-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-09-16T05:13:12.595 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-09-16T05:13:12.651 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-websocket. 2024-09-16T05:13:12.677 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-psutil. 2024-09-16T05:13:12.679 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../089-python3-websocket_1.2.3-1_all.deb ... 2024-09-16T05:13:12.693 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../108-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-09-16T05:13:12.726 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-09-16T05:13:12.727 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-09-16T05:13:12.932 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-py. 2024-09-16T05:13:12.959 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../109-python3-py_1.10.0-1_all.deb ... 2024-09-16T05:13:12.998 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-py (1.10.0-1) ... 2024-09-16T05:13:13.047 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-py. 2024-09-16T05:13:13.050 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-kubernetes. 2024-09-16T05:13:13.075 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../109-python3-py_1.10.0-1_all.deb ... 2024-09-16T05:13:13.077 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../090-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-09-16T05:13:13.114 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-py (1.10.0-1) ... 2024-09-16T05:13:13.117 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-16T05:13:13.319 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-pygments. 2024-09-16T05:13:13.346 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../110-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-09-16T05:13:13.385 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-09-16T05:13:13.393 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-pygments. 2024-09-16T05:13:13.420 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../110-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-09-16T05:13:13.451 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-09-16T05:13:13.839 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-pyinotify. 2024-09-16T05:13:13.855 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../111-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-09-16T05:13:13.870 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-09-16T05:13:13.897 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-09-16T05:13:13.898 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../091-ceph-mgr-k8sevents_19.1.1-326-g8921c8ef-1jammy_all.deb ... 2024-09-16T05:13:13.945 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking ceph-mgr-k8sevents (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:13.947 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-pyinotify. 2024-09-16T05:13:13.974 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../111-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-09-16T05:13:14.013 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-09-16T05:13:14.175 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-toml. 2024-09-16T05:13:14.203 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../112-python3-toml_0.10.2-1_all.deb ... 2024-09-16T05:13:14.242 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-09-16T05:13:14.285 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package libonig5:amd64. 2024-09-16T05:13:14.313 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../092-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-09-16T05:13:14.333 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-toml. 2024-09-16T05:13:14.351 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-16T05:13:14.360 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../112-python3-toml_0.10.2-1_all.deb ... 2024-09-16T05:13:14.399 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-09-16T05:13:14.545 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-pytest. 2024-09-16T05:13:14.572 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../113-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-09-16T05:13:14.611 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-09-16T05:13:14.661 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-pytest. 2024-09-16T05:13:14.688 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../113-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-09-16T05:13:14.715 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package libjq1:amd64. 2024-09-16T05:13:14.718 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-09-16T05:13:14.744 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../093-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-09-16T05:13:14.790 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-16T05:13:14.974 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package python3-simplejson. 2024-09-16T05:13:15.001 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../114-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-09-16T05:13:15.040 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-09-16T05:13:15.080 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package jq. 2024-09-16T05:13:15.089 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package python3-simplejson. 2024-09-16T05:13:15.097 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../094-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-09-16T05:13:15.117 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../114-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-09-16T05:13:15.138 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-09-16T05:13:15.164 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-09-16T05:13:15.292 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-09-16T05:13:15.308 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../115-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-09-16T05:13:15.350 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-09-16T05:13:15.401 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package socat. 2024-09-16T05:13:15.417 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-09-16T05:13:15.418 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../095-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-09-16T05:13:15.433 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../115-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-09-16T05:13:15.461 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-09-16T05:13:15.475 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-09-16T05:13:15.825 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package xmlstarlet. 2024-09-16T05:13:15.842 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../096-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-09-16T05:13:15.884 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-09-16T05:13:16.071 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package radosgw. 2024-09-16T05:13:16.099 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../116-radosgw_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:13:16.138 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking radosgw (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:16.196 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package radosgw. 2024-09-16T05:13:16.223 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../116-radosgw_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:13:16.254 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking radosgw (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:16.260 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package ceph-test. 2024-09-16T05:13:16.276 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../097-ceph-test_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:13:16.318 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking ceph-test (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:16.963 INFO:teuthology.orchestra.run.smithi081.stdout:Selecting previously unselected package rbd-fuse. 2024-09-16T05:13:16.991 INFO:teuthology.orchestra.run.smithi081.stdout:Preparing to unpack .../117-rbd-fuse_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:13:17.057 INFO:teuthology.orchestra.run.smithi167.stdout:Selecting previously unselected package rbd-fuse. 2024-09-16T05:13:17.073 INFO:teuthology.orchestra.run.smithi167.stdout:Preparing to unpack .../117-rbd-fuse_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:13:17.115 INFO:teuthology.orchestra.run.smithi167.stdout:Unpacking rbd-fuse (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:17.216 INFO:teuthology.orchestra.run.smithi081.stdout:Unpacking rbd-fuse (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:17.445 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-09-16T05:13:17.520 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-09-16T05:13:17.704 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-16T05:13:17.788 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-16T05:13:17.805 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up nvme-cli (1.16-3ubuntu0.3) ... 2024-09-16T05:13:17.906 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up nvme-cli (1.16-3ubuntu0.3) ... 2024-09-16T05:13:18.051 INFO:teuthology.orchestra.run.smithi167.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-09-16T05:13:18.148 INFO:teuthology.orchestra.run.smithi081.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-09-16T05:13:18.377 INFO:teuthology.orchestra.run.smithi167.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-09-16T05:13:18.448 INFO:teuthology.orchestra.run.smithi081.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-09-16T05:13:18.804 INFO:teuthology.orchestra.run.smithi167.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-09-16T05:13:18.870 INFO:teuthology.orchestra.run.smithi081.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-09-16T05:13:18.873 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up cephadm (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:18.933 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up cephadm (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:19.407 INFO:teuthology.orchestra.run.smithi167.stdout:Adding system user cephadm....done 2024-09-16T05:13:19.416 INFO:teuthology.orchestra.run.smithi081.stdout:Adding system user cephadm....done 2024-09-16T05:13:19.539 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-16T05:13:19.605 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-16T05:13:19.815 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-09-16T05:13:19.890 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-09-16T05:13:19.903 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package ceph-volume. 2024-09-16T05:13:19.931 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../098-ceph-volume_19.1.1-326-g8921c8ef-1jammy_all.deb ... 2024-09-16T05:13:19.969 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking ceph-volume (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:20.050 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-09-16T05:13:20.158 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-09-16T05:13:20.159 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-09-16T05:13:20.278 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package libcephfs-dev. 2024-09-16T05:13:20.284 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-09-16T05:13:20.294 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../099-libcephfs-dev_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:13:20.336 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking libcephfs-dev (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:20.427 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-09-16T05:13:20.543 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-09-16T05:13:20.668 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package lua-socket:amd64. 2024-09-16T05:13:20.696 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../100-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-09-16T05:13:20.703 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-09-16T05:13:20.734 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-09-16T05:13:20.820 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-09-16T05:13:20.829 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-py (1.10.0-1) ... 2024-09-16T05:13:20.946 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-py (1.10.0-1) ... 2024-09-16T05:13:21.077 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package lua-sec:amd64. 2024-09-16T05:13:21.105 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../101-lua-sec_1.0.2-1_amd64.deb ... 2024-09-16T05:13:21.140 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-09-16T05:13:21.152 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-09-16T05:13:21.264 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-09-16T05:13:21.483 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-09-16T05:13:21.526 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package nvme-cli. 2024-09-16T05:13:21.554 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../102-nvme-cli_1.16-3ubuntu0.3_amd64.deb ... 2024-09-16T05:13:21.592 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking nvme-cli (1.16-3ubuntu0.3) ... 2024-09-16T05:13:21.616 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-09-16T05:13:21.726 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-09-16T05:13:21.868 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-09-16T05:13:21.994 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-09-16T05:13:22.012 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package pkg-config. 2024-09-16T05:13:22.040 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../103-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-09-16T05:13:22.088 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-09-16T05:13:22.152 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-09-16T05:13:22.254 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-09-16T05:13:22.368 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-09-16T05:13:22.396 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../104-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-09-16T05:13:22.435 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-09-16T05:13:22.437 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-09-16T05:13:22.505 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-09-16T05:13:22.697 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-09-16T05:13:22.756 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-09-16T05:13:22.892 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-iniconfig. 2024-09-16T05:13:22.920 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../105-python3-iniconfig_1.1.1-2_all.deb ... 2024-09-16T05:13:22.948 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-09-16T05:13:22.959 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-09-16T05:13:23.008 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-ceph-argparse (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:23.207 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-ceph-argparse (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:23.255 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-pastescript. 2024-09-16T05:13:23.267 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-16T05:13:23.283 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../106-python3-pastescript_2.0.2-4_all.deb ... 2024-09-16T05:13:23.330 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-09-16T05:13:23.393 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-09-16T05:13:23.519 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-09-16T05:13:23.584 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-16T05:13:23.629 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-pluggy. 2024-09-16T05:13:23.645 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-09-16T05:13:23.647 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../107-python3-pluggy_0.13.0-7.1_all.deb ... 2024-09-16T05:13:23.688 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-09-16T05:13:23.710 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-09-16T05:13:23.844 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-09-16T05:13:23.896 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-09-16T05:13:23.986 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-psutil. 2024-09-16T05:13:23.995 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-09-16T05:13:24.014 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../108-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-09-16T05:13:24.061 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-09-16T05:13:24.263 INFO:teuthology.orchestra.run.smithi081.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-09-16T05:13:24.280 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-09-16T05:13:24.294 INFO:teuthology.orchestra.run.smithi081.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-09-16T05:13:24.358 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-16T05:13:24.417 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-py. 2024-09-16T05:13:24.445 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../109-python3-py_1.10.0-1_all.deb ... 2024-09-16T05:13:24.459 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-09-16T05:13:24.483 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-py (1.10.0-1) ... 2024-09-16T05:13:24.643 INFO:teuthology.orchestra.run.smithi167.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-09-16T05:13:24.694 INFO:teuthology.orchestra.run.smithi167.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-09-16T05:13:24.758 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-16T05:13:24.799 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-pygments. 2024-09-16T05:13:24.818 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-16T05:13:24.828 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../110-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-09-16T05:13:24.866 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-09-16T05:13:24.884 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-09-16T05:13:24.945 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-09-16T05:13:25.213 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-09-16T05:13:25.244 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-16T05:13:25.370 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-09-16T05:13:25.408 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-pyinotify. 2024-09-16T05:13:25.436 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../111-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-09-16T05:13:25.472 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-09-16T05:13:25.474 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-09-16T05:13:25.646 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-09-16T05:13:25.782 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up zip (3.0-12build2) ... 2024-09-16T05:13:25.798 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-toml. 2024-09-16T05:13:25.826 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../112-python3-toml_0.10.2-1_all.deb ... 2024-09-16T05:13:25.873 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-09-16T05:13:25.891 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-09-16T05:13:25.922 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-09-16T05:13:26.178 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-pytest. 2024-09-16T05:13:26.206 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../113-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-09-16T05:13:26.215 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up zip (3.0-12build2) ... 2024-09-16T05:13:26.244 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-09-16T05:13:26.342 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-09-16T05:13:26.568 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-09-16T05:13:26.602 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package python3-simplejson. 2024-09-16T05:13:26.630 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../114-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-09-16T05:13:26.669 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-09-16T05:13:26.844 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-09-16T05:13:26.970 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-09-16T05:13:26.985 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-09-16T05:13:27.088 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-16T05:13:27.234 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-09-16T05:13:27.262 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../115-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-09-16T05:13:27.309 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-09-16T05:13:27.373 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-09-16T05:13:27.420 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-09-16T05:13:27.571 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-09-16T05:13:27.722 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-16T05:13:27.749 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-09-16T05:13:28.009 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-09-16T05:13:28.032 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-09-16T05:13:28.058 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package radosgw. 2024-09-16T05:13:28.086 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../116-radosgw_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:13:28.124 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking radosgw (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:28.394 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-16T05:13:28.425 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-09-16T05:13:28.676 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-09-16T05:13:28.678 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-16T05:13:29.013 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-09-16T05:13:29.044 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-16T05:13:29.165 INFO:teuthology.orchestra.run.smithi029.stdout:Selecting previously unselected package rbd-fuse. 2024-09-16T05:13:29.193 INFO:teuthology.orchestra.run.smithi029.stdout:Preparing to unpack .../117-rbd-fuse_19.1.1-326-g8921c8ef-1jammy_amd64.deb ... 2024-09-16T05:13:29.240 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-09-16T05:13:29.241 INFO:teuthology.orchestra.run.smithi029.stdout:Unpacking rbd-fuse (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:29.354 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-16T05:13:29.365 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-ceph-common (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:29.574 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-09-16T05:13:29.643 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-idna (3.3-1ubuntu0.1) ... 2024-09-16T05:13:29.697 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-09-16T05:13:29.833 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-16T05:13:29.959 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-16T05:13:29.960 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up nvme-cli (1.16-3ubuntu0.3) ... 2024-09-16T05:13:29.965 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-09-16T05:13:30.091 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-ceph-common (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:30.232 INFO:teuthology.orchestra.run.smithi029.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-09-16T05:13:30.401 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-idna (3.3-1ubuntu0.1) ... 2024-09-16T05:13:30.573 INFO:teuthology.orchestra.run.smithi029.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-09-16T05:13:30.727 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-16T05:13:30.989 INFO:teuthology.orchestra.run.smithi029.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-09-16T05:13:31.066 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up cephadm (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:31.149 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-09-16T05:13:31.359 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T05:13:31.485 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-toml (0.10.2-1) ... 2024-09-16T05:13:31.597 INFO:teuthology.orchestra.run.smithi029.stdout:Adding system user cephadm....done 2024-09-16T05:13:31.753 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-16T05:13:31.796 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-16T05:13:31.841 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-09-16T05:13:31.879 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-09-16T05:13:31.996 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-16T05:13:32.067 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-09-16T05:13:32.110 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T05:13:32.253 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-toml (0.10.2-1) ... 2024-09-16T05:13:32.281 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-09-16T05:13:32.319 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-09-16T05:13:32.446 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-09-16T05:13:32.533 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-09-16T05:13:32.537 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-16T05:13:32.638 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-09-16T05:13:32.707 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-09-16T05:13:32.739 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-16T05:13:32.960 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-09-16T05:13:33.041 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-09-16T05:13:33.042 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T05:13:33.088 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-py (1.10.0-1) ... 2024-09-16T05:13:33.168 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-09-16T05:13:33.292 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-09-16T05:13:33.399 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-09-16T05:13:33.470 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-09-16T05:13:33.543 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T05:13:33.677 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-09-16T05:13:33.721 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-09-16T05:13:33.771 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-09-16T05:13:33.972 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-09-16T05:13:33.995 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-09-16T05:13:34.040 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-09-16T05:13:34.238 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-09-16T05:13:34.239 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-09-16T05:13:34.309 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-09-16T05:13:34.491 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-09-16T05:13:34.507 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-09-16T05:13:34.572 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-09-16T05:13:34.750 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-16T05:13:34.782 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-09-16T05:13:34.876 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-09-16T05:13:34.932 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-09-16T05:13:35.034 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-09-16T05:13:35.161 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-16T05:13:35.201 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-09-16T05:13:35.287 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-16T05:13:35.318 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-16T05:13:35.444 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-09-16T05:13:35.452 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-ceph-argparse (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:35.580 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-16T05:13:35.737 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-16T05:13:35.739 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-16T05:13:35.858 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-09-16T05:13:35.881 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-09-16T05:13:35.888 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-16T05:13:35.985 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-09-16T05:13:36.120 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-09-16T05:13:36.124 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-09-16T05:13:36.198 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-16T05:13:36.233 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-09-16T05:13:36.343 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-09-16T05:13:36.382 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-09-16T05:13:36.431 INFO:teuthology.orchestra.run.smithi081.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-09-16T05:13:36.501 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-09-16T05:13:36.661 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-16T05:13:36.760 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-09-16T05:13:36.787 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-09-16T05:13:36.813 INFO:teuthology.orchestra.run.smithi029.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-09-16T05:13:36.848 INFO:teuthology.orchestra.run.smithi029.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-09-16T05:13:36.887 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-09-16T05:13:36.921 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-16T05:13:36.996 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-09-16T05:13:37.050 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-09-16T05:13:37.069 INFO:teuthology.orchestra.run.smithi167.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-09-16T05:13:37.166 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-09-16T05:13:37.331 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-16T05:13:37.415 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up lua-any (27ubuntu1) ... 2024-09-16T05:13:37.474 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-09-16T05:13:37.533 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-portend (3.0.0-1) ... 2024-09-16T05:13:37.711 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-16T05:13:37.784 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T05:13:37.837 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-09-16T05:13:37.867 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-09-16T05:13:37.910 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-16T05:13:38.114 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-09-16T05:13:38.135 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up lua-any (27ubuntu1) ... 2024-09-16T05:13:38.236 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-09-16T05:13:38.278 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-portend (3.0.0-1) ... 2024-09-16T05:13:38.418 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-09-16T05:13:38.529 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-16T05:13:38.546 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T05:13:38.647 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-16T05:13:38.762 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up zip (3.0-12build2) ... 2024-09-16T05:13:38.797 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-09-16T05:13:38.889 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-09-16T05:13:38.898 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-rsa (4.8-1) ... 2024-09-16T05:13:38.956 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-09-16T05:13:39.174 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-09-16T05:13:39.257 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-16T05:13:39.426 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-16T05:13:39.550 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-09-16T05:13:39.594 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-09-16T05:13:39.677 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-rsa (4.8-1) ... 2024-09-16T05:13:39.771 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-09-16T05:13:39.854 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-09-16T05:13:39.961 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-09-16T05:13:39.981 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-09-16T05:13:40.108 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-16T05:13:40.141 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-09-16T05:13:40.245 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-16T05:13:40.412 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-09-16T05:13:40.415 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-09-16T05:13:40.616 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-09-16T05:13:40.785 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-16T05:13:40.806 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-09-16T05:13:40.911 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up librados2 (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:41.026 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-09-16T05:13:41.037 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up libsqlite3-mod-ceph (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:41.057 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-09-16T05:13:41.155 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-09-16T05:13:41.311 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-09-16T05:13:41.444 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-16T05:13:41.451 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up libcephfs2 (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:41.575 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up libradosstriper1 (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:41.672 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-16T05:13:41.701 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-09-16T05:13:41.765 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-16T05:13:41.781 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up librados2 (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:41.907 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up libsqlite3-mod-ceph (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:41.978 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up librbd1 (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:42.042 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-09-16T05:13:42.104 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up ceph-mgr-modules-core (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:42.109 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-09-16T05:13:42.230 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up ceph-fuse (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:42.352 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-09-16T05:13:42.378 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up libcephfs2 (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:42.443 INFO:teuthology.orchestra.run.smithi081.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-16T05:13:42.443 INFO:teuthology.orchestra.run.smithi081.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-16T05:13:42.479 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-ceph-common (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:42.529 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up libradosstriper1 (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:42.630 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-09-16T05:13:42.775 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-idna (3.3-1ubuntu0.1) ... 2024-09-16T05:13:42.915 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up librbd1 (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:42.925 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up libcephfs-dev (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:43.042 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up ceph-mgr-modules-core (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:43.043 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-rados (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:43.094 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-16T05:13:43.168 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up ceph-fuse (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:43.168 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up librgw2 (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:43.295 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-16T05:13:43.382 INFO:teuthology.orchestra.run.smithi167.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-16T05:13:43.382 INFO:teuthology.orchestra.run.smithi167.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-16T05:13:43.905 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up libcephfs-dev (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:44.020 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-rados (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:44.138 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up librgw2 (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:44.264 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-16T05:13:44.306 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-09-16T05:13:44.552 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T05:13:44.582 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-rbd (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:44.687 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-toml (0.10.2-1) ... 2024-09-16T05:13:44.691 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up rbd-fuse (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:44.801 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-rgw (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:44.927 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up python3-cephfs (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:44.956 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-16T05:13:45.053 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up ceph-common (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:45.116 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-09-16T05:13:45.245 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-16T05:13:45.485 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-rbd (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:45.547 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-09-16T05:13:45.613 INFO:teuthology.orchestra.run.smithi081.stdout:Adding group ceph....done 2024-09-16T05:13:45.636 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up rbd-fuse (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:45.787 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-rgw (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:45.808 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-09-16T05:13:45.938 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up python3-cephfs (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:45.981 INFO:teuthology.orchestra.run.smithi081.stdout:Adding system user ceph....done 2024-09-16T05:13:46.060 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T05:13:46.098 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up ceph-common (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:46.143 INFO:teuthology.orchestra.run.smithi081.stdout:Setting system user ceph properties....done 2024-09-16T05:13:46.162 INFO:teuthology.orchestra.run.smithi081.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-09-16T05:13:46.188 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-09-16T05:13:46.297 INFO:teuthology.orchestra.run.smithi081.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-09-16T05:13:46.499 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-09-16T05:13:46.603 INFO:teuthology.orchestra.run.smithi081.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-09-16T05:13:46.640 INFO:teuthology.orchestra.run.smithi167.stdout:Adding group ceph....done 2024-09-16T05:13:46.759 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-09-16T05:13:46.933 INFO:teuthology.orchestra.run.smithi167.stdout:Adding system user ceph....done 2024-09-16T05:13:47.028 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-09-16T05:13:47.046 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up ceph-test (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:47.103 INFO:teuthology.orchestra.run.smithi167.stdout:Setting system user ceph properties....done 2024-09-16T05:13:47.122 INFO:teuthology.orchestra.run.smithi167.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-09-16T05:13:47.172 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up radosgw (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:47.261 INFO:teuthology.orchestra.run.smithi167.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-09-16T05:13:47.290 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-09-16T05:13:47.550 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-09-16T05:13:47.573 INFO:teuthology.orchestra.run.smithi167.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-09-16T05:13:47.634 INFO:teuthology.orchestra.run.smithi081.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-16T05:13:47.634 INFO:teuthology.orchestra.run.smithi081.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-16T05:13:47.819 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-16T05:13:47.946 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-09-16T05:13:48.082 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up ceph-base (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:48.091 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up ceph-test (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:48.226 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up radosgw (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:48.241 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-16T05:13:48.368 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-16T05:13:48.626 INFO:teuthology.orchestra.run.smithi081.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-09-16T05:13:48.662 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-16T05:13:48.697 INFO:teuthology.orchestra.run.smithi167.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-16T05:13:48.697 INFO:teuthology.orchestra.run.smithi167.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-16T05:13:48.964 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-09-16T05:13:49.101 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up ceph-mds (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:49.170 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up ceph-base (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:49.218 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-09-16T05:13:49.336 INFO:teuthology.orchestra.run.smithi081.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-16T05:13:49.336 INFO:teuthology.orchestra.run.smithi081.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-16T05:13:49.344 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-09-16T05:13:49.471 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-09-16T05:13:49.496 INFO:teuthology.orchestra.run.smithi167.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-09-16T05:13:49.562 INFO:teuthology.orchestra.run.smithi029.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-09-16T05:13:49.809 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-16T05:13:49.853 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up ceph-mgr (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:49.936 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-09-16T05:13:49.988 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up ceph-mds (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:50.069 INFO:teuthology.orchestra.run.smithi081.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-16T05:13:50.069 INFO:teuthology.orchestra.run.smithi081.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-16T05:13:50.231 INFO:teuthology.orchestra.run.smithi167.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-16T05:13:50.231 INFO:teuthology.orchestra.run.smithi167.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-16T05:13:50.331 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-09-16T05:13:50.537 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up ceph-osd (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:50.600 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up lua-any (27ubuntu1) ... 2024-09-16T05:13:50.715 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up ceph-mgr (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:50.728 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-portend (3.0.0-1) ... 2024-09-16T05:13:50.803 INFO:teuthology.orchestra.run.smithi081.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-16T05:13:50.803 INFO:teuthology.orchestra.run.smithi081.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-16T05:13:50.936 INFO:teuthology.orchestra.run.smithi167.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-16T05:13:50.936 INFO:teuthology.orchestra.run.smithi167.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-16T05:13:50.980 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T05:13:51.107 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-16T05:13:51.264 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up ceph-mgr-k8sevents (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:51.365 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up ceph-mgr-diskprediction-local (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:51.433 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up ceph-osd (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:51.451 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-09-16T05:13:51.517 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up ceph-mon (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:51.713 INFO:teuthology.orchestra.run.smithi081.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-16T05:13:51.713 INFO:teuthology.orchestra.run.smithi081.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-16T05:13:51.721 INFO:teuthology.orchestra.run.smithi167.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-16T05:13:51.721 INFO:teuthology.orchestra.run.smithi167.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-16T05:13:51.746 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-16T05:13:52.023 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-09-16T05:13:52.150 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-rsa (4.8-1) ... 2024-09-16T05:13:52.168 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up ceph-mgr-cephadm (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:52.235 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up ceph-mgr-k8sevents (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:52.319 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up ceph (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:52.386 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up ceph-mgr-diskprediction-local (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:52.435 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-09-16T05:13:52.445 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up ceph-mgr-dashboard (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:52.554 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up ceph-mon (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:52.596 INFO:teuthology.orchestra.run.smithi081.stdout:Setting up ceph-volume (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:52.714 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-16T05:13:52.787 INFO:teuthology.orchestra.run.smithi167.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-16T05:13:52.787 INFO:teuthology.orchestra.run.smithi167.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-16T05:13:52.949 INFO:teuthology.orchestra.run.smithi081.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-09-16T05:13:53.050 INFO:teuthology.orchestra.run.smithi081.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-09-16T05:13:53.095 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-09-16T05:13:53.177 INFO:teuthology.orchestra.run.smithi081.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-09-16T05:13:53.273 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up ceph-mgr-cephadm (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:53.416 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up ceph (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:53.492 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-09-16T05:13:53.550 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up ceph-mgr-dashboard (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:53.693 INFO:teuthology.orchestra.run.smithi167.stdout:Setting up ceph-volume (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:53.778 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-09-16T05:13:54.126 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-16T05:13:54.163 INFO:teuthology.orchestra.run.smithi167.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-09-16T05:13:54.253 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up librados2 (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:54.272 INFO:teuthology.orchestra.run.smithi167.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-09-16T05:13:54.279 INFO:teuthology.orchestra.run.smithi081.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-09-16T05:13:54.389 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up libsqlite3-mod-ceph (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:54.424 INFO:teuthology.orchestra.run.smithi167.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-09-16T05:13:54.516 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-09-16T05:13:54.848 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up libcephfs2 (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:54.909 INFO:teuthology.orchestra.run.smithi081.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-09-16T05:13:54.915 DEBUG:teuthology.parallel:result is None 2024-09-16T05:13:54.974 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up libradosstriper1 (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:55.101 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-09-16T05:13:55.372 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up librbd1 (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:55.484 INFO:teuthology.orchestra.run.smithi167.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-09-16T05:13:55.500 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up ceph-mgr-modules-core (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:55.626 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up ceph-fuse (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:55.843 INFO:teuthology.orchestra.run.smithi029.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-16T05:13:55.844 INFO:teuthology.orchestra.run.smithi029.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-16T05:13:56.156 INFO:teuthology.orchestra.run.smithi167.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-09-16T05:13:56.161 DEBUG:teuthology.parallel:result is None 2024-09-16T05:13:56.289 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up libcephfs-dev (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:56.416 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-rados (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:56.542 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up librgw2 (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:56.669 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-16T05:13:57.961 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-rbd (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:58.088 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up rbd-fuse (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:58.216 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-rgw (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:58.410 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up python3-cephfs (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:58.529 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up ceph-common (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:13:59.077 INFO:teuthology.orchestra.run.smithi029.stdout:Adding group ceph....done 2024-09-16T05:13:59.449 INFO:teuthology.orchestra.run.smithi029.stdout:Adding system user ceph....done 2024-09-16T05:13:59.610 INFO:teuthology.orchestra.run.smithi029.stdout:Setting system user ceph properties....done 2024-09-16T05:13:59.626 INFO:teuthology.orchestra.run.smithi029.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-09-16T05:13:59.778 INFO:teuthology.orchestra.run.smithi029.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-09-16T05:14:00.099 INFO:teuthology.orchestra.run.smithi029.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-09-16T05:14:00.541 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up ceph-test (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:14:00.668 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up radosgw (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:14:01.169 INFO:teuthology.orchestra.run.smithi029.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-16T05:14:01.169 INFO:teuthology.orchestra.run.smithi029.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-16T05:14:01.698 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up ceph-base (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:14:02.100 INFO:teuthology.orchestra.run.smithi029.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-09-16T05:14:03.164 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up ceph-mds (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:14:03.818 INFO:teuthology.orchestra.run.smithi029.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-16T05:14:03.818 INFO:teuthology.orchestra.run.smithi029.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-16T05:14:04.279 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up ceph-mgr (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:14:04.498 INFO:teuthology.orchestra.run.smithi029.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-16T05:14:04.499 INFO:teuthology.orchestra.run.smithi029.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-16T05:14:05.019 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up ceph-osd (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:14:05.312 INFO:teuthology.orchestra.run.smithi029.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-16T05:14:05.312 INFO:teuthology.orchestra.run.smithi029.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-16T05:14:05.802 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up ceph-mgr-k8sevents (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:14:05.921 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up ceph-mgr-diskprediction-local (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:14:06.074 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up ceph-mon (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:14:06.284 INFO:teuthology.orchestra.run.smithi029.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-16T05:14:06.284 INFO:teuthology.orchestra.run.smithi029.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-16T05:14:06.735 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up ceph-mgr-cephadm (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:14:06.887 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up ceph (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:14:07.014 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up ceph-mgr-dashboard (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:14:07.168 INFO:teuthology.orchestra.run.smithi029.stdout:Setting up ceph-volume (19.1.1-326-g8921c8ef-1jammy) ... 2024-09-16T05:14:07.539 INFO:teuthology.orchestra.run.smithi029.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-09-16T05:14:07.649 INFO:teuthology.orchestra.run.smithi029.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-09-16T05:14:07.813 INFO:teuthology.orchestra.run.smithi029.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-09-16T05:14:09.703 INFO:teuthology.orchestra.run.smithi029.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-09-16T05:14:10.502 INFO:teuthology.orchestra.run.smithi029.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-09-16T05:14:10.507 DEBUG:teuthology.parallel:result is None 2024-09-16T05:14:10.508 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=8921c8ef947807b717db041d85f0761b7914d5fc 2024-09-16T05:14:10.654 DEBUG:teuthology.orchestra.run.smithi029:> dpkg-query -W -f '${Version}' ceph 2024-09-16T05:14:10.674 INFO:teuthology.orchestra.run.smithi029.stdout:19.1.1-326-g8921c8ef-1jammy 2024-09-16T05:14:10.674 INFO:teuthology.packaging:The installed version of ceph is 19.1.1-326-g8921c8ef-1jammy 2024-09-16T05:14:10.674 INFO:teuthology.task.install:The correct ceph version 19.1.1-326-g8921c8ef-1jammy is installed. 2024-09-16T05:14:10.676 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=8921c8ef947807b717db041d85f0761b7914d5fc 2024-09-16T05:14:10.816 DEBUG:teuthology.orchestra.run.smithi081:> dpkg-query -W -f '${Version}' ceph 2024-09-16T05:14:10.835 INFO:teuthology.orchestra.run.smithi081.stdout:19.1.1-326-g8921c8ef-1jammy 2024-09-16T05:14:10.836 INFO:teuthology.packaging:The installed version of ceph is 19.1.1-326-g8921c8ef-1jammy 2024-09-16T05:14:10.836 INFO:teuthology.task.install:The correct ceph version 19.1.1-326-g8921c8ef-1jammy is installed. 2024-09-16T05:14:10.837 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=8921c8ef947807b717db041d85f0761b7914d5fc 2024-09-16T05:14:10.982 DEBUG:teuthology.orchestra.run.smithi167:> dpkg-query -W -f '${Version}' ceph 2024-09-16T05:14:11.001 INFO:teuthology.orchestra.run.smithi167.stdout:19.1.1-326-g8921c8ef-1jammy 2024-09-16T05:14:11.002 INFO:teuthology.packaging:The installed version of ceph is 19.1.1-326-g8921c8ef-1jammy 2024-09-16T05:14:11.002 INFO:teuthology.task.install:The correct ceph version 19.1.1-326-g8921c8ef-1jammy is installed. 2024-09-16T05:14:11.004 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2024-09-16T05:14:11.004 DEBUG:teuthology.orchestra.run.smithi029:> set -ex 2024-09-16T05:14:11.004 DEBUG:teuthology.orchestra.run.smithi029:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-16T05:14:11.019 DEBUG:teuthology.orchestra.run.smithi081:> set -ex 2024-09-16T05:14:11.019 DEBUG:teuthology.orchestra.run.smithi081:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-16T05:14:11.034 DEBUG:teuthology.orchestra.run.smithi167:> set -ex 2024-09-16T05:14:11.034 DEBUG:teuthology.orchestra.run.smithi167:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-16T05:14:11.056 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2024-09-16T05:14:11.056 DEBUG:teuthology.orchestra.run.smithi029:> set -ex 2024-09-16T05:14:11.056 DEBUG:teuthology.orchestra.run.smithi029:> sudo dd of=/usr/bin/daemon-helper 2024-09-16T05:14:11.074 DEBUG:teuthology.orchestra.run.smithi029:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-16T05:14:11.130 DEBUG:teuthology.orchestra.run.smithi081:> set -ex 2024-09-16T05:14:11.130 DEBUG:teuthology.orchestra.run.smithi081:> sudo dd of=/usr/bin/daemon-helper 2024-09-16T05:14:11.143 DEBUG:teuthology.orchestra.run.smithi081:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-16T05:14:11.197 DEBUG:teuthology.orchestra.run.smithi167:> set -ex 2024-09-16T05:14:11.197 DEBUG:teuthology.orchestra.run.smithi167:> sudo dd of=/usr/bin/daemon-helper 2024-09-16T05:14:11.210 DEBUG:teuthology.orchestra.run.smithi167:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-16T05:14:11.264 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2024-09-16T05:14:11.265 DEBUG:teuthology.orchestra.run.smithi029:> set -ex 2024-09-16T05:14:11.265 DEBUG:teuthology.orchestra.run.smithi029:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-16T05:14:11.279 DEBUG:teuthology.orchestra.run.smithi029:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-16T05:14:11.334 DEBUG:teuthology.orchestra.run.smithi081:> set -ex 2024-09-16T05:14:11.334 DEBUG:teuthology.orchestra.run.smithi081:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-16T05:14:11.348 DEBUG:teuthology.orchestra.run.smithi081:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-16T05:14:11.404 DEBUG:teuthology.orchestra.run.smithi167:> set -ex 2024-09-16T05:14:11.404 DEBUG:teuthology.orchestra.run.smithi167:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-16T05:14:11.417 DEBUG:teuthology.orchestra.run.smithi167:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-16T05:14:11.472 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2024-09-16T05:14:11.472 DEBUG:teuthology.orchestra.run.smithi029:> set -ex 2024-09-16T05:14:11.472 DEBUG:teuthology.orchestra.run.smithi029:> sudo dd of=/usr/bin/stdin-killer 2024-09-16T05:14:11.486 DEBUG:teuthology.orchestra.run.smithi029:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-16T05:14:11.541 DEBUG:teuthology.orchestra.run.smithi081:> set -ex 2024-09-16T05:14:11.541 DEBUG:teuthology.orchestra.run.smithi081:> sudo dd of=/usr/bin/stdin-killer 2024-09-16T05:14:11.555 DEBUG:teuthology.orchestra.run.smithi081:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-16T05:14:11.607 DEBUG:teuthology.orchestra.run.smithi167:> set -ex 2024-09-16T05:14:11.607 DEBUG:teuthology.orchestra.run.smithi167:> sudo dd of=/usr/bin/stdin-killer 2024-09-16T05:14:11.624 DEBUG:teuthology.orchestra.run.smithi167:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-16T05:14:11.681 INFO:teuthology.run_tasks:Running task cephadm... 2024-09-16T05:14:11.779 INFO:tasks.cephadm:Config: {'conf': {'global': {'mon election default strategy': 3}, 'mgr': {'debug mgr': 20, 'debug ms': 1, 'mgr/cephadm/use_agent': True}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)', 'MON_DOWN', 'mons down', 'mon down', 'out of quorum', 'CEPHADM_STRAY_HOST', 'CEPHADM_STRAY_DAEMON', 'CEPHADM_FAILED_DAEMON'], 'log-only-match': ['CEPHADM_'], 'sha1': '8921c8ef947807b717db041d85f0761b7914d5fc'} 2024-09-16T05:14:11.779 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc 2024-09-16T05:14:11.780 INFO:tasks.cephadm:Cluster fsid is 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:14:11.780 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-09-16T05:14:11.780 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '172.21.15.29', 'mon.b': '172.21.15.81', 'mon.c': '172.21.15.167'} 2024-09-16T05:14:11.780 INFO:tasks.cephadm:First mon is mon.a on smithi029 2024-09-16T05:14:11.781 INFO:tasks.cephadm:First mgr is a 2024-09-16T05:14:11.781 INFO:tasks.cephadm:Normalizing hostnames... 2024-09-16T05:14:11.781 DEBUG:teuthology.orchestra.run.smithi029:> sudo hostname $(hostname -s) 2024-09-16T05:14:11.797 DEBUG:teuthology.orchestra.run.smithi081:> sudo hostname $(hostname -s) 2024-09-16T05:14:11.811 DEBUG:teuthology.orchestra.run.smithi167:> sudo hostname $(hostname -s) 2024-09-16T05:14:11.825 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-09-16T05:14:11.826 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=8921c8ef947807b717db041d85f0761b7914d5fc 2024-09-16T05:14:11.975 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': '8921c8ef947807b717db041d85f0761b7914d5fc', '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/56081/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.1.1-326-g8921c8ef', 'node_name': '172.21.5.38+adami08', 'job_name': 'ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=jammy,DIST=jammy,MACHINE_SIZE=gigantic', 'package_manager_version': '19.1.1-326-g8921c8ef-1jammy'}, 'url': 'https://1.chacra.ceph.com/r/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default/', 'distro_codename': 'jammy', 'modified': '2024-09-15 16:01:53.073975', 'distro_version': '22.04', 'project': 'ceph', 'flavor': 'default', 'ref': 'squid', 'chacra_url': 'https://1.chacra.ceph.com/repos/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/flavors/default/', 'archs': ['x86_64'], 'distro': 'ubuntu'}] 2024-09-16T05:14:12.119 INFO:tasks.util.chacra:got chacra host 1.chacra.ceph.com, ref squid, sha1 8921c8ef947807b717db041d85f0761b7914d5fc from https://shaman.ceph.com/api/search/?project=ceph&distros=ubuntu%2F22.04%2Fx86_64&flavor=default&sha1=8921c8ef947807b717db041d85f0761b7914d5fc 2024-09-16T05:14:12.121 INFO:tasks.cephadm:Discovered cachra url: https://1.chacra.ceph.com/binaries/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-09-16T05:14:12.121 INFO:tasks.cephadm:Downloading cephadm from url: https://1.chacra.ceph.com/binaries/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-09-16T05:14:12.121 DEBUG:teuthology.orchestra.run.smithi029:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-16T05:14:12.596 INFO:teuthology.orchestra.run.smithi029.stdout:-rw-rw-r-- 1 ubuntu ubuntu 791881 Sep 16 05:14 /home/ubuntu/cephtest/cephadm 2024-09-16T05:14:12.596 DEBUG:teuthology.orchestra.run.smithi081:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-16T05:14:13.071 INFO:teuthology.orchestra.run.smithi081.stdout:-rw-rw-r-- 1 ubuntu ubuntu 791881 Sep 16 05:14 /home/ubuntu/cephtest/cephadm 2024-09-16T05:14:13.071 DEBUG:teuthology.orchestra.run.smithi167:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/squid/8921c8ef947807b717db041d85f0761b7914d5fc/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-16T05:14:13.541 INFO:teuthology.orchestra.run.smithi167.stdout:-rw-rw-r-- 1 ubuntu ubuntu 791881 Sep 16 05:14 /home/ubuntu/cephtest/cephadm 2024-09-16T05:14:13.541 DEBUG:teuthology.orchestra.run.smithi029:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-16T05:14:13.549 DEBUG:teuthology.orchestra.run.smithi081:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-16T05:14:13.557 DEBUG:teuthology.orchestra.run.smithi167:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-16T05:14:13.575 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc on all hosts... 2024-09-16T05:14:13.575 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc pull 2024-09-16T05:14:13.595 DEBUG:teuthology.orchestra.run.smithi081:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc pull 2024-09-16T05:14:13.601 DEBUG:teuthology.orchestra.run.smithi167:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc pull 2024-09-16T05:14:13.783 INFO:teuthology.orchestra.run.smithi029.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc... 2024-09-16T05:14:13.784 INFO:teuthology.orchestra.run.smithi081.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc... 2024-09-16T05:14:13.792 INFO:teuthology.orchestra.run.smithi167.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc... 2024-09-16T05:15:12.108 INFO:teuthology.orchestra.run.smithi081.stdout:{ 2024-09-16T05:15:12.109 INFO:teuthology.orchestra.run.smithi081.stdout: "ceph_version": "ceph version 19.1.1-326-g8921c8ef (8921c8ef947807b717db041d85f0761b7914d5fc) squid (stable)", 2024-09-16T05:15:12.109 INFO:teuthology.orchestra.run.smithi081.stdout: "image_id": "f1455bd0219c0836c14d3880561c736ab957883ab2384892956003bb36edc4ee", 2024-09-16T05:15:12.109 INFO:teuthology.orchestra.run.smithi081.stdout: "repo_digests": [ 2024-09-16T05:15:12.109 INFO:teuthology.orchestra.run.smithi081.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:6b5c73953776cdbbe2c2650e2c9813ab5ac3fdead855fa68a3941507184c3a80" 2024-09-16T05:15:12.109 INFO:teuthology.orchestra.run.smithi081.stdout: ] 2024-09-16T05:15:12.109 INFO:teuthology.orchestra.run.smithi081.stdout:} 2024-09-16T05:15:34.947 INFO:teuthology.orchestra.run.smithi167.stdout:{ 2024-09-16T05:15:34.948 INFO:teuthology.orchestra.run.smithi167.stdout: "ceph_version": "ceph version 19.1.1-326-g8921c8ef (8921c8ef947807b717db041d85f0761b7914d5fc) squid (stable)", 2024-09-16T05:15:34.948 INFO:teuthology.orchestra.run.smithi167.stdout: "image_id": "f1455bd0219c0836c14d3880561c736ab957883ab2384892956003bb36edc4ee", 2024-09-16T05:15:34.948 INFO:teuthology.orchestra.run.smithi167.stdout: "repo_digests": [ 2024-09-16T05:15:34.948 INFO:teuthology.orchestra.run.smithi167.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:6b5c73953776cdbbe2c2650e2c9813ab5ac3fdead855fa68a3941507184c3a80" 2024-09-16T05:15:34.948 INFO:teuthology.orchestra.run.smithi167.stdout: ] 2024-09-16T05:15:34.948 INFO:teuthology.orchestra.run.smithi167.stdout:} 2024-09-16T05:15:43.797 INFO:teuthology.orchestra.run.smithi029.stdout:{ 2024-09-16T05:15:43.797 INFO:teuthology.orchestra.run.smithi029.stdout: "ceph_version": "ceph version 19.1.1-326-g8921c8ef (8921c8ef947807b717db041d85f0761b7914d5fc) squid (stable)", 2024-09-16T05:15:43.797 INFO:teuthology.orchestra.run.smithi029.stdout: "image_id": "f1455bd0219c0836c14d3880561c736ab957883ab2384892956003bb36edc4ee", 2024-09-16T05:15:43.797 INFO:teuthology.orchestra.run.smithi029.stdout: "repo_digests": [ 2024-09-16T05:15:43.797 INFO:teuthology.orchestra.run.smithi029.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:6b5c73953776cdbbe2c2650e2c9813ab5ac3fdead855fa68a3941507184c3a80" 2024-09-16T05:15:43.797 INFO:teuthology.orchestra.run.smithi029.stdout: ] 2024-09-16T05:15:43.797 INFO:teuthology.orchestra.run.smithi029.stdout:} 2024-09-16T05:15:43.849 DEBUG:teuthology.orchestra.run.smithi029:> sudo mkdir -p /etc/ceph 2024-09-16T05:15:43.863 DEBUG:teuthology.orchestra.run.smithi081:> sudo mkdir -p /etc/ceph 2024-09-16T05:15:43.877 DEBUG:teuthology.orchestra.run.smithi167:> sudo mkdir -p /etc/ceph 2024-09-16T05:15:43.893 DEBUG:teuthology.orchestra.run.smithi029:> sudo chmod 777 /etc/ceph 2024-09-16T05:15:43.917 DEBUG:teuthology.orchestra.run.smithi081:> sudo chmod 777 /etc/ceph 2024-09-16T05:15:43.931 DEBUG:teuthology.orchestra.run.smithi167:> sudo chmod 777 /etc/ceph 2024-09-16T05:15:43.948 INFO:tasks.cephadm:Writing seed config... 2024-09-16T05:15:43.949 INFO:tasks.cephadm: override: [global] mon election default strategy = 3 2024-09-16T05:15:43.949 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-09-16T05:15:43.949 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-09-16T05:15:43.950 INFO:tasks.cephadm: override: [mgr] mgr/cephadm/use_agent = True 2024-09-16T05:15:43.950 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-09-16T05:15:43.950 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-09-16T05:15:43.950 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-09-16T05:15:43.950 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-09-16T05:15:43.950 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-09-16T05:15:43.951 DEBUG:teuthology.orchestra.run.smithi029:> set -ex 2024-09-16T05:15:43.951 DEBUG:teuthology.orchestra.run.smithi029:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-09-16T05:15:43.965 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 = 825322c2-73ea-11ef-bceb-c7b262605968 mon election default strategy = 3 [osd] osd scrub load threshold = 5.0 osd scrub max interval = 600 osd mclock profile = high_recovery_ops osd recover clone overlap = true osd recovery max chunk = 1048576 osd deep scrub update digest min age = 30 osd map max advance = 10 osd memory target autotune = true # debugging osd debug shutdown = true osd debug op order = true osd debug verify stray on activate = true osd debug pg log writeout = true osd debug verify cached snaps = true osd debug verify missing on start = true osd debug misdirected ops = true osd op queue = debug_random osd op queue cut off = debug_random osd shutdown pgref assert = true bdev debug aio = true osd sloppy crc = true debug ms = 1 debug osd = 20 [mgr] mon reweight min pgs per osd = 4 mon reweight min bytes per osd = 10 mgr/telemetry/nag = false debug mgr = 20 debug ms = 1 mgr/cephadm/use_agent = True [mon] mon data avail warn = 5 mon mgr mkfs grace = 240 mon reweight min pgs per osd = 4 mon osd reporter subtree level = osd mon osd prime pg temp = true mon reweight min bytes per osd = 10 # rotate auth tickets quickly to exercise renewal paths auth mon ticket ttl = 660# 11m auth service ticket ttl = 240# 4m # don't complain about global id reclaim mon_warn_on_insecure_global_id_reclaim = false mon_warn_on_insecure_global_id_reclaim_allowed = false debug mon = 20 debug ms = 1 debug paxos = 20 [client.rgw] rgw cache enabled = true rgw enable ops log = true rgw enable usage log = true 2024-09-16T05:15:43.966 DEBUG:teuthology.orchestra.run.smithi029:mon.a> sudo journalctl -f -n 0 -u ceph-825322c2-73ea-11ef-bceb-c7b262605968@mon.a.service 2024-09-16T05:15:44.011 DEBUG:teuthology.orchestra.run.smithi029:mgr.a> sudo journalctl -f -n 0 -u ceph-825322c2-73ea-11ef-bceb-c7b262605968@mgr.a.service 2024-09-16T05:15:44.054 INFO:tasks.cephadm:Bootstrapping... 2024-09-16T05:15:44.054 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc -v bootstrap --fsid 825322c2-73ea-11ef-bceb-c7b262605968 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-id a --mgr-id a --orphan-initial-daemons --skip-monitoring-stack --mon-ip 172.21.15.29 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-09-16T05:15:44.283 INFO:teuthology.orchestra.run.smithi029.stdout:-------------------------------------------------------------------------------- 2024-09-16T05:15:44.283 INFO:teuthology.orchestra.run.smithi029.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc', '-v', 'bootstrap', '--fsid', '825322c2-73ea-11ef-bceb-c7b262605968', '--config', '/home/ubuntu/cephtest/seed.ceph.conf', '--output-config', '/etc/ceph/ceph.conf', '--output-keyring', '/etc/ceph/ceph.client.admin.keyring', '--output-pub-ssh-key', '/home/ubuntu/cephtest/ceph.pub', '--mon-id', 'a', '--mgr-id', 'a', '--orphan-initial-daemons', '--skip-monitoring-stack', '--mon-ip', '172.21.15.29', '--skip-admin-label'] 2024-09-16T05:15:44.284 INFO:teuthology.orchestra.run.smithi029.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-09-16T05:15:44.284 INFO:teuthology.orchestra.run.smithi029.stdout:Verifying podman|docker is present... 2024-09-16T05:15:44.284 INFO:teuthology.orchestra.run.smithi029.stdout:Verifying lvm2 is present... 2024-09-16T05:15:44.285 INFO:teuthology.orchestra.run.smithi029.stdout:Verifying time synchronization is in place... 2024-09-16T05:15:44.289 INFO:teuthology.orchestra.run.smithi029.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-16T05:15:44.289 INFO:teuthology.orchestra.run.smithi029.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-16T05:15:44.294 INFO:teuthology.orchestra.run.smithi029.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-16T05:15:44.294 INFO:teuthology.orchestra.run.smithi029.stdout:systemctl: stdout inactive 2024-09-16T05:15:44.298 INFO:teuthology.orchestra.run.smithi029.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-09-16T05:15:44.299 INFO:teuthology.orchestra.run.smithi029.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-09-16T05:15:44.302 INFO:teuthology.orchestra.run.smithi029.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-09-16T05:15:44.302 INFO:teuthology.orchestra.run.smithi029.stdout:systemctl: stdout inactive 2024-09-16T05:15:44.306 INFO:teuthology.orchestra.run.smithi029.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-09-16T05:15:44.306 INFO:teuthology.orchestra.run.smithi029.stdout:systemctl: stdout masked 2024-09-16T05:15:44.310 INFO:teuthology.orchestra.run.smithi029.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-09-16T05:15:44.310 INFO:teuthology.orchestra.run.smithi029.stdout:systemctl: stdout inactive 2024-09-16T05:15:44.314 INFO:teuthology.orchestra.run.smithi029.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-09-16T05:15:44.314 INFO:teuthology.orchestra.run.smithi029.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-09-16T05:15:44.317 INFO:teuthology.orchestra.run.smithi029.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-09-16T05:15:44.317 INFO:teuthology.orchestra.run.smithi029.stdout:systemctl: stdout inactive 2024-09-16T05:15:44.321 INFO:teuthology.orchestra.run.smithi029.stdout:systemctl: stdout enabled 2024-09-16T05:15:44.325 INFO:teuthology.orchestra.run.smithi029.stdout:systemctl: stdout active 2024-09-16T05:15:44.326 INFO:teuthology.orchestra.run.smithi029.stdout:Unit ntp.service is enabled and running 2024-09-16T05:15:44.326 INFO:teuthology.orchestra.run.smithi029.stdout:Repeating the final host check... 2024-09-16T05:15:44.326 INFO:teuthology.orchestra.run.smithi029.stdout:docker (/usr/bin/docker) is present 2024-09-16T05:15:44.326 INFO:teuthology.orchestra.run.smithi029.stdout:systemctl is present 2024-09-16T05:15:44.326 INFO:teuthology.orchestra.run.smithi029.stdout:lvcreate is present 2024-09-16T05:15:44.329 INFO:teuthology.orchestra.run.smithi029.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-16T05:15:44.329 INFO:teuthology.orchestra.run.smithi029.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-16T05:15:44.332 INFO:teuthology.orchestra.run.smithi029.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-16T05:15:44.333 INFO:teuthology.orchestra.run.smithi029.stdout:systemctl: stdout inactive 2024-09-16T05:15:44.336 INFO:teuthology.orchestra.run.smithi029.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-09-16T05:15:44.336 INFO:teuthology.orchestra.run.smithi029.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-09-16T05:15:44.340 INFO:teuthology.orchestra.run.smithi029.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-09-16T05:15:44.340 INFO:teuthology.orchestra.run.smithi029.stdout:systemctl: stdout inactive 2024-09-16T05:15:44.343 INFO:teuthology.orchestra.run.smithi029.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-09-16T05:15:44.344 INFO:teuthology.orchestra.run.smithi029.stdout:systemctl: stdout masked 2024-09-16T05:15:44.347 INFO:teuthology.orchestra.run.smithi029.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-09-16T05:15:44.347 INFO:teuthology.orchestra.run.smithi029.stdout:systemctl: stdout inactive 2024-09-16T05:15:44.351 INFO:teuthology.orchestra.run.smithi029.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-09-16T05:15:44.351 INFO:teuthology.orchestra.run.smithi029.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-09-16T05:15:44.355 INFO:teuthology.orchestra.run.smithi029.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-09-16T05:15:44.355 INFO:teuthology.orchestra.run.smithi029.stdout:systemctl: stdout inactive 2024-09-16T05:15:44.359 INFO:teuthology.orchestra.run.smithi029.stdout:systemctl: stdout enabled 2024-09-16T05:15:44.363 INFO:teuthology.orchestra.run.smithi029.stdout:systemctl: stdout active 2024-09-16T05:15:44.364 INFO:teuthology.orchestra.run.smithi029.stdout:Unit ntp.service is enabled and running 2024-09-16T05:15:44.364 INFO:teuthology.orchestra.run.smithi029.stdout:Host looks OK 2024-09-16T05:15:44.364 INFO:teuthology.orchestra.run.smithi029.stdout:Cluster fsid: 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:15:44.364 INFO:teuthology.orchestra.run.smithi029.stdout:Acquiring lock 139722676124496 on /run/cephadm/825322c2-73ea-11ef-bceb-c7b262605968.lock 2024-09-16T05:15:44.364 INFO:teuthology.orchestra.run.smithi029.stdout:Lock 139722676124496 acquired on /run/cephadm/825322c2-73ea-11ef-bceb-c7b262605968.lock 2024-09-16T05:15:44.364 INFO:teuthology.orchestra.run.smithi029.stdout:Verifying IP 172.21.15.29 port 3300 ... 2024-09-16T05:15:44.364 INFO:teuthology.orchestra.run.smithi029.stdout:Verifying IP 172.21.15.29 port 6789 ... 2024-09-16T05:15:44.364 INFO:teuthology.orchestra.run.smithi029.stdout:Base mon IP(s) is [172.21.15.29:3300, 172.21.15.29:6789], mon addrv is [v2:172.21.15.29:3300,v1:172.21.15.29:6789] 2024-09-16T05:15:44.366 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev ens1f0 2024-09-16T05:15:44.366 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/sbin/ip: stdout 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-09-16T05:15:44.366 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/sbin/ip: stdout 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.29 2024-09-16T05:15:44.368 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-09-16T05:15:44.369 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/sbin/ip: stdout fe80::/64 dev ens1f0 proto kernel metric 256 pref medium 2024-09-16T05:15:44.369 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 1024 expires 1793sec hoplimit 64 pref medium 2024-09-16T05:15:44.371 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-09-16T05:15:44.371 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/sbin/ip: stdout inet6 ::1/128 scope host 2024-09-16T05:15:44.371 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-16T05:15:44.371 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/sbin/ip: stdout 3: ens1f0: mtu 1500 state UP qlen 1000 2024-09-16T05:15:44.371 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/sbin/ip: stdout inet6 fe80::ec4:7aff:febd:125a/64 scope link 2024-09-16T05:15:44.371 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-16T05:15:44.372 INFO:teuthology.orchestra.run.smithi029.stdout:Mon IP `172.21.15.29` is in CIDR network `172.21.0.0/20` 2024-09-16T05:15:44.372 INFO:teuthology.orchestra.run.smithi029.stdout:Mon IP `172.21.15.29` is in CIDR network `172.21.0.0/20` 2024-09-16T05:15:44.372 INFO:teuthology.orchestra.run.smithi029.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-09-16T05:15:44.372 INFO:teuthology.orchestra.run.smithi029.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-09-16T05:15:44.372 INFO:teuthology.orchestra.run.smithi029.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc... 2024-09-16T05:15:44.671 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/docker: stdout 8921c8ef947807b717db041d85f0761b7914d5fc: Pulling from ceph-ci/ceph 2024-09-16T05:15:44.671 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/docker: stdout Digest: sha256:6b5c73953776cdbbe2c2650e2c9813ab5ac3fdead855fa68a3941507184c3a80 2024-09-16T05:15:44.671 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/docker: stdout Status: Image is up to date for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc 2024-09-16T05:15:44.671 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/docker: stdout quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc 2024-09-16T05:15:46.709 INFO:teuthology.orchestra.run.smithi029.stdout:ceph: stdout ceph version 19.1.1-326-g8921c8ef (8921c8ef947807b717db041d85f0761b7914d5fc) squid (stable) 2024-09-16T05:15:46.709 INFO:teuthology.orchestra.run.smithi029.stdout:Ceph version: ceph version 19.1.1-326-g8921c8ef (8921c8ef947807b717db041d85f0761b7914d5fc) squid (stable) 2024-09-16T05:15:46.709 INFO:teuthology.orchestra.run.smithi029.stdout:Extracting ceph user uid/gid from container image... 2024-09-16T05:15:48.605 INFO:teuthology.orchestra.run.smithi029.stdout:stat: stdout 167 167 2024-09-16T05:15:48.605 INFO:teuthology.orchestra.run.smithi029.stdout:Creating initial keys... 2024-09-16T05:15:50.394 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-authtool: stdout AQAFv+dmQdJxJxAAZEy0Y7m/KnFgTqwRmyZptw== 2024-09-16T05:15:52.214 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-authtool: stdout AQAHv+dmyJR4GhAAYKL4ZYku2e/jMy3FQwH/HA== 2024-09-16T05:15:54.078 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-authtool: stdout AQAJv+dmWg5zGhAA5cYaK10w1MDJKrrBca6YKw== 2024-09-16T05:15:54.079 INFO:teuthology.orchestra.run.smithi029.stdout:Creating initial monmap... 2024-09-16T05:15:55.959 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-16T05:15:55.959 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-09-16T05:15:55.959 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:15:55.959 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-16T05:15:55.960 INFO:teuthology.orchestra.run.smithi029.stdout:monmaptool for a [v2:172.21.15.29:3300,v1:172.21.15.29:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-16T05:15:55.960 INFO:teuthology.orchestra.run.smithi029.stdout:setting min_mon_release = quincy 2024-09-16T05:15:55.960 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/monmaptool: set fsid to 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:15:55.960 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-16T05:15:55.960 INFO:teuthology.orchestra.run.smithi029.stdout: 2024-09-16T05:15:55.960 INFO:teuthology.orchestra.run.smithi029.stdout:Creating mon... 2024-09-16T05:15:57.796 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.009+0000 7f9c3b332c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-16T05:15:57.796 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.009+0000 7f9c3b332c80 1 imported monmap: 2024-09-16T05:15:57.796 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr epoch 0 2024-09-16T05:15:57.796 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr fsid 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:15:57.796 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr last_changed 2024-09-16T05:15:55.257784+0000 2024-09-16T05:15:57.796 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr created 2024-09-16T05:15:55.257784+0000 2024-09-16T05:15:57.796 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr min_mon_release 17 (quincy) 2024-09-16T05:15:57.796 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr election_strategy: 1 2024-09-16T05:15:57.797 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr 0: [v2:172.21.15.29:3300/0,v1:172.21.15.29:6789/0] mon.a 2024-09-16T05:15:57.797 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T05:15:57.797 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.009+0000 7f9c3b332c80 0 /usr/bin/ceph-mon: set fsid to 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:15:57.797 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: RocksDB version: 7.9.2 2024-09-16T05:15:57.797 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T05:15:57.797 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Git sha 0 2024-09-16T05:15:57.797 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Compile date 2024-09-15 15:04:35 2024-09-16T05:15:57.797 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: DB SUMMARY 2024-09-16T05:15:57.797 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T05:15:57.797 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: DB Session ID: BZKUK7F0KP8LMRJ4BB3U 2024-09-16T05:15:57.798 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T05:15:57.798 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 0, files: 2024-09-16T05:15:57.798 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T05:15:57.798 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 2024-09-16T05:15:57.798 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T05:15:57.798 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.error_if_exists: 0 2024-09-16T05:15:57.798 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.create_if_missing: 1 2024-09-16T05:15:57.798 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.paranoid_checks: 1 2024-09-16T05:15:57.798 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-16T05:15:57.798 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-16T05:15:57.799 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-16T05:15:57.799 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.env: 0x55c29676e940 2024-09-16T05:15:57.799 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.fs: PosixFileSystem 2024-09-16T05:15:57.799 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.info_log: 0x55c298558bc0 2024-09-16T05:15:57.799 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-16T05:15:57.799 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.statistics: (nil) 2024-09-16T05:15:57.799 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.use_fsync: 0 2024-09-16T05:15:57.799 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.max_log_file_size: 0 2024-09-16T05:15:57.799 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-16T05:15:57.799 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-16T05:15:57.799 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-16T05:15:57.799 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-16T05:15:57.800 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.allow_fallocate: 1 2024-09-16T05:15:57.800 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-16T05:15:57.800 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-16T05:15:57.800 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.use_direct_reads: 0 2024-09-16T05:15:57.800 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-16T05:15:57.800 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.create_missing_column_families: 0 2024-09-16T05:15:57.800 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.db_log_dir: 2024-09-16T05:15:57.800 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.wal_dir: 2024-09-16T05:15:57.800 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-16T05:15:57.827 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-16T05:15:57.828 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-16T05:15:57.828 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-16T05:15:57.828 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-16T05:15:57.828 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-16T05:15:57.828 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.advise_random_on_open: 1 2024-09-16T05:15:57.828 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-16T05:15:57.828 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.write_buffer_manager: 0x55c29855f4a0 2024-09-16T05:15:57.828 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-16T05:15:57.828 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-16T05:15:57.828 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-16T05:15:57.829 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.rate_limiter: (nil) 2024-09-16T05:15:57.829 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-16T05:15:57.829 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-16T05:15:57.829 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-16T05:15:57.829 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-16T05:15:57.829 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.unordered_write: 0 2024-09-16T05:15:57.829 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-16T05:15:57.829 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-16T05:15:57.829 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-16T05:15:57.829 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-16T05:15:57.829 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.row_cache: None 2024-09-16T05:15:57.829 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.wal_filter: None 2024-09-16T05:15:57.830 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-16T05:15:57.830 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-16T05:15:57.830 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.two_write_queues: 0 2024-09-16T05:15:57.830 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.manual_wal_flush: 0 2024-09-16T05:15:57.830 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.wal_compression: 0 2024-09-16T05:15:57.830 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.atomic_flush: 0 2024-09-16T05:15:57.830 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-16T05:15:57.830 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-16T05:15:57.830 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-16T05:15:57.830 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.log_readahead_size: 0 2024-09-16T05:15:57.830 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-16T05:15:57.831 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-16T05:15:57.831 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-16T05:15:57.831 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-16T05:15:57.831 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-16T05:15:57.831 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-16T05:15:57.831 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-16T05:15:57.831 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.max_background_jobs: 2 2024-09-16T05:15:57.831 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.max_background_compactions: -1 2024-09-16T05:15:57.831 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.max_subcompactions: 1 2024-09-16T05:15:57.831 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-16T05:15:57.831 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-16T05:15:57.831 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-16T05:15:57.832 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.max_total_wal_size: 0 2024-09-16T05:15:57.832 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-16T05:15:57.832 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-16T05:15:57.832 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-16T05:15:57.832 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-16T05:15:57.832 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.max_open_files: -1 2024-09-16T05:15:57.832 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.bytes_per_sync: 0 2024-09-16T05:15:57.832 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-16T05:15:57.832 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-16T05:15:57.832 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-16T05:15:57.832 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.max_background_flushes: -1 2024-09-16T05:15:57.832 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Compression algorithms supported: 2024-09-16T05:15:57.832 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: kZSTD supported: 0 2024-09-16T05:15:57.833 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: kXpressCompression supported: 0 2024-09-16T05:15:57.833 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: kBZip2Compression supported: 0 2024-09-16T05:15:57.833 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-16T05:15:57.833 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: kLZ4Compression supported: 1 2024-09-16T05:15:57.833 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: kZlibCompression supported: 1 2024-09-16T05:15:57.833 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-16T05:15:57.833 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: kSnappyCompression supported: 1 2024-09-16T05:15:57.833 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-16T05:15:57.833 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-16T05:15:57.833 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: [db/db_impl/db_impl_open.cc:317] Creating manifest 1 2024-09-16T05:15:57.833 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T05:15:57.833 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000001 2024-09-16T05:15:57.834 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T05:15:57.834 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-16T05:15:57.834 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T05:15:57.834 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-16T05:15:57.834 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.merge_operator: 2024-09-16T05:15:57.834 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.compaction_filter: None 2024-09-16T05:15:57.834 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.compaction_filter_factory: None 2024-09-16T05:15:57.834 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-16T05:15:57.834 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-16T05:15:57.834 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-16T05:15:57.834 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55c298558800) 2024-09-16T05:15:57.834 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks: 1 2024-09-16T05:15:57.834 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks_with_high_priority: 0 2024-09-16T05:15:57.835 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-16T05:15:57.835 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr pin_top_level_index_and_filter: 1 2024-09-16T05:15:57.835 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr index_type: 0 2024-09-16T05:15:57.835 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr data_block_index_type: 0 2024-09-16T05:15:57.835 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr index_shortening: 1 2024-09-16T05:15:57.835 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr data_block_hash_table_util_ratio: 0.750000 2024-09-16T05:15:57.835 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr checksum: 4 2024-09-16T05:15:57.835 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr no_block_cache: 0 2024-09-16T05:15:57.835 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr block_cache: 0x55c2985431f0 2024-09-16T05:15:57.835 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr block_cache_name: BinnedLRUCache 2024-09-16T05:15:57.835 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr block_cache_options: 2024-09-16T05:15:57.835 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr capacity : 536870912 2024-09-16T05:15:57.836 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr num_shard_bits : 4 2024-09-16T05:15:57.836 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr strict_capacity_limit : 0 2024-09-16T05:15:57.836 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr high_pri_pool_ratio: 0.000 2024-09-16T05:15:57.836 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr block_cache_compressed: (nil) 2024-09-16T05:15:57.836 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr persistent_cache: (nil) 2024-09-16T05:15:57.836 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr block_size: 4096 2024-09-16T05:15:57.836 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr block_size_deviation: 10 2024-09-16T05:15:57.836 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr block_restart_interval: 16 2024-09-16T05:15:57.836 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr index_block_restart_interval: 1 2024-09-16T05:15:57.836 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr metadata_block_size: 4096 2024-09-16T05:15:57.836 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr partition_filters: 0 2024-09-16T05:15:57.836 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr use_delta_encoding: 1 2024-09-16T05:15:57.837 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr filter_policy: bloomfilter 2024-09-16T05:15:57.837 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr whole_key_filtering: 1 2024-09-16T05:15:57.837 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr verify_compression: 0 2024-09-16T05:15:57.837 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr read_amp_bytes_per_bit: 0 2024-09-16T05:15:57.837 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr format_version: 5 2024-09-16T05:15:57.837 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr enable_index_compression: 1 2024-09-16T05:15:57.837 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr block_align: 0 2024-09-16T05:15:57.837 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr max_auto_readahead_size: 262144 2024-09-16T05:15:57.837 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr prepopulate_block_cache: 0 2024-09-16T05:15:57.837 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr initial_auto_readahead_size: 8192 2024-09-16T05:15:57.837 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr num_file_reads_for_auto_readahead: 2 2024-09-16T05:15:57.837 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T05:15:57.837 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-16T05:15:57.838 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-16T05:15:57.838 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.compression: NoCompression 2024-09-16T05:15:57.838 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-16T05:15:57.838 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-16T05:15:57.838 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-16T05:15:57.838 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.num_levels: 7 2024-09-16T05:15:57.838 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-16T05:15:57.838 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-16T05:15:57.838 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-16T05:15:57.838 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-16T05:15:57.838 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-16T05:15:57.838 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-16T05:15:57.838 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-16T05:15:57.839 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-16T05:15:57.839 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-16T05:15:57.839 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-16T05:15:57.839 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-16T05:15:57.839 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-16T05:15:57.839 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-16T05:15:57.839 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.compression_opts.level: 32767 2024-09-16T05:15:57.839 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-16T05:15:57.839 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-16T05:15:57.839 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-16T05:15:57.839 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-16T05:15:57.840 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-16T05:15:57.840 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.compression_opts.enabled: false 2024-09-16T05:15:57.840 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-16T05:15:57.840 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-16T05:15:57.840 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-16T05:15:57.840 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-16T05:15:57.840 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-16T05:15:57.840 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-16T05:15:57.840 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-16T05:15:57.840 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-16T05:15:57.840 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-16T05:15:57.840 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-16T05:15:57.840 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-16T05:15:57.841 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-16T05:15:57.841 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-16T05:15:57.841 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-16T05:15:57.841 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-16T05:15:57.841 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-16T05:15:57.841 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-16T05:15:57.841 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-16T05:15:57.841 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-16T05:15:57.841 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.arena_block_size: 1048576 2024-09-16T05:15:57.841 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-16T05:15:57.841 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-16T05:15:57.841 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-16T05:15:57.842 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-16T05:15:57.842 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-16T05:15:57.842 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-16T05:15:57.842 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-16T05:15:57.842 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-16T05:15:57.842 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-16T05:15:57.842 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-16T05:15:57.842 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-16T05:15:57.842 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-16T05:15:57.842 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-16T05:15:57.842 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-16T05:15:57.842 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.inplace_update_support: 0 2024-09-16T05:15:57.842 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-16T05:15:57.843 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-16T05:15:57.843 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-16T05:15:57.843 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-16T05:15:57.843 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.bloom_locality: 0 2024-09-16T05:15:57.843 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.max_successive_merges: 0 2024-09-16T05:15:57.843 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-16T05:15:57.843 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-16T05:15:57.843 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.force_consistency_checks: 1 2024-09-16T05:15:57.843 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-16T05:15:57.843 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.ttl: 2592000 2024-09-16T05:15:57.843 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-16T05:15:57.843 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-16T05:15:57.843 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-16T05:15:57.843 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.enable_blob_files: false 2024-09-16T05:15:57.844 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.min_blob_size: 0 2024-09-16T05:15:57.844 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.blob_file_size: 268435456 2024-09-16T05:15:57.844 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-16T05:15:57.844 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-16T05:15:57.844 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-16T05:15:57.844 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-16T05:15:57.844 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-16T05:15:57.844 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-16T05:15:57.844 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-16T05:15:57.844 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000001 succeeded,manifest_file_number is 1, next_file_number is 3, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-09-16T05:15:57.844 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T05:15:57.844 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-16T05:15:57.845 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T05:15:57.845 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 088703e0-5ad6-4918-ba8e-e37a28eac6d6 2024-09-16T05:15:57.845 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T05:15:57.845 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.013+0000 7f9c3b332c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 5 2024-09-16T05:15:57.845 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T05:15:57.845 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.017+0000 7f9c3b332c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55c298570e00 2024-09-16T05:15:57.845 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.017+0000 7f9c3b332c80 4 rocksdb: DB pointer 0x55c29864a000 2024-09-16T05:15:57.845 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.017+0000 7f9c32abd640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-16T05:15:57.845 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.017+0000 7f9c32abd640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-16T05:15:57.845 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr ** DB Stats ** 2024-09-16T05:15:57.845 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-09-16T05:15:57.845 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-09-16T05:15:57.845 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-16T05:15:57.846 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-16T05:15:57.846 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-09-16T05:15:57.846 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-16T05:15:57.846 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-16T05:15:57.846 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T05:15:57.846 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-09-16T05:15:57.846 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-16T05:15:57.846 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-16T05:15:57.846 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 2024-09-16T05:15:57.846 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 2024-09-16T05:15:57.846 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T05:15:57.846 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-09-16T05:15:57.847 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-16T05:15:57.847 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-16T05:15:57.847 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T05:15:57.847 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-16T05:15:57.847 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T05:15:57.847 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-09-16T05:15:57.847 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr Flush(GB): cumulative 0.000, interval 0.000 2024-09-16T05:15:57.847 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr AddFile(GB): cumulative 0.000, interval 0.000 2024-09-16T05:15:57.847 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr AddFile(Total Files): cumulative 0, interval 0 2024-09-16T05:15:57.847 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr AddFile(L0 Files): cumulative 0, interval 0 2024-09-16T05:15:57.848 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr AddFile(Keys): cumulative 0, interval 0 2024-09-16T05:15:57.848 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-16T05:15:57.848 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-16T05:15:57.848 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-09-16T05:15:57.848 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr Block cache BinnedLRUCache@0x55c2985431f0#7 capacity: 512.00 MB usage: 0.00 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.6e-05 secs_since: 0 2024-09-16T05:15:57.848 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) 2024-09-16T05:15:57.848 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T05:15:57.848 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr ** File Read Latency Histogram By Level [default] ** 2024-09-16T05:15:57.848 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T05:15:57.848 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.017+0000 7f9c3b332c80 4 rocksdb: [db/db_impl/db_impl.cc:496] Shutdown: canceling all background work 2024-09-16T05:15:57.848 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.017+0000 7f9c3b332c80 4 rocksdb: [db/db_impl/db_impl.cc:704] Shutdown complete 2024-09-16T05:15:57.849 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T05:15:57.017+0000 7f9c3b332c80 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-a for mon.a 2024-09-16T05:15:57.849 INFO:teuthology.orchestra.run.smithi029.stdout:create mon.a on 2024-09-16T05:15:58.130 INFO:teuthology.orchestra.run.smithi029.stdout:systemctl: stderr Removed /etc/systemd/system/multi-user.target.wants/ceph.target. 2024-09-16T05:15:58.329 INFO:teuthology.orchestra.run.smithi029.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2024-09-16T05:15:58.557 INFO:teuthology.orchestra.run.smithi029.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-825322c2-73ea-11ef-bceb-c7b262605968.target -> /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968.target. 2024-09-16T05:15:58.557 INFO:teuthology.orchestra.run.smithi029.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-825322c2-73ea-11ef-bceb-c7b262605968.target -> /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968.target. 2024-09-16T05:15:58.903 INFO:teuthology.orchestra.run.smithi029.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-825322c2-73ea-11ef-bceb-c7b262605968@mon.a 2024-09-16T05:15:58.904 INFO:teuthology.orchestra.run.smithi029.stdout:systemctl: stderr Failed to reset failed state of unit ceph-825322c2-73ea-11ef-bceb-c7b262605968@mon.a.service: Unit ceph-825322c2-73ea-11ef-bceb-c7b262605968@mon.a.service not loaded. 2024-09-16T05:15:59.115 INFO:teuthology.orchestra.run.smithi029.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968.target.wants/ceph-825322c2-73ea-11ef-bceb-c7b262605968@mon.a.service -> /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service. 2024-09-16T05:15:59.125 INFO:teuthology.orchestra.run.smithi029.stdout:firewalld does not appear to be present 2024-09-16T05:15:59.125 INFO:teuthology.orchestra.run.smithi029.stdout:Not possible to enable service . firewalld.service is not available 2024-09-16T05:15:59.125 INFO:teuthology.orchestra.run.smithi029.stdout:Waiting for mon to start... 2024-09-16T05:15:59.125 INFO:teuthology.orchestra.run.smithi029.stdout:Waiting for mon... 2024-09-16T05:16:01.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:01 smithi029 bash[22262]: cluster 2024-09-16T05:16:01.134008+0000 mon.a (mon.0) 1 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-09-16T05:16:02.312 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout cluster: 2024-09-16T05:16:02.312 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout id: 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:16:02.312 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-09-16T05:16:02.312 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout 2024-09-16T05:16:02.312 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout services: 2024-09-16T05:16:02.312 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum a (age 0.338753s) 2024-09-16T05:16:02.312 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-09-16T05:16:02.312 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-09-16T05:16:02.313 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout 2024-09-16T05:16:02.313 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout data: 2024-09-16T05:16:02.313 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-09-16T05:16:02.313 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-09-16T05:16:02.313 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-09-16T05:16:02.313 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout pgs: 2024-09-16T05:16:02.313 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout 2024-09-16T05:16:02.313 INFO:teuthology.orchestra.run.smithi029.stdout:mon is available 2024-09-16T05:16:02.313 INFO:teuthology.orchestra.run.smithi029.stdout:Assimilating anything we can from ceph.conf... 2024-09-16T05:16:02.404 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:02 smithi029 bash[22262]: cluster 2024-09-16T05:16:01.137376+0000 mon.a (mon.0) 2 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-09-16T05:16:02.405 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:02 smithi029 bash[22262]: cluster 2024-09-16T05:16:01.137522+0000 mon.a (mon.0) 3 : cluster [DBG] monmap epoch 1 2024-09-16T05:16:02.405 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:02 smithi029 bash[22262]: cluster 2024-09-16T05:16:01.137537+0000 mon.a (mon.0) 4 : cluster [DBG] fsid 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:16:02.405 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:02 smithi029 bash[22262]: cluster 2024-09-16T05:16:01.137550+0000 mon.a (mon.0) 5 : cluster [DBG] last_changed 2024-09-16T05:15:55.257784+0000 2024-09-16T05:16:02.405 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:02 smithi029 bash[22262]: cluster 2024-09-16T05:16:01.137574+0000 mon.a (mon.0) 6 : cluster [DBG] created 2024-09-16T05:15:55.257784+0000 2024-09-16T05:16:02.405 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:02 smithi029 bash[22262]: cluster 2024-09-16T05:16:01.137587+0000 mon.a (mon.0) 7 : cluster [DBG] min_mon_release 19 (squid) 2024-09-16T05:16:02.405 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:02 smithi029 bash[22262]: cluster 2024-09-16T05:16:01.137597+0000 mon.a (mon.0) 8 : cluster [DBG] election_strategy: 1 2024-09-16T05:16:02.405 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:02 smithi029 bash[22262]: cluster 2024-09-16T05:16:01.137610+0000 mon.a (mon.0) 9 : cluster [DBG] 0: [v2:172.21.15.29:3300/0,v1:172.21.15.29:6789/0] mon.a 2024-09-16T05:16:02.405 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:02 smithi029 bash[22262]: cluster 2024-09-16T05:16:01.139794+0000 mon.a (mon.0) 10 : cluster [DBG] fsmap 2024-09-16T05:16:02.405 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:02 smithi029 bash[22262]: cluster 2024-09-16T05:16:01.141991+0000 mon.a (mon.0) 11 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-16T05:16:02.405 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:02 smithi029 bash[22262]: cluster 2024-09-16T05:16:01.142541+0000 mon.a (mon.0) 12 : cluster [DBG] mgrmap e1: no daemons active 2024-09-16T05:16:02.405 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:02 smithi029 bash[22262]: audit 2024-09-16T05:16:01.476071+0000 mon.a (mon.0) 13 : audit [DBG] from='client.? 172.21.15.29:0/1348816063' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-09-16T05:16:04.121 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:03 smithi029 bash[22262]: audit 2024-09-16T05:16:03.839124+0000 mon.a (mon.0) 14 : audit [INF] from='client.? 172.21.15.29:0/286653080' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-09-16T05:16:04.122 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:03 smithi029 bash[22262]: audit 2024-09-16T05:16:03.842326+0000 mon.a (mon.0) 15 : audit [INF] from='client.? 172.21.15.29:0/286653080' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-16T05:16:04.528 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout 2024-09-16T05:16:04.528 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout [global] 2024-09-16T05:16:04.528 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout fsid = 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:16:04.528 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.29:3300,v1:172.21.15.29:6789] 2024-09-16T05:16:04.529 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-16T05:16:04.529 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-16T05:16:04.529 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-16T05:16:04.530 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-16T05:16:04.530 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout 2024-09-16T05:16:04.530 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-16T05:16:04.530 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = True 2024-09-16T05:16:04.530 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-16T05:16:04.530 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout 2024-09-16T05:16:04.531 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout [osd] 2024-09-16T05:16:04.531 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-16T05:16:04.531 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-16T05:16:04.531 INFO:teuthology.orchestra.run.smithi029.stdout:Generating new minimal ceph.conf... 2024-09-16T05:16:06.179 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:05 smithi029 bash[22262]: audit 2024-09-16T05:16:05.877126+0000 mon.a (mon.0) 16 : audit [DBG] from='client.? 172.21.15.29:0/413315715' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:16:06.701 INFO:teuthology.orchestra.run.smithi029.stdout:Restarting the monitor... 2024-09-16T05:16:07.090 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:06 smithi029 systemd[1]: Stopping Ceph mon.a for 825322c2-73ea-11ef-bceb-c7b262605968... 2024-09-16T05:16:07.090 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:06 smithi029 bash[22262]: debug 2024-09-16T05:16:06.856+0000 7f34ec62e640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2024-09-16T05:16:07.090 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:06 smithi029 bash[22262]: debug 2024-09-16T05:16:06.856+0000 7f34ec62e640 -1 mon.a@0(leader) e1 *** Got Signal Terminated *** 2024-09-16T05:16:07.803 INFO:teuthology.orchestra.run.smithi029.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-09-16T05:16:07.967 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:07 smithi029 bash[22643]: ceph-825322c2-73ea-11ef-bceb-c7b262605968-mon-a 2024-09-16T05:16:07.967 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:07 smithi029 bash[22706]: Error response from daemon: No such container: ceph-825322c2-73ea-11ef-bceb-c7b262605968-mon-a 2024-09-16T05:16:07.967 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:07 smithi029 systemd[1]: ceph-825322c2-73ea-11ef-bceb-c7b262605968@mon.a.service: Deactivated successfully. 2024-09-16T05:16:07.967 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:07 smithi029 systemd[1]: Stopped Ceph mon.a for 825322c2-73ea-11ef-bceb-c7b262605968. 2024-09-16T05:16:07.967 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:07 smithi029 systemd[1]: Started Ceph mon.a for 825322c2-73ea-11ef-bceb-c7b262605968. 2024-09-16T05:16:09.711 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.640+0000 7fb2f7192c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-16T05:16:09.712 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.640+0000 7fb2f7192c80 0 ceph version 19.1.1-326-g8921c8ef (8921c8ef947807b717db041d85f0761b7914d5fc) squid (stable), process ceph-mon, pid 7 2024-09-16T05:16:09.712 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.640+0000 7fb2f7192c80 0 pidfile_write: ignore empty --pid-file 2024-09-16T05:16:09.712 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 0 load: jerasure load: lrc 2024-09-16T05:16:09.712 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: RocksDB version: 7.9.2 2024-09-16T05:16:09.712 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Git sha 0 2024-09-16T05:16:09.712 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Compile date 2024-09-15 15:04:35 2024-09-16T05:16:09.712 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: DB SUMMARY 2024-09-16T05:16:09.712 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: DB Session ID: 2XZ9GP3XKY3LRD209EM6 2024-09-16T05:16:09.712 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: CURRENT file: CURRENT 2024-09-16T05:16:09.712 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: IDENTITY file: IDENTITY 2024-09-16T05:16:09.712 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-09-16T05:16:09.713 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 1, files: 000008.sst 2024-09-16T05:16:09.713 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 000009.log size: 88769 ; 2024-09-16T05:16:09.713 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.error_if_exists: 0 2024-09-16T05:16:09.713 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.create_if_missing: 0 2024-09-16T05:16:09.713 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.paranoid_checks: 1 2024-09-16T05:16:09.713 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-16T05:16:09.713 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-16T05:16:09.713 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-16T05:16:09.713 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.env: 0x55991e86a940 2024-09-16T05:16:09.713 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.fs: PosixFileSystem 2024-09-16T05:16:09.713 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.info_log: 0x55992045d6e0 2024-09-16T05:16:09.713 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-16T05:16:09.714 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.statistics: (nil) 2024-09-16T05:16:09.714 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.use_fsync: 0 2024-09-16T05:16:09.714 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.max_log_file_size: 0 2024-09-16T05:16:09.714 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-16T05:16:09.714 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-16T05:16:09.714 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-16T05:16:09.714 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-16T05:16:09.714 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.allow_fallocate: 1 2024-09-16T05:16:09.714 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-16T05:16:09.714 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-16T05:16:09.714 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.use_direct_reads: 0 2024-09-16T05:16:09.714 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-16T05:16:09.714 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.create_missing_column_families: 0 2024-09-16T05:16:09.715 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.db_log_dir: 2024-09-16T05:16:09.715 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.wal_dir: 2024-09-16T05:16:09.715 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-16T05:16:09.715 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-16T05:16:09.715 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-16T05:16:09.715 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-16T05:16:09.715 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-16T05:16:09.715 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-16T05:16:09.716 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.advise_random_on_open: 1 2024-09-16T05:16:09.716 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-16T05:16:09.716 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.write_buffer_manager: 0x55992046cdc0 2024-09-16T05:16:09.716 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-16T05:16:09.716 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-16T05:16:09.716 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-16T05:16:09.716 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.rate_limiter: (nil) 2024-09-16T05:16:09.716 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-16T05:16:09.716 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-16T05:16:09.716 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-16T05:16:09.716 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-16T05:16:09.716 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.unordered_write: 0 2024-09-16T05:16:09.717 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-16T05:16:09.717 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-16T05:16:09.717 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-16T05:16:09.717 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-16T05:16:09.717 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.row_cache: None 2024-09-16T05:16:09.717 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.wal_filter: None 2024-09-16T05:16:09.717 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-16T05:16:09.717 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-16T05:16:09.717 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.two_write_queues: 0 2024-09-16T05:16:09.717 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.manual_wal_flush: 0 2024-09-16T05:16:09.717 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.wal_compression: 0 2024-09-16T05:16:09.717 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.atomic_flush: 0 2024-09-16T05:16:09.717 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-16T05:16:09.718 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-16T05:16:09.718 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-16T05:16:09.718 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.log_readahead_size: 0 2024-09-16T05:16:09.718 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-16T05:16:09.718 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-16T05:16:09.718 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-16T05:16:09.718 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-16T05:16:09.718 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-16T05:16:09.718 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-16T05:16:09.718 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-16T05:16:09.718 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.max_background_jobs: 2 2024-09-16T05:16:09.718 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.max_background_compactions: -1 2024-09-16T05:16:09.718 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.max_subcompactions: 1 2024-09-16T05:16:09.719 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-16T05:16:09.719 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-16T05:16:09.719 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-16T05:16:09.719 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.max_total_wal_size: 0 2024-09-16T05:16:09.719 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-16T05:16:09.719 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-16T05:16:09.719 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-16T05:16:09.719 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-16T05:16:09.719 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.max_open_files: -1 2024-09-16T05:16:09.719 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.bytes_per_sync: 0 2024-09-16T05:16:09.719 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-16T05:16:09.719 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-16T05:16:09.719 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-16T05:16:09.720 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.max_background_flushes: -1 2024-09-16T05:16:09.720 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Compression algorithms supported: 2024-09-16T05:16:09.720 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: kZSTD supported: 0 2024-09-16T05:16:09.720 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: kXpressCompression supported: 0 2024-09-16T05:16:09.720 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: kBZip2Compression supported: 0 2024-09-16T05:16:09.720 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-16T05:16:09.720 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: kLZ4Compression supported: 1 2024-09-16T05:16:09.720 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: kZlibCompression supported: 1 2024-09-16T05:16:09.720 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-16T05:16:09.720 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: kSnappyCompression supported: 1 2024-09-16T05:16:09.720 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-16T05:16:09.720 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-16T05:16:09.720 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 2024-09-16T05:16:09.722 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-16T05:16:09.722 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-16T05:16:09.722 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.merge_operator: 2024-09-16T05:16:09.722 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.compaction_filter: None 2024-09-16T05:16:09.722 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.compaction_filter_factory: None 2024-09-16T05:16:09.722 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-16T05:16:09.722 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-16T05:16:09.722 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-16T05:16:09.722 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55992045d320) 2024-09-16T05:16:09.722 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: cache_index_and_filter_blocks: 1 2024-09-16T05:16:09.722 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-16T05:16:09.723 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-16T05:16:09.723 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: pin_top_level_index_and_filter: 1 2024-09-16T05:16:09.723 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: index_type: 0 2024-09-16T05:16:09.723 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: data_block_index_type: 0 2024-09-16T05:16:09.723 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: index_shortening: 1 2024-09-16T05:16:09.723 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: data_block_hash_table_util_ratio: 0.750000 2024-09-16T05:16:09.723 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: checksum: 4 2024-09-16T05:16:09.723 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: no_block_cache: 0 2024-09-16T05:16:09.723 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: block_cache: 0x5599204531f0 2024-09-16T05:16:09.723 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: block_cache_name: BinnedLRUCache 2024-09-16T05:16:09.723 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: block_cache_options: 2024-09-16T05:16:09.723 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: capacity : 536870912 2024-09-16T05:16:09.724 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: num_shard_bits : 4 2024-09-16T05:16:09.724 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: strict_capacity_limit : 0 2024-09-16T05:16:09.724 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: high_pri_pool_ratio: 0.000 2024-09-16T05:16:09.724 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: block_cache_compressed: (nil) 2024-09-16T05:16:09.724 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: persistent_cache: (nil) 2024-09-16T05:16:09.724 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: block_size: 4096 2024-09-16T05:16:09.724 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: block_size_deviation: 10 2024-09-16T05:16:09.724 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: block_restart_interval: 16 2024-09-16T05:16:09.724 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: index_block_restart_interval: 1 2024-09-16T05:16:09.724 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: metadata_block_size: 4096 2024-09-16T05:16:09.724 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: partition_filters: 0 2024-09-16T05:16:09.724 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: use_delta_encoding: 1 2024-09-16T05:16:09.724 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: filter_policy: bloomfilter 2024-09-16T05:16:09.724 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: whole_key_filtering: 1 2024-09-16T05:16:09.725 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: verify_compression: 0 2024-09-16T05:16:09.725 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: read_amp_bytes_per_bit: 0 2024-09-16T05:16:09.725 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: format_version: 5 2024-09-16T05:16:09.725 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: enable_index_compression: 1 2024-09-16T05:16:09.725 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: block_align: 0 2024-09-16T05:16:09.725 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: max_auto_readahead_size: 262144 2024-09-16T05:16:09.725 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: prepopulate_block_cache: 0 2024-09-16T05:16:09.725 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: initial_auto_readahead_size: 8192 2024-09-16T05:16:09.725 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: num_file_reads_for_auto_readahead: 2 2024-09-16T05:16:09.725 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-16T05:16:09.725 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-16T05:16:09.725 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.compression: NoCompression 2024-09-16T05:16:09.725 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-16T05:16:09.726 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-16T05:16:09.726 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-16T05:16:09.726 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.num_levels: 7 2024-09-16T05:16:09.726 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-16T05:16:09.726 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-16T05:16:09.726 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-16T05:16:09.726 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-16T05:16:09.726 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-16T05:16:09.726 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-16T05:16:09.726 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-16T05:16:09.726 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-16T05:16:09.727 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-16T05:16:09.727 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-16T05:16:09.727 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-16T05:16:09.727 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-16T05:16:09.727 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-16T05:16:09.727 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.compression_opts.level: 32767 2024-09-16T05:16:09.727 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-16T05:16:09.727 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-16T05:16:09.727 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-16T05:16:09.727 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-16T05:16:09.727 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-16T05:16:09.727 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.compression_opts.enabled: false 2024-09-16T05:16:09.728 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-16T05:16:09.728 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-16T05:16:09.728 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-16T05:16:09.728 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-16T05:16:09.728 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-16T05:16:09.728 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-16T05:16:09.728 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-16T05:16:09.728 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-16T05:16:09.728 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-16T05:16:09.728 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-16T05:16:09.728 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-16T05:16:09.728 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-16T05:16:09.728 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-16T05:16:09.728 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-16T05:16:09.729 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-16T05:16:09.729 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-16T05:16:09.729 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-16T05:16:09.729 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-16T05:16:09.729 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-16T05:16:09.729 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.arena_block_size: 1048576 2024-09-16T05:16:09.729 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-16T05:16:09.729 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-16T05:16:09.729 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-16T05:16:09.729 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-16T05:16:09.729 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-16T05:16:09.729 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-16T05:16:09.729 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-16T05:16:09.730 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-16T05:16:09.730 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-16T05:16:09.730 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-16T05:16:09.730 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-16T05:16:09.730 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-16T05:16:09.730 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-16T05:16:09.730 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-16T05:16:09.730 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.inplace_update_support: 0 2024-09-16T05:16:09.730 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-16T05:16:09.730 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-16T05:16:09.730 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-16T05:16:09.730 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-16T05:16:09.730 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.bloom_locality: 0 2024-09-16T05:16:09.731 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.max_successive_merges: 0 2024-09-16T05:16:09.731 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-16T05:16:09.731 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-16T05:16:09.731 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.force_consistency_checks: 1 2024-09-16T05:16:09.731 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-16T05:16:09.732 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.ttl: 2592000 2024-09-16T05:16:09.732 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-16T05:16:09.732 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-16T05:16:09.732 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-16T05:16:09.732 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.enable_blob_files: false 2024-09-16T05:16:09.732 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.min_blob_size: 0 2024-09-16T05:16:09.732 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.blob_file_size: 268435456 2024-09-16T05:16:09.732 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-16T05:16:09.732 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-16T05:16:09.732 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-16T05:16:09.732 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-16T05:16:09.732 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-16T05:16:09.732 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-16T05:16:09.733 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.644+0000 7fb2f7192c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-16T05:16:09.733 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.648+0000 7fb2f7192c80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 succeeded,manifest_file_number is 10, next_file_number is 12, last_sequence is 5, log_number is 5,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 5 2024-09-16T05:16:09.733 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.648+0000 7fb2f7192c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-09-16T05:16:09.733 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.648+0000 7fb2f7192c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 088703e0-5ad6-4918-ba8e-e37a28eac6d6 2024-09-16T05:16:09.733 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.648+0000 7fb2f7192c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726463769650140, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-09-16T05:16:09.733 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.648+0000 7fb2f7192c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-09-16T05:16:09.733 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.648+0000 7fb2f7192c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726463769651132, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 85386, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 258, "table_properties": {"data_size": 83533, "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": 77740, "raw_average_value_size": 358, "num_data_blocks": 11, "num_entries": 217, "num_filter_entries": 217, "num_deletions": 3, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1726463769, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "088703e0-5ad6-4918-ba8e-e37a28eac6d6", "db_session_id": "2XZ9GP3XKY3LRD209EM6", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-09-16T05:16:09.733 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.648+0000 7fb2f7192c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726463769651260, "job": 1, "event": "recovery_finished"} 2024-09-16T05:16:09.733 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.648+0000 7fb2f7192c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-09-16T05:16:09.733 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.648+0000 7fb2f7192c80 4 rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-a/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-16T05:16:09.733 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.648+0000 7fb2f7192c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55992047ee00 2024-09-16T05:16:09.733 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.648+0000 7fb2f7192c80 4 rocksdb: DB pointer 0x55992057e000 2024-09-16T05:16:09.734 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.648+0000 7fb2ecf5b640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-16T05:16:09.734 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.648+0000 7fb2ecf5b640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-16T05:16:09.734 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: ** DB Stats ** 2024-09-16T05:16:09.734 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-16T05:16:09.734 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-09-16T05:16:09.734 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-16T05:16:09.734 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-16T05:16:09.734 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-09-16T05:16:09.734 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-16T05:16:09.734 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-16T05:16:09.734 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: ** Compaction Stats [default] ** 2024-09-16T05:16:09.734 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-16T05:16:09.734 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-16T05:16:09.734 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: L0 2/0 85.25 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 132.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-16T05:16:09.735 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: Sum 2/0 85.25 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 132.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-16T05:16:09.735 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 132.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-16T05:16:09.735 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: ** Compaction Stats [default] ** 2024-09-16T05:16:09.735 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-16T05:16:09.735 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-16T05:16:09.735 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 132.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-16T05:16:09.735 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-16T05:16:09.735 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-16T05:16:09.735 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: Flush(GB): cumulative 0.000, interval 0.000 2024-09-16T05:16:09.735 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-16T05:16:09.735 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: AddFile(Total Files): cumulative 0, interval 0 2024-09-16T05:16:09.735 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: AddFile(L0 Files): cumulative 0, interval 0 2024-09-16T05:16:09.735 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: AddFile(Keys): cumulative 0, interval 0 2024-09-16T05:16:09.735 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: Cumulative compaction: 0.00 GB write, 22.10 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-16T05:16:09.736 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: Interval compaction: 0.00 GB write, 22.10 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-16T05:16:09.736 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-09-16T05:16:09.736 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: Block cache BinnedLRUCache@0x5599204531f0#7 capacity: 512.00 MB usage: 1.19 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.3e-05 secs_since: 0 2024-09-16T05:16:09.736 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: Block cache entry stats(count,size,portion): FilterBlock(2,0.77 KB,0.000146031%) IndexBlock(2,0.42 KB,8.04663e-05%) Misc(1,0.00 KB,0%) 2024-09-16T05:16:09.736 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: ** File Read Latency Histogram By Level [default] ** 2024-09-16T05:16:09.736 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.648+0000 7fb2f7192c80 0 starting mon.a rank 0 at public addrs [v2:172.21.15.29:3300/0,v1:172.21.15.29:6789/0] at bind addrs [v2:172.21.15.29:3300/0,v1:172.21.15.29:6789/0] mon_data /var/lib/ceph/mon/ceph-a fsid 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:16:09.736 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.652+0000 7fb2f7192c80 1 mon.a@-1(???) e1 preinit fsid 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:16:09.736 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.652+0000 7fb2f7192c80 0 mon.a@-1(???).mds e1 new map 2024-09-16T05:16:09.736 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.652+0000 7fb2f7192c80 0 mon.a@-1(???).mds e1 print_map 2024-09-16T05:16:09.736 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: e1 2024-09-16T05:16:09.736 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: btime 2024-09-16T05:16:01:137996+0000 2024-09-16T05:16:09.736 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: enable_multiple, ever_enabled_multiple: 1,1 2024-09-16T05:16:09.737 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2024-09-16T05:16:09.737 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: legacy client fscid: -1 2024-09-16T05:16:09.737 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: 2024-09-16T05:16:09.737 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: No filesystems configured 2024-09-16T05:16:09.737 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.652+0000 7fb2f7192c80 0 mon.a@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-16T05:16:09.737 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.652+0000 7fb2f7192c80 0 mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-16T05:16:09.737 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.652+0000 7fb2f7192c80 0 mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-16T05:16:09.737 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.652+0000 7fb2f7192c80 0 mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-16T05:16:09.737 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: debug 2024-09-16T05:16:09.652+0000 7fb2f7192c80 1 mon.a@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-09-16T05:16:09.737 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: cluster 2024-09-16T05:16:09.658104+0000 mon.a (mon.0) 1 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-09-16T05:16:09.737 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: cluster 2024-09-16T05:16:09.658159+0000 mon.a (mon.0) 2 : cluster [DBG] monmap epoch 1 2024-09-16T05:16:09.737 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: cluster 2024-09-16T05:16:09.658174+0000 mon.a (mon.0) 3 : cluster [DBG] fsid 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:16:09.738 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: cluster 2024-09-16T05:16:09.658186+0000 mon.a (mon.0) 4 : cluster [DBG] last_changed 2024-09-16T05:15:55.257784+0000 2024-09-16T05:16:09.738 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: cluster 2024-09-16T05:16:09.658194+0000 mon.a (mon.0) 5 : cluster [DBG] created 2024-09-16T05:15:55.257784+0000 2024-09-16T05:16:09.738 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: cluster 2024-09-16T05:16:09.658201+0000 mon.a (mon.0) 6 : cluster [DBG] min_mon_release 19 (squid) 2024-09-16T05:16:09.738 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: cluster 2024-09-16T05:16:09.658208+0000 mon.a (mon.0) 7 : cluster [DBG] election_strategy: 1 2024-09-16T05:16:09.738 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: cluster 2024-09-16T05:16:09.658215+0000 mon.a (mon.0) 8 : cluster [DBG] 0: [v2:172.21.15.29:3300/0,v1:172.21.15.29:6789/0] mon.a 2024-09-16T05:16:09.738 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: cluster 2024-09-16T05:16:09.658588+0000 mon.a (mon.0) 9 : cluster [DBG] fsmap 2024-09-16T05:16:09.738 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: cluster 2024-09-16T05:16:09.658612+0000 mon.a (mon.0) 10 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-16T05:16:09.738 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:09 smithi029 bash[22744]: cluster 2024-09-16T05:16:09.658901+0000 mon.a (mon.0) 11 : cluster [DBG] mgrmap e1: no daemons active 2024-09-16T05:16:10.615 INFO:teuthology.orchestra.run.smithi029.stdout:Wrote config to /etc/ceph/ceph.conf 2024-09-16T05:16:10.658 INFO:teuthology.orchestra.run.smithi029.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-09-16T05:16:10.658 INFO:teuthology.orchestra.run.smithi029.stdout:Creating mgr... 2024-09-16T05:16:10.658 INFO:teuthology.orchestra.run.smithi029.stdout:Verifying port 0.0.0.0:9283 ... 2024-09-16T05:16:10.658 INFO:teuthology.orchestra.run.smithi029.stdout:Verifying port 0.0.0.0:8765 ... 2024-09-16T05:16:11.046 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:10 smithi029 bash[22744]: audit 2024-09-16T05:16:09.802662+0000 mon.a (mon.0) 12 : audit [INF] from='client.? 172.21.15.29:0/1606725657' entity='client.admin' 2024-09-16T05:16:11.047 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:10 smithi029 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:16:11.056 INFO:teuthology.orchestra.run.smithi029.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-825322c2-73ea-11ef-bceb-c7b262605968@mgr.a 2024-09-16T05:16:11.056 INFO:teuthology.orchestra.run.smithi029.stdout:systemctl: stderr Failed to reset failed state of unit ceph-825322c2-73ea-11ef-bceb-c7b262605968@mgr.a.service: Unit ceph-825322c2-73ea-11ef-bceb-c7b262605968@mgr.a.service not loaded. 2024-09-16T05:16:11.256 INFO:teuthology.orchestra.run.smithi029.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968.target.wants/ceph-825322c2-73ea-11ef-bceb-c7b262605968@mgr.a.service -> /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service. 2024-09-16T05:16:11.265 INFO:teuthology.orchestra.run.smithi029.stdout:firewalld does not appear to be present 2024-09-16T05:16:11.266 INFO:teuthology.orchestra.run.smithi029.stdout:Not possible to enable service . firewalld.service is not available 2024-09-16T05:16:11.266 INFO:teuthology.orchestra.run.smithi029.stdout:firewalld does not appear to be present 2024-09-16T05:16:11.266 INFO:teuthology.orchestra.run.smithi029.stdout:Not possible to open ports <[9283, 8765]>. firewalld.service is not available 2024-09-16T05:16:11.266 INFO:teuthology.orchestra.run.smithi029.stdout:Waiting for mgr to start... 2024-09-16T05:16:11.266 INFO:teuthology.orchestra.run.smithi029.stdout:Waiting for mgr... 2024-09-16T05:16:11.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:11 smithi029 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:16:11.341 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:11 smithi029 systemd[1]: Started Ceph mgr.a for 825322c2-73ea-11ef-bceb-c7b262605968. 2024-09-16T05:16:13.592 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:13 smithi029 bash[22996]: debug 2024-09-16T05:16:13.456+0000 7ff8dc2e9040 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-16T05:16:14.090 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:13 smithi029 bash[22744]: audit 2024-09-16T05:16:13.579086+0000 mon.a (mon.0) 13 : audit [DBG] from='client.? 172.21.15.29:0/3004931121' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-16T05:16:14.368 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout 2024-09-16T05:16:14.368 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout { 2024-09-16T05:16:14.368 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "fsid": "825322c2-73ea-11ef-bceb-c7b262605968", 2024-09-16T05:16:14.368 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "health": { 2024-09-16T05:16:14.368 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-16T05:16:14.368 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-16T05:16:14.368 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-16T05:16:14.368 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout }, 2024-09-16T05:16:14.368 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-16T05:16:14.368 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-16T05:16:14.369 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout 0 2024-09-16T05:16:14.369 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout ], 2024-09-16T05:16:14.369 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-16T05:16:14.369 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "a" 2024-09-16T05:16:14.369 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout ], 2024-09-16T05:16:14.369 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "quorum_age": 3, 2024-09-16T05:16:14.369 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-16T05:16:14.369 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T05:16:14.369 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-16T05:16:14.369 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-16T05:16:14.369 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout }, 2024-09-16T05:16:14.369 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-16T05:16:14.369 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T05:16:14.370 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-16T05:16:14.370 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-16T05:16:14.370 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-16T05:16:14.370 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-16T05:16:14.370 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-16T05:16:14.370 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-16T05:16:14.370 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout }, 2024-09-16T05:16:14.370 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-16T05:16:14.370 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-16T05:16:14.370 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-16T05:16:14.370 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-16T05:16:14.370 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-16T05:16:14.370 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-16T05:16:14.370 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-16T05:16:14.371 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-16T05:16:14.371 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-16T05:16:14.371 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout }, 2024-09-16T05:16:14.371 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-16T05:16:14.371 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T05:16:14.371 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "btime": "2024-09-16T05:16:01:137996+0000", 2024-09-16T05:16:14.371 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-16T05:16:14.371 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-16T05:16:14.371 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout }, 2024-09-16T05:16:14.371 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-16T05:16:14.371 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-16T05:16:14.371 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-16T05:16:14.371 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-16T05:16:14.371 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-16T05:16:14.371 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-16T05:16:14.372 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "restful" 2024-09-16T05:16:14.372 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout ], 2024-09-16T05:16:14.372 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-16T05:16:14.372 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout }, 2024-09-16T05:16:14.372 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-16T05:16:14.372 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T05:16:14.372 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "modified": "2024-09-16T05:16:01.138825+0000", 2024-09-16T05:16:14.372 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-16T05:16:14.372 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout }, 2024-09-16T05:16:14.372 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-16T05:16:14.372 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout } 2024-09-16T05:16:14.372 INFO:teuthology.orchestra.run.smithi029.stdout:mgr not available, waiting (1/15)... 2024-09-16T05:16:15.091 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:14 smithi029 bash[22996]: debug 2024-09-16T05:16:14.716+0000 7ff8dc2e9040 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-16T05:16:15.097 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:14 smithi029 bash[22996]: debug 2024-09-16T05:16:14.784+0000 7ff8dc2e9040 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-16T05:16:15.097 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:14 smithi029 bash[22996]: debug 2024-09-16T05:16:14.940+0000 7ff8dc2e9040 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-16T05:16:15.964 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:15 smithi029 bash[22996]: debug 2024-09-16T05:16:15.620+0000 7ff8dc2e9040 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-16T05:16:15.964 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:15 smithi029 bash[22996]: debug 2024-09-16T05:16:15.692+0000 7ff8dc2e9040 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-16T05:16:15.964 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:15 smithi029 bash[22996]: debug 2024-09-16T05:16:15.764+0000 7ff8dc2e9040 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-16T05:16:15.964 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:15 smithi029 bash[22996]: debug 2024-09-16T05:16:15.960+0000 7ff8dc2e9040 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-16T05:16:16.340 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:16 smithi029 bash[22996]: debug 2024-09-16T05:16:16.040+0000 7ff8dc2e9040 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-16T05:16:16.341 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:16 smithi029 bash[22996]: debug 2024-09-16T05:16:16.112+0000 7ff8dc2e9040 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-16T05:16:16.658 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:16 smithi029 bash[22996]: debug 2024-09-16T05:16:16.380+0000 7ff8dc2e9040 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-16T05:16:16.658 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:16 smithi029 bash[22996]: debug 2024-09-16T05:16:16.448+0000 7ff8dc2e9040 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-16T05:16:17.001 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:16 smithi029 bash[22996]: debug 2024-09-16T05:16:16.652+0000 7ff8dc2e9040 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-16T05:16:17.001 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:16 smithi029 bash[22996]: debug 2024-09-16T05:16:16.736+0000 7ff8dc2e9040 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-16T05:16:17.340 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:17 smithi029 bash[22996]: debug 2024-09-16T05:16:16.996+0000 7ff8dc2e9040 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-09-16T05:16:17.341 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:17 smithi029 bash[22996]: debug 2024-09-16T05:16:17.180+0000 7ff8dc2e9040 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-16T05:16:17.629 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:17 smithi029 bash[22996]: debug 2024-09-16T05:16:17.352+0000 7ff8dc2e9040 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-16T05:16:17.629 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:17 smithi029 bash[22996]: debug 2024-09-16T05:16:17.436+0000 7ff8dc2e9040 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-16T05:16:17.970 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:17 smithi029 bash[22996]: debug 2024-09-16T05:16:17.624+0000 7ff8dc2e9040 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-16T05:16:18.227 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:18 smithi029 bash[22744]: audit 2024-09-16T05:16:17.958121+0000 mon.a (mon.0) 14 : audit [DBG] from='client.? 172.21.15.29:0/1683004321' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-16T05:16:18.552 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:18 smithi029 bash[22996]: debug 2024-09-16T05:16:18.468+0000 7ff8dc2e9040 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-16T05:16:18.726 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout 2024-09-16T05:16:18.726 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout { 2024-09-16T05:16:18.727 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "fsid": "825322c2-73ea-11ef-bceb-c7b262605968", 2024-09-16T05:16:18.727 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "health": { 2024-09-16T05:16:18.727 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-16T05:16:18.727 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-16T05:16:18.727 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-16T05:16:18.727 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout }, 2024-09-16T05:16:18.727 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-16T05:16:18.727 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-16T05:16:18.727 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout 0 2024-09-16T05:16:18.727 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout ], 2024-09-16T05:16:18.727 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-16T05:16:18.727 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "a" 2024-09-16T05:16:18.727 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout ], 2024-09-16T05:16:18.727 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "quorum_age": 8, 2024-09-16T05:16:18.728 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-16T05:16:18.728 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T05:16:18.728 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-16T05:16:18.728 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-16T05:16:18.728 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout }, 2024-09-16T05:16:18.728 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-16T05:16:18.728 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T05:16:18.728 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-16T05:16:18.728 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-16T05:16:18.728 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-16T05:16:18.728 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-16T05:16:18.728 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-16T05:16:18.729 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-16T05:16:18.733 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout }, 2024-09-16T05:16:18.733 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-16T05:16:18.733 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-16T05:16:18.733 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-16T05:16:18.733 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-16T05:16:18.734 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-16T05:16:18.734 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-16T05:16:18.734 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-16T05:16:18.734 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-16T05:16:18.734 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-16T05:16:18.734 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout }, 2024-09-16T05:16:18.734 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-16T05:16:18.734 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T05:16:18.734 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "btime": "2024-09-16T05:16:01:137996+0000", 2024-09-16T05:16:18.734 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-16T05:16:18.735 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-16T05:16:18.735 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout }, 2024-09-16T05:16:18.735 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-16T05:16:18.735 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-16T05:16:18.735 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-16T05:16:18.735 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-16T05:16:18.735 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-16T05:16:18.735 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-16T05:16:18.735 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "restful" 2024-09-16T05:16:18.735 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout ], 2024-09-16T05:16:18.735 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-16T05:16:18.735 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout }, 2024-09-16T05:16:18.735 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-16T05:16:18.736 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T05:16:18.736 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "modified": "2024-09-16T05:16:01.138825+0000", 2024-09-16T05:16:18.736 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-16T05:16:18.736 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout }, 2024-09-16T05:16:18.736 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-16T05:16:18.736 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout } 2024-09-16T05:16:18.736 INFO:teuthology.orchestra.run.smithi029.stdout:mgr not available, waiting (2/15)... 2024-09-16T05:16:18.840 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:18 smithi029 bash[22996]: debug 2024-09-16T05:16:18.548+0000 7ff8dc2e9040 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-16T05:16:18.840 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:18 smithi029 bash[22996]: debug 2024-09-16T05:16:18.784+0000 7ff8dc2e9040 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-16T05:16:19.272 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:18 smithi029 bash[22996]: debug 2024-09-16T05:16:18.860+0000 7ff8dc2e9040 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-16T05:16:19.590 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:19 smithi029 bash[22996]: debug 2024-09-16T05:16:19.268+0000 7ff8dc2e9040 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-16T05:16:19.591 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:19 smithi029 bash[22996]: debug 2024-09-16T05:16:19.348+0000 7ff8dc2e9040 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-16T05:16:19.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:19 smithi029 bash[22744]: cluster 2024-09-16T05:16:19.375888+0000 mon.a (mon.0) 15 : cluster [INF] Activating manager daemon a 2024-09-16T05:16:19.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:19 smithi029 bash[22744]: cluster 2024-09-16T05:16:19.382614+0000 mon.a (mon.0) 16 : cluster [DBG] mgrmap e2: a(active, starting, since 0.00700163s) 2024-09-16T05:16:19.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:19 smithi029 bash[22744]: audit 2024-09-16T05:16:19.383667+0000 mon.a (mon.0) 17 : audit [DBG] from='mgr.14100 172.21.15.29:0/661488496' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-16T05:16:19.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:19 smithi029 bash[22744]: audit 2024-09-16T05:16:19.383879+0000 mon.a (mon.0) 18 : audit [DBG] from='mgr.14100 172.21.15.29:0/661488496' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-16T05:16:19.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:19 smithi029 bash[22744]: audit 2024-09-16T05:16:19.384037+0000 mon.a (mon.0) 19 : audit [DBG] from='mgr.14100 172.21.15.29:0/661488496' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-16T05:16:19.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:19 smithi029 bash[22744]: audit 2024-09-16T05:16:19.384196+0000 mon.a (mon.0) 20 : audit [DBG] from='mgr.14100 172.21.15.29:0/661488496' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T05:16:19.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:19 smithi029 bash[22744]: audit 2024-09-16T05:16:19.385014+0000 mon.a (mon.0) 21 : audit [DBG] from='mgr.14100 172.21.15.29:0/661488496' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-16T05:16:19.592 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:19 smithi029 bash[22744]: cluster 2024-09-16T05:16:19.407337+0000 mon.a (mon.0) 22 : cluster [INF] Manager daemon a is now available 2024-09-16T05:16:19.592 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:19 smithi029 bash[22744]: audit 2024-09-16T05:16:19.419790+0000 mon.a (mon.0) 23 : audit [INF] from='mgr.14100 172.21.15.29:0/661488496' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-16T05:16:19.592 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:19 smithi029 bash[22744]: audit 2024-09-16T05:16:19.421925+0000 mon.a (mon.0) 24 : audit [INF] from='mgr.14100 172.21.15.29:0/661488496' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-16T05:16:19.592 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:19 smithi029 bash[22744]: audit 2024-09-16T05:16:19.424691+0000 mon.a (mon.0) 25 : audit [INF] from='mgr.14100 172.21.15.29:0/661488496' entity='mgr.a' 2024-09-16T05:16:19.592 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:19 smithi029 bash[22744]: audit 2024-09-16T05:16:19.426492+0000 mon.a (mon.0) 26 : audit [INF] from='mgr.14100 172.21.15.29:0/661488496' entity='mgr.a' 2024-09-16T05:16:20.828 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:20 smithi029 bash[22744]: audit 2024-09-16T05:16:19.428233+0000 mon.a (mon.0) 27 : audit [INF] from='mgr.14100 172.21.15.29:0/661488496' entity='mgr.a' 2024-09-16T05:16:20.829 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:20 smithi029 bash[22744]: cluster 2024-09-16T05:16:20.388992+0000 mon.a (mon.0) 28 : cluster [DBG] mgrmap e3: a(active, since 1.01339s) 2024-09-16T05:16:22.817 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:22 smithi029 bash[22744]: cluster 2024-09-16T05:16:21.437407+0000 mon.a (mon.0) 29 : cluster [DBG] mgrmap e4: a(active, since 2s) 2024-09-16T05:16:23.284 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout 2024-09-16T05:16:23.284 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout { 2024-09-16T05:16:23.284 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "fsid": "825322c2-73ea-11ef-bceb-c7b262605968", 2024-09-16T05:16:23.284 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "health": { 2024-09-16T05:16:23.284 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-16T05:16:23.284 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-16T05:16:23.286 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-16T05:16:23.286 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout }, 2024-09-16T05:16:23.286 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-16T05:16:23.286 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-16T05:16:23.286 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout 0 2024-09-16T05:16:23.286 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout ], 2024-09-16T05:16:23.287 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-16T05:16:23.287 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "a" 2024-09-16T05:16:23.287 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout ], 2024-09-16T05:16:23.287 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "quorum_age": 12, 2024-09-16T05:16:23.287 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-16T05:16:23.287 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T05:16:23.287 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-16T05:16:23.287 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-16T05:16:23.287 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout }, 2024-09-16T05:16:23.287 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-16T05:16:23.287 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T05:16:23.289 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-16T05:16:23.289 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-16T05:16:23.289 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-16T05:16:23.289 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-16T05:16:23.289 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-16T05:16:23.289 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-16T05:16:23.289 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout }, 2024-09-16T05:16:23.289 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-16T05:16:23.289 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-16T05:16:23.289 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-16T05:16:23.292 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-16T05:16:23.292 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-16T05:16:23.292 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-16T05:16:23.292 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-16T05:16:23.293 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-16T05:16:23.293 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-16T05:16:23.293 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout }, 2024-09-16T05:16:23.293 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-16T05:16:23.293 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T05:16:23.293 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "btime": "2024-09-16T05:16:01:137996+0000", 2024-09-16T05:16:23.293 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-16T05:16:23.293 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-16T05:16:23.293 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout }, 2024-09-16T05:16:23.293 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-16T05:16:23.293 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-16T05:16:23.293 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-16T05:16:23.294 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-16T05:16:23.294 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-16T05:16:23.294 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-16T05:16:23.294 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "restful" 2024-09-16T05:16:23.294 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout ], 2024-09-16T05:16:23.294 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-16T05:16:23.294 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout }, 2024-09-16T05:16:23.294 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-16T05:16:23.294 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T05:16:23.294 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "modified": "2024-09-16T05:16:01.138825+0000", 2024-09-16T05:16:23.294 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-16T05:16:23.294 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout }, 2024-09-16T05:16:23.294 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-16T05:16:23.294 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout } 2024-09-16T05:16:23.294 INFO:teuthology.orchestra.run.smithi029.stdout:mgr is available 2024-09-16T05:16:23.840 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:23 smithi029 bash[22744]: audit 2024-09-16T05:16:22.576517+0000 mon.a (mon.0) 30 : audit [DBG] from='client.? 172.21.15.29:0/3089750721' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-16T05:16:25.151 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:24 smithi029 bash[22744]: audit 2024-09-16T05:16:24.874267+0000 mon.a (mon.0) 31 : audit [INF] from='client.? 172.21.15.29:0/663132919' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-09-16T05:16:25.152 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:24 smithi029 bash[22744]: audit 2024-09-16T05:16:24.878720+0000 mon.a (mon.0) 32 : audit [INF] from='client.? 172.21.15.29:0/663132919' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-16T05:16:25.642 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout 2024-09-16T05:16:25.642 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout [global] 2024-09-16T05:16:25.643 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout fsid = 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:16:25.643 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.29:3300,v1:172.21.15.29:6789] 2024-09-16T05:16:25.643 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-16T05:16:25.643 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-16T05:16:25.643 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-16T05:16:25.643 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-16T05:16:25.643 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout 2024-09-16T05:16:25.643 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-16T05:16:25.643 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-16T05:16:25.643 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout 2024-09-16T05:16:25.643 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout [osd] 2024-09-16T05:16:25.643 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-16T05:16:25.643 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-16T05:16:25.644 INFO:teuthology.orchestra.run.smithi029.stdout:Enabling cephadm module... 2024-09-16T05:16:27.760 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:27 smithi029 bash[22996]: ignoring --setuser ceph since I am not root 2024-09-16T05:16:27.760 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:27 smithi029 bash[22996]: ignoring --setgroup ceph since I am not root 2024-09-16T05:16:27.760 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:27 smithi029 bash[22996]: debug 2024-09-16T05:16:27.652+0000 7f0a82224040 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-16T05:16:27.760 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:27 smithi029 bash[22744]: audit 2024-09-16T05:16:27.445775+0000 mon.a (mon.0) 33 : audit [INF] from='client.? 172.21.15.29:0/958921031' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-09-16T05:16:28.594 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:28 smithi029 bash[22744]: audit 2024-09-16T05:16:27.497716+0000 mon.a (mon.0) 34 : audit [INF] from='client.? 172.21.15.29:0/958921031' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-16T05:16:28.594 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:28 smithi029 bash[22744]: cluster 2024-09-16T05:16:27.503532+0000 mon.a (mon.0) 35 : cluster [DBG] mgrmap e5: a(active, since 8s) 2024-09-16T05:16:29.304 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:28 smithi029 bash[22996]: debug 2024-09-16T05:16:28.888+0000 7f0a82224040 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-16T05:16:29.304 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:28 smithi029 bash[22996]: debug 2024-09-16T05:16:28.956+0000 7f0a82224040 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-16T05:16:29.304 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:29 smithi029 bash[22996]: debug 2024-09-16T05:16:29.116+0000 7f0a82224040 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-16T05:16:30.090 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:29 smithi029 bash[22744]: audit 2024-09-16T05:16:29.908722+0000 mon.a (mon.0) 36 : audit [DBG] from='client.? 172.21.15.29:0/3183077159' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-09-16T05:16:30.091 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:29 smithi029 bash[22996]: debug 2024-09-16T05:16:29.800+0000 7f0a82224040 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-16T05:16:30.091 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:29 smithi029 bash[22996]: debug 2024-09-16T05:16:29.876+0000 7f0a82224040 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-16T05:16:30.091 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:29 smithi029 bash[22996]: debug 2024-09-16T05:16:29.948+0000 7f0a82224040 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-16T05:16:30.570 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:30 smithi029 bash[22996]: debug 2024-09-16T05:16:30.148+0000 7f0a82224040 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-16T05:16:30.570 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:30 smithi029 bash[22996]: debug 2024-09-16T05:16:30.228+0000 7f0a82224040 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-16T05:16:30.570 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:30 smithi029 bash[22996]: debug 2024-09-16T05:16:30.300+0000 7f0a82224040 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-16T05:16:30.570 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:30 smithi029 bash[22996]: debug 2024-09-16T05:16:30.568+0000 7f0a82224040 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-16T05:16:30.606 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout { 2024-09-16T05:16:30.606 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-09-16T05:16:30.606 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-16T05:16:30.606 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-09-16T05:16:30.606 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-16T05:16:30.606 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout } 2024-09-16T05:16:30.606 INFO:teuthology.orchestra.run.smithi029.stdout:Waiting for the mgr to restart... 2024-09-16T05:16:30.607 INFO:teuthology.orchestra.run.smithi029.stdout:Waiting for mgr epoch 5... 2024-09-16T05:16:30.840 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:30 smithi029 bash[22996]: debug 2024-09-16T05:16:30.640+0000 7f0a82224040 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-16T05:16:31.190 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:30 smithi029 bash[22996]: debug 2024-09-16T05:16:30.844+0000 7f0a82224040 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-16T05:16:31.191 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:30 smithi029 bash[22996]: debug 2024-09-16T05:16:30.924+0000 7f0a82224040 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-16T05:16:31.544 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:31 smithi029 bash[22996]: debug 2024-09-16T05:16:31.184+0000 7f0a82224040 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-09-16T05:16:31.544 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:31 smithi029 bash[22996]: debug 2024-09-16T05:16:31.372+0000 7f0a82224040 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-16T05:16:31.813 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:31 smithi029 bash[22996]: debug 2024-09-16T05:16:31.540+0000 7f0a82224040 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-16T05:16:31.813 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:31 smithi029 bash[22996]: debug 2024-09-16T05:16:31.624+0000 7f0a82224040 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-16T05:16:32.090 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:31 smithi029 bash[22996]: debug 2024-09-16T05:16:31.808+0000 7f0a82224040 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-16T05:16:32.964 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:32 smithi029 bash[22996]: debug 2024-09-16T05:16:32.648+0000 7f0a82224040 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-16T05:16:32.964 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:32 smithi029 bash[22996]: debug 2024-09-16T05:16:32.728+0000 7f0a82224040 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-16T05:16:33.340 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:32 smithi029 bash[22996]: debug 2024-09-16T05:16:32.960+0000 7f0a82224040 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-16T05:16:33.340 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:33 smithi029 bash[22996]: debug 2024-09-16T05:16:33.036+0000 7f0a82224040 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-16T05:16:33.840 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:33 smithi029 bash[22996]: debug 2024-09-16T05:16:33.444+0000 7f0a82224040 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-16T05:16:33.840 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:33 smithi029 bash[22996]: debug 2024-09-16T05:16:33.528+0000 7f0a82224040 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-16T05:16:33.841 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:33 smithi029 bash[22744]: cluster 2024-09-16T05:16:33.552142+0000 mon.a (mon.0) 37 : cluster [INF] Active manager daemon a restarted 2024-09-16T05:16:33.841 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:33 smithi029 bash[22744]: cluster 2024-09-16T05:16:33.552621+0000 mon.a (mon.0) 38 : cluster [INF] Activating manager daemon a 2024-09-16T05:16:33.841 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:33 smithi029 bash[22744]: cluster 2024-09-16T05:16:33.557072+0000 mon.a (mon.0) 39 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-09-16T05:16:33.841 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:33 smithi029 bash[22744]: cluster 2024-09-16T05:16:33.557232+0000 mon.a (mon.0) 40 : cluster [DBG] mgrmap e6: a(active, starting, since 0.00480018s) 2024-09-16T05:16:33.841 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:33 smithi029 bash[22744]: audit 2024-09-16T05:16:33.559829+0000 mon.a (mon.0) 41 : audit [DBG] from='mgr.14118 172.21.15.29:0/605167502' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T05:16:33.841 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:33 smithi029 bash[22744]: audit 2024-09-16T05:16:33.561666+0000 mon.a (mon.0) 42 : audit [DBG] from='mgr.14118 172.21.15.29:0/605167502' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-16T05:16:33.841 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:33 smithi029 bash[22744]: audit 2024-09-16T05:16:33.562864+0000 mon.a (mon.0) 43 : audit [DBG] from='mgr.14118 172.21.15.29:0/605167502' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-16T05:16:33.841 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:33 smithi029 bash[22744]: audit 2024-09-16T05:16:33.563013+0000 mon.a (mon.0) 44 : audit [DBG] from='mgr.14118 172.21.15.29:0/605167502' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-16T05:16:33.841 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:33 smithi029 bash[22744]: audit 2024-09-16T05:16:33.563134+0000 mon.a (mon.0) 45 : audit [DBG] from='mgr.14118 172.21.15.29:0/605167502' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-16T05:16:33.841 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:33 smithi029 bash[22744]: cluster 2024-09-16T05:16:33.587740+0000 mon.a (mon.0) 46 : cluster [INF] Manager daemon a is now available 2024-09-16T05:16:33.842 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:33 smithi029 bash[22744]: audit 2024-09-16T05:16:33.601977+0000 mon.a (mon.0) 47 : audit [INF] from='mgr.14118 172.21.15.29:0/605167502' entity='mgr.a' 2024-09-16T05:16:35.090 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:34 smithi029 bash[22744]: cephadm 2024-09-16T05:16:33.599798+0000 mgr.a (mgr.14118) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-09-16T05:16:35.091 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:34 smithi029 bash[22744]: audit 2024-09-16T05:16:33.604211+0000 mon.a (mon.0) 48 : audit [INF] from='mgr.14118 172.21.15.29:0/605167502' entity='mgr.a' 2024-09-16T05:16:35.091 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:34 smithi029 bash[22744]: audit 2024-09-16T05:16:33.607863+0000 mon.a (mon.0) 49 : audit [INF] from='mgr.14118 172.21.15.29:0/605167502' entity='mgr.a' 2024-09-16T05:16:35.091 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:34 smithi029 bash[22744]: audit 2024-09-16T05:16:33.610995+0000 mon.a (mon.0) 50 : audit [DBG] from='mgr.14118 172.21.15.29:0/605167502' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:16:35.091 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:34 smithi029 bash[22744]: audit 2024-09-16T05:16:33.613136+0000 mon.a (mon.0) 51 : audit [DBG] from='mgr.14118 172.21.15.29:0/605167502' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:16:35.091 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:34 smithi029 bash[22744]: audit 2024-09-16T05:16:33.623181+0000 mon.a (mon.0) 52 : audit [INF] from='mgr.14118 172.21.15.29:0/605167502' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-16T05:16:35.091 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:34 smithi029 bash[22744]: audit 2024-09-16T05:16:33.625180+0000 mon.a (mon.0) 53 : audit [INF] from='mgr.14118 172.21.15.29:0/605167502' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-16T05:16:35.091 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:34 smithi029 bash[22744]: audit 2024-09-16T05:16:34.331029+0000 mon.a (mon.0) 54 : audit [INF] from='mgr.14118 172.21.15.29:0/605167502' entity='mgr.a' 2024-09-16T05:16:35.091 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:34 smithi029 bash[22744]: audit 2024-09-16T05:16:34.335952+0000 mon.a (mon.0) 55 : audit [INF] from='mgr.14118 172.21.15.29:0/605167502' entity='mgr.a' 2024-09-16T05:16:35.091 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:34 smithi029 bash[22744]: cluster 2024-09-16T05:16:34.564393+0000 mon.a (mon.0) 56 : cluster [DBG] mgrmap e7: a(active, since 1.01195s) 2024-09-16T05:16:35.322 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout { 2024-09-16T05:16:35.322 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-09-16T05:16:35.323 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-16T05:16:35.323 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout } 2024-09-16T05:16:35.323 INFO:teuthology.orchestra.run.smithi029.stdout:mgr epoch 5 is available 2024-09-16T05:16:35.323 INFO:teuthology.orchestra.run.smithi029.stdout:Setting orchestrator backend to cephadm... 2024-09-16T05:16:35.868 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:35 smithi029 bash[22744]: audit 2024-09-16T05:16:34.562920+0000 mgr.a (mgr.14118) 2 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-16T05:16:35.869 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:35 smithi029 bash[22744]: audit 2024-09-16T05:16:34.580563+0000 mgr.a (mgr.14118) 3 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-16T05:16:35.869 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:35 smithi029 bash[22744]: cephadm 2024-09-16T05:16:35.504281+0000 mgr.a (mgr.14118) 4 : cephadm [INF] [16/Sep/2024:05:16:35] ENGINE Bus STARTING 2024-09-16T05:16:35.869 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:35 smithi029 bash[22996]: debug 2024-09-16T05:16:35.628+0000 7f09eed6e640 -1 log_channel(cephadm) log [ERR] : [16/Sep/2024:05:16:35] ENGINE Error in HTTPServer.serve 2024-09-16T05:16:35.869 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:35 smithi029 bash[22996]: Traceback (most recent call last): 2024-09-16T05:16:35.869 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:35 smithi029 bash[22996]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-16T05:16:35.869 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:35 smithi029 bash[22996]: self._connections.run(self.expiration_interval) 2024-09-16T05:16:35.869 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:35 smithi029 bash[22996]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-16T05:16:35.869 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:35 smithi029 bash[22996]: self._run(expiration_interval) 2024-09-16T05:16:35.870 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:35 smithi029 bash[22996]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-16T05:16:35.870 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:35 smithi029 bash[22996]: new_conn = self._from_server_socket(self.server.socket) 2024-09-16T05:16:35.870 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:35 smithi029 bash[22996]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-16T05:16:35.870 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:35 smithi029 bash[22996]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-16T05:16:35.870 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:35 smithi029 bash[22996]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-16T05:16:35.870 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:35 smithi029 bash[22996]: s = self.context.wrap_socket( 2024-09-16T05:16:35.870 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:35 smithi029 bash[22996]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-16T05:16:35.870 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:35 smithi029 bash[22996]: return self.sslsocket_class._create( 2024-09-16T05:16:35.870 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:35 smithi029 bash[22996]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-16T05:16:35.870 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:35 smithi029 bash[22996]: self.do_handshake() 2024-09-16T05:16:35.870 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:35 smithi029 bash[22996]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-16T05:16:35.870 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:35 smithi029 bash[22996]: self._sslobj.do_handshake() 2024-09-16T05:16:35.871 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:35 smithi029 bash[22996]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-16T05:16:36.841 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:36 smithi029 bash[22744]: cluster 2024-09-16T05:16:35.616921+0000 mon.a (mon.0) 57 : cluster [DBG] mgrmap e8: a(active, since 2s) 2024-09-16T05:16:36.841 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:36 smithi029 bash[22744]: cephadm 2024-09-16T05:16:35.628640+0000 mgr.a (mgr.14118) 5 : cephadm [INF] [16/Sep/2024:05:16:35] ENGINE Serving on https://172.21.15.29:7150 2024-09-16T05:16:36.841 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:36 smithi029 bash[22744]: cephadm 2024-09-16T05:16:35.632167+0000 mgr.a (mgr.14118) 6 : cephadm [ERR] [16/Sep/2024:05:16:35] ENGINE Error in HTTPServer.serve 2024-09-16T05:16:36.841 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:36 smithi029 bash[22744]: Traceback (most recent call last): 2024-09-16T05:16:36.841 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:36 smithi029 bash[22744]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-16T05:16:36.842 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:36 smithi029 bash[22744]: self._connections.run(self.expiration_interval) 2024-09-16T05:16:36.842 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:36 smithi029 bash[22744]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-16T05:16:36.842 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:36 smithi029 bash[22744]: self._run(expiration_interval) 2024-09-16T05:16:36.842 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:36 smithi029 bash[22744]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-16T05:16:36.842 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:36 smithi029 bash[22744]: new_conn = self._from_server_socket(self.server.socket) 2024-09-16T05:16:36.842 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:36 smithi029 bash[22744]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-16T05:16:36.842 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:36 smithi029 bash[22744]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-16T05:16:36.842 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:36 smithi029 bash[22744]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-16T05:16:36.842 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:36 smithi029 bash[22744]: s = self.context.wrap_socket( 2024-09-16T05:16:36.842 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:36 smithi029 bash[22744]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-16T05:16:36.842 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:36 smithi029 bash[22744]: return self.sslsocket_class._create( 2024-09-16T05:16:36.842 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:36 smithi029 bash[22744]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-16T05:16:36.842 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:36 smithi029 bash[22744]: self.do_handshake() 2024-09-16T05:16:36.843 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:36 smithi029 bash[22744]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-16T05:16:36.843 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:36 smithi029 bash[22744]: self._sslobj.do_handshake() 2024-09-16T05:16:36.843 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:36 smithi029 bash[22744]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-16T05:16:36.843 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:36 smithi029 bash[22744]: cephadm 2024-09-16T05:16:35.729921+0000 mgr.a (mgr.14118) 7 : cephadm [INF] [16/Sep/2024:05:16:35] ENGINE Serving on http://172.21.15.29:8765 2024-09-16T05:16:36.843 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:36 smithi029 bash[22744]: cephadm 2024-09-16T05:16:35.730043+0000 mgr.a (mgr.14118) 8 : cephadm [INF] [16/Sep/2024:05:16:35] ENGINE Bus STARTED 2024-09-16T05:16:36.843 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:36 smithi029 bash[22744]: audit 2024-09-16T05:16:35.731241+0000 mon.a (mon.0) 58 : audit [DBG] from='mgr.14118 172.21.15.29:0/605167502' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:16:38.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:38 smithi029 bash[22744]: audit 2024-09-16T05:16:37.118848+0000 mgr.a (mgr.14118) 9 : audit [DBG] from='client.14130 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:16:38.341 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:38 smithi029 bash[22744]: audit 2024-09-16T05:16:37.124491+0000 mon.a (mon.0) 59 : audit [INF] from='mgr.14118 172.21.15.29:0/605167502' entity='mgr.a' 2024-09-16T05:16:38.341 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:38 smithi029 bash[22744]: audit 2024-09-16T05:16:37.142075+0000 mon.a (mon.0) 60 : audit [DBG] from='mgr.14118 172.21.15.29:0/605167502' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:16:39.825 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:39 smithi029 bash[22744]: audit 2024-09-16T05:16:39.548039+0000 mgr.a (mgr.14118) 10 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:16:40.321 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout value unchanged 2024-09-16T05:16:40.321 INFO:teuthology.orchestra.run.smithi029.stdout:Generating ssh key... 2024-09-16T05:16:42.591 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:42 smithi029 bash[22996]: Generating public/private rsa key pair. 2024-09-16T05:16:42.591 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:42 smithi029 bash[22996]: Your identification has been saved in /tmp/tmp3yv6rt19/key 2024-09-16T05:16:42.591 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:42 smithi029 bash[22996]: Your public key has been saved in /tmp/tmp3yv6rt19/key.pub 2024-09-16T05:16:42.591 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:42 smithi029 bash[22996]: The key fingerprint is: 2024-09-16T05:16:42.591 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:42 smithi029 bash[22996]: SHA256:+eWCkBw06ZcLzoxCZuOvzW+hARpvsB6D1n95PvzDl2M ceph-825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:16:42.591 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:42 smithi029 bash[22996]: The key's randomart image is: 2024-09-16T05:16:42.591 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:42 smithi029 bash[22996]: +---[RSA 3072]----+ 2024-09-16T05:16:42.592 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:42 smithi029 bash[22996]: | o. | 2024-09-16T05:16:42.592 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:42 smithi029 bash[22996]: | ... | 2024-09-16T05:16:42.592 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:42 smithi029 bash[22996]: | .. . | 2024-09-16T05:16:42.592 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:42 smithi029 bash[22996]: |o * .ooo. | 2024-09-16T05:16:42.592 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:42 smithi029 bash[22996]: |.@.o =+oS. . | 2024-09-16T05:16:42.592 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:42 smithi029 bash[22996]: |++=.o =..o o | 2024-09-16T05:16:42.592 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:42 smithi029 bash[22996]: |o.oo.o .+ + . . | 2024-09-16T05:16:42.592 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:42 smithi029 bash[22996]: | . oo..o + + E | 2024-09-16T05:16:42.592 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:42 smithi029 bash[22996]: | ..ooo o.o.+ . | 2024-09-16T05:16:42.592 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:16:42 smithi029 bash[22996]: +----[SHA256]-----+ 2024-09-16T05:16:43.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:43 smithi029 bash[22744]: audit 2024-09-16T05:16:41.926439+0000 mgr.a (mgr.14118) 11 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:16:43.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:43 smithi029 bash[22744]: cephadm 2024-09-16T05:16:41.926829+0000 mgr.a (mgr.14118) 12 : cephadm [INF] Generating ssh key... 2024-09-16T05:16:43.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:43 smithi029 bash[22744]: audit 2024-09-16T05:16:42.241945+0000 mon.a (mon.0) 61 : audit [INF] from='mgr.14118 172.21.15.29:0/605167502' entity='mgr.a' 2024-09-16T05:16:43.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:43 smithi029 bash[22744]: audit 2024-09-16T05:16:42.246630+0000 mon.a (mon.0) 62 : audit [INF] from='mgr.14118 172.21.15.29:0/605167502' entity='mgr.a' 2024-09-16T05:16:45.335 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCbgM3LynBhVAq1Ri4QSuAFYh+GHVTP9VzQ7TD7sqDHdhxWRrJgYlRb9PdOfqPTOzyt1GceI+HFD/z7bC1Ogk6mBHUghEerlDRjP+5UolcKZqAgMDgk0FYsSE+Oh5WBycGpckm+v85iossXuJcKAZzuZ2x1Ze6aZRbJk1yOtdMD40/zlFDtElOKsw7ViZl+P1IZdyPbRyHQv/LdMH4eQvNt4EauBOWOLxJbpxoK8h2kbAbdI6iEeWE/CjXd7/gtrlt925le5SmG83vQE5ADke2KF3J7/nS0J4CUPdPgISGEDLur0Sg2nbyZb9dqIjg0cyJhQH2vHH6joQiSTKG7e85jtHK6sTO58dHg4dpOBti1Bc6jsax+PpXwayQ+9mxYMyTJwD/BRBqY+bWearA5xn2cexgZPDcUUyymuIxGavB94Ock3MBcQIeLpaNM6QFFbjSEihuXg5YIfeJT4AV7q9uKGMZvuT6jVSmlhtlXapg+wzNQDaCTi+qYgMx60SY9t00= ceph-825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:16:45.335 INFO:teuthology.orchestra.run.smithi029.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-09-16T05:16:45.335 INFO:teuthology.orchestra.run.smithi029.stdout:Adding key to root@localhost authorized_keys... 2024-09-16T05:16:45.336 INFO:teuthology.orchestra.run.smithi029.stdout:Adding host smithi029... 2024-09-16T05:16:45.840 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:45 smithi029 bash[22744]: audit 2024-09-16T05:16:44.606115+0000 mgr.a (mgr.14118) 13 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:16:47.800 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:47 smithi029 bash[22744]: audit 2024-09-16T05:16:47.029272+0000 mgr.a (mgr.14118) 14 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi029", "addr": "172.21.15.29", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:16:48.812 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:48 smithi029 bash[22744]: cephadm 2024-09-16T05:16:48.300238+0000 mgr.a (mgr.14118) 15 : cephadm [INF] Deploying cephadm binary to smithi029 2024-09-16T05:16:53.049 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout Added host 'smithi029' with addr '172.21.15.29' 2024-09-16T05:16:53.049 INFO:teuthology.orchestra.run.smithi029.stdout:Deploying unmanaged mon service... 2024-09-16T05:16:53.201 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:52 smithi029 bash[22744]: audit 2024-09-16T05:16:51.949318+0000 mon.a (mon.0) 63 : audit [INF] from='mgr.14118 172.21.15.29:0/605167502' entity='mgr.a' 2024-09-16T05:16:53.201 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:52 smithi029 bash[22744]: cephadm 2024-09-16T05:16:51.949795+0000 mgr.a (mgr.14118) 16 : cephadm [INF] Added host smithi029 2024-09-16T05:16:53.201 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:52 smithi029 bash[22744]: audit 2024-09-16T05:16:51.950131+0000 mon.a (mon.0) 64 : audit [DBG] from='mgr.14118 172.21.15.29:0/605167502' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:16:54.840 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:54 smithi029 bash[22744]: cluster 2024-09-16T05:16:53.564465+0000 mgr.a (mgr.14118) 17 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:16:56.778 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-09-16T05:16:56.778 INFO:teuthology.orchestra.run.smithi029.stdout:Deploying unmanaged mgr service... 2024-09-16T05:16:57.090 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:56 smithi029 bash[22744]: cluster 2024-09-16T05:16:55.564860+0000 mgr.a (mgr.14118) 18 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:16:57.090 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:56 smithi029 bash[22744]: audit 2024-09-16T05:16:55.651190+0000 mgr.a (mgr.14118) 19 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:16:57.090 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:56 smithi029 bash[22744]: cephadm 2024-09-16T05:16:55.653959+0000 mgr.a (mgr.14118) 20 : cephadm [INF] Saving service mon spec with placement count:5 2024-09-16T05:16:57.091 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:56 smithi029 bash[22744]: audit 2024-09-16T05:16:55.658690+0000 mon.a (mon.0) 65 : audit [INF] from='mgr.14118 172.21.15.29:0/605167502' entity='mgr.a' 2024-09-16T05:16:57.091 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:56 smithi029 bash[22744]: audit 2024-09-16T05:16:56.441278+0000 mon.a (mon.0) 66 : audit [INF] from='mgr.14118 172.21.15.29:0/605167502' entity='mgr.a' 2024-09-16T05:16:58.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:58 smithi029 bash[22744]: audit 2024-09-16T05:16:57.045874+0000 mon.a (mon.0) 67 : audit [INF] from='mgr.14118 172.21.15.29:0/605167502' entity='mgr.a' 2024-09-16T05:16:59.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:59 smithi029 bash[22744]: cluster 2024-09-16T05:16:57.565266+0000 mgr.a (mgr.14118) 21 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:16:59.341 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:16:59 smithi029 bash[22744]: audit 2024-09-16T05:16:58.605360+0000 mon.a (mon.0) 68 : audit [INF] from='mgr.14118 172.21.15.29:0/605167502' entity='mgr.a' 2024-09-16T05:16:59.419 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-09-16T05:17:00.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:00 smithi029 bash[22744]: audit 2024-09-16T05:16:58.598750+0000 mgr.a (mgr.14118) 22 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:17:00.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:00 smithi029 bash[22744]: cephadm 2024-09-16T05:16:58.600929+0000 mgr.a (mgr.14118) 23 : cephadm [INF] Saving service mgr spec with placement count:2 2024-09-16T05:17:01.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:01 smithi029 bash[22744]: cluster 2024-09-16T05:16:59.565693+0000 mgr.a (mgr.14118) 24 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:17:02.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:02 smithi029 bash[22744]: audit 2024-09-16T05:17:01.177517+0000 mon.a (mon.0) 69 : audit [INF] from='client.? 172.21.15.29:0/1861305407' entity='client.admin' 2024-09-16T05:17:03.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:03 smithi029 bash[22744]: cluster 2024-09-16T05:17:01.566082+0000 mgr.a (mgr.14118) 25 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:17:03.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:03 smithi029 bash[22744]: audit 2024-09-16T05:17:02.680401+0000 mon.a (mon.0) 70 : audit [INF] from='mgr.14118 172.21.15.29:0/605167502' entity='mgr.a' 2024-09-16T05:17:03.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:03 smithi029 bash[22744]: audit 2024-09-16T05:17:02.683039+0000 mon.a (mon.0) 71 : audit [INF] from='mgr.14118 172.21.15.29:0/605167502' entity='mgr.a' 2024-09-16T05:17:03.341 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:03 smithi029 bash[22744]: audit 2024-09-16T05:17:02.683678+0000 mon.a (mon.0) 72 : audit [INF] from='mgr.14118 172.21.15.29:0/605167502' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi029", "name": "osd_memory_target"}]: dispatch 2024-09-16T05:17:03.341 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:03 smithi029 bash[22744]: audit 2024-09-16T05:17:02.686877+0000 mon.a (mon.0) 73 : audit [INF] from='mgr.14118 172.21.15.29:0/605167502' entity='mgr.a' 2024-09-16T05:17:03.341 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:03 smithi029 bash[22744]: audit 2024-09-16T05:17:02.688351+0000 mon.a (mon.0) 74 : audit [INF] from='mgr.14118 172.21.15.29:0/605167502' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi029", "caps": []}]: dispatch 2024-09-16T05:17:03.341 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:03 smithi029 bash[22744]: audit 2024-09-16T05:17:02.688950+0000 mon.a (mon.0) 75 : audit [INF] from='mgr.14118 172.21.15.29:0/605167502' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi029", "caps": []}]': finished 2024-09-16T05:17:04.478 INFO:teuthology.orchestra.run.smithi029.stdout:Enabling the dashboard module... 2024-09-16T05:17:04.580 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:04 smithi029 bash[22744]: cephadm 2024-09-16T05:17:03.317882+0000 mgr.a (mgr.14118) 26 : cephadm [INF] Deploying daemon agent.smithi029 on smithi029 2024-09-16T05:17:04.581 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:04 smithi029 bash[22744]: audit 2024-09-16T05:17:03.626444+0000 mon.a (mon.0) 76 : audit [INF] from='client.? 172.21.15.29:0/1037561087' entity='client.admin' 2024-09-16T05:17:05.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:05 smithi029 bash[22744]: cluster 2024-09-16T05:17:03.566445+0000 mgr.a (mgr.14118) 27 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:17:07.488 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:07 smithi029 bash[22744]: cluster 2024-09-16T05:17:05.566944+0000 mgr.a (mgr.14118) 28 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:17:07.488 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:07 smithi029 bash[22744]: audit 2024-09-16T05:17:06.461792+0000 mon.a (mon.0) 77 : audit [INF] from='client.? 172.21.15.29:0/374650791' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-09-16T05:17:07.489 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:07 smithi029 bash[22996]: ignoring --setuser ceph since I am not root 2024-09-16T05:17:07.489 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:07 smithi029 bash[22996]: ignoring --setgroup ceph since I am not root 2024-09-16T05:17:07.489 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:07 smithi029 bash[22996]: debug 2024-09-16T05:17:07.359+0000 7fa630b17040 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-16T05:17:08.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:08 smithi029 bash[22744]: audit 2024-09-16T05:17:07.194271+0000 mon.a (mon.0) 78 : audit [INF] from='client.? 172.21.15.29:0/374650791' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-16T05:17:08.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:08 smithi029 bash[22744]: cluster 2024-09-16T05:17:07.199758+0000 mon.a (mon.0) 79 : cluster [DBG] mgrmap e9: a(active, since 33s) 2024-09-16T05:17:09.090 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:08 smithi029 bash[22996]: debug 2024-09-16T05:17:08.599+0000 7fa630b17040 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-16T05:17:09.090 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:08 smithi029 bash[22996]: debug 2024-09-16T05:17:08.667+0000 7fa630b17040 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-16T05:17:09.091 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:08 smithi029 bash[22996]: debug 2024-09-16T05:17:08.823+0000 7fa630b17040 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-16T05:17:09.818 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:09 smithi029 bash[22996]: debug 2024-09-16T05:17:09.507+0000 7fa630b17040 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-16T05:17:09.819 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:09 smithi029 bash[22996]: debug 2024-09-16T05:17:09.583+0000 7fa630b17040 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-16T05:17:09.819 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:09 smithi029 bash[22996]: debug 2024-09-16T05:17:09.655+0000 7fa630b17040 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-16T05:17:10.071 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:09 smithi029 bash[22744]: audit 2024-09-16T05:17:09.805470+0000 mon.a (mon.0) 80 : audit [DBG] from='client.? 172.21.15.29:0/3998363962' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-09-16T05:17:10.071 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:09 smithi029 bash[22996]: debug 2024-09-16T05:17:09.851+0000 7fa630b17040 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-16T05:17:10.071 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:09 smithi029 bash[22996]: debug 2024-09-16T05:17:09.931+0000 7fa630b17040 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-16T05:17:10.071 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:10 smithi029 bash[22996]: debug 2024-09-16T05:17:10.003+0000 7fa630b17040 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-16T05:17:10.340 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:10 smithi029 bash[22996]: debug 2024-09-16T05:17:10.271+0000 7fa630b17040 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-16T05:17:10.544 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout { 2024-09-16T05:17:10.544 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-09-16T05:17:10.544 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-16T05:17:10.544 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-09-16T05:17:10.544 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-16T05:17:10.544 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout } 2024-09-16T05:17:10.544 INFO:teuthology.orchestra.run.smithi029.stdout:Waiting for the mgr to restart... 2024-09-16T05:17:10.544 INFO:teuthology.orchestra.run.smithi029.stdout:Waiting for mgr epoch 9... 2024-09-16T05:17:10.634 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:10 smithi029 bash[22996]: debug 2024-09-16T05:17:10.339+0000 7fa630b17040 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-16T05:17:10.634 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:10 smithi029 bash[22996]: debug 2024-09-16T05:17:10.547+0000 7fa630b17040 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-16T05:17:10.895 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:10 smithi029 bash[22996]: debug 2024-09-16T05:17:10.631+0000 7fa630b17040 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-16T05:17:11.250 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:10 smithi029 bash[22996]: debug 2024-09-16T05:17:10.891+0000 7fa630b17040 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-09-16T05:17:11.250 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:11 smithi029 bash[22996]: debug 2024-09-16T05:17:11.075+0000 7fa630b17040 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-16T05:17:11.519 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:11 smithi029 bash[22996]: debug 2024-09-16T05:17:11.247+0000 7fa630b17040 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-16T05:17:11.520 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:11 smithi029 bash[22996]: debug 2024-09-16T05:17:11.327+0000 7fa630b17040 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-16T05:17:11.840 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:11 smithi029 bash[22996]: debug 2024-09-16T05:17:11.515+0000 7fa630b17040 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-16T05:17:12.692 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:12 smithi029 bash[22996]: debug 2024-09-16T05:17:12.375+0000 7fa630b17040 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-16T05:17:12.693 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:12 smithi029 bash[22996]: debug 2024-09-16T05:17:12.455+0000 7fa630b17040 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-16T05:17:13.090 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:12 smithi029 bash[22996]: debug 2024-09-16T05:17:12.687+0000 7fa630b17040 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-16T05:17:13.090 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:12 smithi029 bash[22996]: debug 2024-09-16T05:17:12.763+0000 7fa630b17040 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-16T05:17:13.530 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:13 smithi029 bash[22744]: cluster 2024-09-16T05:17:13.279134+0000 mon.a (mon.0) 81 : cluster [INF] Active manager daemon a restarted 2024-09-16T05:17:13.530 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:13 smithi029 bash[22744]: cluster 2024-09-16T05:17:13.279499+0000 mon.a (mon.0) 82 : cluster [INF] Activating manager daemon a 2024-09-16T05:17:13.530 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:13 smithi029 bash[22744]: cluster 2024-09-16T05:17:13.283505+0000 mon.a (mon.0) 83 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-09-16T05:17:13.530 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:13 smithi029 bash[22744]: cluster 2024-09-16T05:17:13.283608+0000 mon.a (mon.0) 84 : cluster [DBG] mgrmap e10: a(active, starting, since 0.00423334s) 2024-09-16T05:17:13.530 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:13 smithi029 bash[22744]: audit 2024-09-16T05:17:13.284917+0000 mon.a (mon.0) 85 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T05:17:13.531 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:13 smithi029 bash[22744]: audit 2024-09-16T05:17:13.285701+0000 mon.a (mon.0) 86 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-16T05:17:13.531 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:13 smithi029 bash[22744]: audit 2024-09-16T05:17:13.286602+0000 mon.a (mon.0) 87 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-16T05:17:13.531 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:13 smithi029 bash[22744]: audit 2024-09-16T05:17:13.286732+0000 mon.a (mon.0) 88 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-16T05:17:13.531 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:13 smithi029 bash[22744]: audit 2024-09-16T05:17:13.286839+0000 mon.a (mon.0) 89 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-16T05:17:13.531 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:13 smithi029 bash[22744]: cluster 2024-09-16T05:17:13.312170+0000 mon.a (mon.0) 90 : cluster [INF] Manager daemon a is now available 2024-09-16T05:17:13.531 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:13 smithi029 bash[22744]: audit 2024-09-16T05:17:13.328548+0000 mon.a (mon.0) 91 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:13.531 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:13 smithi029 bash[22996]: debug 2024-09-16T05:17:13.171+0000 7fa630b17040 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-16T05:17:13.531 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:13 smithi029 bash[22996]: debug 2024-09-16T05:17:13.255+0000 7fa630b17040 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-16T05:17:14.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:14 smithi029 bash[22744]: audit 2024-09-16T05:17:13.333114+0000 mon.a (mon.0) 92 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:17:14.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:14 smithi029 bash[22744]: audit 2024-09-16T05:17:13.348524+0000 mon.a (mon.0) 93 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-16T05:17:14.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:14 smithi029 bash[22744]: audit 2024-09-16T05:17:13.351399+0000 mon.a (mon.0) 94 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-16T05:17:14.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:14 smithi029 bash[22744]: cluster 2024-09-16T05:17:14.290530+0000 mon.a (mon.0) 95 : cluster [DBG] mgrmap e11: a(active, since 1.01114s) 2024-09-16T05:17:15.155 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout { 2024-09-16T05:17:15.155 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-09-16T05:17:15.155 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-16T05:17:15.155 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout } 2024-09-16T05:17:15.155 INFO:teuthology.orchestra.run.smithi029.stdout:mgr epoch 9 is available 2024-09-16T05:17:15.155 INFO:teuthology.orchestra.run.smithi029.stdout:Generating a dashboard self-signed certificate... 2024-09-16T05:17:15.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:15 smithi029 bash[22744]: audit 2024-09-16T05:17:14.289501+0000 mgr.a (mgr.14150) 1 : audit [DBG] from='client.14154 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-16T05:17:15.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:15 smithi029 bash[22744]: audit 2024-09-16T05:17:14.306990+0000 mgr.a (mgr.14150) 2 : audit [DBG] from='client.14154 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-16T05:17:16.091 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:15 smithi029 bash[22996]: debug 2024-09-16T05:17:15.615+0000 7fa59bdde640 -1 log_channel(cephadm) log [ERR] : [16/Sep/2024:05:17:15] ENGINE Error in HTTPServer.serve 2024-09-16T05:17:16.091 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:15 smithi029 bash[22996]: Traceback (most recent call last): 2024-09-16T05:17:16.091 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:15 smithi029 bash[22996]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-16T05:17:16.091 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:15 smithi029 bash[22996]: self._connections.run(self.expiration_interval) 2024-09-16T05:17:16.091 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:15 smithi029 bash[22996]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-16T05:17:16.091 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:15 smithi029 bash[22996]: self._run(expiration_interval) 2024-09-16T05:17:16.091 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:15 smithi029 bash[22996]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-16T05:17:16.091 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:15 smithi029 bash[22996]: new_conn = self._from_server_socket(self.server.socket) 2024-09-16T05:17:16.091 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:15 smithi029 bash[22996]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-16T05:17:16.092 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:15 smithi029 bash[22996]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-16T05:17:16.092 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:15 smithi029 bash[22996]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-16T05:17:16.092 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:15 smithi029 bash[22996]: s = self.context.wrap_socket( 2024-09-16T05:17:16.092 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:15 smithi029 bash[22996]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-16T05:17:16.092 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:15 smithi029 bash[22996]: return self.sslsocket_class._create( 2024-09-16T05:17:16.092 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:15 smithi029 bash[22996]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-16T05:17:16.092 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:15 smithi029 bash[22996]: self.do_handshake() 2024-09-16T05:17:16.092 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:15 smithi029 bash[22996]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-16T05:17:16.092 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:15 smithi029 bash[22996]: self._sslobj.do_handshake() 2024-09-16T05:17:16.092 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:15 smithi029 bash[22996]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-16T05:17:16.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:16 smithi029 bash[22744]: cluster 2024-09-16T05:17:15.338774+0000 mon.a (mon.0) 96 : cluster [DBG] mgrmap e12: a(active, since 2s) 2024-09-16T05:17:16.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:16 smithi029 bash[22744]: cephadm 2024-09-16T05:17:15.490182+0000 mgr.a (mgr.14150) 3 : cephadm [INF] [16/Sep/2024:05:17:15] ENGINE Bus STARTING 2024-09-16T05:17:16.592 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:16 smithi029 bash[22744]: cephadm 2024-09-16T05:17:15.615319+0000 mgr.a (mgr.14150) 4 : cephadm [INF] [16/Sep/2024:05:17:15] ENGINE Serving on https://172.21.15.29:7150 2024-09-16T05:17:16.592 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:16 smithi029 bash[22744]: cephadm 2024-09-16T05:17:15.618814+0000 mgr.a (mgr.14150) 5 : cephadm [ERR] [16/Sep/2024:05:17:15] ENGINE Error in HTTPServer.serve 2024-09-16T05:17:16.592 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:16 smithi029 bash[22744]: Traceback (most recent call last): 2024-09-16T05:17:16.592 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:16 smithi029 bash[22744]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-16T05:17:16.592 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:16 smithi029 bash[22744]: self._connections.run(self.expiration_interval) 2024-09-16T05:17:16.592 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:16 smithi029 bash[22744]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-16T05:17:16.593 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:16 smithi029 bash[22744]: self._run(expiration_interval) 2024-09-16T05:17:16.593 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:16 smithi029 bash[22744]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-16T05:17:16.593 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:16 smithi029 bash[22744]: new_conn = self._from_server_socket(self.server.socket) 2024-09-16T05:17:16.593 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:16 smithi029 bash[22744]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-16T05:17:16.593 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:16 smithi029 bash[22744]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-16T05:17:16.593 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:16 smithi029 bash[22744]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-16T05:17:16.594 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:16 smithi029 bash[22744]: s = self.context.wrap_socket( 2024-09-16T05:17:16.594 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:16 smithi029 bash[22744]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-16T05:17:16.594 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:16 smithi029 bash[22744]: return self.sslsocket_class._create( 2024-09-16T05:17:16.594 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:16 smithi029 bash[22744]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-16T05:17:16.594 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:16 smithi029 bash[22744]: self.do_handshake() 2024-09-16T05:17:16.594 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:16 smithi029 bash[22744]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-16T05:17:16.595 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:16 smithi029 bash[22744]: self._sslobj.do_handshake() 2024-09-16T05:17:16.595 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:16 smithi029 bash[22744]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-16T05:17:16.595 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:16 smithi029 bash[22744]: cephadm 2024-09-16T05:17:15.716462+0000 mgr.a (mgr.14150) 6 : cephadm [INF] [16/Sep/2024:05:17:15] ENGINE Serving on http://172.21.15.29:8765 2024-09-16T05:17:16.595 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:16 smithi029 bash[22744]: cephadm 2024-09-16T05:17:15.716618+0000 mgr.a (mgr.14150) 7 : cephadm [INF] [16/Sep/2024:05:17:15] ENGINE Bus STARTED 2024-09-16T05:17:17.749 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout Self-signed certificate created 2024-09-16T05:17:17.750 INFO:teuthology.orchestra.run.smithi029.stdout:Creating initial admin user... 2024-09-16T05:17:18.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:17 smithi029 bash[22744]: audit 2024-09-16T05:17:16.828104+0000 mgr.a (mgr.14150) 8 : audit [DBG] from='client.14162 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:17:18.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:17 smithi029 bash[22744]: audit 2024-09-16T05:17:16.947751+0000 mon.a (mon.0) 97 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:18.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:17 smithi029 bash[22744]: audit 2024-09-16T05:17:16.952645+0000 mon.a (mon.0) 98 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:20.682 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$udgCaqqm6dhbmowQ6Z5kkeRLdIjKQZWuMV6iuY8T322V2jFZEDtLe", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1726463839, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-09-16T05:17:20.682 INFO:teuthology.orchestra.run.smithi029.stdout:Fetching dashboard port number... 2024-09-16T05:17:20.767 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:20 smithi029 bash[22744]: cluster 2024-09-16T05:17:19.373086+0000 mon.a (mon.0) 99 : cluster [DBG] mgrmap e13: a(active, since 6s) 2024-09-16T05:17:20.767 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:20 smithi029 bash[22744]: audit 2024-09-16T05:17:19.468947+0000 mon.a (mon.0) 100 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:20.767 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:20 smithi029 bash[22744]: audit 2024-09-16T05:17:19.469594+0000 mon.a (mon.0) 101 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi029", "name": "osd_memory_target"}]: dispatch 2024-09-16T05:17:20.767 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:20 smithi029 bash[22744]: audit 2024-09-16T05:17:19.472570+0000 mon.a (mon.0) 102 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:20.767 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:20 smithi029 bash[22744]: audit 2024-09-16T05:17:19.473852+0000 mon.a (mon.0) 103 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi029", "caps": []}]: dispatch 2024-09-16T05:17:20.767 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:20 smithi029 bash[22744]: audit 2024-09-16T05:17:19.635025+0000 mgr.a (mgr.14150) 9 : audit [DBG] from='client.14164 -' entity='client.admin' cmd=[{"prefix": "dashboard ac-user-create", "username": "admin", "rolename": "administrator", "force_password": true, "pwd_update_required": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:17:20.768 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:20 smithi029 bash[22744]: audit 2024-09-16T05:17:19.922084+0000 mon.a (mon.0) 104 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:21.840 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:21 smithi029 bash[22744]: cephadm 2024-09-16T05:17:20.382016+0000 mgr.a (mgr.14150) 10 : cephadm [INF] Deploying daemon agent.smithi029 on smithi029 2024-09-16T05:17:22.811 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:22 smithi029 bash[22744]: audit 2024-09-16T05:17:22.500035+0000 mon.a (mon.0) 105 : audit [DBG] from='client.? 172.21.15.29:0/3485910115' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-09-16T05:17:23.249 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stdout 8443 2024-09-16T05:17:23.249 INFO:teuthology.orchestra.run.smithi029.stdout:firewalld does not appear to be present 2024-09-16T05:17:23.249 INFO:teuthology.orchestra.run.smithi029.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-09-16T05:17:23.252 INFO:teuthology.orchestra.run.smithi029.stdout:Ceph Dashboard is now available at: 2024-09-16T05:17:23.252 INFO:teuthology.orchestra.run.smithi029.stdout: 2024-09-16T05:17:23.252 INFO:teuthology.orchestra.run.smithi029.stdout: URL: https://smithi029.front.sepia.ceph.com:8443/ 2024-09-16T05:17:23.252 INFO:teuthology.orchestra.run.smithi029.stdout: User: admin 2024-09-16T05:17:23.252 INFO:teuthology.orchestra.run.smithi029.stdout: Password: wdss7k1vyy 2024-09-16T05:17:23.252 INFO:teuthology.orchestra.run.smithi029.stdout: 2024-09-16T05:17:23.253 INFO:teuthology.orchestra.run.smithi029.stdout:Saving cluster configuration to /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config directory 2024-09-16T05:17:25.874 INFO:teuthology.orchestra.run.smithi029.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-09-16T05:17:25.874 INFO:teuthology.orchestra.run.smithi029.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-09-16T05:17:25.874 INFO:teuthology.orchestra.run.smithi029.stdout: 2024-09-16T05:17:25.874 INFO:teuthology.orchestra.run.smithi029.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-09-16T05:17:25.874 INFO:teuthology.orchestra.run.smithi029.stdout: 2024-09-16T05:17:25.874 INFO:teuthology.orchestra.run.smithi029.stdout:Or, if you are only running a single cluster on this host: 2024-09-16T05:17:25.874 INFO:teuthology.orchestra.run.smithi029.stdout: 2024-09-16T05:17:25.874 INFO:teuthology.orchestra.run.smithi029.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-09-16T05:17:25.875 INFO:teuthology.orchestra.run.smithi029.stdout: 2024-09-16T05:17:25.875 INFO:teuthology.orchestra.run.smithi029.stdout:Please consider enabling telemetry to help improve Ceph: 2024-09-16T05:17:25.875 INFO:teuthology.orchestra.run.smithi029.stdout: 2024-09-16T05:17:25.875 INFO:teuthology.orchestra.run.smithi029.stdout: ceph telemetry on 2024-09-16T05:17:25.875 INFO:teuthology.orchestra.run.smithi029.stdout: 2024-09-16T05:17:25.875 INFO:teuthology.orchestra.run.smithi029.stdout:For more information see: 2024-09-16T05:17:25.875 INFO:teuthology.orchestra.run.smithi029.stdout: 2024-09-16T05:17:25.875 INFO:teuthology.orchestra.run.smithi029.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-09-16T05:17:25.875 INFO:teuthology.orchestra.run.smithi029.stdout: 2024-09-16T05:17:25.875 INFO:teuthology.orchestra.run.smithi029.stdout:Bootstrap complete. 2024-09-16T05:17:25.923 INFO:tasks.cephadm:Fetching config... 2024-09-16T05:17:25.923 DEBUG:teuthology.orchestra.run.smithi029:> set -ex 2024-09-16T05:17:25.923 DEBUG:teuthology.orchestra.run.smithi029:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-09-16T05:17:25.930 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-09-16T05:17:25.930 DEBUG:teuthology.orchestra.run.smithi029:> set -ex 2024-09-16T05:17:25.930 DEBUG:teuthology.orchestra.run.smithi029:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-09-16T05:17:25.977 INFO:tasks.cephadm:Fetching mon keyring... 2024-09-16T05:17:25.978 DEBUG:teuthology.orchestra.run.smithi029:> set -ex 2024-09-16T05:17:25.978 DEBUG:teuthology.orchestra.run.smithi029:> sudo dd if=/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/keyring of=/dev/stdout 2024-09-16T05:17:26.033 INFO:tasks.cephadm:Fetching pub ssh key... 2024-09-16T05:17:26.033 DEBUG:teuthology.orchestra.run.smithi029:> set -ex 2024-09-16T05:17:26.034 DEBUG:teuthology.orchestra.run.smithi029:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-09-16T05:17:26.081 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-09-16T05:17:26.081 DEBUG:teuthology.orchestra.run.smithi029:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCbgM3LynBhVAq1Ri4QSuAFYh+GHVTP9VzQ7TD7sqDHdhxWRrJgYlRb9PdOfqPTOzyt1GceI+HFD/z7bC1Ogk6mBHUghEerlDRjP+5UolcKZqAgMDgk0FYsSE+Oh5WBycGpckm+v85iossXuJcKAZzuZ2x1Ze6aZRbJk1yOtdMD40/zlFDtElOKsw7ViZl+P1IZdyPbRyHQv/LdMH4eQvNt4EauBOWOLxJbpxoK8h2kbAbdI6iEeWE/CjXd7/gtrlt925le5SmG83vQE5ADke2KF3J7/nS0J4CUPdPgISGEDLur0Sg2nbyZb9dqIjg0cyJhQH2vHH6joQiSTKG7e85jtHK6sTO58dHg4dpOBti1Bc6jsax+PpXwayQ+9mxYMyTJwD/BRBqY+bWearA5xn2cexgZPDcUUyymuIxGavB94Ock3MBcQIeLpaNM6QFFbjSEihuXg5YIfeJT4AV7q9uKGMZvuT6jVSmlhtlXapg+wzNQDaCTi+qYgMx60SY9t00= ceph-825322c2-73ea-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-16T05:17:26.143 INFO:teuthology.orchestra.run.smithi029.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCbgM3LynBhVAq1Ri4QSuAFYh+GHVTP9VzQ7TD7sqDHdhxWRrJgYlRb9PdOfqPTOzyt1GceI+HFD/z7bC1Ogk6mBHUghEerlDRjP+5UolcKZqAgMDgk0FYsSE+Oh5WBycGpckm+v85iossXuJcKAZzuZ2x1Ze6aZRbJk1yOtdMD40/zlFDtElOKsw7ViZl+P1IZdyPbRyHQv/LdMH4eQvNt4EauBOWOLxJbpxoK8h2kbAbdI6iEeWE/CjXd7/gtrlt925le5SmG83vQE5ADke2KF3J7/nS0J4CUPdPgISGEDLur0Sg2nbyZb9dqIjg0cyJhQH2vHH6joQiSTKG7e85jtHK6sTO58dHg4dpOBti1Bc6jsax+PpXwayQ+9mxYMyTJwD/BRBqY+bWearA5xn2cexgZPDcUUyymuIxGavB94Ock3MBcQIeLpaNM6QFFbjSEihuXg5YIfeJT4AV7q9uKGMZvuT6jVSmlhtlXapg+wzNQDaCTi+qYgMx60SY9t00= ceph-825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:17:26.149 DEBUG:teuthology.orchestra.run.smithi081:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCbgM3LynBhVAq1Ri4QSuAFYh+GHVTP9VzQ7TD7sqDHdhxWRrJgYlRb9PdOfqPTOzyt1GceI+HFD/z7bC1Ogk6mBHUghEerlDRjP+5UolcKZqAgMDgk0FYsSE+Oh5WBycGpckm+v85iossXuJcKAZzuZ2x1Ze6aZRbJk1yOtdMD40/zlFDtElOKsw7ViZl+P1IZdyPbRyHQv/LdMH4eQvNt4EauBOWOLxJbpxoK8h2kbAbdI6iEeWE/CjXd7/gtrlt925le5SmG83vQE5ADke2KF3J7/nS0J4CUPdPgISGEDLur0Sg2nbyZb9dqIjg0cyJhQH2vHH6joQiSTKG7e85jtHK6sTO58dHg4dpOBti1Bc6jsax+PpXwayQ+9mxYMyTJwD/BRBqY+bWearA5xn2cexgZPDcUUyymuIxGavB94Ock3MBcQIeLpaNM6QFFbjSEihuXg5YIfeJT4AV7q9uKGMZvuT6jVSmlhtlXapg+wzNQDaCTi+qYgMx60SY9t00= ceph-825322c2-73ea-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-16T05:17:26.173 INFO:teuthology.orchestra.run.smithi081.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCbgM3LynBhVAq1Ri4QSuAFYh+GHVTP9VzQ7TD7sqDHdhxWRrJgYlRb9PdOfqPTOzyt1GceI+HFD/z7bC1Ogk6mBHUghEerlDRjP+5UolcKZqAgMDgk0FYsSE+Oh5WBycGpckm+v85iossXuJcKAZzuZ2x1Ze6aZRbJk1yOtdMD40/zlFDtElOKsw7ViZl+P1IZdyPbRyHQv/LdMH4eQvNt4EauBOWOLxJbpxoK8h2kbAbdI6iEeWE/CjXd7/gtrlt925le5SmG83vQE5ADke2KF3J7/nS0J4CUPdPgISGEDLur0Sg2nbyZb9dqIjg0cyJhQH2vHH6joQiSTKG7e85jtHK6sTO58dHg4dpOBti1Bc6jsax+PpXwayQ+9mxYMyTJwD/BRBqY+bWearA5xn2cexgZPDcUUyymuIxGavB94Ock3MBcQIeLpaNM6QFFbjSEihuXg5YIfeJT4AV7q9uKGMZvuT6jVSmlhtlXapg+wzNQDaCTi+qYgMx60SY9t00= ceph-825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:17:26.180 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:26 smithi029 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:17:26.180 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:26 smithi029 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:17:26.182 DEBUG:teuthology.orchestra.run.smithi167:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCbgM3LynBhVAq1Ri4QSuAFYh+GHVTP9VzQ7TD7sqDHdhxWRrJgYlRb9PdOfqPTOzyt1GceI+HFD/z7bC1Ogk6mBHUghEerlDRjP+5UolcKZqAgMDgk0FYsSE+Oh5WBycGpckm+v85iossXuJcKAZzuZ2x1Ze6aZRbJk1yOtdMD40/zlFDtElOKsw7ViZl+P1IZdyPbRyHQv/LdMH4eQvNt4EauBOWOLxJbpxoK8h2kbAbdI6iEeWE/CjXd7/gtrlt925le5SmG83vQE5ADke2KF3J7/nS0J4CUPdPgISGEDLur0Sg2nbyZb9dqIjg0cyJhQH2vHH6joQiSTKG7e85jtHK6sTO58dHg4dpOBti1Bc6jsax+PpXwayQ+9mxYMyTJwD/BRBqY+bWearA5xn2cexgZPDcUUyymuIxGavB94Ock3MBcQIeLpaNM6QFFbjSEihuXg5YIfeJT4AV7q9uKGMZvuT6jVSmlhtlXapg+wzNQDaCTi+qYgMx60SY9t00= ceph-825322c2-73ea-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-16T05:17:26.208 INFO:teuthology.orchestra.run.smithi167.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCbgM3LynBhVAq1Ri4QSuAFYh+GHVTP9VzQ7TD7sqDHdhxWRrJgYlRb9PdOfqPTOzyt1GceI+HFD/z7bC1Ogk6mBHUghEerlDRjP+5UolcKZqAgMDgk0FYsSE+Oh5WBycGpckm+v85iossXuJcKAZzuZ2x1Ze6aZRbJk1yOtdMD40/zlFDtElOKsw7ViZl+P1IZdyPbRyHQv/LdMH4eQvNt4EauBOWOLxJbpxoK8h2kbAbdI6iEeWE/CjXd7/gtrlt925le5SmG83vQE5ADke2KF3J7/nS0J4CUPdPgISGEDLur0Sg2nbyZb9dqIjg0cyJhQH2vHH6joQiSTKG7e85jtHK6sTO58dHg4dpOBti1Bc6jsax+PpXwayQ+9mxYMyTJwD/BRBqY+bWearA5xn2cexgZPDcUUyymuIxGavB94Ock3MBcQIeLpaNM6QFFbjSEihuXg5YIfeJT4AV7q9uKGMZvuT6jVSmlhtlXapg+wzNQDaCTi+qYgMx60SY9t00= ceph-825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:17:26.217 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-09-16T05:17:26.455 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:26 smithi029 bash[22744]: audit 2024-09-16T05:17:25.208214+0000 mon.a (mon.0) 106 : audit [INF] from='client.? 172.21.15.29:0/2615864614' entity='client.admin' 2024-09-16T05:17:26.456 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:26 smithi029 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:17:26.456 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:26 smithi029 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:17:26.800 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:26 smithi029 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:17:26.801 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:26 smithi029 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:17:27.090 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:26 smithi029 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:17:27.090 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:17:26 smithi029 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:17:27.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:27 smithi029 bash[22744]: audit 2024-09-16T05:17:26.439102+0000 mon.a (mon.0) 107 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:27.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:27 smithi029 bash[22744]: audit 2024-09-16T05:17:26.441261+0000 mon.a (mon.0) 108 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:27.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:27 smithi029 bash[22744]: audit 2024-09-16T05:17:26.443166+0000 mon.a (mon.0) 109 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:27.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:27 smithi029 bash[22744]: audit 2024-09-16T05:17:26.458966+0000 mon.a (mon.0) 110 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:17:27.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:27 smithi029 bash[22744]: audit 2024-09-16T05:17:26.462485+0000 mon.a (mon.0) 111 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:27.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:27 smithi029 bash[22744]: audit 2024-09-16T05:17:26.464259+0000 mon.a (mon.0) 112 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:27.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:27 smithi029 bash[22744]: audit 2024-09-16T05:17:26.465934+0000 mon.a (mon.0) 113 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:27.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:27 smithi029 bash[22744]: audit 2024-09-16T05:17:26.467589+0000 mon.a (mon.0) 114 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:27.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:27 smithi029 bash[22744]: audit 2024-09-16T05:17:26.471963+0000 mon.a (mon.0) 115 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:27.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:27 smithi029 bash[22744]: audit 2024-09-16T05:17:26.488366+0000 mon.a (mon.0) 116 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:17:27.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:27 smithi029 bash[22744]: audit 2024-09-16T05:17:26.492214+0000 mon.a (mon.0) 117 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:28.840 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:28 smithi029 bash[22744]: audit 2024-09-16T05:17:27.445026+0000 mon.a (mon.0) 118 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:28.840 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:28 smithi029 bash[22744]: audit 2024-09-16T05:17:28.349695+0000 mon.a (mon.0) 119 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:30.942 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:17:32.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:32 smithi029 bash[22744]: audit 2024-09-16T05:17:31.286271+0000 mon.a (mon.0) 120 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:32.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:32 smithi029 bash[22744]: audit 2024-09-16T05:17:31.290381+0000 mon.a (mon.0) 121 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:33.826 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-09-16T05:17:33.826 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-09-16T05:17:34.090 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:33 smithi029 bash[22744]: audit 2024-09-16T05:17:32.935252+0000 mon.a (mon.0) 122 : audit [INF] from='client.? 172.21.15.29:0/729522403' entity='client.admin' 2024-09-16T05:17:34.090 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:33 smithi029 bash[22744]: audit 2024-09-16T05:17:32.951718+0000 mon.a (mon.0) 123 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:17:34.090 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:33 smithi029 bash[22744]: audit 2024-09-16T05:17:32.956407+0000 mon.a (mon.0) 124 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:35.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:34 smithi029 bash[22744]: cluster 2024-09-16T05:17:33.288226+0000 mgr.a (mgr.14150) 11 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:17:37.090 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:36 smithi029 bash[22744]: cluster 2024-09-16T05:17:35.288647+0000 mgr.a (mgr.14150) 12 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:17:37.980 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:17:39.277 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:38 smithi029 bash[22744]: cluster 2024-09-16T05:17:37.289042+0000 mgr.a (mgr.14150) 13 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:17:41.292 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:41 smithi029 bash[22744]: cluster 2024-09-16T05:17:39.289525+0000 mgr.a (mgr.14150) 14 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:17:41.292 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:41 smithi029 bash[22744]: audit 2024-09-16T05:17:40.054209+0000 mgr.a (mgr.14150) 15 : audit [DBG] from='client.14172 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:17:41.292 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:41 smithi029 bash[22744]: audit 2024-09-16T05:17:40.057049+0000 mon.a (mon.0) 125 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:41.292 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:41 smithi029 bash[22744]: audit 2024-09-16T05:17:40.057744+0000 mon.a (mon.0) 126 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:17:41.292 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:41 smithi029 bash[22744]: audit 2024-09-16T05:17:40.059563+0000 mon.a (mon.0) 127 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:17:41.292 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:41 smithi029 bash[22744]: audit 2024-09-16T05:17:40.060322+0000 mon.a (mon.0) 128 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:17:41.293 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:41 smithi029 bash[22744]: cephadm 2024-09-16T05:17:40.061325+0000 mgr.a (mgr.14150) 16 : cephadm [INF] Updating smithi029:/etc/ceph/ceph.conf 2024-09-16T05:17:41.293 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:41 smithi029 bash[22744]: cephadm 2024-09-16T05:17:40.147936+0000 mgr.a (mgr.14150) 17 : cephadm [INF] Updating smithi029:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T05:17:41.293 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:41 smithi029 bash[22744]: cephadm 2024-09-16T05:17:40.234713+0000 mgr.a (mgr.14150) 18 : cephadm [INF] Updating smithi029:/etc/ceph/ceph.client.admin.keyring 2024-09-16T05:17:41.293 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:41 smithi029 bash[22744]: audit 2024-09-16T05:17:40.541915+0000 mon.a (mon.0) 129 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:41.293 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:41 smithi029 bash[22744]: audit 2024-09-16T05:17:40.544989+0000 mon.a (mon.0) 130 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:41.294 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi081 2024-09-16T05:17:41.294 DEBUG:teuthology.orchestra.run.smithi081:> set -ex 2024-09-16T05:17:41.294 DEBUG:teuthology.orchestra.run.smithi081:> dd of=/etc/ceph/ceph.conf 2024-09-16T05:17:41.303 DEBUG:teuthology.orchestra.run.smithi081:> set -ex 2024-09-16T05:17:41.303 DEBUG:teuthology.orchestra.run.smithi081:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-16T05:17:41.351 INFO:tasks.cephadm:Adding host smithi081 to orchestrator... 2024-09-16T05:17:41.351 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph orch host add smithi081 2024-09-16T05:17:42.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:42 smithi029 bash[22744]: cephadm 2024-09-16T05:17:40.364882+0000 mgr.a (mgr.14150) 19 : cephadm [INF] Updating smithi029:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-16T05:17:42.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:42 smithi029 bash[22744]: audit 2024-09-16T05:17:41.391851+0000 mon.a (mon.0) 131 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:42.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:42 smithi029 bash[22744]: audit 2024-09-16T05:17:41.396821+0000 mon.a (mon.0) 132 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:43.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:43 smithi029 bash[22744]: cluster 2024-09-16T05:17:41.289971+0000 mgr.a (mgr.14150) 20 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:17:45.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:45 smithi029 bash[22744]: cluster 2024-09-16T05:17:43.290340+0000 mgr.a (mgr.14150) 21 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:17:46.080 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:17:47.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:47 smithi029 bash[22744]: cluster 2024-09-16T05:17:45.290756+0000 mgr.a (mgr.14150) 22 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:17:49.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:49 smithi029 bash[22744]: cluster 2024-09-16T05:17:47.291102+0000 mgr.a (mgr.14150) 23 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:17:49.341 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:49 smithi029 bash[22744]: audit 2024-09-16T05:17:47.752775+0000 mgr.a (mgr.14150) 24 : audit [DBG] from='client.14174 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi081", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:17:50.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:50 smithi029 bash[22744]: cephadm 2024-09-16T05:17:49.046233+0000 mgr.a (mgr.14150) 25 : cephadm [INF] Deploying cephadm binary to smithi081 2024-09-16T05:17:51.341 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:51 smithi029 bash[22744]: cluster 2024-09-16T05:17:49.291502+0000 mgr.a (mgr.14150) 26 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:17:51.341 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:51 smithi029 bash[22744]: audit 2024-09-16T05:17:51.011711+0000 mon.a (mon.0) 133 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:51.341 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:51 smithi029 bash[22744]: audit 2024-09-16T05:17:51.020322+0000 mon.a (mon.0) 134 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:51.341 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:51 smithi029 bash[22744]: audit 2024-09-16T05:17:51.030315+0000 mon.a (mon.0) 135 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:52.701 INFO:teuthology.orchestra.run.smithi029.stdout:Added host 'smithi081' with addr '172.21.15.81' 2024-09-16T05:17:53.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:53 smithi029 bash[22744]: cluster 2024-09-16T05:17:51.291901+0000 mgr.a (mgr.14150) 27 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:17:53.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:53 smithi029 bash[22744]: audit 2024-09-16T05:17:52.699721+0000 mon.a (mon.0) 136 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:53.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:53 smithi029 bash[22744]: audit 2024-09-16T05:17:52.701523+0000 mon.a (mon.0) 137 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:17:53.865 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph orch host ls --format=json 2024-09-16T05:17:54.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:54 smithi029 bash[22744]: cephadm 2024-09-16T05:17:52.700678+0000 mgr.a (mgr.14150) 28 : cephadm [INF] Added host smithi081 2024-09-16T05:17:54.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:54 smithi029 bash[22744]: audit 2024-09-16T05:17:53.203410+0000 mon.a (mon.0) 138 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:55.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:55 smithi029 bash[22744]: cluster 2024-09-16T05:17:53.292290+0000 mgr.a (mgr.14150) 29 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:17:55.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:55 smithi029 bash[22744]: audit 2024-09-16T05:17:54.736081+0000 mon.a (mon.0) 139 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:55.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:55 smithi029 bash[22744]: audit 2024-09-16T05:17:54.741528+0000 mon.a (mon.0) 140 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:55.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:55 smithi029 bash[22744]: audit 2024-09-16T05:17:54.743075+0000 mon.a (mon.0) 141 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi081", "name": "osd_memory_target"}]: dispatch 2024-09-16T05:17:55.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:55 smithi029 bash[22744]: audit 2024-09-16T05:17:54.745211+0000 mon.a (mon.0) 142 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:17:55.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:55 smithi029 bash[22744]: audit 2024-09-16T05:17:54.747081+0000 mon.a (mon.0) 143 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:17:56.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:56 smithi029 bash[22744]: cephadm 2024-09-16T05:17:54.749496+0000 mgr.a (mgr.14150) 30 : cephadm [INF] Updating smithi081:/etc/ceph/ceph.conf 2024-09-16T05:17:56.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:56 smithi029 bash[22744]: cephadm 2024-09-16T05:17:54.934020+0000 mgr.a (mgr.14150) 31 : cephadm [INF] Updating smithi081:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T05:17:56.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:56 smithi029 bash[22744]: cephadm 2024-09-16T05:17:55.094693+0000 mgr.a (mgr.14150) 32 : cephadm [INF] Updating smithi081:/etc/ceph/ceph.client.admin.keyring 2024-09-16T05:17:56.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:56 smithi029 bash[22744]: cephadm 2024-09-16T05:17:55.240592+0000 mgr.a (mgr.14150) 33 : cephadm [INF] Updating smithi081:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-16T05:17:56.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:56 smithi029 bash[22744]: audit 2024-09-16T05:17:55.389876+0000 mon.a (mon.0) 144 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:56.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:56 smithi029 bash[22744]: audit 2024-09-16T05:17:55.395910+0000 mon.a (mon.0) 145 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:56.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:56 smithi029 bash[22744]: audit 2024-09-16T05:17:55.398664+0000 mon.a (mon.0) 146 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi081", "caps": []}]: dispatch 2024-09-16T05:17:56.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:56 smithi029 bash[22744]: audit 2024-09-16T05:17:55.400028+0000 mon.a (mon.0) 147 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi081", "caps": []}]': finished 2024-09-16T05:17:57.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:57 smithi029 bash[22744]: cluster 2024-09-16T05:17:55.292675+0000 mgr.a (mgr.14150) 34 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:17:58.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:58 smithi029 bash[22744]: cephadm 2024-09-16T05:17:56.282393+0000 mgr.a (mgr.14150) 35 : cephadm [INF] Deploying daemon agent.smithi081 on smithi081 2024-09-16T05:17:58.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:58 smithi029 bash[22744]: audit 2024-09-16T05:17:57.332012+0000 mon.a (mon.0) 148 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:58.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:58 smithi029 bash[22744]: audit 2024-09-16T05:17:57.337933+0000 mon.a (mon.0) 149 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:58.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:58 smithi029 bash[22744]: audit 2024-09-16T05:17:57.342877+0000 mon.a (mon.0) 150 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:58.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:58 smithi029 bash[22744]: audit 2024-09-16T05:17:57.401953+0000 mon.a (mon.0) 151 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:17:58.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:58 smithi029 bash[22744]: audit 2024-09-16T05:17:57.406161+0000 mon.a (mon.0) 152 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:17:58.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:58 smithi029 bash[22744]: audit 2024-09-16T05:17:57.407996+0000 mon.a (mon.0) 153 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:17:58.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:58 smithi029 bash[22744]: audit 2024-09-16T05:17:57.416429+0000 mon.a (mon.0) 154 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:58.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:58 smithi029 bash[22744]: audit 2024-09-16T05:17:57.475861+0000 mon.a (mon.0) 155 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:17:58.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:58 smithi029 bash[22744]: audit 2024-09-16T05:17:57.480263+0000 mon.a (mon.0) 156 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:17:58.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:58 smithi029 bash[22744]: audit 2024-09-16T05:17:57.482188+0000 mon.a (mon.0) 157 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:17:58.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:58 smithi029 bash[22744]: audit 2024-09-16T05:17:57.489034+0000 mon.a (mon.0) 158 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:58.592 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:58 smithi029 bash[22744]: audit 2024-09-16T05:17:57.871350+0000 mon.a (mon.0) 159 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:58.597 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:17:59.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:59 smithi029 bash[22744]: cluster 2024-09-16T05:17:57.293071+0000 mgr.a (mgr.14150) 36 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:17:59.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:59 smithi029 bash[22744]: audit 2024-09-16T05:17:58.356071+0000 mon.a (mon.0) 160 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:59.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:59 smithi029 bash[22744]: audit 2024-09-16T05:17:58.940529+0000 mon.a (mon.0) 161 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:17:59.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:17:59 smithi029 bash[22744]: audit 2024-09-16T05:17:58.947977+0000 mon.a (mon.0) 162 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:00.197 INFO:teuthology.orchestra.run.smithi029.stdout: 2024-09-16T05:18:00.197 INFO:teuthology.orchestra.run.smithi029.stdout:[{"addr": "172.21.15.29", "hostname": "smithi029", "labels": [], "status": ""}, {"addr": "172.21.15.81", "hostname": "smithi081", "labels": [], "status": ""}] 2024-09-16T05:18:00.988 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi167 2024-09-16T05:18:00.988 DEBUG:teuthology.orchestra.run.smithi167:> set -ex 2024-09-16T05:18:00.988 DEBUG:teuthology.orchestra.run.smithi167:> dd of=/etc/ceph/ceph.conf 2024-09-16T05:18:00.995 DEBUG:teuthology.orchestra.run.smithi167:> set -ex 2024-09-16T05:18:00.995 DEBUG:teuthology.orchestra.run.smithi167:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-16T05:18:01.040 INFO:tasks.cephadm:Adding host smithi167 to orchestrator... 2024-09-16T05:18:01.040 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph orch host add smithi167 2024-09-16T05:18:01.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:01 smithi029 bash[22744]: cluster 2024-09-16T05:17:59.293543+0000 mgr.a (mgr.14150) 37 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:01.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:01 smithi029 bash[22744]: audit 2024-09-16T05:18:00.196043+0000 mgr.a (mgr.14150) 38 : audit [DBG] from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T05:18:03.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:03 smithi029 bash[22744]: cluster 2024-09-16T05:18:01.293855+0000 mgr.a (mgr.14150) 39 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:05.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:05 smithi029 bash[22744]: cluster 2024-09-16T05:18:03.294194+0000 mgr.a (mgr.14150) 40 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:05.773 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:18:07.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:07 smithi029 bash[22744]: cluster 2024-09-16T05:18:05.294620+0000 mgr.a (mgr.14150) 41 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:09.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:09 smithi029 bash[22744]: cluster 2024-09-16T05:18:07.295063+0000 mgr.a (mgr.14150) 42 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:09.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:09 smithi029 bash[22744]: audit 2024-09-16T05:18:08.248146+0000 mgr.a (mgr.14150) 43 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi167", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:18:11.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:11 smithi029 bash[22744]: cluster 2024-09-16T05:18:09.295343+0000 mgr.a (mgr.14150) 44 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:11.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:11 smithi029 bash[22744]: cephadm 2024-09-16T05:18:09.531560+0000 mgr.a (mgr.14150) 45 : cephadm [INF] Deploying cephadm binary to smithi167 2024-09-16T05:18:12.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:12 smithi029 bash[22744]: audit 2024-09-16T05:18:11.234806+0000 mon.a (mon.0) 163 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:12.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:12 smithi029 bash[22744]: audit 2024-09-16T05:18:11.244949+0000 mon.a (mon.0) 164 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:12.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:12 smithi029 bash[22744]: audit 2024-09-16T05:18:11.255683+0000 mon.a (mon.0) 165 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:12.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:12 smithi029 bash[22744]: audit 2024-09-16T05:18:12.141580+0000 mon.a (mon.0) 166 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:12.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:12 smithi029 bash[22744]: audit 2024-09-16T05:18:12.147825+0000 mon.a (mon.0) 167 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:13.178 INFO:teuthology.orchestra.run.smithi029.stdout:Added host 'smithi167' with addr '172.21.15.167' 2024-09-16T05:18:13.455 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:13 smithi029 bash[22744]: cluster 2024-09-16T05:18:11.295666+0000 mgr.a (mgr.14150) 46 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:13.456 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:13 smithi029 bash[22744]: audit 2024-09-16T05:18:13.176930+0000 mon.a (mon.0) 168 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:13.456 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:13 smithi029 bash[22744]: audit 2024-09-16T05:18:13.178525+0000 mon.a (mon.0) 169 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:18:14.039 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph orch host ls --format=json 2024-09-16T05:18:14.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:14 smithi029 bash[22744]: cephadm 2024-09-16T05:18:13.177762+0000 mgr.a (mgr.14150) 47 : cephadm [INF] Added host smithi167 2024-09-16T05:18:14.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:14 smithi029 bash[22744]: audit 2024-09-16T05:18:13.727988+0000 mon.a (mon.0) 170 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:15.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:15 smithi029 bash[22744]: cluster 2024-09-16T05:18:13.296060+0000 mgr.a (mgr.14150) 48 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:16.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:16 smithi029 bash[22744]: audit 2024-09-16T05:18:15.258063+0000 mon.a (mon.0) 171 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:16.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:16 smithi029 bash[22744]: audit 2024-09-16T05:18:15.264301+0000 mon.a (mon.0) 172 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:16.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:16 smithi029 bash[22744]: audit 2024-09-16T05:18:15.265626+0000 mon.a (mon.0) 173 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi167", "name": "osd_memory_target"}]: dispatch 2024-09-16T05:18:16.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:16 smithi029 bash[22744]: audit 2024-09-16T05:18:15.267594+0000 mon.a (mon.0) 174 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:16.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:16 smithi029 bash[22744]: audit 2024-09-16T05:18:15.269262+0000 mon.a (mon.0) 175 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:18:16.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:16 smithi029 bash[22744]: audit 2024-09-16T05:18:15.918340+0000 mon.a (mon.0) 176 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:16.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:16 smithi029 bash[22744]: audit 2024-09-16T05:18:15.924339+0000 mon.a (mon.0) 177 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:16.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:16 smithi029 bash[22744]: audit 2024-09-16T05:18:15.927419+0000 mon.a (mon.0) 178 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi167", "caps": []}]: dispatch 2024-09-16T05:18:16.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:16 smithi029 bash[22744]: audit 2024-09-16T05:18:15.928673+0000 mon.a (mon.0) 179 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi167", "caps": []}]': finished 2024-09-16T05:18:17.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:17 smithi029 bash[22744]: cephadm 2024-09-16T05:18:15.271796+0000 mgr.a (mgr.14150) 49 : cephadm [INF] Updating smithi167:/etc/ceph/ceph.conf 2024-09-16T05:18:17.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:17 smithi029 bash[22744]: cluster 2024-09-16T05:18:15.296461+0000 mgr.a (mgr.14150) 50 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:17.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:17 smithi029 bash[22744]: cephadm 2024-09-16T05:18:15.460508+0000 mgr.a (mgr.14150) 51 : cephadm [INF] Updating smithi167:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T05:18:17.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:17 smithi029 bash[22744]: cephadm 2024-09-16T05:18:15.623216+0000 mgr.a (mgr.14150) 52 : cephadm [INF] Updating smithi167:/etc/ceph/ceph.client.admin.keyring 2024-09-16T05:18:17.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:17 smithi029 bash[22744]: cephadm 2024-09-16T05:18:15.770873+0000 mgr.a (mgr.14150) 53 : cephadm [INF] Updating smithi167:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-16T05:18:18.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:18 smithi029 bash[22744]: cephadm 2024-09-16T05:18:16.865221+0000 mgr.a (mgr.14150) 54 : cephadm [INF] Deploying daemon agent.smithi167 on smithi167 2024-09-16T05:18:18.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:18 smithi029 bash[22744]: audit 2024-09-16T05:18:17.941006+0000 mon.a (mon.0) 180 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:18.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:18 smithi029 bash[22744]: audit 2024-09-16T05:18:17.946461+0000 mon.a (mon.0) 181 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:18.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:18 smithi029 bash[22744]: audit 2024-09-16T05:18:17.952121+0000 mon.a (mon.0) 182 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:18.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:18 smithi029 bash[22744]: audit 2024-09-16T05:18:18.037870+0000 mon.a (mon.0) 183 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:18:18.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:18 smithi029 bash[22744]: audit 2024-09-16T05:18:18.042519+0000 mon.a (mon.0) 184 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:18.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:18 smithi029 bash[22744]: audit 2024-09-16T05:18:18.044365+0000 mon.a (mon.0) 185 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:18:18.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:18 smithi029 bash[22744]: audit 2024-09-16T05:18:18.051271+0000 mon.a (mon.0) 186 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:18.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:18 smithi029 bash[22744]: audit 2024-09-16T05:18:18.140417+0000 mon.a (mon.0) 187 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:18:18.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:18 smithi029 bash[22744]: audit 2024-09-16T05:18:18.145367+0000 mon.a (mon.0) 188 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:18.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:18 smithi029 bash[22744]: audit 2024-09-16T05:18:18.147285+0000 mon.a (mon.0) 189 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:18:18.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:18 smithi029 bash[22744]: audit 2024-09-16T05:18:18.155709+0000 mon.a (mon.0) 190 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:18.774 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:18:19.545 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:19 smithi029 bash[22744]: cluster 2024-09-16T05:18:17.296812+0000 mgr.a (mgr.14150) 55 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:19.545 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:19 smithi029 bash[22744]: audit 2024-09-16T05:18:18.362426+0000 mon.a (mon.0) 191 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:19.545 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:19 smithi029 bash[22744]: audit 2024-09-16T05:18:18.494576+0000 mon.a (mon.0) 192 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:19.545 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:19 smithi029 bash[22744]: audit 2024-09-16T05:18:18.519473+0000 mon.a (mon.0) 193 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:19.545 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:19 smithi029 bash[22744]: audit 2024-09-16T05:18:18.525251+0000 mon.a (mon.0) 194 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:19.545 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:19 smithi029 bash[22744]: audit 2024-09-16T05:18:18.532995+0000 mon.a (mon.0) 195 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:20.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:20 smithi029 bash[22744]: cluster 2024-09-16T05:18:19.297149+0000 mgr.a (mgr.14150) 56 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:20.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:20 smithi029 bash[22744]: audit 2024-09-16T05:18:19.561300+0000 mon.a (mon.0) 196 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:20.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:20 smithi029 bash[22744]: audit 2024-09-16T05:18:19.565759+0000 mon.a (mon.0) 197 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:20.631 INFO:teuthology.orchestra.run.smithi029.stdout: 2024-09-16T05:18:20.631 INFO:teuthology.orchestra.run.smithi029.stdout:[{"addr": "172.21.15.29", "hostname": "smithi029", "labels": [], "status": ""}, {"addr": "172.21.15.81", "hostname": "smithi081", "labels": [], "status": ""}, {"addr": "172.21.15.167", "hostname": "smithi167", "labels": [], "status": ""}] 2024-09-16T05:18:21.565 INFO:tasks.cephadm:Setting crush tunables to default 2024-09-16T05:18:21.566 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph osd crush tunables default 2024-09-16T05:18:21.840 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:21 smithi029 bash[22744]: audit 2024-09-16T05:18:20.630604+0000 mgr.a (mgr.14150) 57 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T05:18:22.840 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:22 smithi029 bash[22744]: cluster 2024-09-16T05:18:21.297601+0000 mgr.a (mgr.14150) 58 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:24.826 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:24 smithi029 bash[22744]: cluster 2024-09-16T05:18:23.297941+0000 mgr.a (mgr.14150) 59 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:26.293 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:18:26.835 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:26 smithi029 bash[22744]: cluster 2024-09-16T05:18:25.298367+0000 mgr.a (mgr.14150) 60 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:28.572 INFO:teuthology.orchestra.run.smithi029.stderr:adjusted tunables profile to default 2024-09-16T05:18:28.840 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:28 smithi029 bash[22744]: cluster 2024-09-16T05:18:27.298795+0000 mgr.a (mgr.14150) 61 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:28.840 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:28 smithi029 bash[22744]: audit 2024-09-16T05:18:28.483468+0000 mon.a (mon.0) 198 : audit [INF] from='client.? 172.21.15.29:0/1426165507' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-16T05:18:29.498 INFO:tasks.cephadm:Adding mon.a on smithi029 2024-09-16T05:18:29.498 INFO:tasks.cephadm:Adding mon.b on smithi081 2024-09-16T05:18:29.498 INFO:tasks.cephadm:Adding mon.c on smithi167 2024-09-16T05:18:29.498 DEBUG:teuthology.orchestra.run.smithi167:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph orch apply mon '3;smithi029:172.21.15.29=a;smithi081:172.21.15.81=b;smithi167:172.21.15.167=c' 2024-09-16T05:18:29.841 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:29 smithi029 bash[22744]: audit 2024-09-16T05:18:28.571887+0000 mon.a (mon.0) 199 : audit [INF] from='client.? 172.21.15.29:0/1426165507' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-16T05:18:29.841 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:29 smithi029 bash[22744]: cluster 2024-09-16T05:18:28.575941+0000 mon.a (mon.0) 200 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-16T05:18:30.724 INFO:teuthology.orchestra.run.smithi167.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T05:18:30.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:30 smithi029 bash[22744]: cluster 2024-09-16T05:18:29.299237+0000 mgr.a (mgr.14150) 62 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:32.183 INFO:teuthology.orchestra.run.smithi167.stdout:Scheduled mon update... 2024-09-16T05:18:32.840 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:32 smithi029 bash[22744]: cluster 2024-09-16T05:18:31.299693+0000 mgr.a (mgr.14150) 63 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:32.840 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:32 smithi029 bash[22744]: audit 2024-09-16T05:18:31.483449+0000 mon.a (mon.0) 201 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:32.840 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:32 smithi029 bash[22744]: audit 2024-09-16T05:18:31.489436+0000 mon.a (mon.0) 202 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:32.840 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:32 smithi029 bash[22744]: audit 2024-09-16T05:18:31.496858+0000 mon.a (mon.0) 203 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:32.840 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:32 smithi029 bash[22744]: audit 2024-09-16T05:18:32.171710+0000 mgr.a (mgr.14150) 64 : audit [DBG] from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi029:172.21.15.29=a;smithi081:172.21.15.81=b;smithi167:172.21.15.167=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:18:32.841 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:32 smithi029 bash[22744]: cephadm 2024-09-16T05:18:32.176962+0000 mgr.a (mgr.14150) 65 : cephadm [INF] Saving service mon spec with placement smithi029:172.21.15.29=a;smithi081:172.21.15.81=b;smithi167:172.21.15.167=c;count:3 2024-09-16T05:18:32.841 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:32 smithi029 bash[22744]: audit 2024-09-16T05:18:32.182161+0000 mon.a (mon.0) 204 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:32.841 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:32 smithi029 bash[22744]: audit 2024-09-16T05:18:32.183671+0000 mon.a (mon.0) 205 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:18:32.841 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:32 smithi029 bash[22744]: audit 2024-09-16T05:18:32.189445+0000 mon.a (mon.0) 206 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:32.841 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:32 smithi029 bash[22744]: audit 2024-09-16T05:18:32.191751+0000 mon.a (mon.0) 207 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:18:32.841 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:32 smithi029 bash[22744]: audit 2024-09-16T05:18:32.199296+0000 mon.a (mon.0) 208 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:32.841 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:32 smithi029 bash[22744]: audit 2024-09-16T05:18:32.203855+0000 mon.a (mon.0) 209 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T05:18:32.841 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:32 smithi029 bash[22744]: audit 2024-09-16T05:18:32.205547+0000 mon.a (mon.0) 210 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:32.841 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:32 smithi029 bash[22744]: cephadm 2024-09-16T05:18:32.207693+0000 mgr.a (mgr.14150) 66 : cephadm [INF] Deploying daemon mon.c on smithi167 2024-09-16T05:18:32.963 DEBUG:teuthology.orchestra.run.smithi081:mon.b> sudo journalctl -f -n 0 -u ceph-825322c2-73ea-11ef-bceb-c7b262605968@mon.b.service 2024-09-16T05:18:32.966 DEBUG:teuthology.orchestra.run.smithi167:mon.c> sudo journalctl -f -n 0 -u ceph-825322c2-73ea-11ef-bceb-c7b262605968@mon.c.service 2024-09-16T05:18:32.969 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-16T05:18:32.969 DEBUG:teuthology.orchestra.run.smithi167:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-16T05:18:34.222 INFO:teuthology.orchestra.run.smithi167.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T05:18:34.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:34 smithi029 bash[22744]: audit 2024-09-16T05:18:33.040184+0000 mon.a (mon.0) 211 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:34.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:34 smithi029 bash[22744]: audit 2024-09-16T05:18:33.047789+0000 mon.a (mon.0) 212 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:35.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:35 smithi029 bash[22744]: cluster 2024-09-16T05:18:33.300111+0000 mgr.a (mgr.14150) 67 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:36.246 INFO:teuthology.orchestra.run.smithi167.stderr:dumped monmap epoch 1 2024-09-16T05:18:36.247 INFO:teuthology.orchestra.run.smithi167.stdout: 2024-09-16T05:18:36.247 INFO:teuthology.orchestra.run.smithi167.stdout:{"epoch":1,"fsid":"825322c2-73ea-11ef-bceb-c7b262605968","modified":"2024-09-16T05:15:55.257784Z","created":"2024-09-16T05:15:55.257784Z","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.29:3300","nonce":0},{"type":"v1","addr":"172.21.15.29:6789","nonce":0}]},"addr":"172.21.15.29:6789/0","public_addr":"172.21.15.29:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-16T05:18:37.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:37 smithi029 bash[22744]: cluster 2024-09-16T05:18:35.300499+0000 mgr.a (mgr.14150) 68 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:37.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:37 smithi029 bash[22744]: audit 2024-09-16T05:18:36.246825+0000 mon.a (mon.0) 213 : audit [DBG] from='client.? 172.21.15.167:0/2592936711' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-16T05:18:38.056 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-16T05:18:38.057 DEBUG:teuthology.orchestra.run.smithi167:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-16T05:18:38.338 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:38 smithi167 systemd[1]: Started Ceph mon.c for 825322c2-73ea-11ef-bceb-c7b262605968. 2024-09-16T05:18:39.287 INFO:teuthology.orchestra.run.smithi167.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.c/config 2024-09-16T05:18:39.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:39 smithi029 bash[22744]: cluster 2024-09-16T05:18:37.300915+0000 mgr.a (mgr.14150) 69 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:39.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:39 smithi029 bash[22744]: audit 2024-09-16T05:18:38.293498+0000 mon.a (mon.0) 214 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:39.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:39 smithi029 bash[22744]: audit 2024-09-16T05:18:38.299249+0000 mon.a (mon.0) 215 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:39.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:39 smithi029 bash[22744]: audit 2024-09-16T05:18:38.305278+0000 mon.a (mon.0) 216 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:39.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:39 smithi029 bash[22744]: audit 2024-09-16T05:18:38.306648+0000 mon.a (mon.0) 217 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T05:18:39.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:39 smithi029 bash[22744]: audit 2024-09-16T05:18:38.308561+0000 mon.a (mon.0) 218 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:39.341 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:39 smithi029 bash[22744]: audit 2024-09-16T05:18:38.693670+0000 mon.a (mon.0) 219 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:39.341 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:39 smithi029 bash[22744]: audit 2024-09-16T05:18:38.699397+0000 mon.a (mon.0) 220 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:39.341 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:39 smithi029 bash[22744]: audit 2024-09-16T05:18:38.707029+0000 mon.a (mon.0) 221 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:39.993 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.694+0000 7f6285c93c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-16T05:18:39.993 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.694+0000 7f6285c93c80 0 ceph version 19.1.1-326-g8921c8ef (8921c8ef947807b717db041d85f0761b7914d5fc) squid (stable), process ceph-mon, pid 7 2024-09-16T05:18:39.993 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.694+0000 7f6285c93c80 0 pidfile_write: ignore empty --pid-file 2024-09-16T05:18:39.994 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 0 load: jerasure load: lrc 2024-09-16T05:18:39.994 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: RocksDB version: 7.9.2 2024-09-16T05:18:39.994 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Git sha 0 2024-09-16T05:18:39.994 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Compile date 2024-09-15 15:04:35 2024-09-16T05:18:39.994 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: DB SUMMARY 2024-09-16T05:18:39.994 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: DB Session ID: QF677FLM8O0Q8IPVN3Q6 2024-09-16T05:18:39.994 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: CURRENT file: CURRENT 2024-09-16T05:18:39.994 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: IDENTITY file: IDENTITY 2024-09-16T05:18:39.994 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2024-09-16T05:18:39.994 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-c/store.db dir, Total Num: 0, files: 2024-09-16T05:18:39.994 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-c/store.db: 000004.log size: 511 ; 2024-09-16T05:18:39.994 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.error_if_exists: 0 2024-09-16T05:18:39.995 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.create_if_missing: 0 2024-09-16T05:18:39.995 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.paranoid_checks: 1 2024-09-16T05:18:39.995 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-16T05:18:39.995 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-16T05:18:39.995 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-16T05:18:39.995 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.env: 0x5584f74e4940 2024-09-16T05:18:39.995 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.fs: PosixFileSystem 2024-09-16T05:18:39.995 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.info_log: 0x5584f87576e0 2024-09-16T05:18:39.995 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-16T05:18:39.995 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.statistics: (nil) 2024-09-16T05:18:39.995 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.use_fsync: 0 2024-09-16T05:18:39.995 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.max_log_file_size: 0 2024-09-16T05:18:39.996 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-16T05:18:39.996 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-16T05:18:39.996 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-16T05:18:39.996 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-16T05:18:39.996 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.allow_fallocate: 1 2024-09-16T05:18:39.997 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-16T05:18:39.997 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-16T05:18:39.997 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.use_direct_reads: 0 2024-09-16T05:18:39.997 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-16T05:18:39.997 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.create_missing_column_families: 0 2024-09-16T05:18:39.997 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.db_log_dir: 2024-09-16T05:18:39.997 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.wal_dir: 2024-09-16T05:18:39.997 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-16T05:18:39.997 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-16T05:18:39.997 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-16T05:18:39.998 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-16T05:18:39.998 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-16T05:18:39.998 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-16T05:18:39.998 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.advise_random_on_open: 1 2024-09-16T05:18:39.998 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-16T05:18:39.998 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.write_buffer_manager: 0x5584f8766dc0 2024-09-16T05:18:39.998 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-16T05:18:39.998 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-16T05:18:39.998 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-16T05:18:39.998 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.rate_limiter: (nil) 2024-09-16T05:18:39.998 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-16T05:18:39.999 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-16T05:18:39.999 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-16T05:18:39.999 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-16T05:18:39.999 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.unordered_write: 0 2024-09-16T05:18:39.999 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-16T05:18:39.999 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-16T05:18:39.999 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-16T05:18:39.999 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-16T05:18:39.999 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.row_cache: None 2024-09-16T05:18:39.999 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.wal_filter: None 2024-09-16T05:18:39.999 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-16T05:18:39.999 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-16T05:18:40.000 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.two_write_queues: 0 2024-09-16T05:18:40.000 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.manual_wal_flush: 0 2024-09-16T05:18:40.000 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.wal_compression: 0 2024-09-16T05:18:40.000 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.atomic_flush: 0 2024-09-16T05:18:40.000 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-16T05:18:40.000 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-16T05:18:40.001 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-16T05:18:40.001 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.log_readahead_size: 0 2024-09-16T05:18:40.001 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-16T05:18:40.001 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-16T05:18:40.001 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-16T05:18:40.001 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-16T05:18:40.001 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-16T05:18:40.001 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-16T05:18:40.001 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-16T05:18:40.001 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.max_background_jobs: 2 2024-09-16T05:18:40.001 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.max_background_compactions: -1 2024-09-16T05:18:40.002 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.max_subcompactions: 1 2024-09-16T05:18:40.002 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-16T05:18:40.002 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-16T05:18:40.002 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-16T05:18:40.002 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.max_total_wal_size: 0 2024-09-16T05:18:40.002 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-16T05:18:40.002 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-16T05:18:40.002 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-16T05:18:40.002 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-16T05:18:40.002 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.max_open_files: -1 2024-09-16T05:18:40.002 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.bytes_per_sync: 0 2024-09-16T05:18:40.002 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-16T05:18:40.003 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-16T05:18:40.003 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-16T05:18:40.003 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.max_background_flushes: -1 2024-09-16T05:18:40.003 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Compression algorithms supported: 2024-09-16T05:18:40.003 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: kZSTD supported: 0 2024-09-16T05:18:40.003 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: kXpressCompression supported: 0 2024-09-16T05:18:40.003 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: kBZip2Compression supported: 0 2024-09-16T05:18:40.003 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-16T05:18:40.003 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: kLZ4Compression supported: 1 2024-09-16T05:18:40.003 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: kZlibCompression supported: 1 2024-09-16T05:18:40.003 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-16T05:18:40.003 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: kSnappyCompression supported: 1 2024-09-16T05:18:40.003 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-16T05:18:40.004 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-16T05:18:40.004 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-c/store.db/MANIFEST-000005 2024-09-16T05:18:40.004 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-16T05:18:40.007 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-16T05:18:40.007 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.merge_operator: 2024-09-16T05:18:40.007 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.compaction_filter: None 2024-09-16T05:18:40.007 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.compaction_filter_factory: None 2024-09-16T05:18:40.007 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-16T05:18:40.008 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-16T05:18:40.008 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-16T05:18:40.008 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x5584f8757320) 2024-09-16T05:18:40.008 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cache_index_and_filter_blocks: 1 2024-09-16T05:18:40.008 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-16T05:18:40.008 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-16T05:18:40.008 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: pin_top_level_index_and_filter: 1 2024-09-16T05:18:40.008 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: index_type: 0 2024-09-16T05:18:40.008 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: data_block_index_type: 0 2024-09-16T05:18:40.008 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: index_shortening: 1 2024-09-16T05:18:40.008 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: data_block_hash_table_util_ratio: 0.750000 2024-09-16T05:18:40.009 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: checksum: 4 2024-09-16T05:18:40.009 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: no_block_cache: 0 2024-09-16T05:18:40.009 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: block_cache: 0x5584f874d1f0 2024-09-16T05:18:40.009 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: block_cache_name: BinnedLRUCache 2024-09-16T05:18:40.009 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: block_cache_options: 2024-09-16T05:18:40.009 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: capacity : 536870912 2024-09-16T05:18:40.009 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: num_shard_bits : 4 2024-09-16T05:18:40.009 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: strict_capacity_limit : 0 2024-09-16T05:18:40.009 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: high_pri_pool_ratio: 0.000 2024-09-16T05:18:40.009 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: block_cache_compressed: (nil) 2024-09-16T05:18:40.009 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: persistent_cache: (nil) 2024-09-16T05:18:40.009 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: block_size: 4096 2024-09-16T05:18:40.010 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: block_size_deviation: 10 2024-09-16T05:18:40.010 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: block_restart_interval: 16 2024-09-16T05:18:40.010 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: index_block_restart_interval: 1 2024-09-16T05:18:40.010 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: metadata_block_size: 4096 2024-09-16T05:18:40.010 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: partition_filters: 0 2024-09-16T05:18:40.010 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: use_delta_encoding: 1 2024-09-16T05:18:40.010 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: filter_policy: bloomfilter 2024-09-16T05:18:40.010 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: whole_key_filtering: 1 2024-09-16T05:18:40.010 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: verify_compression: 0 2024-09-16T05:18:40.010 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: read_amp_bytes_per_bit: 0 2024-09-16T05:18:40.010 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: format_version: 5 2024-09-16T05:18:40.010 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: enable_index_compression: 1 2024-09-16T05:18:40.011 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: block_align: 0 2024-09-16T05:18:40.011 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: max_auto_readahead_size: 262144 2024-09-16T05:18:40.011 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: prepopulate_block_cache: 0 2024-09-16T05:18:40.011 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: initial_auto_readahead_size: 8192 2024-09-16T05:18:40.011 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: num_file_reads_for_auto_readahead: 2 2024-09-16T05:18:40.011 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-16T05:18:40.011 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-16T05:18:40.011 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.compression: NoCompression 2024-09-16T05:18:40.011 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-16T05:18:40.011 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-16T05:18:40.012 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-16T05:18:40.012 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.num_levels: 7 2024-09-16T05:18:40.012 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-16T05:18:40.012 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-16T05:18:40.012 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-16T05:18:40.012 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-16T05:18:40.012 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-16T05:18:40.012 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-16T05:18:40.012 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-16T05:18:40.012 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-16T05:18:40.012 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-16T05:18:40.012 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-16T05:18:40.013 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-16T05:18:40.013 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-16T05:18:40.013 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-16T05:18:40.013 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.compression_opts.level: 32767 2024-09-16T05:18:40.013 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-16T05:18:40.013 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-16T05:18:40.013 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-16T05:18:40.013 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-16T05:18:40.013 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-16T05:18:40.013 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.compression_opts.enabled: false 2024-09-16T05:18:40.013 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-16T05:18:40.013 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-16T05:18:40.013 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-16T05:18:40.013 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-16T05:18:40.014 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-16T05:18:40.014 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-16T05:18:40.014 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-16T05:18:40.014 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-16T05:18:40.014 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-16T05:18:40.014 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-16T05:18:40.014 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-16T05:18:40.014 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-16T05:18:40.014 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-16T05:18:40.014 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-16T05:18:40.014 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-16T05:18:40.014 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-16T05:18:40.015 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-16T05:18:40.015 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-16T05:18:40.015 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-16T05:18:40.015 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.arena_block_size: 1048576 2024-09-16T05:18:40.015 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-16T05:18:40.015 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-16T05:18:40.015 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-16T05:18:40.015 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-16T05:18:40.015 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-16T05:18:40.015 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-16T05:18:40.015 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-16T05:18:40.015 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-16T05:18:40.015 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-16T05:18:40.015 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-16T05:18:40.016 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-16T05:18:40.016 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-16T05:18:40.016 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-16T05:18:40.016 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-16T05:18:40.016 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.inplace_update_support: 0 2024-09-16T05:18:40.016 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-16T05:18:40.016 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-16T05:18:40.016 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-16T05:18:40.016 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-16T05:18:40.016 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.bloom_locality: 0 2024-09-16T05:18:40.016 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.max_successive_merges: 0 2024-09-16T05:18:40.016 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-16T05:18:40.017 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-16T05:18:40.017 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.force_consistency_checks: 1 2024-09-16T05:18:40.017 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-16T05:18:40.017 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.ttl: 2592000 2024-09-16T05:18:40.017 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-16T05:18:40.017 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-16T05:18:40.017 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-16T05:18:40.017 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.enable_blob_files: false 2024-09-16T05:18:40.017 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.min_blob_size: 0 2024-09-16T05:18:40.017 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.blob_file_size: 268435456 2024-09-16T05:18:40.017 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-16T05:18:40.017 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-16T05:18:40.017 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-16T05:18:40.017 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-16T05:18:40.018 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-16T05:18:40.018 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-16T05:18:40.018 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-16T05:18:40.018 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-c/store.db/MANIFEST-000005 succeeded,manifest_file_number is 5, next_file_number is 7, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-09-16T05:18:40.018 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-16T05:18:40.018 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 558b37f9-cbf7-4ac3-aba3-a5173d6160b7 2024-09-16T05:18:40.018 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726463919703152, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-09-16T05:18:40.018 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2024-09-16T05:18:40.018 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726463919703701, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 8, "file_size": 1648, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 1, "largest_seqno": 5, "table_properties": {"data_size": 523, "index_size": 31, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 69, "raw_key_size": 115, "raw_average_key_size": 23, "raw_value_size": 401, "raw_average_value_size": 80, "num_data_blocks": 1, "num_entries": 5, "num_filter_entries": 5, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1726463919, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "558b37f9-cbf7-4ac3-aba3-a5173d6160b7", "db_session_id": "QF677FLM8O0Q8IPVN3Q6", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2024-09-16T05:18:40.018 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726463919703900, "job": 1, "event": "recovery_finished"} 2024-09-16T05:18:40.018 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.698+0000 7f6285c93c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 10 2024-09-16T05:18:40.018 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.702+0000 7f6285c93c80 4 rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-c/store.db/000004.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-16T05:18:40.018 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.702+0000 7f6285c93c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x5584f8778e00 2024-09-16T05:18:40.019 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.702+0000 7f6285c93c80 4 rocksdb: DB pointer 0x5584f8878000 2024-09-16T05:18:40.019 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.702+0000 7f627ba5c640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-16T05:18:40.019 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.702+0000 7f627ba5c640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-16T05:18:40.019 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: ** DB Stats ** 2024-09-16T05:18:40.019 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-16T05:18:40.019 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-09-16T05:18:40.019 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-16T05:18:40.019 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-16T05:18:40.019 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-09-16T05:18:40.019 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-16T05:18:40.019 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-16T05:18:40.019 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: ** Compaction Stats [default] ** 2024-09-16T05:18:40.019 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-16T05:18:40.019 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-16T05:18:40.020 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: L0 1/0 1.61 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-16T05:18:40.020 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: Sum 1/0 1.61 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-16T05:18:40.020 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-16T05:18:40.020 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: ** Compaction Stats [default] ** 2024-09-16T05:18:40.020 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-16T05:18:40.020 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-16T05:18:40.020 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-16T05:18:40.020 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-16T05:18:40.020 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-16T05:18:40.020 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: Flush(GB): cumulative 0.000, interval 0.000 2024-09-16T05:18:40.020 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-16T05:18:40.020 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: AddFile(Total Files): cumulative 0, interval 0 2024-09-16T05:18:40.020 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: AddFile(L0 Files): cumulative 0, interval 0 2024-09-16T05:18:40.021 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: AddFile(Keys): cumulative 0, interval 0 2024-09-16T05:18:40.021 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: Cumulative compaction: 0.00 GB write, 0.40 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-16T05:18:40.021 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: Interval compaction: 0.00 GB write, 0.40 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-16T05:18:40.021 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-09-16T05:18:40.021 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: Block cache BinnedLRUCache@0x5584f874d1f0#7 capacity: 512.00 MB usage: 0.22 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.7e-05 secs_since: 0 2024-09-16T05:18:40.021 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: Block cache entry stats(count,size,portion): FilterBlock(1,0.11 KB,2.08616e-05%) IndexBlock(1,0.11 KB,2.08616e-05%) Misc(1,0.00 KB,0%) 2024-09-16T05:18:40.021 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: ** File Read Latency Histogram By Level [default] ** 2024-09-16T05:18:40.021 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.702+0000 7f6285c93c80 0 mon.c does not exist in monmap, will attempt to join an existing cluster 2024-09-16T05:18:40.021 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.702+0000 7f6285c93c80 0 using public_addr v2:172.21.15.167:0/0 -> [v2:172.21.15.167:3300/0,v1:172.21.15.167:6789/0] 2024-09-16T05:18:40.021 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.702+0000 7f6285c93c80 0 starting mon.c rank -1 at public addrs [v2:172.21.15.167:3300/0,v1:172.21.15.167:6789/0] at bind addrs [v2:172.21.15.167:3300/0,v1:172.21.15.167:6789/0] mon_data /var/lib/ceph/mon/ceph-c fsid 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:18:40.021 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.702+0000 7f6285c93c80 1 mon.c@-1(???) e0 preinit fsid 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:18:40.021 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.734+0000 7f627ea62640 0 mon.c@-1(synchronizing).mds e1 new map 2024-09-16T05:18:40.022 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.734+0000 7f627ea62640 0 mon.c@-1(synchronizing).mds e1 print_map 2024-09-16T05:18:40.022 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: e1 2024-09-16T05:18:40.022 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: btime 2024-09-16T05:16:01:137996+0000 2024-09-16T05:18:40.022 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: enable_multiple, ever_enabled_multiple: 1,1 2024-09-16T05:18:40.022 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2024-09-16T05:18:40.022 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: legacy client fscid: -1 2024-09-16T05:18:40.022 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: 2024-09-16T05:18:40.022 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: No filesystems configured 2024-09-16T05:18:40.022 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.734+0000 7f627ea62640 1 mon.c@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-09-16T05:18:40.022 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.734+0000 7f627ea62640 1 mon.c@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-09-16T05:18:40.022 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.734+0000 7f627ea62640 1 mon.c@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-09-16T05:18:40.022 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.734+0000 7f627ea62640 1 mon.c@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-09-16T05:18:40.022 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.734+0000 7f627ea62640 1 mon.c@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-09-16T05:18:40.022 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.734+0000 7f627ea62640 1 mon.c@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-09-16T05:18:40.023 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.738+0000 7f627ea62640 0 mon.c@-1(synchronizing).osd e4 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-16T05:18:40.023 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.738+0000 7f627ea62640 0 mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-16T05:18:40.023 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.738+0000 7f627ea62640 0 mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-16T05:18:40.023 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.738+0000 7f627ea62640 0 mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-16T05:18:40.023 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:27.445026+0000 mon.a (mon.0) 118 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.023 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:28.349695+0000 mon.a (mon.0) 119 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.023 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:31.286271+0000 mon.a (mon.0) 120 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.023 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:31.290381+0000 mon.a (mon.0) 121 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.023 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:32.935252+0000 mon.a (mon.0) 122 : audit [INF] from='client.? 172.21.15.29:0/729522403' entity='client.admin' 2024-09-16T05:18:40.023 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:32.951718+0000 mon.a (mon.0) 123 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:18:40.023 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:32.956407+0000 mon.a (mon.0) 124 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.023 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:17:33.288226+0000 mgr.a (mgr.14150) 11 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.023 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:17:35.288647+0000 mgr.a (mgr.14150) 12 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.024 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:17:37.289042+0000 mgr.a (mgr.14150) 13 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.024 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:17:39.289525+0000 mgr.a (mgr.14150) 14 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.024 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:40.054209+0000 mgr.a (mgr.14150) 15 : audit [DBG] from='client.14172 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:18:40.024 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:40.057049+0000 mon.a (mon.0) 125 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.024 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:40.057744+0000 mon.a (mon.0) 126 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:18:40.024 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:40.059563+0000 mon.a (mon.0) 127 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:40.024 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:40.060322+0000 mon.a (mon.0) 128 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:18:40.024 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cephadm 2024-09-16T05:17:40.061325+0000 mgr.a (mgr.14150) 16 : cephadm [INF] Updating smithi029:/etc/ceph/ceph.conf 2024-09-16T05:18:40.024 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cephadm 2024-09-16T05:17:40.147936+0000 mgr.a (mgr.14150) 17 : cephadm [INF] Updating smithi029:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T05:18:40.024 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cephadm 2024-09-16T05:17:40.234713+0000 mgr.a (mgr.14150) 18 : cephadm [INF] Updating smithi029:/etc/ceph/ceph.client.admin.keyring 2024-09-16T05:18:40.025 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:40.541915+0000 mon.a (mon.0) 129 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.025 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:40.544989+0000 mon.a (mon.0) 130 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.025 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cephadm 2024-09-16T05:17:40.364882+0000 mgr.a (mgr.14150) 19 : cephadm [INF] Updating smithi029:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-16T05:18:40.025 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:41.391851+0000 mon.a (mon.0) 131 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.025 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:41.396821+0000 mon.a (mon.0) 132 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.025 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:17:41.289971+0000 mgr.a (mgr.14150) 20 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.025 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:17:43.290340+0000 mgr.a (mgr.14150) 21 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.025 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:17:45.290756+0000 mgr.a (mgr.14150) 22 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.025 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:17:47.291102+0000 mgr.a (mgr.14150) 23 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.025 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:47.752775+0000 mgr.a (mgr.14150) 24 : audit [DBG] from='client.14174 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi081", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:18:40.025 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cephadm 2024-09-16T05:17:49.046233+0000 mgr.a (mgr.14150) 25 : cephadm [INF] Deploying cephadm binary to smithi081 2024-09-16T05:18:40.025 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:17:49.291502+0000 mgr.a (mgr.14150) 26 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.026 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:51.011711+0000 mon.a (mon.0) 133 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.026 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:51.020322+0000 mon.a (mon.0) 134 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.026 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:51.030315+0000 mon.a (mon.0) 135 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.026 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:17:51.291901+0000 mgr.a (mgr.14150) 27 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.026 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:52.699721+0000 mon.a (mon.0) 136 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.026 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:52.701523+0000 mon.a (mon.0) 137 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:18:40.026 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cephadm 2024-09-16T05:17:52.700678+0000 mgr.a (mgr.14150) 28 : cephadm [INF] Added host smithi081 2024-09-16T05:18:40.026 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:53.203410+0000 mon.a (mon.0) 138 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.026 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:17:53.292290+0000 mgr.a (mgr.14150) 29 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.026 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:54.736081+0000 mon.a (mon.0) 139 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.026 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:54.741528+0000 mon.a (mon.0) 140 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.026 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:54.743075+0000 mon.a (mon.0) 141 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi081", "name": "osd_memory_target"}]: dispatch 2024-09-16T05:18:40.026 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:54.745211+0000 mon.a (mon.0) 142 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:40.027 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:54.747081+0000 mon.a (mon.0) 143 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:18:40.027 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cephadm 2024-09-16T05:17:54.749496+0000 mgr.a (mgr.14150) 30 : cephadm [INF] Updating smithi081:/etc/ceph/ceph.conf 2024-09-16T05:18:40.027 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cephadm 2024-09-16T05:17:54.934020+0000 mgr.a (mgr.14150) 31 : cephadm [INF] Updating smithi081:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T05:18:40.027 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cephadm 2024-09-16T05:17:55.094693+0000 mgr.a (mgr.14150) 32 : cephadm [INF] Updating smithi081:/etc/ceph/ceph.client.admin.keyring 2024-09-16T05:18:40.027 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cephadm 2024-09-16T05:17:55.240592+0000 mgr.a (mgr.14150) 33 : cephadm [INF] Updating smithi081:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-16T05:18:40.027 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:55.389876+0000 mon.a (mon.0) 144 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.027 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:55.395910+0000 mon.a (mon.0) 145 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.027 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:55.398664+0000 mon.a (mon.0) 146 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi081", "caps": []}]: dispatch 2024-09-16T05:18:40.027 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:55.400028+0000 mon.a (mon.0) 147 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi081", "caps": []}]': finished 2024-09-16T05:18:40.027 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:17:55.292675+0000 mgr.a (mgr.14150) 34 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.027 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cephadm 2024-09-16T05:17:56.282393+0000 mgr.a (mgr.14150) 35 : cephadm [INF] Deploying daemon agent.smithi081 on smithi081 2024-09-16T05:18:40.027 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:57.332012+0000 mon.a (mon.0) 148 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.027 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:57.337933+0000 mon.a (mon.0) 149 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.028 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:57.342877+0000 mon.a (mon.0) 150 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.028 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:57.401953+0000 mon.a (mon.0) 151 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:18:40.028 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:57.406161+0000 mon.a (mon.0) 152 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:40.028 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:57.407996+0000 mon.a (mon.0) 153 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:18:40.028 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:57.416429+0000 mon.a (mon.0) 154 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.028 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:57.475861+0000 mon.a (mon.0) 155 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:18:40.028 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:57.480263+0000 mon.a (mon.0) 156 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:40.028 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:57.482188+0000 mon.a (mon.0) 157 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:18:40.028 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:57.489034+0000 mon.a (mon.0) 158 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.028 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:57.871350+0000 mon.a (mon.0) 159 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.028 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:17:57.293071+0000 mgr.a (mgr.14150) 36 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.029 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:58.356071+0000 mon.a (mon.0) 160 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.029 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:58.940529+0000 mon.a (mon.0) 161 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.029 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:17:58.947977+0000 mon.a (mon.0) 162 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.029 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:17:59.293543+0000 mgr.a (mgr.14150) 37 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.029 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:00.196043+0000 mgr.a (mgr.14150) 38 : audit [DBG] from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T05:18:40.029 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:18:01.293855+0000 mgr.a (mgr.14150) 39 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.029 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:18:03.294194+0000 mgr.a (mgr.14150) 40 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.029 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:18:05.294620+0000 mgr.a (mgr.14150) 41 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.029 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:18:07.295063+0000 mgr.a (mgr.14150) 42 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.029 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:08.248146+0000 mgr.a (mgr.14150) 43 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi167", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:18:40.029 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:18:09.295343+0000 mgr.a (mgr.14150) 44 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.029 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cephadm 2024-09-16T05:18:09.531560+0000 mgr.a (mgr.14150) 45 : cephadm [INF] Deploying cephadm binary to smithi167 2024-09-16T05:18:40.029 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:11.234806+0000 mon.a (mon.0) 163 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.030 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:11.244949+0000 mon.a (mon.0) 164 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.030 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:11.255683+0000 mon.a (mon.0) 165 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.030 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:12.141580+0000 mon.a (mon.0) 166 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.030 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:12.147825+0000 mon.a (mon.0) 167 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.030 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:18:11.295666+0000 mgr.a (mgr.14150) 46 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.030 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:13.176930+0000 mon.a (mon.0) 168 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.030 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:13.178525+0000 mon.a (mon.0) 169 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:18:40.030 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cephadm 2024-09-16T05:18:13.177762+0000 mgr.a (mgr.14150) 47 : cephadm [INF] Added host smithi167 2024-09-16T05:18:40.030 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:13.727988+0000 mon.a (mon.0) 170 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.030 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:18:13.296060+0000 mgr.a (mgr.14150) 48 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.030 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:15.258063+0000 mon.a (mon.0) 171 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.030 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:15.264301+0000 mon.a (mon.0) 172 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.030 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:15.265626+0000 mon.a (mon.0) 173 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi167", "name": "osd_memory_target"}]: dispatch 2024-09-16T05:18:40.031 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:15.267594+0000 mon.a (mon.0) 174 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:40.031 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:15.269262+0000 mon.a (mon.0) 175 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:18:40.031 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:15.918340+0000 mon.a (mon.0) 176 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.031 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:15.924339+0000 mon.a (mon.0) 177 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.031 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:15.927419+0000 mon.a (mon.0) 178 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi167", "caps": []}]: dispatch 2024-09-16T05:18:40.031 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:15.928673+0000 mon.a (mon.0) 179 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi167", "caps": []}]': finished 2024-09-16T05:18:40.031 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cephadm 2024-09-16T05:18:15.271796+0000 mgr.a (mgr.14150) 49 : cephadm [INF] Updating smithi167:/etc/ceph/ceph.conf 2024-09-16T05:18:40.031 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:18:15.296461+0000 mgr.a (mgr.14150) 50 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.031 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cephadm 2024-09-16T05:18:15.460508+0000 mgr.a (mgr.14150) 51 : cephadm [INF] Updating smithi167:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T05:18:40.031 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cephadm 2024-09-16T05:18:15.623216+0000 mgr.a (mgr.14150) 52 : cephadm [INF] Updating smithi167:/etc/ceph/ceph.client.admin.keyring 2024-09-16T05:18:40.031 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cephadm 2024-09-16T05:18:15.770873+0000 mgr.a (mgr.14150) 53 : cephadm [INF] Updating smithi167:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-16T05:18:40.031 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cephadm 2024-09-16T05:18:16.865221+0000 mgr.a (mgr.14150) 54 : cephadm [INF] Deploying daemon agent.smithi167 on smithi167 2024-09-16T05:18:40.031 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:17.941006+0000 mon.a (mon.0) 180 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.032 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:17.946461+0000 mon.a (mon.0) 181 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.032 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:17.952121+0000 mon.a (mon.0) 182 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.032 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:18.037870+0000 mon.a (mon.0) 183 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:18:40.032 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:18.042519+0000 mon.a (mon.0) 184 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:40.032 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:18.044365+0000 mon.a (mon.0) 185 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:18:40.032 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:18.051271+0000 mon.a (mon.0) 186 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.032 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:18.140417+0000 mon.a (mon.0) 187 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:18:40.032 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:18.145367+0000 mon.a (mon.0) 188 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:40.032 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:18.147285+0000 mon.a (mon.0) 189 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:18:40.032 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:18.155709+0000 mon.a (mon.0) 190 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.032 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:18:17.296812+0000 mgr.a (mgr.14150) 55 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.032 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:18.362426+0000 mon.a (mon.0) 191 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.033 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:18.494576+0000 mon.a (mon.0) 192 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.033 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:18.519473+0000 mon.a (mon.0) 193 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.033 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:18.525251+0000 mon.a (mon.0) 194 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.033 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:18.532995+0000 mon.a (mon.0) 195 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.033 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:18:19.297149+0000 mgr.a (mgr.14150) 56 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.033 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:19.561300+0000 mon.a (mon.0) 196 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.033 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:19.565759+0000 mon.a (mon.0) 197 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.033 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:20.630604+0000 mgr.a (mgr.14150) 57 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T05:18:40.033 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:18:21.297601+0000 mgr.a (mgr.14150) 58 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.033 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:18:23.297941+0000 mgr.a (mgr.14150) 59 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.033 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:18:25.298367+0000 mgr.a (mgr.14150) 60 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.033 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:18:27.298795+0000 mgr.a (mgr.14150) 61 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.033 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:28.483468+0000 mon.a (mon.0) 198 : audit [INF] from='client.? 172.21.15.29:0/1426165507' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-16T05:18:40.034 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:28.571887+0000 mon.a (mon.0) 199 : audit [INF] from='client.? 172.21.15.29:0/1426165507' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-16T05:18:40.034 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:18:28.575941+0000 mon.a (mon.0) 200 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-16T05:18:40.034 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:18:29.299237+0000 mgr.a (mgr.14150) 62 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.034 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:18:31.299693+0000 mgr.a (mgr.14150) 63 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.034 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:31.483449+0000 mon.a (mon.0) 201 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.034 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:31.489436+0000 mon.a (mon.0) 202 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.034 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:31.496858+0000 mon.a (mon.0) 203 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.034 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:32.171710+0000 mgr.a (mgr.14150) 64 : audit [DBG] from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi029:172.21.15.29=a;smithi081:172.21.15.81=b;smithi167:172.21.15.167=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:18:40.034 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cephadm 2024-09-16T05:18:32.176962+0000 mgr.a (mgr.14150) 65 : cephadm [INF] Saving service mon spec with placement smithi029:172.21.15.29=a;smithi081:172.21.15.81=b;smithi167:172.21.15.167=c;count:3 2024-09-16T05:18:40.034 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:32.182161+0000 mon.a (mon.0) 204 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.034 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:32.183671+0000 mon.a (mon.0) 205 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:18:40.034 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:32.189445+0000 mon.a (mon.0) 206 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:40.034 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:32.191751+0000 mon.a (mon.0) 207 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:18:40.034 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:32.199296+0000 mon.a (mon.0) 208 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.035 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:32.203855+0000 mon.a (mon.0) 209 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T05:18:40.035 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:32.205547+0000 mon.a (mon.0) 210 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:40.035 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cephadm 2024-09-16T05:18:32.207693+0000 mgr.a (mgr.14150) 66 : cephadm [INF] Deploying daemon mon.c on smithi167 2024-09-16T05:18:40.035 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:33.040184+0000 mon.a (mon.0) 211 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.035 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:33.047789+0000 mon.a (mon.0) 212 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.035 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:18:33.300111+0000 mgr.a (mgr.14150) 67 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.035 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:18:35.300499+0000 mgr.a (mgr.14150) 68 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.035 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:36.246825+0000 mon.a (mon.0) 213 : audit [DBG] from='client.? 172.21.15.167:0/2592936711' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-16T05:18:40.035 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: cluster 2024-09-16T05:18:37.300915+0000 mgr.a (mgr.14150) 69 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:40.035 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:38.293498+0000 mon.a (mon.0) 214 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.035 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:38.299249+0000 mon.a (mon.0) 215 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.035 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:38.305278+0000 mon.a (mon.0) 216 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.035 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:38.306648+0000 mon.a (mon.0) 217 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T05:18:40.036 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:38.308561+0000 mon.a (mon.0) 218 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:40.036 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:38.693670+0000 mon.a (mon.0) 219 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.036 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:38.699397+0000 mon.a (mon.0) 220 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.036 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: audit 2024-09-16T05:18:38.707029+0000 mon.a (mon.0) 221 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:40.036 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:39 smithi167 bash[23275]: debug 2024-09-16T05:18:39.738+0000 7f627ea62640 1 mon.c@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2024-09-16T05:18:42.869 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:42 smithi081 systemd[1]: Started Ceph mon.b for 825322c2-73ea-11ef-bceb-c7b262605968. 2024-09-16T05:18:43.788 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.775+0000 7fa4cdf2fc80 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-16T05:18:43.788 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.775+0000 7fa4cdf2fc80 0 ceph version 19.1.1-326-g8921c8ef (8921c8ef947807b717db041d85f0761b7914d5fc) squid (stable), process ceph-mon, pid 7 2024-09-16T05:18:43.788 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.775+0000 7fa4cdf2fc80 0 pidfile_write: ignore empty --pid-file 2024-09-16T05:18:43.788 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.775+0000 7fa4cdf2fc80 0 load: jerasure load: lrc 2024-09-16T05:18:43.788 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: RocksDB version: 7.9.2 2024-09-16T05:18:43.788 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Git sha 0 2024-09-16T05:18:43.788 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Compile date 2024-09-15 15:04:35 2024-09-16T05:18:43.788 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: DB SUMMARY 2024-09-16T05:18:43.788 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: DB Session ID: 6NPF7GHMLB2DFGKGJMT0 2024-09-16T05:18:43.789 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: CURRENT file: CURRENT 2024-09-16T05:18:43.789 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: IDENTITY file: IDENTITY 2024-09-16T05:18:43.789 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2024-09-16T05:18:43.789 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-b/store.db dir, Total Num: 0, files: 2024-09-16T05:18:43.789 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-b/store.db: 000004.log size: 511 ; 2024-09-16T05:18:43.789 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.error_if_exists: 0 2024-09-16T05:18:43.789 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.create_if_missing: 0 2024-09-16T05:18:43.789 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.paranoid_checks: 1 2024-09-16T05:18:43.789 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-16T05:18:43.789 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-16T05:18:43.789 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-16T05:18:43.789 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.env: 0x55b8721f8940 2024-09-16T05:18:43.790 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.fs: PosixFileSystem 2024-09-16T05:18:43.790 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.info_log: 0x55b87325f6e0 2024-09-16T05:18:43.790 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-16T05:18:43.790 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.statistics: (nil) 2024-09-16T05:18:43.790 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.use_fsync: 0 2024-09-16T05:18:43.790 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.max_log_file_size: 0 2024-09-16T05:18:43.790 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-16T05:18:43.790 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-16T05:18:43.790 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-16T05:18:43.790 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-16T05:18:43.790 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.allow_fallocate: 1 2024-09-16T05:18:43.790 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-16T05:18:43.790 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-16T05:18:43.791 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.use_direct_reads: 0 2024-09-16T05:18:43.791 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-16T05:18:43.791 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.create_missing_column_families: 0 2024-09-16T05:18:43.791 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.db_log_dir: 2024-09-16T05:18:43.791 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.wal_dir: 2024-09-16T05:18:43.791 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-16T05:18:43.791 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-16T05:18:43.791 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-16T05:18:43.791 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-16T05:18:43.791 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-16T05:18:43.791 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-16T05:18:43.791 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.advise_random_on_open: 1 2024-09-16T05:18:43.791 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-16T05:18:43.791 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.write_buffer_manager: 0x55b87326edc0 2024-09-16T05:18:43.792 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-16T05:18:43.792 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-16T05:18:43.792 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-16T05:18:43.792 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.rate_limiter: (nil) 2024-09-16T05:18:43.792 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-16T05:18:43.792 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-16T05:18:43.794 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-16T05:18:43.794 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-16T05:18:43.794 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.unordered_write: 0 2024-09-16T05:18:43.794 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-16T05:18:43.794 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-16T05:18:43.794 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-16T05:18:43.794 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-16T05:18:43.794 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.row_cache: None 2024-09-16T05:18:43.794 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.wal_filter: None 2024-09-16T05:18:43.794 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-16T05:18:43.794 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-16T05:18:43.795 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.two_write_queues: 0 2024-09-16T05:18:43.795 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.manual_wal_flush: 0 2024-09-16T05:18:43.795 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.wal_compression: 0 2024-09-16T05:18:43.795 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.atomic_flush: 0 2024-09-16T05:18:43.795 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-16T05:18:43.796 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-16T05:18:43.796 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-16T05:18:43.796 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.log_readahead_size: 0 2024-09-16T05:18:43.796 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-16T05:18:43.796 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-16T05:18:43.796 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-16T05:18:43.796 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-16T05:18:43.796 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-16T05:18:43.796 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-16T05:18:43.796 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-16T05:18:43.796 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.max_background_jobs: 2 2024-09-16T05:18:43.796 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.max_background_compactions: -1 2024-09-16T05:18:43.796 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.max_subcompactions: 1 2024-09-16T05:18:43.797 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-16T05:18:43.797 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-16T05:18:43.797 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-16T05:18:43.797 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.max_total_wal_size: 0 2024-09-16T05:18:43.797 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-16T05:18:43.797 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-16T05:18:43.797 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-16T05:18:43.797 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-16T05:18:43.797 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.max_open_files: -1 2024-09-16T05:18:43.797 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.bytes_per_sync: 0 2024-09-16T05:18:43.797 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-16T05:18:43.797 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-16T05:18:43.797 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-16T05:18:43.798 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.max_background_flushes: -1 2024-09-16T05:18:43.798 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Compression algorithms supported: 2024-09-16T05:18:43.798 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: kZSTD supported: 0 2024-09-16T05:18:43.798 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: kXpressCompression supported: 0 2024-09-16T05:18:43.798 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: kBZip2Compression supported: 0 2024-09-16T05:18:43.798 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-16T05:18:43.798 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: kLZ4Compression supported: 1 2024-09-16T05:18:43.798 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: kZlibCompression supported: 1 2024-09-16T05:18:43.798 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-16T05:18:43.798 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: kSnappyCompression supported: 1 2024-09-16T05:18:43.798 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-16T05:18:43.798 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-16T05:18:43.798 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-b/store.db/MANIFEST-000005 2024-09-16T05:18:43.799 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-16T05:18:43.799 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-16T05:18:43.799 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.merge_operator: 2024-09-16T05:18:43.799 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.compaction_filter: None 2024-09-16T05:18:43.799 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.compaction_filter_factory: None 2024-09-16T05:18:43.799 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-16T05:18:43.799 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-16T05:18:43.799 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-16T05:18:43.799 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55b87325f320) 2024-09-16T05:18:43.799 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cache_index_and_filter_blocks: 1 2024-09-16T05:18:43.800 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-16T05:18:43.800 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-16T05:18:43.800 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: pin_top_level_index_and_filter: 1 2024-09-16T05:18:43.800 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: index_type: 0 2024-09-16T05:18:43.800 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: data_block_index_type: 0 2024-09-16T05:18:43.800 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: index_shortening: 1 2024-09-16T05:18:43.800 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: data_block_hash_table_util_ratio: 0.750000 2024-09-16T05:18:43.800 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: checksum: 4 2024-09-16T05:18:43.800 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: no_block_cache: 0 2024-09-16T05:18:43.800 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: block_cache: 0x55b8732551f0 2024-09-16T05:18:43.800 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: block_cache_name: BinnedLRUCache 2024-09-16T05:18:43.800 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: block_cache_options: 2024-09-16T05:18:43.800 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: capacity : 536870912 2024-09-16T05:18:43.801 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: num_shard_bits : 4 2024-09-16T05:18:43.801 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: strict_capacity_limit : 0 2024-09-16T05:18:43.801 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: high_pri_pool_ratio: 0.000 2024-09-16T05:18:43.801 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: block_cache_compressed: (nil) 2024-09-16T05:18:43.801 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: persistent_cache: (nil) 2024-09-16T05:18:43.801 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: block_size: 4096 2024-09-16T05:18:43.801 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: block_size_deviation: 10 2024-09-16T05:18:43.801 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: block_restart_interval: 16 2024-09-16T05:18:43.801 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: index_block_restart_interval: 1 2024-09-16T05:18:43.801 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: metadata_block_size: 4096 2024-09-16T05:18:43.801 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: partition_filters: 0 2024-09-16T05:18:43.802 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: use_delta_encoding: 1 2024-09-16T05:18:43.802 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: filter_policy: bloomfilter 2024-09-16T05:18:43.802 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: whole_key_filtering: 1 2024-09-16T05:18:43.802 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: verify_compression: 0 2024-09-16T05:18:43.802 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: read_amp_bytes_per_bit: 0 2024-09-16T05:18:43.802 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: format_version: 5 2024-09-16T05:18:43.802 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: enable_index_compression: 1 2024-09-16T05:18:43.802 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: block_align: 0 2024-09-16T05:18:43.802 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: max_auto_readahead_size: 262144 2024-09-16T05:18:43.802 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: prepopulate_block_cache: 0 2024-09-16T05:18:43.802 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: initial_auto_readahead_size: 8192 2024-09-16T05:18:43.802 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: num_file_reads_for_auto_readahead: 2 2024-09-16T05:18:43.802 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-16T05:18:43.802 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-16T05:18:43.803 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.compression: NoCompression 2024-09-16T05:18:43.803 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-16T05:18:43.803 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-16T05:18:43.803 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-16T05:18:43.803 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.num_levels: 7 2024-09-16T05:18:43.803 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-16T05:18:43.803 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-16T05:18:43.803 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-16T05:18:43.803 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-16T05:18:43.803 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-16T05:18:43.803 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-16T05:18:43.803 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-16T05:18:43.803 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-16T05:18:43.804 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-16T05:18:43.804 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-16T05:18:43.804 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-16T05:18:43.804 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-16T05:18:43.804 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-16T05:18:43.804 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.compression_opts.level: 32767 2024-09-16T05:18:43.804 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-16T05:18:43.804 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-16T05:18:43.804 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-16T05:18:43.804 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-16T05:18:43.804 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-16T05:18:43.804 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.compression_opts.enabled: false 2024-09-16T05:18:43.804 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-16T05:18:43.805 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-16T05:18:43.805 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-16T05:18:43.805 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-16T05:18:43.805 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-16T05:18:43.805 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-16T05:18:43.805 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-16T05:18:43.805 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-16T05:18:43.805 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-16T05:18:43.805 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-16T05:18:43.805 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-16T05:18:43.805 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-16T05:18:43.805 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-16T05:18:43.805 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-16T05:18:43.806 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-16T05:18:43.806 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-16T05:18:43.806 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-16T05:18:43.806 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-16T05:18:43.806 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-16T05:18:43.806 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.arena_block_size: 1048576 2024-09-16T05:18:43.806 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-16T05:18:43.806 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-16T05:18:43.806 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-16T05:18:43.806 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-16T05:18:43.806 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-16T05:18:43.806 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-16T05:18:43.806 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-16T05:18:43.806 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-16T05:18:43.807 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-16T05:18:43.807 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-16T05:18:43.807 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-16T05:18:43.807 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-16T05:18:43.807 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-16T05:18:43.807 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-16T05:18:43.807 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.inplace_update_support: 0 2024-09-16T05:18:43.807 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-16T05:18:43.807 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-16T05:18:43.807 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-16T05:18:43.807 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-16T05:18:43.807 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.bloom_locality: 0 2024-09-16T05:18:43.807 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.max_successive_merges: 0 2024-09-16T05:18:43.807 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-16T05:18:43.808 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-16T05:18:43.808 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.force_consistency_checks: 1 2024-09-16T05:18:43.808 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-16T05:18:43.808 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.ttl: 2592000 2024-09-16T05:18:43.808 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-16T05:18:43.808 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-16T05:18:43.808 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-16T05:18:43.808 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.enable_blob_files: false 2024-09-16T05:18:43.808 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.min_blob_size: 0 2024-09-16T05:18:43.808 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.blob_file_size: 268435456 2024-09-16T05:18:43.808 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-16T05:18:43.808 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-16T05:18:43.808 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-16T05:18:43.809 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-16T05:18:43.809 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-16T05:18:43.809 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-16T05:18:43.809 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-16T05:18:43.809 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-b/store.db/MANIFEST-000005 succeeded,manifest_file_number is 5, next_file_number is 7, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-09-16T05:18:43.809 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-16T05:18:43.809 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: f64f33a6-dd98-44c7-a1aa-7cd2888eb2fa 2024-09-16T05:18:43.809 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726463923782585, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-09-16T05:18:43.809 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2024-09-16T05:18:43.809 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726463923783027, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 8, "file_size": 1648, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 1, "largest_seqno": 5, "table_properties": {"data_size": 523, "index_size": 31, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 69, "raw_key_size": 115, "raw_average_key_size": 23, "raw_value_size": 401, "raw_average_value_size": 80, "num_data_blocks": 1, "num_entries": 5, "num_filter_entries": 5, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1726463923, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "f64f33a6-dd98-44c7-a1aa-7cd2888eb2fa", "db_session_id": "6NPF7GHMLB2DFGKGJMT0", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2024-09-16T05:18:43.809 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726463923783147, "job": 1, "event": "recovery_finished"} 2024-09-16T05:18:43.809 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 10 2024-09-16T05:18:43.809 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-b/store.db/000004.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-16T05:18:43.809 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55b873280e00 2024-09-16T05:18:43.810 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.779+0000 7fa4cdf2fc80 4 rocksdb: DB pointer 0x55b873380000 2024-09-16T05:18:43.810 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.783+0000 7fa4c3cf8640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-16T05:18:43.810 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.783+0000 7fa4c3cf8640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-16T05:18:43.810 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: ** DB Stats ** 2024-09-16T05:18:43.810 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-16T05:18:43.810 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-09-16T05:18:43.810 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-16T05:18:43.810 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-16T05:18:43.810 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-09-16T05:18:43.810 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-16T05:18:43.810 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-16T05:18:43.810 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: ** Compaction Stats [default] ** 2024-09-16T05:18:43.810 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-16T05:18:43.810 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-16T05:18:43.811 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: L0 1/0 1.61 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.8 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-16T05:18:43.811 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: Sum 1/0 1.61 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.8 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-16T05:18:43.811 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.8 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-16T05:18:43.811 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: ** Compaction Stats [default] ** 2024-09-16T05:18:43.811 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-16T05:18:43.811 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-16T05:18:43.811 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.8 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-16T05:18:43.811 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-16T05:18:43.811 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-16T05:18:43.811 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: Flush(GB): cumulative 0.000, interval 0.000 2024-09-16T05:18:43.811 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-16T05:18:43.811 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: AddFile(Total Files): cumulative 0, interval 0 2024-09-16T05:18:43.811 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: AddFile(L0 Files): cumulative 0, interval 0 2024-09-16T05:18:43.811 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: AddFile(Keys): cumulative 0, interval 0 2024-09-16T05:18:43.812 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: Cumulative compaction: 0.00 GB write, 0.50 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-16T05:18:43.812 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: Interval compaction: 0.00 GB write, 0.50 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-16T05:18:43.812 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-09-16T05:18:43.812 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: Block cache BinnedLRUCache@0x55b8732551f0#7 capacity: 512.00 MB usage: 0.22 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.3e-05 secs_since: 0 2024-09-16T05:18:43.812 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: Block cache entry stats(count,size,portion): FilterBlock(1,0.11 KB,2.08616e-05%) IndexBlock(1,0.11 KB,2.08616e-05%) Misc(1,0.00 KB,0%) 2024-09-16T05:18:43.812 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: ** File Read Latency Histogram By Level [default] ** 2024-09-16T05:18:43.812 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.783+0000 7fa4cdf2fc80 0 mon.b does not exist in monmap, will attempt to join an existing cluster 2024-09-16T05:18:43.812 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.783+0000 7fa4cdf2fc80 0 using public_addr v2:172.21.15.81:0/0 -> [v2:172.21.15.81:3300/0,v1:172.21.15.81:6789/0] 2024-09-16T05:18:43.812 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.783+0000 7fa4cdf2fc80 0 starting mon.b rank -1 at public addrs [v2:172.21.15.81:3300/0,v1:172.21.15.81:6789/0] at bind addrs [v2:172.21.15.81:3300/0,v1:172.21.15.81:6789/0] mon_data /var/lib/ceph/mon/ceph-b fsid 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:18:44.120 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.783+0000 7fa4cdf2fc80 1 mon.b@-1(???) e0 preinit fsid 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:18:44.120 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.807+0000 7fa4c6cfe640 0 mon.b@-1(synchronizing).mds e1 new map 2024-09-16T05:18:44.121 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.807+0000 7fa4c6cfe640 0 mon.b@-1(synchronizing).mds e1 print_map 2024-09-16T05:18:44.121 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: e1 2024-09-16T05:18:44.121 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: btime 2024-09-16T05:16:01:137996+0000 2024-09-16T05:18:44.121 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: enable_multiple, ever_enabled_multiple: 1,1 2024-09-16T05:18:44.121 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2024-09-16T05:18:44.121 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: legacy client fscid: -1 2024-09-16T05:18:44.121 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: 2024-09-16T05:18:44.121 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: No filesystems configured 2024-09-16T05:18:44.121 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.807+0000 7fa4c6cfe640 1 mon.b@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-09-16T05:18:44.121 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.807+0000 7fa4c6cfe640 1 mon.b@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-09-16T05:18:44.121 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.807+0000 7fa4c6cfe640 1 mon.b@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-09-16T05:18:44.121 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.807+0000 7fa4c6cfe640 1 mon.b@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-09-16T05:18:44.122 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.807+0000 7fa4c6cfe640 1 mon.b@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-09-16T05:18:44.122 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.807+0000 7fa4c6cfe640 1 mon.b@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-09-16T05:18:44.122 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.811+0000 7fa4c6cfe640 0 mon.b@-1(synchronizing).osd e4 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-16T05:18:44.122 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.811+0000 7fa4c6cfe640 0 mon.b@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-16T05:18:44.122 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.811+0000 7fa4c6cfe640 0 mon.b@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-16T05:18:44.122 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.811+0000 7fa4c6cfe640 0 mon.b@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-16T05:18:44.122 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:27.445026+0000 mon.a (mon.0) 118 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.122 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:28.349695+0000 mon.a (mon.0) 119 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.122 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:31.286271+0000 mon.a (mon.0) 120 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.122 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:31.290381+0000 mon.a (mon.0) 121 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.122 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:32.935252+0000 mon.a (mon.0) 122 : audit [INF] from='client.? 172.21.15.29:0/729522403' entity='client.admin' 2024-09-16T05:18:44.122 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:32.951718+0000 mon.a (mon.0) 123 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:18:44.123 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:32.956407+0000 mon.a (mon.0) 124 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.123 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:17:33.288226+0000 mgr.a (mgr.14150) 11 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.123 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:17:35.288647+0000 mgr.a (mgr.14150) 12 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.124 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:17:37.289042+0000 mgr.a (mgr.14150) 13 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.124 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:17:39.289525+0000 mgr.a (mgr.14150) 14 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.124 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:40.054209+0000 mgr.a (mgr.14150) 15 : audit [DBG] from='client.14172 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:18:44.124 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:40.057049+0000 mon.a (mon.0) 125 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.124 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:40.057744+0000 mon.a (mon.0) 126 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:18:44.124 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:40.059563+0000 mon.a (mon.0) 127 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:44.124 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:40.060322+0000 mon.a (mon.0) 128 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:18:44.124 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cephadm 2024-09-16T05:17:40.061325+0000 mgr.a (mgr.14150) 16 : cephadm [INF] Updating smithi029:/etc/ceph/ceph.conf 2024-09-16T05:18:44.124 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cephadm 2024-09-16T05:17:40.147936+0000 mgr.a (mgr.14150) 17 : cephadm [INF] Updating smithi029:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T05:18:44.124 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cephadm 2024-09-16T05:17:40.234713+0000 mgr.a (mgr.14150) 18 : cephadm [INF] Updating smithi029:/etc/ceph/ceph.client.admin.keyring 2024-09-16T05:18:44.124 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:40.541915+0000 mon.a (mon.0) 129 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.124 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:40.544989+0000 mon.a (mon.0) 130 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.124 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cephadm 2024-09-16T05:17:40.364882+0000 mgr.a (mgr.14150) 19 : cephadm [INF] Updating smithi029:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-16T05:18:44.125 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:41.391851+0000 mon.a (mon.0) 131 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.125 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:41.396821+0000 mon.a (mon.0) 132 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.125 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:17:41.289971+0000 mgr.a (mgr.14150) 20 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.125 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:17:43.290340+0000 mgr.a (mgr.14150) 21 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.125 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:17:45.290756+0000 mgr.a (mgr.14150) 22 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.125 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:17:47.291102+0000 mgr.a (mgr.14150) 23 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.125 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:47.752775+0000 mgr.a (mgr.14150) 24 : audit [DBG] from='client.14174 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi081", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:18:44.125 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cephadm 2024-09-16T05:17:49.046233+0000 mgr.a (mgr.14150) 25 : cephadm [INF] Deploying cephadm binary to smithi081 2024-09-16T05:18:44.125 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:17:49.291502+0000 mgr.a (mgr.14150) 26 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.125 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:51.011711+0000 mon.a (mon.0) 133 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.125 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:51.020322+0000 mon.a (mon.0) 134 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.125 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:51.030315+0000 mon.a (mon.0) 135 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.125 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:17:51.291901+0000 mgr.a (mgr.14150) 27 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.126 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:52.699721+0000 mon.a (mon.0) 136 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.126 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:52.701523+0000 mon.a (mon.0) 137 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:18:44.126 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cephadm 2024-09-16T05:17:52.700678+0000 mgr.a (mgr.14150) 28 : cephadm [INF] Added host smithi081 2024-09-16T05:18:44.126 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:53.203410+0000 mon.a (mon.0) 138 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.126 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:17:53.292290+0000 mgr.a (mgr.14150) 29 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.126 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:54.736081+0000 mon.a (mon.0) 139 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.126 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:54.741528+0000 mon.a (mon.0) 140 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.126 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:54.743075+0000 mon.a (mon.0) 141 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi081", "name": "osd_memory_target"}]: dispatch 2024-09-16T05:18:44.126 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:54.745211+0000 mon.a (mon.0) 142 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:44.126 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:54.747081+0000 mon.a (mon.0) 143 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:18:44.126 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cephadm 2024-09-16T05:17:54.749496+0000 mgr.a (mgr.14150) 30 : cephadm [INF] Updating smithi081:/etc/ceph/ceph.conf 2024-09-16T05:18:44.126 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cephadm 2024-09-16T05:17:54.934020+0000 mgr.a (mgr.14150) 31 : cephadm [INF] Updating smithi081:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T05:18:44.126 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cephadm 2024-09-16T05:17:55.094693+0000 mgr.a (mgr.14150) 32 : cephadm [INF] Updating smithi081:/etc/ceph/ceph.client.admin.keyring 2024-09-16T05:18:44.126 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cephadm 2024-09-16T05:17:55.240592+0000 mgr.a (mgr.14150) 33 : cephadm [INF] Updating smithi081:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-16T05:18:44.127 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:55.389876+0000 mon.a (mon.0) 144 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.127 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:55.395910+0000 mon.a (mon.0) 145 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.127 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:55.398664+0000 mon.a (mon.0) 146 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi081", "caps": []}]: dispatch 2024-09-16T05:18:44.127 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:55.400028+0000 mon.a (mon.0) 147 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi081", "caps": []}]': finished 2024-09-16T05:18:44.127 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:17:55.292675+0000 mgr.a (mgr.14150) 34 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.127 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cephadm 2024-09-16T05:17:56.282393+0000 mgr.a (mgr.14150) 35 : cephadm [INF] Deploying daemon agent.smithi081 on smithi081 2024-09-16T05:18:44.127 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:57.332012+0000 mon.a (mon.0) 148 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.127 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:57.337933+0000 mon.a (mon.0) 149 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.127 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:57.342877+0000 mon.a (mon.0) 150 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.127 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:57.401953+0000 mon.a (mon.0) 151 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:18:44.127 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:57.406161+0000 mon.a (mon.0) 152 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:44.127 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:57.407996+0000 mon.a (mon.0) 153 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:18:44.127 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:57.416429+0000 mon.a (mon.0) 154 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.128 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:57.475861+0000 mon.a (mon.0) 155 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:18:44.128 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:57.480263+0000 mon.a (mon.0) 156 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:44.128 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:57.482188+0000 mon.a (mon.0) 157 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:18:44.128 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:57.489034+0000 mon.a (mon.0) 158 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.128 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:57.871350+0000 mon.a (mon.0) 159 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.128 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:17:57.293071+0000 mgr.a (mgr.14150) 36 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.128 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:58.356071+0000 mon.a (mon.0) 160 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.128 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:58.940529+0000 mon.a (mon.0) 161 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.128 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:17:58.947977+0000 mon.a (mon.0) 162 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.128 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:17:59.293543+0000 mgr.a (mgr.14150) 37 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.128 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:00.196043+0000 mgr.a (mgr.14150) 38 : audit [DBG] from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T05:18:44.128 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:18:01.293855+0000 mgr.a (mgr.14150) 39 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.128 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:18:03.294194+0000 mgr.a (mgr.14150) 40 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.129 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:18:05.294620+0000 mgr.a (mgr.14150) 41 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.129 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:18:07.295063+0000 mgr.a (mgr.14150) 42 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.129 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:08.248146+0000 mgr.a (mgr.14150) 43 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi167", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:18:44.129 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:18:09.295343+0000 mgr.a (mgr.14150) 44 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.129 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cephadm 2024-09-16T05:18:09.531560+0000 mgr.a (mgr.14150) 45 : cephadm [INF] Deploying cephadm binary to smithi167 2024-09-16T05:18:44.129 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:11.234806+0000 mon.a (mon.0) 163 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.129 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:11.244949+0000 mon.a (mon.0) 164 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.129 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:11.255683+0000 mon.a (mon.0) 165 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.129 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:12.141580+0000 mon.a (mon.0) 166 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.129 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:12.147825+0000 mon.a (mon.0) 167 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.129 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:18:11.295666+0000 mgr.a (mgr.14150) 46 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.129 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:13.176930+0000 mon.a (mon.0) 168 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.129 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:13.178525+0000 mon.a (mon.0) 169 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:18:44.130 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cephadm 2024-09-16T05:18:13.177762+0000 mgr.a (mgr.14150) 47 : cephadm [INF] Added host smithi167 2024-09-16T05:18:44.130 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:13.727988+0000 mon.a (mon.0) 170 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.130 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:18:13.296060+0000 mgr.a (mgr.14150) 48 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.130 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:15.258063+0000 mon.a (mon.0) 171 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.130 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:15.264301+0000 mon.a (mon.0) 172 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.130 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:15.265626+0000 mon.a (mon.0) 173 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi167", "name": "osd_memory_target"}]: dispatch 2024-09-16T05:18:44.130 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:15.267594+0000 mon.a (mon.0) 174 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:44.130 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:15.269262+0000 mon.a (mon.0) 175 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:18:44.130 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:15.918340+0000 mon.a (mon.0) 176 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.130 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:15.924339+0000 mon.a (mon.0) 177 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.130 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:15.927419+0000 mon.a (mon.0) 178 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi167", "caps": []}]: dispatch 2024-09-16T05:18:44.130 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:15.928673+0000 mon.a (mon.0) 179 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi167", "caps": []}]': finished 2024-09-16T05:18:44.131 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cephadm 2024-09-16T05:18:15.271796+0000 mgr.a (mgr.14150) 49 : cephadm [INF] Updating smithi167:/etc/ceph/ceph.conf 2024-09-16T05:18:44.131 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:18:15.296461+0000 mgr.a (mgr.14150) 50 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.131 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cephadm 2024-09-16T05:18:15.460508+0000 mgr.a (mgr.14150) 51 : cephadm [INF] Updating smithi167:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T05:18:44.131 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cephadm 2024-09-16T05:18:15.623216+0000 mgr.a (mgr.14150) 52 : cephadm [INF] Updating smithi167:/etc/ceph/ceph.client.admin.keyring 2024-09-16T05:18:44.131 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cephadm 2024-09-16T05:18:15.770873+0000 mgr.a (mgr.14150) 53 : cephadm [INF] Updating smithi167:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-16T05:18:44.131 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cephadm 2024-09-16T05:18:16.865221+0000 mgr.a (mgr.14150) 54 : cephadm [INF] Deploying daemon agent.smithi167 on smithi167 2024-09-16T05:18:44.131 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:17.941006+0000 mon.a (mon.0) 180 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.131 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:17.946461+0000 mon.a (mon.0) 181 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.131 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:17.952121+0000 mon.a (mon.0) 182 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.131 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:18.037870+0000 mon.a (mon.0) 183 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:18:44.131 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:18.042519+0000 mon.a (mon.0) 184 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:44.131 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:18.044365+0000 mon.a (mon.0) 185 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:18:44.131 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:18.051271+0000 mon.a (mon.0) 186 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.131 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:18.140417+0000 mon.a (mon.0) 187 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:18:44.132 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:18.145367+0000 mon.a (mon.0) 188 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:44.132 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:18.147285+0000 mon.a (mon.0) 189 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:18:44.132 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:18.155709+0000 mon.a (mon.0) 190 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.132 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:18:17.296812+0000 mgr.a (mgr.14150) 55 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.132 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:18.362426+0000 mon.a (mon.0) 191 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.133 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:18.494576+0000 mon.a (mon.0) 192 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.133 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:18.519473+0000 mon.a (mon.0) 193 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.133 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:18.525251+0000 mon.a (mon.0) 194 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.133 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:18.532995+0000 mon.a (mon.0) 195 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.133 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:18:19.297149+0000 mgr.a (mgr.14150) 56 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.133 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:19.561300+0000 mon.a (mon.0) 196 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.133 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:19.565759+0000 mon.a (mon.0) 197 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.133 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:20.630604+0000 mgr.a (mgr.14150) 57 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T05:18:44.133 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:18:21.297601+0000 mgr.a (mgr.14150) 58 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.133 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:18:23.297941+0000 mgr.a (mgr.14150) 59 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.133 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:18:25.298367+0000 mgr.a (mgr.14150) 60 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.133 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:18:27.298795+0000 mgr.a (mgr.14150) 61 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.134 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:28.483468+0000 mon.a (mon.0) 198 : audit [INF] from='client.? 172.21.15.29:0/1426165507' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-16T05:18:44.134 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:28.571887+0000 mon.a (mon.0) 199 : audit [INF] from='client.? 172.21.15.29:0/1426165507' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-16T05:18:44.134 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:18:28.575941+0000 mon.a (mon.0) 200 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-16T05:18:44.134 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:18:29.299237+0000 mgr.a (mgr.14150) 62 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.134 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:18:31.299693+0000 mgr.a (mgr.14150) 63 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.134 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:31.483449+0000 mon.a (mon.0) 201 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.134 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:31.489436+0000 mon.a (mon.0) 202 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.134 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:31.496858+0000 mon.a (mon.0) 203 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.134 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:32.171710+0000 mgr.a (mgr.14150) 64 : audit [DBG] from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi029:172.21.15.29=a;smithi081:172.21.15.81=b;smithi167:172.21.15.167=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:18:44.134 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cephadm 2024-09-16T05:18:32.176962+0000 mgr.a (mgr.14150) 65 : cephadm [INF] Saving service mon spec with placement smithi029:172.21.15.29=a;smithi081:172.21.15.81=b;smithi167:172.21.15.167=c;count:3 2024-09-16T05:18:44.134 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:32.182161+0000 mon.a (mon.0) 204 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.134 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:32.183671+0000 mon.a (mon.0) 205 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:18:44.134 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:32.189445+0000 mon.a (mon.0) 206 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:44.135 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:32.191751+0000 mon.a (mon.0) 207 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:18:44.135 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:32.199296+0000 mon.a (mon.0) 208 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.135 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:32.203855+0000 mon.a (mon.0) 209 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T05:18:44.135 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:32.205547+0000 mon.a (mon.0) 210 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:44.135 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cephadm 2024-09-16T05:18:32.207693+0000 mgr.a (mgr.14150) 66 : cephadm [INF] Deploying daemon mon.c on smithi167 2024-09-16T05:18:44.135 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:33.040184+0000 mon.a (mon.0) 211 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.135 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:33.047789+0000 mon.a (mon.0) 212 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.135 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:18:33.300111+0000 mgr.a (mgr.14150) 67 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.135 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:18:35.300499+0000 mgr.a (mgr.14150) 68 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.136 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:36.246825+0000 mon.a (mon.0) 213 : audit [DBG] from='client.? 172.21.15.167:0/2592936711' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-16T05:18:44.136 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: cluster 2024-09-16T05:18:37.300915+0000 mgr.a (mgr.14150) 69 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:44.136 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:38.293498+0000 mon.a (mon.0) 214 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.136 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:38.299249+0000 mon.a (mon.0) 215 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.136 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:38.305278+0000 mon.a (mon.0) 216 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.136 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:38.306648+0000 mon.a (mon.0) 217 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T05:18:44.136 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:38.308561+0000 mon.a (mon.0) 218 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:44.136 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:38.693670+0000 mon.a (mon.0) 219 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.136 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:38.699397+0000 mon.a (mon.0) 220 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.136 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: audit 2024-09-16T05:18:38.707029+0000 mon.a (mon.0) 221 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:44.136 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:43 smithi081 bash[23455]: debug 2024-09-16T05:18:43.815+0000 7fa4c6cfe640 1 mon.b@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2024-09-16T05:18:45.215 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: cluster 2024-09-16T05:18:39.301307+0000 mgr.a (mgr.14150) 71 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:45.215 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: audit 2024-09-16T05:18:39.761079+0000 mon.a (mon.0) 223 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T05:18:45.216 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: cluster 2024-09-16T05:18:39.761483+0000 mon.a (mon.0) 224 : cluster [INF] mon.a calling monitor election 2024-09-16T05:18:45.216 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: audit 2024-09-16T05:18:39.786779+0000 mon.a (mon.0) 225 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T05:18:45.216 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: audit 2024-09-16T05:18:40.755454+0000 mon.a (mon.0) 226 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T05:18:45.216 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: cluster 2024-09-16T05:18:41.301736+0000 mgr.a (mgr.14150) 72 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:45.216 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: audit 2024-09-16T05:18:41.755561+0000 mon.a (mon.0) 227 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T05:18:45.216 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: cluster 2024-09-16T05:18:41.757884+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-09-16T05:18:45.216 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: audit 2024-09-16T05:18:42.755196+0000 mon.a (mon.0) 228 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T05:18:45.216 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: cluster 2024-09-16T05:18:43.302156+0000 mgr.a (mgr.14150) 73 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:45.216 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: audit 2024-09-16T05:18:43.756101+0000 mon.a (mon.0) 229 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T05:18:45.216 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: audit 2024-09-16T05:18:43.818747+0000 mon.a (mon.0) 230 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:18:45.216 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: audit 2024-09-16T05:18:44.756249+0000 mon.a (mon.0) 231 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T05:18:45.216 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: cluster 2024-09-16T05:18:44.805986+0000 mon.a (mon.0) 232 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-16T05:18:45.217 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: cluster 2024-09-16T05:18:44.816186+0000 mon.a (mon.0) 233 : cluster [DBG] monmap epoch 2 2024-09-16T05:18:45.217 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: cluster 2024-09-16T05:18:44.816216+0000 mon.a (mon.0) 234 : cluster [DBG] fsid 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:18:45.217 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: cluster 2024-09-16T05:18:44.816260+0000 mon.a (mon.0) 235 : cluster [DBG] last_changed 2024-09-16T05:18:39.755429+0000 2024-09-16T05:18:45.217 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: cluster 2024-09-16T05:18:44.816295+0000 mon.a (mon.0) 236 : cluster [DBG] created 2024-09-16T05:15:55.257784+0000 2024-09-16T05:18:45.217 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: cluster 2024-09-16T05:18:44.816332+0000 mon.a (mon.0) 237 : cluster [DBG] min_mon_release 19 (squid) 2024-09-16T05:18:45.217 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: cluster 2024-09-16T05:18:44.816369+0000 mon.a (mon.0) 238 : cluster [DBG] election_strategy: 1 2024-09-16T05:18:45.217 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: cluster 2024-09-16T05:18:44.816403+0000 mon.a (mon.0) 239 : cluster [DBG] 0: [v2:172.21.15.29:3300/0,v1:172.21.15.29:6789/0] mon.a 2024-09-16T05:18:45.217 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: cluster 2024-09-16T05:18:44.816438+0000 mon.a (mon.0) 240 : cluster [DBG] 1: [v2:172.21.15.167:3300/0,v1:172.21.15.167:6789/0] mon.c 2024-09-16T05:18:45.217 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: cluster 2024-09-16T05:18:44.818079+0000 mon.a (mon.0) 241 : cluster [DBG] fsmap 2024-09-16T05:18:45.217 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: cluster 2024-09-16T05:18:44.818175+0000 mon.a (mon.0) 242 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-16T05:18:45.217 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: cluster 2024-09-16T05:18:44.818539+0000 mon.a (mon.0) 243 : cluster [DBG] mgrmap e13: a(active, since 91s) 2024-09-16T05:18:45.217 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: cluster 2024-09-16T05:18:44.818808+0000 mon.a (mon.0) 244 : cluster [INF] overall HEALTH_OK 2024-09-16T05:18:45.217 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: audit 2024-09-16T05:18:44.823905+0000 mon.a (mon.0) 245 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:45.218 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: audit 2024-09-16T05:18:44.825242+0000 mon.a (mon.0) 246 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:18:45.218 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: audit 2024-09-16T05:18:44.829120+0000 mon.a (mon.0) 247 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:45.218 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: audit 2024-09-16T05:18:44.835186+0000 mon.a (mon.0) 248 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:45.218 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: audit 2024-09-16T05:18:44.841059+0000 mon.a (mon.0) 249 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:45.218 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: audit 2024-09-16T05:18:44.845478+0000 mon.a (mon.0) 250 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:45.218 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: audit 2024-09-16T05:18:44.849795+0000 mon.a (mon.0) 251 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:45.218 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:44 smithi029 bash[22744]: audit 2024-09-16T05:18:44.854367+0000 mon.a (mon.0) 252 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:45.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: cluster 2024-09-16T05:18:39.301307+0000 mgr.a (mgr.14150) 71 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:45.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: audit 2024-09-16T05:18:39.761079+0000 mon.a (mon.0) 223 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T05:18:45.243 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: cluster 2024-09-16T05:18:39.761483+0000 mon.a (mon.0) 224 : cluster [INF] mon.a calling monitor election 2024-09-16T05:18:45.243 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: audit 2024-09-16T05:18:39.786779+0000 mon.a (mon.0) 225 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T05:18:45.243 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: audit 2024-09-16T05:18:40.755454+0000 mon.a (mon.0) 226 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T05:18:45.243 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: cluster 2024-09-16T05:18:41.301736+0000 mgr.a (mgr.14150) 72 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:45.243 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: audit 2024-09-16T05:18:41.755561+0000 mon.a (mon.0) 227 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T05:18:45.243 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: cluster 2024-09-16T05:18:41.757884+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-09-16T05:18:45.243 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: audit 2024-09-16T05:18:42.755196+0000 mon.a (mon.0) 228 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T05:18:45.243 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: cluster 2024-09-16T05:18:43.302156+0000 mgr.a (mgr.14150) 73 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:45.243 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: audit 2024-09-16T05:18:43.756101+0000 mon.a (mon.0) 229 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T05:18:45.243 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: audit 2024-09-16T05:18:43.818747+0000 mon.a (mon.0) 230 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:18:45.243 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: audit 2024-09-16T05:18:44.756249+0000 mon.a (mon.0) 231 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T05:18:45.243 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: cluster 2024-09-16T05:18:44.805986+0000 mon.a (mon.0) 232 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-16T05:18:45.244 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: cluster 2024-09-16T05:18:44.816186+0000 mon.a (mon.0) 233 : cluster [DBG] monmap epoch 2 2024-09-16T05:18:45.244 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: cluster 2024-09-16T05:18:44.816216+0000 mon.a (mon.0) 234 : cluster [DBG] fsid 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:18:45.244 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: cluster 2024-09-16T05:18:44.816260+0000 mon.a (mon.0) 235 : cluster [DBG] last_changed 2024-09-16T05:18:39.755429+0000 2024-09-16T05:18:45.244 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: cluster 2024-09-16T05:18:44.816295+0000 mon.a (mon.0) 236 : cluster [DBG] created 2024-09-16T05:15:55.257784+0000 2024-09-16T05:18:45.244 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: cluster 2024-09-16T05:18:44.816332+0000 mon.a (mon.0) 237 : cluster [DBG] min_mon_release 19 (squid) 2024-09-16T05:18:45.244 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: cluster 2024-09-16T05:18:44.816369+0000 mon.a (mon.0) 238 : cluster [DBG] election_strategy: 1 2024-09-16T05:18:45.244 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: cluster 2024-09-16T05:18:44.816403+0000 mon.a (mon.0) 239 : cluster [DBG] 0: [v2:172.21.15.29:3300/0,v1:172.21.15.29:6789/0] mon.a 2024-09-16T05:18:45.244 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: cluster 2024-09-16T05:18:44.816438+0000 mon.a (mon.0) 240 : cluster [DBG] 1: [v2:172.21.15.167:3300/0,v1:172.21.15.167:6789/0] mon.c 2024-09-16T05:18:45.244 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: cluster 2024-09-16T05:18:44.818079+0000 mon.a (mon.0) 241 : cluster [DBG] fsmap 2024-09-16T05:18:45.244 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: cluster 2024-09-16T05:18:44.818175+0000 mon.a (mon.0) 242 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-16T05:18:45.244 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: cluster 2024-09-16T05:18:44.818539+0000 mon.a (mon.0) 243 : cluster [DBG] mgrmap e13: a(active, since 91s) 2024-09-16T05:18:45.244 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: cluster 2024-09-16T05:18:44.818808+0000 mon.a (mon.0) 244 : cluster [INF] overall HEALTH_OK 2024-09-16T05:18:45.244 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: audit 2024-09-16T05:18:44.823905+0000 mon.a (mon.0) 245 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:45.245 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: audit 2024-09-16T05:18:44.825242+0000 mon.a (mon.0) 246 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:18:45.245 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: audit 2024-09-16T05:18:44.829120+0000 mon.a (mon.0) 247 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:45.245 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: audit 2024-09-16T05:18:44.835186+0000 mon.a (mon.0) 248 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:45.245 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: audit 2024-09-16T05:18:44.841059+0000 mon.a (mon.0) 249 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:45.245 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: audit 2024-09-16T05:18:44.845478+0000 mon.a (mon.0) 250 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:45.245 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: audit 2024-09-16T05:18:44.849795+0000 mon.a (mon.0) 251 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:45.245 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:44 smithi167 bash[23275]: audit 2024-09-16T05:18:44.854367+0000 mon.a (mon.0) 252 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:45.358 INFO:teuthology.orchestra.run.smithi167.stdout: 2024-09-16T05:18:45.359 INFO:teuthology.orchestra.run.smithi167.stdout:{"epoch":2,"fsid":"825322c2-73ea-11ef-bceb-c7b262605968","modified":"2024-09-16T05:18:39.755429Z","created":"2024-09-16T05:15:55.257784Z","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.29:3300","nonce":0},{"type":"v1","addr":"172.21.15.29:6789","nonce":0}]},"addr":"172.21.15.29:6789/0","public_addr":"172.21.15.29:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:3300","nonce":0},{"type":"v1","addr":"172.21.15.167:6789","nonce":0}]},"addr":"172.21.15.167:6789/0","public_addr":"172.21.15.167:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-09-16T05:18:45.359 INFO:teuthology.orchestra.run.smithi167.stderr:dumped monmap epoch 2 2024-09-16T05:18:46.120 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: cluster 2024-09-16T05:18:39.301307+0000 mgr.a (mgr.14150) 71 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:46.120 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: audit 2024-09-16T05:18:39.761079+0000 mon.a (mon.0) 223 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T05:18:46.120 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: cluster 2024-09-16T05:18:39.761483+0000 mon.a (mon.0) 224 : cluster [INF] mon.a calling monitor election 2024-09-16T05:18:46.120 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: audit 2024-09-16T05:18:39.786779+0000 mon.a (mon.0) 225 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T05:18:46.120 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: audit 2024-09-16T05:18:40.755454+0000 mon.a (mon.0) 226 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T05:18:46.120 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: cluster 2024-09-16T05:18:41.301736+0000 mgr.a (mgr.14150) 72 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:46.121 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: audit 2024-09-16T05:18:41.755561+0000 mon.a (mon.0) 227 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T05:18:46.121 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: cluster 2024-09-16T05:18:41.757884+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-09-16T05:18:46.121 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: audit 2024-09-16T05:18:42.755196+0000 mon.a (mon.0) 228 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T05:18:46.121 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: cluster 2024-09-16T05:18:43.302156+0000 mgr.a (mgr.14150) 73 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:46.121 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: audit 2024-09-16T05:18:43.756101+0000 mon.a (mon.0) 229 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T05:18:46.121 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: audit 2024-09-16T05:18:43.818747+0000 mon.a (mon.0) 230 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:18:46.121 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: audit 2024-09-16T05:18:44.756249+0000 mon.a (mon.0) 231 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T05:18:46.121 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: cluster 2024-09-16T05:18:44.805986+0000 mon.a (mon.0) 232 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-16T05:18:46.121 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: cluster 2024-09-16T05:18:44.816186+0000 mon.a (mon.0) 233 : cluster [DBG] monmap epoch 2 2024-09-16T05:18:46.121 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: cluster 2024-09-16T05:18:44.816216+0000 mon.a (mon.0) 234 : cluster [DBG] fsid 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:18:46.121 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: cluster 2024-09-16T05:18:44.816260+0000 mon.a (mon.0) 235 : cluster [DBG] last_changed 2024-09-16T05:18:39.755429+0000 2024-09-16T05:18:46.121 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: cluster 2024-09-16T05:18:44.816295+0000 mon.a (mon.0) 236 : cluster [DBG] created 2024-09-16T05:15:55.257784+0000 2024-09-16T05:18:46.121 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: cluster 2024-09-16T05:18:44.816332+0000 mon.a (mon.0) 237 : cluster [DBG] min_mon_release 19 (squid) 2024-09-16T05:18:46.122 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: cluster 2024-09-16T05:18:44.816369+0000 mon.a (mon.0) 238 : cluster [DBG] election_strategy: 1 2024-09-16T05:18:46.122 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: cluster 2024-09-16T05:18:44.816403+0000 mon.a (mon.0) 239 : cluster [DBG] 0: [v2:172.21.15.29:3300/0,v1:172.21.15.29:6789/0] mon.a 2024-09-16T05:18:46.122 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: cluster 2024-09-16T05:18:44.816438+0000 mon.a (mon.0) 240 : cluster [DBG] 1: [v2:172.21.15.167:3300/0,v1:172.21.15.167:6789/0] mon.c 2024-09-16T05:18:46.122 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: cluster 2024-09-16T05:18:44.818079+0000 mon.a (mon.0) 241 : cluster [DBG] fsmap 2024-09-16T05:18:46.122 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: cluster 2024-09-16T05:18:44.818175+0000 mon.a (mon.0) 242 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-16T05:18:46.122 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: cluster 2024-09-16T05:18:44.818539+0000 mon.a (mon.0) 243 : cluster [DBG] mgrmap e13: a(active, since 91s) 2024-09-16T05:18:46.122 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: cluster 2024-09-16T05:18:44.818808+0000 mon.a (mon.0) 244 : cluster [INF] overall HEALTH_OK 2024-09-16T05:18:46.122 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: audit 2024-09-16T05:18:44.823905+0000 mon.a (mon.0) 245 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:46.122 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: audit 2024-09-16T05:18:44.825242+0000 mon.a (mon.0) 246 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:18:46.122 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: audit 2024-09-16T05:18:44.829120+0000 mon.a (mon.0) 247 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:46.122 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: audit 2024-09-16T05:18:44.835186+0000 mon.a (mon.0) 248 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:46.122 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: audit 2024-09-16T05:18:44.841059+0000 mon.a (mon.0) 249 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:46.122 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: audit 2024-09-16T05:18:44.845478+0000 mon.a (mon.0) 250 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:46.122 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: audit 2024-09-16T05:18:44.849795+0000 mon.a (mon.0) 251 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:46.123 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:45 smithi081 bash[23455]: audit 2024-09-16T05:18:44.854367+0000 mon.a (mon.0) 252 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:46.985 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-16T05:18:46.985 DEBUG:teuthology.orchestra.run.smithi167:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-16T05:18:51.243 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: cluster 2024-09-16T05:18:45.302398+0000 mgr.a (mgr.14150) 80 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:51.243 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: cephadm 2024-09-16T05:18:45.452012+0000 mgr.a (mgr.14150) 81 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-09-16T05:18:51.243 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: cephadm 2024-09-16T05:18:45.500442+0000 mgr.a (mgr.14150) 82 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-09-16T05:18:51.243 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: cephadm 2024-09-16T05:18:45.503166+0000 mgr.a (mgr.14150) 83 : cephadm [INF] Reconfiguring daemon mon.a on smithi029 2024-09-16T05:18:51.244 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: audit 2024-09-16T05:18:45.832201+0000 mon.a (mon.0) 269 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T05:18:51.244 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: cluster 2024-09-16T05:18:45.832574+0000 mon.a (mon.0) 270 : cluster [INF] mon.a calling monitor election 2024-09-16T05:18:51.244 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: audit 2024-09-16T05:18:45.834791+0000 mon.a (mon.0) 271 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:18:51.244 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: cluster 2024-09-16T05:18:45.834833+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-09-16T05:18:51.244 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: audit 2024-09-16T05:18:45.835012+0000 mon.a (mon.0) 272 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T05:18:51.244 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: audit 2024-09-16T05:18:46.818882+0000 mon.a (mon.0) 273 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:18:51.244 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: cluster 2024-09-16T05:18:47.302755+0000 mgr.a (mgr.14150) 84 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:51.244 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: audit 2024-09-16T05:18:47.819603+0000 mon.a (mon.0) 274 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:18:51.244 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: cluster 2024-09-16T05:18:47.832860+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-09-16T05:18:51.244 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: audit 2024-09-16T05:18:48.819194+0000 mon.a (mon.0) 275 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:18:51.244 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: cluster 2024-09-16T05:18:49.303128+0000 mgr.a (mgr.14150) 85 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:51.244 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: audit 2024-09-16T05:18:49.819852+0000 mon.a (mon.0) 276 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:18:51.244 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: audit 2024-09-16T05:18:50.819974+0000 mon.a (mon.0) 277 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:18:51.245 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: cluster 2024-09-16T05:18:50.856060+0000 mon.a (mon.0) 278 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-16T05:18:51.245 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: cluster 2024-09-16T05:18:50.862537+0000 mon.a (mon.0) 279 : cluster [DBG] monmap epoch 3 2024-09-16T05:18:51.245 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: cluster 2024-09-16T05:18:50.862586+0000 mon.a (mon.0) 280 : cluster [DBG] fsid 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:18:51.245 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: cluster 2024-09-16T05:18:50.862622+0000 mon.a (mon.0) 281 : cluster [DBG] last_changed 2024-09-16T05:18:45.827824+0000 2024-09-16T05:18:51.245 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: cluster 2024-09-16T05:18:50.862667+0000 mon.a (mon.0) 282 : cluster [DBG] created 2024-09-16T05:15:55.257784+0000 2024-09-16T05:18:51.245 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: cluster 2024-09-16T05:18:50.862704+0000 mon.a (mon.0) 283 : cluster [DBG] min_mon_release 19 (squid) 2024-09-16T05:18:51.245 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: cluster 2024-09-16T05:18:50.862744+0000 mon.a (mon.0) 284 : cluster [DBG] election_strategy: 1 2024-09-16T05:18:51.245 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: cluster 2024-09-16T05:18:50.862788+0000 mon.a (mon.0) 285 : cluster [DBG] 0: [v2:172.21.15.29:3300/0,v1:172.21.15.29:6789/0] mon.a 2024-09-16T05:18:51.245 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: cluster 2024-09-16T05:18:50.862826+0000 mon.a (mon.0) 286 : cluster [DBG] 1: [v2:172.21.15.167:3300/0,v1:172.21.15.167:6789/0] mon.c 2024-09-16T05:18:51.246 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: cluster 2024-09-16T05:18:50.862863+0000 mon.a (mon.0) 287 : cluster [DBG] 2: [v2:172.21.15.81:3300/0,v1:172.21.15.81:6789/0] mon.b 2024-09-16T05:18:51.246 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: cluster 2024-09-16T05:18:50.882465+0000 mon.a (mon.0) 288 : cluster [DBG] fsmap 2024-09-16T05:18:51.246 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: cluster 2024-09-16T05:18:50.882556+0000 mon.a (mon.0) 289 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-16T05:18:51.246 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: cluster 2024-09-16T05:18:50.882886+0000 mon.a (mon.0) 290 : cluster [DBG] mgrmap e13: a(active, since 97s) 2024-09-16T05:18:51.246 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: cluster 2024-09-16T05:18:50.883208+0000 mon.a (mon.0) 291 : cluster [INF] overall HEALTH_OK 2024-09-16T05:18:51.246 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: audit 2024-09-16T05:18:50.891929+0000 mon.a (mon.0) 292 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:51.246 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: audit 2024-09-16T05:18:50.897865+0000 mon.a (mon.0) 293 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:51.246 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: audit 2024-09-16T05:18:50.903910+0000 mon.a (mon.0) 294 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:51.246 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: audit 2024-09-16T05:18:50.909497+0000 mon.a (mon.0) 295 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:51.246 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: audit 2024-09-16T05:18:50.914978+0000 mon.a (mon.0) 296 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:51.246 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: audit 2024-09-16T05:18:50.920659+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:51.246 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: audit 2024-09-16T05:18:50.926850+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:51.246 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: audit 2024-09-16T05:18:50.927465+0000 mon.a (mon.0) 299 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T05:18:51.247 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: audit 2024-09-16T05:18:50.929465+0000 mon.a (mon.0) 300 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T05:18:51.247 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:50 smithi167 bash[23275]: audit 2024-09-16T05:18:50.931336+0000 mon.a (mon.0) 301 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:51.341 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: cluster 2024-09-16T05:18:45.302398+0000 mgr.a (mgr.14150) 80 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:51.341 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: cephadm 2024-09-16T05:18:45.452012+0000 mgr.a (mgr.14150) 81 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-09-16T05:18:51.341 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: cephadm 2024-09-16T05:18:45.500442+0000 mgr.a (mgr.14150) 82 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-09-16T05:18:51.341 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: cephadm 2024-09-16T05:18:45.503166+0000 mgr.a (mgr.14150) 83 : cephadm [INF] Reconfiguring daemon mon.a on smithi029 2024-09-16T05:18:51.341 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: audit 2024-09-16T05:18:45.832201+0000 mon.a (mon.0) 269 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T05:18:51.341 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: cluster 2024-09-16T05:18:45.832574+0000 mon.a (mon.0) 270 : cluster [INF] mon.a calling monitor election 2024-09-16T05:18:51.341 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: audit 2024-09-16T05:18:45.834791+0000 mon.a (mon.0) 271 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:18:51.341 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: cluster 2024-09-16T05:18:45.834833+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-09-16T05:18:51.341 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: audit 2024-09-16T05:18:45.835012+0000 mon.a (mon.0) 272 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T05:18:51.341 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: audit 2024-09-16T05:18:46.818882+0000 mon.a (mon.0) 273 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:18:51.341 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: cluster 2024-09-16T05:18:47.302755+0000 mgr.a (mgr.14150) 84 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:51.342 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: audit 2024-09-16T05:18:47.819603+0000 mon.a (mon.0) 274 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:18:51.342 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: cluster 2024-09-16T05:18:47.832860+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-09-16T05:18:51.342 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: audit 2024-09-16T05:18:48.819194+0000 mon.a (mon.0) 275 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:18:51.342 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: cluster 2024-09-16T05:18:49.303128+0000 mgr.a (mgr.14150) 85 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:51.342 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: audit 2024-09-16T05:18:49.819852+0000 mon.a (mon.0) 276 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:18:51.342 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: audit 2024-09-16T05:18:50.819974+0000 mon.a (mon.0) 277 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:18:51.342 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: cluster 2024-09-16T05:18:50.856060+0000 mon.a (mon.0) 278 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-16T05:18:51.342 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: cluster 2024-09-16T05:18:50.862537+0000 mon.a (mon.0) 279 : cluster [DBG] monmap epoch 3 2024-09-16T05:18:51.342 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: cluster 2024-09-16T05:18:50.862586+0000 mon.a (mon.0) 280 : cluster [DBG] fsid 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:18:51.342 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: cluster 2024-09-16T05:18:50.862622+0000 mon.a (mon.0) 281 : cluster [DBG] last_changed 2024-09-16T05:18:45.827824+0000 2024-09-16T05:18:51.342 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: cluster 2024-09-16T05:18:50.862667+0000 mon.a (mon.0) 282 : cluster [DBG] created 2024-09-16T05:15:55.257784+0000 2024-09-16T05:18:51.342 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: cluster 2024-09-16T05:18:50.862704+0000 mon.a (mon.0) 283 : cluster [DBG] min_mon_release 19 (squid) 2024-09-16T05:18:51.342 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: cluster 2024-09-16T05:18:50.862744+0000 mon.a (mon.0) 284 : cluster [DBG] election_strategy: 1 2024-09-16T05:18:51.343 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: cluster 2024-09-16T05:18:50.862788+0000 mon.a (mon.0) 285 : cluster [DBG] 0: [v2:172.21.15.29:3300/0,v1:172.21.15.29:6789/0] mon.a 2024-09-16T05:18:51.343 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: cluster 2024-09-16T05:18:50.862826+0000 mon.a (mon.0) 286 : cluster [DBG] 1: [v2:172.21.15.167:3300/0,v1:172.21.15.167:6789/0] mon.c 2024-09-16T05:18:51.343 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: cluster 2024-09-16T05:18:50.862863+0000 mon.a (mon.0) 287 : cluster [DBG] 2: [v2:172.21.15.81:3300/0,v1:172.21.15.81:6789/0] mon.b 2024-09-16T05:18:51.343 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: cluster 2024-09-16T05:18:50.882465+0000 mon.a (mon.0) 288 : cluster [DBG] fsmap 2024-09-16T05:18:51.343 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: cluster 2024-09-16T05:18:50.882556+0000 mon.a (mon.0) 289 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-16T05:18:51.343 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: cluster 2024-09-16T05:18:50.882886+0000 mon.a (mon.0) 290 : cluster [DBG] mgrmap e13: a(active, since 97s) 2024-09-16T05:18:51.343 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: cluster 2024-09-16T05:18:50.883208+0000 mon.a (mon.0) 291 : cluster [INF] overall HEALTH_OK 2024-09-16T05:18:51.343 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: audit 2024-09-16T05:18:50.891929+0000 mon.a (mon.0) 292 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:51.343 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: audit 2024-09-16T05:18:50.897865+0000 mon.a (mon.0) 293 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:51.343 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: audit 2024-09-16T05:18:50.903910+0000 mon.a (mon.0) 294 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:51.343 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: audit 2024-09-16T05:18:50.909497+0000 mon.a (mon.0) 295 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:51.343 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: audit 2024-09-16T05:18:50.914978+0000 mon.a (mon.0) 296 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:51.343 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: audit 2024-09-16T05:18:50.920659+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:51.343 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: audit 2024-09-16T05:18:50.926850+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:51.344 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: audit 2024-09-16T05:18:50.927465+0000 mon.a (mon.0) 299 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T05:18:51.344 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: audit 2024-09-16T05:18:50.929465+0000 mon.a (mon.0) 300 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T05:18:51.344 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:50 smithi029 bash[22744]: audit 2024-09-16T05:18:50.931336+0000 mon.a (mon.0) 301 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:51.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: cluster 2024-09-16T05:18:45.302398+0000 mgr.a (mgr.14150) 80 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:51.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: cephadm 2024-09-16T05:18:45.452012+0000 mgr.a (mgr.14150) 81 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-09-16T05:18:51.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: cephadm 2024-09-16T05:18:45.500442+0000 mgr.a (mgr.14150) 82 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-09-16T05:18:51.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: cephadm 2024-09-16T05:18:45.503166+0000 mgr.a (mgr.14150) 83 : cephadm [INF] Reconfiguring daemon mon.a on smithi029 2024-09-16T05:18:51.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: audit 2024-09-16T05:18:45.832201+0000 mon.a (mon.0) 269 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T05:18:51.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: cluster 2024-09-16T05:18:45.832574+0000 mon.a (mon.0) 270 : cluster [INF] mon.a calling monitor election 2024-09-16T05:18:51.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: audit 2024-09-16T05:18:45.834791+0000 mon.a (mon.0) 271 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:18:51.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: cluster 2024-09-16T05:18:45.834833+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-09-16T05:18:51.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: audit 2024-09-16T05:18:45.835012+0000 mon.a (mon.0) 272 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T05:18:51.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: audit 2024-09-16T05:18:46.818882+0000 mon.a (mon.0) 273 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:18:51.371 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: cluster 2024-09-16T05:18:47.302755+0000 mgr.a (mgr.14150) 84 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:51.371 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: audit 2024-09-16T05:18:47.819603+0000 mon.a (mon.0) 274 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:18:51.371 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: cluster 2024-09-16T05:18:47.832860+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-09-16T05:18:51.371 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: audit 2024-09-16T05:18:48.819194+0000 mon.a (mon.0) 275 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:18:51.371 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: cluster 2024-09-16T05:18:49.303128+0000 mgr.a (mgr.14150) 85 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:51.371 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: audit 2024-09-16T05:18:49.819852+0000 mon.a (mon.0) 276 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:18:51.371 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: audit 2024-09-16T05:18:50.819974+0000 mon.a (mon.0) 277 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:18:51.371 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: cluster 2024-09-16T05:18:50.856060+0000 mon.a (mon.0) 278 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-16T05:18:51.371 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: cluster 2024-09-16T05:18:50.862537+0000 mon.a (mon.0) 279 : cluster [DBG] monmap epoch 3 2024-09-16T05:18:51.371 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: cluster 2024-09-16T05:18:50.862586+0000 mon.a (mon.0) 280 : cluster [DBG] fsid 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:18:51.371 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: cluster 2024-09-16T05:18:50.862622+0000 mon.a (mon.0) 281 : cluster [DBG] last_changed 2024-09-16T05:18:45.827824+0000 2024-09-16T05:18:51.371 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: cluster 2024-09-16T05:18:50.862667+0000 mon.a (mon.0) 282 : cluster [DBG] created 2024-09-16T05:15:55.257784+0000 2024-09-16T05:18:51.371 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: cluster 2024-09-16T05:18:50.862704+0000 mon.a (mon.0) 283 : cluster [DBG] min_mon_release 19 (squid) 2024-09-16T05:18:51.372 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: cluster 2024-09-16T05:18:50.862744+0000 mon.a (mon.0) 284 : cluster [DBG] election_strategy: 1 2024-09-16T05:18:51.372 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: cluster 2024-09-16T05:18:50.862788+0000 mon.a (mon.0) 285 : cluster [DBG] 0: [v2:172.21.15.29:3300/0,v1:172.21.15.29:6789/0] mon.a 2024-09-16T05:18:51.372 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: cluster 2024-09-16T05:18:50.862826+0000 mon.a (mon.0) 286 : cluster [DBG] 1: [v2:172.21.15.167:3300/0,v1:172.21.15.167:6789/0] mon.c 2024-09-16T05:18:51.372 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: cluster 2024-09-16T05:18:50.862863+0000 mon.a (mon.0) 287 : cluster [DBG] 2: [v2:172.21.15.81:3300/0,v1:172.21.15.81:6789/0] mon.b 2024-09-16T05:18:51.372 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: cluster 2024-09-16T05:18:50.882465+0000 mon.a (mon.0) 288 : cluster [DBG] fsmap 2024-09-16T05:18:51.372 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: cluster 2024-09-16T05:18:50.882556+0000 mon.a (mon.0) 289 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-16T05:18:51.372 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: cluster 2024-09-16T05:18:50.882886+0000 mon.a (mon.0) 290 : cluster [DBG] mgrmap e13: a(active, since 97s) 2024-09-16T05:18:51.372 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: cluster 2024-09-16T05:18:50.883208+0000 mon.a (mon.0) 291 : cluster [INF] overall HEALTH_OK 2024-09-16T05:18:51.372 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: audit 2024-09-16T05:18:50.891929+0000 mon.a (mon.0) 292 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:51.372 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: audit 2024-09-16T05:18:50.897865+0000 mon.a (mon.0) 293 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:51.372 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: audit 2024-09-16T05:18:50.903910+0000 mon.a (mon.0) 294 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:51.372 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: audit 2024-09-16T05:18:50.909497+0000 mon.a (mon.0) 295 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:51.372 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: audit 2024-09-16T05:18:50.914978+0000 mon.a (mon.0) 296 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:51.373 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: audit 2024-09-16T05:18:50.920659+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:51.373 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: audit 2024-09-16T05:18:50.926850+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:51.373 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: audit 2024-09-16T05:18:50.927465+0000 mon.a (mon.0) 299 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T05:18:51.373 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: audit 2024-09-16T05:18:50.929465+0000 mon.a (mon.0) 300 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T05:18:51.373 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:50 smithi081 bash[23455]: audit 2024-09-16T05:18:50.931336+0000 mon.a (mon.0) 301 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:51.385 INFO:teuthology.orchestra.run.smithi167.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.c/config 2024-09-16T05:18:52.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:52 smithi081 bash[23455]: cephadm 2024-09-16T05:18:50.923150+0000 mgr.a (mgr.14150) 86 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-16T05:18:52.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:52 smithi081 bash[23455]: cephadm 2024-09-16T05:18:50.933330+0000 mgr.a (mgr.14150) 87 : cephadm [INF] Reconfiguring daemon mon.b on smithi081 2024-09-16T05:18:52.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:52 smithi081 bash[23455]: audit 2024-09-16T05:18:51.119085+0000 mon.a (mon.0) 302 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:52.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:52 smithi081 bash[23455]: audit 2024-09-16T05:18:51.126219+0000 mon.a (mon.0) 303 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:52.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:52 smithi081 bash[23455]: audit 2024-09-16T05:18:51.135082+0000 mon.a (mon.0) 304 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:52.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:52 smithi081 bash[23455]: audit 2024-09-16T05:18:51.641748+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:52.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:52 smithi081 bash[23455]: audit 2024-09-16T05:18:51.646387+0000 mon.a (mon.0) 306 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:52.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:52 smithi081 bash[23455]: audit 2024-09-16T05:18:51.651068+0000 mon.a (mon.0) 307 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:52.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:52 smithi081 bash[23455]: audit 2024-09-16T05:18:51.819812+0000 mon.a (mon.0) 308 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:18:52.371 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:52 smithi081 bash[23455]: audit 2024-09-16T05:18:51.961149+0000 mon.a (mon.0) 309 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:52.371 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:52 smithi081 bash[23455]: audit 2024-09-16T05:18:51.967899+0000 mon.a (mon.0) 310 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:52.371 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:52 smithi081 bash[23455]: audit 2024-09-16T05:18:51.977059+0000 mon.a (mon.0) 311 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:52.403 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:52 smithi167 bash[23275]: cephadm 2024-09-16T05:18:50.923150+0000 mgr.a (mgr.14150) 86 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-16T05:18:52.404 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:52 smithi167 bash[23275]: cephadm 2024-09-16T05:18:50.933330+0000 mgr.a (mgr.14150) 87 : cephadm [INF] Reconfiguring daemon mon.b on smithi081 2024-09-16T05:18:52.404 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:52 smithi167 bash[23275]: audit 2024-09-16T05:18:51.119085+0000 mon.a (mon.0) 302 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:52.404 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:52 smithi167 bash[23275]: audit 2024-09-16T05:18:51.126219+0000 mon.a (mon.0) 303 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:52.404 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:52 smithi167 bash[23275]: audit 2024-09-16T05:18:51.135082+0000 mon.a (mon.0) 304 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:52.404 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:52 smithi167 bash[23275]: audit 2024-09-16T05:18:51.641748+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:52.404 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:52 smithi167 bash[23275]: audit 2024-09-16T05:18:51.646387+0000 mon.a (mon.0) 306 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:52.404 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:52 smithi167 bash[23275]: audit 2024-09-16T05:18:51.651068+0000 mon.a (mon.0) 307 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:52.404 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:52 smithi167 bash[23275]: audit 2024-09-16T05:18:51.819812+0000 mon.a (mon.0) 308 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:18:52.404 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:52 smithi167 bash[23275]: audit 2024-09-16T05:18:51.961149+0000 mon.a (mon.0) 309 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:52.404 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:52 smithi167 bash[23275]: audit 2024-09-16T05:18:51.967899+0000 mon.a (mon.0) 310 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:52.404 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:52 smithi167 bash[23275]: audit 2024-09-16T05:18:51.977059+0000 mon.a (mon.0) 311 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:52.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:52 smithi029 bash[22744]: cephadm 2024-09-16T05:18:50.923150+0000 mgr.a (mgr.14150) 86 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-16T05:18:52.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:52 smithi029 bash[22744]: cephadm 2024-09-16T05:18:50.933330+0000 mgr.a (mgr.14150) 87 : cephadm [INF] Reconfiguring daemon mon.b on smithi081 2024-09-16T05:18:52.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:52 smithi029 bash[22744]: audit 2024-09-16T05:18:51.119085+0000 mon.a (mon.0) 302 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:52.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:52 smithi029 bash[22744]: audit 2024-09-16T05:18:51.126219+0000 mon.a (mon.0) 303 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:52.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:52 smithi029 bash[22744]: audit 2024-09-16T05:18:51.135082+0000 mon.a (mon.0) 304 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:52.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:52 smithi029 bash[22744]: audit 2024-09-16T05:18:51.641748+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:52.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:52 smithi029 bash[22744]: audit 2024-09-16T05:18:51.646387+0000 mon.a (mon.0) 306 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:52.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:52 smithi029 bash[22744]: audit 2024-09-16T05:18:51.651068+0000 mon.a (mon.0) 307 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:52.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:52 smithi029 bash[22744]: audit 2024-09-16T05:18:51.819812+0000 mon.a (mon.0) 308 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:18:52.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:52 smithi029 bash[22744]: audit 2024-09-16T05:18:51.961149+0000 mon.a (mon.0) 309 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:52.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:52 smithi029 bash[22744]: audit 2024-09-16T05:18:51.967899+0000 mon.a (mon.0) 310 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:52.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:52 smithi029 bash[22744]: audit 2024-09-16T05:18:51.977059+0000 mon.a (mon.0) 311 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:52.820 INFO:teuthology.orchestra.run.smithi167.stderr:dumped monmap epoch 3 2024-09-16T05:18:52.820 INFO:teuthology.orchestra.run.smithi167.stdout: 2024-09-16T05:18:52.820 INFO:teuthology.orchestra.run.smithi167.stdout:{"epoch":3,"fsid":"825322c2-73ea-11ef-bceb-c7b262605968","modified":"2024-09-16T05:18:45.827824Z","created":"2024-09-16T05:15:55.257784Z","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.29:3300","nonce":0},{"type":"v1","addr":"172.21.15.29:6789","nonce":0}]},"addr":"172.21.15.29:6789/0","public_addr":"172.21.15.29:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:3300","nonce":0},{"type":"v1","addr":"172.21.15.167:6789","nonce":0}]},"addr":"172.21.15.167:6789/0","public_addr":"172.21.15.167:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":2,"name":"b","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.81:3300","nonce":0},{"type":"v1","addr":"172.21.15.81:6789","nonce":0}]},"addr":"172.21.15.81:6789/0","public_addr":"172.21.15.81:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1,2]} 2024-09-16T05:18:53.407 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:53 smithi167 bash[23275]: cluster 2024-09-16T05:18:51.303558+0000 mgr.a (mgr.14150) 88 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:53.407 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:53 smithi167 bash[23275]: audit 2024-09-16T05:18:52.819491+0000 mon.a (mon.0) 312 : audit [DBG] from='client.? 172.21.15.167:0/3826191432' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-16T05:18:53.407 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:53 smithi167 bash[23275]: audit 2024-09-16T05:18:53.094393+0000 mon.a (mon.0) 313 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:53.408 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:53 smithi167 bash[23275]: audit 2024-09-16T05:18:53.101403+0000 mon.a (mon.0) 314 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:53.408 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:53 smithi167 bash[23275]: audit 2024-09-16T05:18:53.103829+0000 mon.a (mon.0) 315 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T05:18:53.408 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:53 smithi167 bash[23275]: audit 2024-09-16T05:18:53.105801+0000 mon.a (mon.0) 316 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T05:18:53.408 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:53 smithi167 bash[23275]: audit 2024-09-16T05:18:53.107681+0000 mon.a (mon.0) 317 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:53.409 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-09-16T05:18:53.409 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph config generate-minimal-conf 2024-09-16T05:18:53.421 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:53 smithi029 bash[22744]: cluster 2024-09-16T05:18:51.303558+0000 mgr.a (mgr.14150) 88 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:53.421 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:53 smithi029 bash[22744]: audit 2024-09-16T05:18:52.819491+0000 mon.a (mon.0) 312 : audit [DBG] from='client.? 172.21.15.167:0/3826191432' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-16T05:18:53.421 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:53 smithi029 bash[22744]: audit 2024-09-16T05:18:53.094393+0000 mon.a (mon.0) 313 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:53.421 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:53 smithi029 bash[22744]: audit 2024-09-16T05:18:53.101403+0000 mon.a (mon.0) 314 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:53.421 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:53 smithi029 bash[22744]: audit 2024-09-16T05:18:53.103829+0000 mon.a (mon.0) 315 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T05:18:53.421 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:53 smithi029 bash[22744]: audit 2024-09-16T05:18:53.105801+0000 mon.a (mon.0) 316 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T05:18:53.422 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:53 smithi029 bash[22744]: audit 2024-09-16T05:18:53.107681+0000 mon.a (mon.0) 317 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:53.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:53 smithi081 bash[23455]: cluster 2024-09-16T05:18:51.303558+0000 mgr.a (mgr.14150) 88 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:53.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:53 smithi081 bash[23455]: audit 2024-09-16T05:18:52.819491+0000 mon.a (mon.0) 312 : audit [DBG] from='client.? 172.21.15.167:0/3826191432' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-16T05:18:53.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:53 smithi081 bash[23455]: audit 2024-09-16T05:18:53.094393+0000 mon.a (mon.0) 313 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:53.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:53 smithi081 bash[23455]: audit 2024-09-16T05:18:53.101403+0000 mon.a (mon.0) 314 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:53.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:53 smithi081 bash[23455]: audit 2024-09-16T05:18:53.103829+0000 mon.a (mon.0) 315 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T05:18:53.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:53 smithi081 bash[23455]: audit 2024-09-16T05:18:53.105801+0000 mon.a (mon.0) 316 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T05:18:53.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:53 smithi081 bash[23455]: audit 2024-09-16T05:18:53.107681+0000 mon.a (mon.0) 317 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:54.460 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:54 smithi167 bash[23275]: cephadm 2024-09-16T05:18:53.103209+0000 mgr.a (mgr.14150) 89 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-09-16T05:18:54.460 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:54 smithi167 bash[23275]: cephadm 2024-09-16T05:18:53.109874+0000 mgr.a (mgr.14150) 90 : cephadm [INF] Reconfiguring daemon mon.c on smithi167 2024-09-16T05:18:54.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:54 smithi029 bash[22744]: cephadm 2024-09-16T05:18:53.103209+0000 mgr.a (mgr.14150) 89 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-09-16T05:18:54.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:54 smithi029 bash[22744]: cephadm 2024-09-16T05:18:53.109874+0000 mgr.a (mgr.14150) 90 : cephadm [INF] Reconfiguring daemon mon.c on smithi167 2024-09-16T05:18:54.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:54 smithi081 bash[23455]: cephadm 2024-09-16T05:18:53.103209+0000 mgr.a (mgr.14150) 89 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-09-16T05:18:54.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:54 smithi081 bash[23455]: cephadm 2024-09-16T05:18:53.109874+0000 mgr.a (mgr.14150) 90 : cephadm [INF] Reconfiguring daemon mon.c on smithi167 2024-09-16T05:18:55.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:55 smithi167 bash[23275]: cluster 2024-09-16T05:18:53.304002+0000 mgr.a (mgr.14150) 91 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:55.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:55 smithi167 bash[23275]: audit 2024-09-16T05:18:55.137085+0000 mon.a (mon.0) 318 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:55.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:55 smithi029 bash[22744]: cluster 2024-09-16T05:18:53.304002+0000 mgr.a (mgr.14150) 91 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:55.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:55 smithi029 bash[22744]: audit 2024-09-16T05:18:55.137085+0000 mon.a (mon.0) 318 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:55.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:55 smithi081 bash[23455]: cluster 2024-09-16T05:18:53.304002+0000 mgr.a (mgr.14150) 91 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:55.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:55 smithi081 bash[23455]: audit 2024-09-16T05:18:55.137085+0000 mon.a (mon.0) 318 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:56.493 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:56 smithi167 bash[23275]: audit 2024-09-16T05:18:55.144172+0000 mon.a (mon.0) 319 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:56.493 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:56 smithi167 bash[23275]: audit 2024-09-16T05:18:55.151134+0000 mon.a (mon.0) 320 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:18:56.493 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:56 smithi167 bash[23275]: audit 2024-09-16T05:18:55.156390+0000 mon.a (mon.0) 321 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:56.493 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:56 smithi167 bash[23275]: audit 2024-09-16T05:18:55.158223+0000 mon.a (mon.0) 322 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:18:56.493 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:56 smithi167 bash[23275]: cephadm 2024-09-16T05:18:55.160629+0000 mgr.a (mgr.14150) 92 : cephadm [INF] Updating smithi029:/etc/ceph/ceph.conf 2024-09-16T05:18:56.493 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:56 smithi167 bash[23275]: cephadm 2024-09-16T05:18:55.161072+0000 mgr.a (mgr.14150) 93 : cephadm [INF] Updating smithi081:/etc/ceph/ceph.conf 2024-09-16T05:18:56.493 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:56 smithi167 bash[23275]: cephadm 2024-09-16T05:18:55.161659+0000 mgr.a (mgr.14150) 94 : cephadm [INF] Updating smithi167:/etc/ceph/ceph.conf 2024-09-16T05:18:56.493 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:56 smithi167 bash[23275]: audit 2024-09-16T05:18:55.604669+0000 mon.a (mon.0) 323 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:56.493 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:56 smithi167 bash[23275]: audit 2024-09-16T05:18:55.609543+0000 mon.a (mon.0) 324 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:56.493 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:56 smithi167 bash[23275]: audit 2024-09-16T05:18:55.613742+0000 mon.a (mon.0) 325 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:56.494 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:56 smithi167 bash[23275]: audit 2024-09-16T05:18:55.617803+0000 mon.a (mon.0) 326 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:56.494 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:56 smithi167 bash[23275]: audit 2024-09-16T05:18:55.621923+0000 mon.a (mon.0) 327 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:56.494 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:56 smithi167 bash[23275]: audit 2024-09-16T05:18:55.626153+0000 mon.a (mon.0) 328 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:56.494 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:56 smithi167 bash[23275]: audit 2024-09-16T05:18:55.630558+0000 mon.a (mon.0) 329 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:56.494 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:56 smithi167 bash[23275]: audit 2024-09-16T05:18:55.685014+0000 mon.a (mon.0) 330 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T05:18:56.494 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:56 smithi167 bash[23275]: audit 2024-09-16T05:18:55.686440+0000 mon.a (mon.0) 331 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T05:18:56.494 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:56 smithi167 bash[23275]: audit 2024-09-16T05:18:55.687833+0000 mon.a (mon.0) 332 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:56.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:56 smithi029 bash[22744]: audit 2024-09-16T05:18:55.144172+0000 mon.a (mon.0) 319 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:56.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:56 smithi029 bash[22744]: audit 2024-09-16T05:18:55.151134+0000 mon.a (mon.0) 320 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:18:56.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:56 smithi029 bash[22744]: audit 2024-09-16T05:18:55.156390+0000 mon.a (mon.0) 321 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:56.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:56 smithi029 bash[22744]: audit 2024-09-16T05:18:55.158223+0000 mon.a (mon.0) 322 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:18:56.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:56 smithi029 bash[22744]: cephadm 2024-09-16T05:18:55.160629+0000 mgr.a (mgr.14150) 92 : cephadm [INF] Updating smithi029:/etc/ceph/ceph.conf 2024-09-16T05:18:56.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:56 smithi029 bash[22744]: cephadm 2024-09-16T05:18:55.161072+0000 mgr.a (mgr.14150) 93 : cephadm [INF] Updating smithi081:/etc/ceph/ceph.conf 2024-09-16T05:18:56.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:56 smithi029 bash[22744]: cephadm 2024-09-16T05:18:55.161659+0000 mgr.a (mgr.14150) 94 : cephadm [INF] Updating smithi167:/etc/ceph/ceph.conf 2024-09-16T05:18:56.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:56 smithi029 bash[22744]: audit 2024-09-16T05:18:55.604669+0000 mon.a (mon.0) 323 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:56.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:56 smithi029 bash[22744]: audit 2024-09-16T05:18:55.609543+0000 mon.a (mon.0) 324 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:56.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:56 smithi029 bash[22744]: audit 2024-09-16T05:18:55.613742+0000 mon.a (mon.0) 325 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:56.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:56 smithi029 bash[22744]: audit 2024-09-16T05:18:55.617803+0000 mon.a (mon.0) 326 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:56.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:56 smithi029 bash[22744]: audit 2024-09-16T05:18:55.621923+0000 mon.a (mon.0) 327 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:56.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:56 smithi029 bash[22744]: audit 2024-09-16T05:18:55.626153+0000 mon.a (mon.0) 328 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:56.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:56 smithi029 bash[22744]: audit 2024-09-16T05:18:55.630558+0000 mon.a (mon.0) 329 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:56.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:56 smithi029 bash[22744]: audit 2024-09-16T05:18:55.685014+0000 mon.a (mon.0) 330 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T05:18:56.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:56 smithi029 bash[22744]: audit 2024-09-16T05:18:55.686440+0000 mon.a (mon.0) 331 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T05:18:56.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:56 smithi029 bash[22744]: audit 2024-09-16T05:18:55.687833+0000 mon.a (mon.0) 332 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:56.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:56 smithi081 bash[23455]: audit 2024-09-16T05:18:55.144172+0000 mon.a (mon.0) 319 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:56.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:56 smithi081 bash[23455]: audit 2024-09-16T05:18:55.151134+0000 mon.a (mon.0) 320 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:18:56.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:56 smithi081 bash[23455]: audit 2024-09-16T05:18:55.156390+0000 mon.a (mon.0) 321 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:56.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:56 smithi081 bash[23455]: audit 2024-09-16T05:18:55.158223+0000 mon.a (mon.0) 322 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:18:56.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:56 smithi081 bash[23455]: cephadm 2024-09-16T05:18:55.160629+0000 mgr.a (mgr.14150) 92 : cephadm [INF] Updating smithi029:/etc/ceph/ceph.conf 2024-09-16T05:18:56.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:56 smithi081 bash[23455]: cephadm 2024-09-16T05:18:55.161072+0000 mgr.a (mgr.14150) 93 : cephadm [INF] Updating smithi081:/etc/ceph/ceph.conf 2024-09-16T05:18:56.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:56 smithi081 bash[23455]: cephadm 2024-09-16T05:18:55.161659+0000 mgr.a (mgr.14150) 94 : cephadm [INF] Updating smithi167:/etc/ceph/ceph.conf 2024-09-16T05:18:56.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:56 smithi081 bash[23455]: audit 2024-09-16T05:18:55.604669+0000 mon.a (mon.0) 323 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:56.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:56 smithi081 bash[23455]: audit 2024-09-16T05:18:55.609543+0000 mon.a (mon.0) 324 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:56.621 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:56 smithi081 bash[23455]: audit 2024-09-16T05:18:55.613742+0000 mon.a (mon.0) 325 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:56.621 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:56 smithi081 bash[23455]: audit 2024-09-16T05:18:55.617803+0000 mon.a (mon.0) 326 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:56.621 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:56 smithi081 bash[23455]: audit 2024-09-16T05:18:55.621923+0000 mon.a (mon.0) 327 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:56.621 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:56 smithi081 bash[23455]: audit 2024-09-16T05:18:55.626153+0000 mon.a (mon.0) 328 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:56.621 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:56 smithi081 bash[23455]: audit 2024-09-16T05:18:55.630558+0000 mon.a (mon.0) 329 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:56.621 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:56 smithi081 bash[23455]: audit 2024-09-16T05:18:55.685014+0000 mon.a (mon.0) 330 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T05:18:56.621 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:56 smithi081 bash[23455]: audit 2024-09-16T05:18:55.686440+0000 mon.a (mon.0) 331 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T05:18:56.621 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:56 smithi081 bash[23455]: audit 2024-09-16T05:18:55.687833+0000 mon.a (mon.0) 332 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:18:57.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:57 smithi167 bash[23275]: cluster 2024-09-16T05:18:55.304357+0000 mgr.a (mgr.14150) 95 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:57.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:57 smithi167 bash[23275]: cephadm 2024-09-16T05:18:55.406587+0000 mgr.a (mgr.14150) 96 : cephadm [INF] Updating smithi029:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T05:18:57.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:57 smithi167 bash[23275]: cephadm 2024-09-16T05:18:55.407066+0000 mgr.a (mgr.14150) 97 : cephadm [INF] Updating smithi081:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T05:18:57.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:57 smithi167 bash[23275]: cephadm 2024-09-16T05:18:55.407792+0000 mgr.a (mgr.14150) 98 : cephadm [INF] Updating smithi167:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T05:18:57.493 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:57 smithi167 bash[23275]: cephadm 2024-09-16T05:18:55.684365+0000 mgr.a (mgr.14150) 99 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-09-16T05:18:57.493 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:57 smithi167 bash[23275]: cephadm 2024-09-16T05:18:55.689026+0000 mgr.a (mgr.14150) 100 : cephadm [INF] Reconfiguring daemon mon.a on smithi029 2024-09-16T05:18:57.538 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:57 smithi029 bash[22744]: cluster 2024-09-16T05:18:55.304357+0000 mgr.a (mgr.14150) 95 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:57.538 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:57 smithi029 bash[22744]: cephadm 2024-09-16T05:18:55.406587+0000 mgr.a (mgr.14150) 96 : cephadm [INF] Updating smithi029:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T05:18:57.539 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:57 smithi029 bash[22744]: cephadm 2024-09-16T05:18:55.407066+0000 mgr.a (mgr.14150) 97 : cephadm [INF] Updating smithi081:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T05:18:57.539 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:57 smithi029 bash[22744]: cephadm 2024-09-16T05:18:55.407792+0000 mgr.a (mgr.14150) 98 : cephadm [INF] Updating smithi167:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T05:18:57.539 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:57 smithi029 bash[22744]: cephadm 2024-09-16T05:18:55.684365+0000 mgr.a (mgr.14150) 99 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-09-16T05:18:57.539 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:57 smithi029 bash[22744]: cephadm 2024-09-16T05:18:55.689026+0000 mgr.a (mgr.14150) 100 : cephadm [INF] Reconfiguring daemon mon.a on smithi029 2024-09-16T05:18:57.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:57 smithi081 bash[23455]: cluster 2024-09-16T05:18:55.304357+0000 mgr.a (mgr.14150) 95 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:57.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:57 smithi081 bash[23455]: cephadm 2024-09-16T05:18:55.406587+0000 mgr.a (mgr.14150) 96 : cephadm [INF] Updating smithi029:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T05:18:57.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:57 smithi081 bash[23455]: cephadm 2024-09-16T05:18:55.407066+0000 mgr.a (mgr.14150) 97 : cephadm [INF] Updating smithi081:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T05:18:57.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:57 smithi081 bash[23455]: cephadm 2024-09-16T05:18:55.407792+0000 mgr.a (mgr.14150) 98 : cephadm [INF] Updating smithi167:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T05:18:57.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:57 smithi081 bash[23455]: cephadm 2024-09-16T05:18:55.684365+0000 mgr.a (mgr.14150) 99 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-09-16T05:18:57.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:57 smithi081 bash[23455]: cephadm 2024-09-16T05:18:55.689026+0000 mgr.a (mgr.14150) 100 : cephadm [INF] Reconfiguring daemon mon.a on smithi029 2024-09-16T05:18:58.140 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:18:59.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:59 smithi167 bash[23275]: cluster 2024-09-16T05:18:57.304737+0000 mgr.a (mgr.14150) 101 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:59.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:59 smithi167 bash[23275]: audit 2024-09-16T05:18:58.809082+0000 mon.a (mon.0) 333 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:59.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:18:59 smithi167 bash[23275]: audit 2024-09-16T05:18:58.814395+0000 mon.a (mon.0) 334 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:59.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:59 smithi029 bash[22744]: cluster 2024-09-16T05:18:57.304737+0000 mgr.a (mgr.14150) 101 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:59.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:59 smithi029 bash[22744]: audit 2024-09-16T05:18:58.809082+0000 mon.a (mon.0) 333 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:59.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:18:59 smithi029 bash[22744]: audit 2024-09-16T05:18:58.814395+0000 mon.a (mon.0) 334 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:59.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:59 smithi081 bash[23455]: cluster 2024-09-16T05:18:57.304737+0000 mgr.a (mgr.14150) 101 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:18:59.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:59 smithi081 bash[23455]: audit 2024-09-16T05:18:58.809082+0000 mon.a (mon.0) 333 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:59.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:18:59 smithi081 bash[23455]: audit 2024-09-16T05:18:58.814395+0000 mon.a (mon.0) 334 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:18:59.911 INFO:teuthology.orchestra.run.smithi029.stdout:# minimal ceph.conf for 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:18:59.911 INFO:teuthology.orchestra.run.smithi029.stdout:[global] 2024-09-16T05:18:59.911 INFO:teuthology.orchestra.run.smithi029.stdout: fsid = 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:18:59.911 INFO:teuthology.orchestra.run.smithi029.stdout: mon_host = [v2:172.21.15.29:3300/0,v1:172.21.15.29:6789/0] [v2:172.21.15.81:3300/0,v1:172.21.15.81:6789/0] [v2:172.21.15.167:3300/0,v1:172.21.15.167:6789/0] 2024-09-16T05:19:00.208 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:00 smithi029 bash[22744]: audit 2024-09-16T05:18:59.911485+0000 mon.a (mon.0) 335 : audit [DBG] from='client.? 172.21.15.29:0/3585348172' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:19:00.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:00 smithi167 bash[23275]: audit 2024-09-16T05:18:59.911485+0000 mon.a (mon.0) 335 : audit [DBG] from='client.? 172.21.15.29:0/3585348172' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:19:00.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:00 smithi081 bash[23455]: audit 2024-09-16T05:18:59.911485+0000 mon.a (mon.0) 335 : audit [DBG] from='client.? 172.21.15.29:0/3585348172' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:19:00.793 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-09-16T05:19:00.793 DEBUG:teuthology.orchestra.run.smithi029:> set -ex 2024-09-16T05:19:00.794 DEBUG:teuthology.orchestra.run.smithi029:> sudo dd of=/etc/ceph/ceph.conf 2024-09-16T05:19:00.851 DEBUG:teuthology.orchestra.run.smithi029:> set -ex 2024-09-16T05:19:00.851 DEBUG:teuthology.orchestra.run.smithi029:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-16T05:19:00.906 DEBUG:teuthology.orchestra.run.smithi081:> set -ex 2024-09-16T05:19:00.906 DEBUG:teuthology.orchestra.run.smithi081:> sudo dd of=/etc/ceph/ceph.conf 2024-09-16T05:19:00.921 DEBUG:teuthology.orchestra.run.smithi081:> set -ex 2024-09-16T05:19:00.921 DEBUG:teuthology.orchestra.run.smithi081:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-16T05:19:00.977 DEBUG:teuthology.orchestra.run.smithi167:> set -ex 2024-09-16T05:19:00.977 DEBUG:teuthology.orchestra.run.smithi167:> sudo dd of=/etc/ceph/ceph.conf 2024-09-16T05:19:00.992 DEBUG:teuthology.orchestra.run.smithi167:> set -ex 2024-09-16T05:19:00.992 DEBUG:teuthology.orchestra.run.smithi167:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-16T05:19:01.048 INFO:tasks.cephadm:Adding mgr.a on smithi029 2024-09-16T05:19:01.048 INFO:tasks.cephadm:Adding mgr.b on smithi081 2024-09-16T05:19:01.048 DEBUG:teuthology.orchestra.run.smithi167:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph orch apply mgr '2;smithi029=a;smithi081=b' 2024-09-16T05:19:01.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:01 smithi167 bash[23275]: cluster 2024-09-16T05:18:59.305163+0000 mgr.a (mgr.14150) 102 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:01.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:01 smithi029 bash[22744]: cluster 2024-09-16T05:18:59.305163+0000 mgr.a (mgr.14150) 102 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:01.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:01 smithi081 bash[23455]: cluster 2024-09-16T05:18:59.305163+0000 mgr.a (mgr.14150) 102 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:03.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:03 smithi029 bash[22744]: cluster 2024-09-16T05:19:01.305598+0000 mgr.a (mgr.14150) 103 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:03.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:03 smithi167 bash[23275]: cluster 2024-09-16T05:19:01.305598+0000 mgr.a (mgr.14150) 103 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:03.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:03 smithi081 bash[23455]: cluster 2024-09-16T05:19:01.305598+0000 mgr.a (mgr.14150) 103 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:04.805 INFO:teuthology.orchestra.run.smithi167.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.c/config 2024-09-16T05:19:05.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:05 smithi167 bash[23275]: cluster 2024-09-16T05:19:03.305958+0000 mgr.a (mgr.14150) 104 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:05.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:05 smithi029 bash[22744]: cluster 2024-09-16T05:19:03.305958+0000 mgr.a (mgr.14150) 104 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:05.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:05 smithi081 bash[23455]: cluster 2024-09-16T05:19:03.305958+0000 mgr.a (mgr.14150) 104 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:06.571 INFO:teuthology.orchestra.run.smithi167.stdout:Scheduled mgr update... 2024-09-16T05:19:07.227 DEBUG:teuthology.orchestra.run.smithi081:mgr.b> sudo journalctl -f -n 0 -u ceph-825322c2-73ea-11ef-bceb-c7b262605968@mgr.b.service 2024-09-16T05:19:07.230 INFO:tasks.cephadm:Deploying OSDs... 2024-09-16T05:19:07.230 DEBUG:teuthology.orchestra.run.smithi029:> set -ex 2024-09-16T05:19:07.230 DEBUG:teuthology.orchestra.run.smithi029:> dd if=/scratch_devs of=/dev/stdout 2024-09-16T05:19:07.237 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-09-16T05:19:07.237 DEBUG:teuthology.orchestra.run.smithi029:> stat /dev/vg_nvme/lv_1 2024-09-16T05:19:07.290 INFO:teuthology.orchestra.run.smithi029.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-16T05:19:07.291 INFO:teuthology.orchestra.run.smithi029.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T05:19:07.291 INFO:teuthology.orchestra.run.smithi029.stdout:Device: 5h/5d Inode: 877 Links: 1 2024-09-16T05:19:07.291 INFO:teuthology.orchestra.run.smithi029.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T05:19:07.291 INFO:teuthology.orchestra.run.smithi029.stdout:Access: 2024-09-16 05:08:25.126852920 +0000 2024-09-16T05:19:07.291 INFO:teuthology.orchestra.run.smithi029.stdout:Modify: 2024-09-16 05:08:24.874855172 +0000 2024-09-16T05:19:07.291 INFO:teuthology.orchestra.run.smithi029.stdout:Change: 2024-09-16 05:08:24.874855172 +0000 2024-09-16T05:19:07.291 INFO:teuthology.orchestra.run.smithi029.stdout: Birth: - 2024-09-16T05:19:07.292 DEBUG:teuthology.orchestra.run.smithi029:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-16T05:19:07.344 INFO:teuthology.orchestra.run.smithi029.stderr:1+0 records in 2024-09-16T05:19:07.345 INFO:teuthology.orchestra.run.smithi029.stderr:1+0 records out 2024-09-16T05:19:07.345 INFO:teuthology.orchestra.run.smithi029.stderr:512 bytes copied, 0.000329994 s, 1.6 MB/s 2024-09-16T05:19:07.346 DEBUG:teuthology.orchestra.run.smithi029:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-16T05:19:07.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:07 smithi081 bash[23455]: cluster 2024-09-16T05:19:05.306327+0000 mgr.a (mgr.14150) 105 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:07.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:07 smithi081 bash[23455]: audit 2024-09-16T05:19:06.570698+0000 mon.a (mon.0) 336 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:07.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:07 smithi081 bash[23455]: audit 2024-09-16T05:19:06.572016+0000 mon.a (mon.0) 337 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:19:07.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:07 smithi081 bash[23455]: audit 2024-09-16T05:19:06.575285+0000 mon.a (mon.0) 338 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:19:07.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:07 smithi081 bash[23455]: audit 2024-09-16T05:19:06.576487+0000 mon.a (mon.0) 339 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:19:07.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:07 smithi081 bash[23455]: audit 2024-09-16T05:19:06.582619+0000 mon.a (mon.0) 340 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:07.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:07 smithi081 bash[23455]: audit 2024-09-16T05:19:06.584588+0000 mon.a (mon.0) 341 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-16T05:19:07.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:07 smithi081 bash[23455]: audit 2024-09-16T05:19:06.586228+0000 mon.a (mon.0) 342 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-16T05:19:07.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:07 smithi081 bash[23455]: audit 2024-09-16T05:19:06.588369+0000 mon.a (mon.0) 343 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-16T05:19:07.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:07 smithi081 bash[23455]: audit 2024-09-16T05:19:06.589763+0000 mon.a (mon.0) 344 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:19:07.383 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:07 smithi029 bash[22744]: cluster 2024-09-16T05:19:05.306327+0000 mgr.a (mgr.14150) 105 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:07.383 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:07 smithi029 bash[22744]: audit 2024-09-16T05:19:06.570698+0000 mon.a (mon.0) 336 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:07.383 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:07 smithi029 bash[22744]: audit 2024-09-16T05:19:06.572016+0000 mon.a (mon.0) 337 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:19:07.383 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:07 smithi029 bash[22744]: audit 2024-09-16T05:19:06.575285+0000 mon.a (mon.0) 338 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:19:07.383 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:07 smithi029 bash[22744]: audit 2024-09-16T05:19:06.576487+0000 mon.a (mon.0) 339 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:19:07.383 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:07 smithi029 bash[22744]: audit 2024-09-16T05:19:06.582619+0000 mon.a (mon.0) 340 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:07.383 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:07 smithi029 bash[22744]: audit 2024-09-16T05:19:06.584588+0000 mon.a (mon.0) 341 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-16T05:19:07.383 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:07 smithi029 bash[22744]: audit 2024-09-16T05:19:06.586228+0000 mon.a (mon.0) 342 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-16T05:19:07.384 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:07 smithi029 bash[22744]: audit 2024-09-16T05:19:06.588369+0000 mon.a (mon.0) 343 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-16T05:19:07.384 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:07 smithi029 bash[22744]: audit 2024-09-16T05:19:06.589763+0000 mon.a (mon.0) 344 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:19:07.390 DEBUG:teuthology.orchestra.run.smithi029:> stat /dev/vg_nvme/lv_2 2024-09-16T05:19:07.438 INFO:teuthology.orchestra.run.smithi029.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-16T05:19:07.438 INFO:teuthology.orchestra.run.smithi029.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T05:19:07.438 INFO:teuthology.orchestra.run.smithi029.stdout:Device: 5h/5d Inode: 888 Links: 1 2024-09-16T05:19:07.438 INFO:teuthology.orchestra.run.smithi029.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T05:19:07.438 INFO:teuthology.orchestra.run.smithi029.stdout:Access: 2024-09-16 05:08:25.602848670 +0000 2024-09-16T05:19:07.438 INFO:teuthology.orchestra.run.smithi029.stdout:Modify: 2024-09-16 05:08:25.350850921 +0000 2024-09-16T05:19:07.438 INFO:teuthology.orchestra.run.smithi029.stdout:Change: 2024-09-16 05:08:25.350850921 +0000 2024-09-16T05:19:07.438 INFO:teuthology.orchestra.run.smithi029.stdout: Birth: - 2024-09-16T05:19:07.439 DEBUG:teuthology.orchestra.run.smithi029:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-16T05:19:07.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:07 smithi167 bash[23275]: cluster 2024-09-16T05:19:05.306327+0000 mgr.a (mgr.14150) 105 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:07.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:07 smithi167 bash[23275]: audit 2024-09-16T05:19:06.570698+0000 mon.a (mon.0) 336 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:07.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:07 smithi167 bash[23275]: audit 2024-09-16T05:19:06.572016+0000 mon.a (mon.0) 337 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:19:07.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:07 smithi167 bash[23275]: audit 2024-09-16T05:19:06.575285+0000 mon.a (mon.0) 338 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:19:07.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:07 smithi167 bash[23275]: audit 2024-09-16T05:19:06.576487+0000 mon.a (mon.0) 339 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:19:07.493 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:07 smithi167 bash[23275]: audit 2024-09-16T05:19:06.582619+0000 mon.a (mon.0) 340 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:07.493 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:07 smithi167 bash[23275]: audit 2024-09-16T05:19:06.584588+0000 mon.a (mon.0) 341 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-16T05:19:07.493 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:07 smithi167 bash[23275]: audit 2024-09-16T05:19:06.586228+0000 mon.a (mon.0) 342 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-16T05:19:07.493 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:07 smithi167 bash[23275]: audit 2024-09-16T05:19:06.588369+0000 mon.a (mon.0) 343 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-16T05:19:07.493 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:07 smithi167 bash[23275]: audit 2024-09-16T05:19:06.589763+0000 mon.a (mon.0) 344 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:19:07.495 INFO:teuthology.orchestra.run.smithi029.stderr:1+0 records in 2024-09-16T05:19:07.496 INFO:teuthology.orchestra.run.smithi029.stderr:1+0 records out 2024-09-16T05:19:07.496 INFO:teuthology.orchestra.run.smithi029.stderr:512 bytes copied, 0.00030803 s, 1.7 MB/s 2024-09-16T05:19:07.497 DEBUG:teuthology.orchestra.run.smithi029:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-16T05:19:07.548 DEBUG:teuthology.orchestra.run.smithi029:> stat /dev/vg_nvme/lv_3 2024-09-16T05:19:07.593 INFO:teuthology.orchestra.run.smithi029.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-16T05:19:07.594 INFO:teuthology.orchestra.run.smithi029.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T05:19:07.594 INFO:teuthology.orchestra.run.smithi029.stdout:Device: 5h/5d Inode: 906 Links: 1 2024-09-16T05:19:07.594 INFO:teuthology.orchestra.run.smithi029.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T05:19:07.594 INFO:teuthology.orchestra.run.smithi029.stdout:Access: 2024-09-16 05:08:25.838846561 +0000 2024-09-16T05:19:07.594 INFO:teuthology.orchestra.run.smithi029.stdout:Modify: 2024-09-16 05:08:25.834846597 +0000 2024-09-16T05:19:07.594 INFO:teuthology.orchestra.run.smithi029.stdout:Change: 2024-09-16 05:08:25.834846597 +0000 2024-09-16T05:19:07.594 INFO:teuthology.orchestra.run.smithi029.stdout: Birth: - 2024-09-16T05:19:07.594 DEBUG:teuthology.orchestra.run.smithi029:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-16T05:19:07.648 INFO:teuthology.orchestra.run.smithi029.stderr:1+0 records in 2024-09-16T05:19:07.648 INFO:teuthology.orchestra.run.smithi029.stderr:1+0 records out 2024-09-16T05:19:07.649 INFO:teuthology.orchestra.run.smithi029.stderr:512 bytes copied, 0.000294885 s, 1.7 MB/s 2024-09-16T05:19:07.650 DEBUG:teuthology.orchestra.run.smithi029:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-16T05:19:07.699 DEBUG:teuthology.orchestra.run.smithi029:> stat /dev/vg_nvme/lv_4 2024-09-16T05:19:07.745 INFO:teuthology.orchestra.run.smithi029.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-16T05:19:07.745 INFO:teuthology.orchestra.run.smithi029.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T05:19:07.745 INFO:teuthology.orchestra.run.smithi029.stdout:Device: 5h/5d Inode: 925 Links: 1 2024-09-16T05:19:07.745 INFO:teuthology.orchestra.run.smithi029.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T05:19:07.745 INFO:teuthology.orchestra.run.smithi029.stdout:Access: 2024-09-16 05:08:26.574839987 +0000 2024-09-16T05:19:07.746 INFO:teuthology.orchestra.run.smithi029.stdout:Modify: 2024-09-16 05:08:26.318842274 +0000 2024-09-16T05:19:07.746 INFO:teuthology.orchestra.run.smithi029.stdout:Change: 2024-09-16 05:08:26.318842274 +0000 2024-09-16T05:19:07.746 INFO:teuthology.orchestra.run.smithi029.stdout: Birth: - 2024-09-16T05:19:07.746 DEBUG:teuthology.orchestra.run.smithi029:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-16T05:19:07.800 INFO:teuthology.orchestra.run.smithi029.stderr:1+0 records in 2024-09-16T05:19:07.800 INFO:teuthology.orchestra.run.smithi029.stderr:1+0 records out 2024-09-16T05:19:07.800 INFO:teuthology.orchestra.run.smithi029.stderr:512 bytes copied, 0.000263895 s, 1.9 MB/s 2024-09-16T05:19:07.801 DEBUG:teuthology.orchestra.run.smithi029:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-16T05:19:07.851 DEBUG:teuthology.orchestra.run.smithi081:> set -ex 2024-09-16T05:19:07.851 DEBUG:teuthology.orchestra.run.smithi081:> dd if=/scratch_devs of=/dev/stdout 2024-09-16T05:19:07.858 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-09-16T05:19:07.858 DEBUG:teuthology.orchestra.run.smithi081:> stat /dev/vg_nvme/lv_1 2024-09-16T05:19:07.906 INFO:teuthology.orchestra.run.smithi081.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-16T05:19:07.906 INFO:teuthology.orchestra.run.smithi081.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T05:19:07.906 INFO:teuthology.orchestra.run.smithi081.stdout:Device: 5h/5d Inode: 878 Links: 1 2024-09-16T05:19:07.906 INFO:teuthology.orchestra.run.smithi081.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T05:19:07.906 INFO:teuthology.orchestra.run.smithi081.stdout:Access: 2024-09-16 05:08:13.189124553 +0000 2024-09-16T05:19:07.906 INFO:teuthology.orchestra.run.smithi081.stdout:Modify: 2024-09-16 05:08:12.937126805 +0000 2024-09-16T05:19:07.906 INFO:teuthology.orchestra.run.smithi081.stdout:Change: 2024-09-16 05:08:12.937126805 +0000 2024-09-16T05:19:07.906 INFO:teuthology.orchestra.run.smithi081.stdout: Birth: - 2024-09-16T05:19:07.907 DEBUG:teuthology.orchestra.run.smithi081:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-16T05:19:07.960 INFO:teuthology.orchestra.run.smithi081.stderr:1+0 records in 2024-09-16T05:19:07.960 INFO:teuthology.orchestra.run.smithi081.stderr:1+0 records out 2024-09-16T05:19:07.961 INFO:teuthology.orchestra.run.smithi081.stderr:512 bytes copied, 0.000363748 s, 1.4 MB/s 2024-09-16T05:19:07.962 DEBUG:teuthology.orchestra.run.smithi081:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-16T05:19:08.011 DEBUG:teuthology.orchestra.run.smithi081:> stat /dev/vg_nvme/lv_2 2024-09-16T05:19:08.057 INFO:teuthology.orchestra.run.smithi081.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-16T05:19:08.057 INFO:teuthology.orchestra.run.smithi081.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T05:19:08.057 INFO:teuthology.orchestra.run.smithi081.stdout:Device: 5h/5d Inode: 896 Links: 1 2024-09-16T05:19:08.057 INFO:teuthology.orchestra.run.smithi081.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T05:19:08.058 INFO:teuthology.orchestra.run.smithi081.stdout:Access: 2024-09-16 05:08:13.689120086 +0000 2024-09-16T05:19:08.058 INFO:teuthology.orchestra.run.smithi081.stdout:Modify: 2024-09-16 05:08:13.413122552 +0000 2024-09-16T05:19:08.058 INFO:teuthology.orchestra.run.smithi081.stdout:Change: 2024-09-16 05:08:13.413122552 +0000 2024-09-16T05:19:08.058 INFO:teuthology.orchestra.run.smithi081.stdout: Birth: - 2024-09-16T05:19:08.058 DEBUG:teuthology.orchestra.run.smithi081:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-16T05:19:08.112 INFO:teuthology.orchestra.run.smithi081.stderr:1+0 records in 2024-09-16T05:19:08.112 INFO:teuthology.orchestra.run.smithi081.stderr:1+0 records out 2024-09-16T05:19:08.113 INFO:teuthology.orchestra.run.smithi081.stderr:512 bytes copied, 0.000413917 s, 1.2 MB/s 2024-09-16T05:19:08.113 DEBUG:teuthology.orchestra.run.smithi081:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-16T05:19:08.163 DEBUG:teuthology.orchestra.run.smithi081:> stat /dev/vg_nvme/lv_3 2024-09-16T05:19:08.210 INFO:teuthology.orchestra.run.smithi081.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-16T05:19:08.211 INFO:teuthology.orchestra.run.smithi081.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T05:19:08.211 INFO:teuthology.orchestra.run.smithi081.stdout:Device: 5h/5d Inode: 920 Links: 1 2024-09-16T05:19:08.211 INFO:teuthology.orchestra.run.smithi081.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T05:19:08.211 INFO:teuthology.orchestra.run.smithi081.stdout:Access: 2024-09-16 05:08:13.941117837 +0000 2024-09-16T05:19:08.211 INFO:teuthology.orchestra.run.smithi081.stdout:Modify: 2024-09-16 05:08:13.937117871 +0000 2024-09-16T05:19:08.211 INFO:teuthology.orchestra.run.smithi081.stdout:Change: 2024-09-16 05:08:13.937117871 +0000 2024-09-16T05:19:08.211 INFO:teuthology.orchestra.run.smithi081.stdout: Birth: - 2024-09-16T05:19:08.211 DEBUG:teuthology.orchestra.run.smithi081:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-16T05:19:08.263 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:08 smithi081 bash[23455]: audit 2024-09-16T05:19:06.562291+0000 mgr.a (mgr.14150) 106 : audit [DBG] from='client.24106 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi029=a;smithi081=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:19:08.263 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:08 smithi081 bash[23455]: cephadm 2024-09-16T05:19:06.565213+0000 mgr.a (mgr.14150) 107 : cephadm [INF] Saving service mgr spec with placement smithi029=a;smithi081=b;count:2 2024-09-16T05:19:08.263 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:08 smithi081 bash[23455]: cephadm 2024-09-16T05:19:06.590764+0000 mgr.a (mgr.14150) 108 : cephadm [INF] Deploying daemon mgr.b on smithi081 2024-09-16T05:19:08.265 INFO:teuthology.orchestra.run.smithi081.stderr:1+0 records in 2024-09-16T05:19:08.265 INFO:teuthology.orchestra.run.smithi081.stderr:1+0 records out 2024-09-16T05:19:08.265 INFO:teuthology.orchestra.run.smithi081.stderr:512 bytes copied, 0.00045167 s, 1.1 MB/s 2024-09-16T05:19:08.266 DEBUG:teuthology.orchestra.run.smithi081:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-16T05:19:08.315 DEBUG:teuthology.orchestra.run.smithi081:> stat /dev/vg_nvme/lv_4 2024-09-16T05:19:08.365 INFO:teuthology.orchestra.run.smithi081.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-16T05:19:08.366 INFO:teuthology.orchestra.run.smithi081.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T05:19:08.366 INFO:teuthology.orchestra.run.smithi081.stdout:Device: 5h/5d Inode: 936 Links: 1 2024-09-16T05:19:08.366 INFO:teuthology.orchestra.run.smithi081.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T05:19:08.366 INFO:teuthology.orchestra.run.smithi081.stdout:Access: 2024-09-16 05:08:14.681111226 +0000 2024-09-16T05:19:08.366 INFO:teuthology.orchestra.run.smithi081.stdout:Modify: 2024-09-16 05:08:14.457113228 +0000 2024-09-16T05:19:08.366 INFO:teuthology.orchestra.run.smithi081.stdout:Change: 2024-09-16 05:08:14.457113228 +0000 2024-09-16T05:19:08.366 INFO:teuthology.orchestra.run.smithi081.stdout: Birth: - 2024-09-16T05:19:08.366 DEBUG:teuthology.orchestra.run.smithi081:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-16T05:19:08.424 INFO:teuthology.orchestra.run.smithi081.stderr:1+0 records in 2024-09-16T05:19:08.424 INFO:teuthology.orchestra.run.smithi081.stderr:1+0 records out 2024-09-16T05:19:08.424 INFO:teuthology.orchestra.run.smithi081.stderr:512 bytes copied, 0.00023854 s, 2.1 MB/s 2024-09-16T05:19:08.425 DEBUG:teuthology.orchestra.run.smithi081:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-16T05:19:08.474 DEBUG:teuthology.orchestra.run.smithi167:> set -ex 2024-09-16T05:19:08.474 DEBUG:teuthology.orchestra.run.smithi167:> dd if=/scratch_devs of=/dev/stdout 2024-09-16T05:19:08.480 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-09-16T05:19:08.480 DEBUG:teuthology.orchestra.run.smithi167:> stat /dev/vg_nvme/lv_1 2024-09-16T05:19:08.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:08 smithi167 bash[23275]: audit 2024-09-16T05:19:06.562291+0000 mgr.a (mgr.14150) 106 : audit [DBG] from='client.24106 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi029=a;smithi081=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:19:08.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:08 smithi167 bash[23275]: cephadm 2024-09-16T05:19:06.565213+0000 mgr.a (mgr.14150) 107 : cephadm [INF] Saving service mgr spec with placement smithi029=a;smithi081=b;count:2 2024-09-16T05:19:08.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:08 smithi167 bash[23275]: cephadm 2024-09-16T05:19:06.590764+0000 mgr.a (mgr.14150) 108 : cephadm [INF] Deploying daemon mgr.b on smithi081 2024-09-16T05:19:08.498 INFO:teuthology.orchestra.run.smithi167.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-16T05:19:08.498 INFO:teuthology.orchestra.run.smithi167.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T05:19:08.498 INFO:teuthology.orchestra.run.smithi167.stdout:Device: 5h/5d Inode: 886 Links: 1 2024-09-16T05:19:08.498 INFO:teuthology.orchestra.run.smithi167.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T05:19:08.498 INFO:teuthology.orchestra.run.smithi167.stdout:Access: 2024-09-16 05:08:13.798771544 +0000 2024-09-16T05:19:08.498 INFO:teuthology.orchestra.run.smithi167.stdout:Modify: 2024-09-16 05:08:13.526773974 +0000 2024-09-16T05:19:08.498 INFO:teuthology.orchestra.run.smithi167.stdout:Change: 2024-09-16 05:08:13.526773974 +0000 2024-09-16T05:19:08.498 INFO:teuthology.orchestra.run.smithi167.stdout: Birth: - 2024-09-16T05:19:08.499 DEBUG:teuthology.orchestra.run.smithi167:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-16T05:19:08.550 INFO:teuthology.orchestra.run.smithi167.stderr:1+0 records in 2024-09-16T05:19:08.550 INFO:teuthology.orchestra.run.smithi167.stderr:1+0 records out 2024-09-16T05:19:08.550 INFO:teuthology.orchestra.run.smithi167.stderr:512 bytes copied, 0.000338112 s, 1.5 MB/s 2024-09-16T05:19:08.551 DEBUG:teuthology.orchestra.run.smithi167:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-16T05:19:08.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:08 smithi029 bash[22744]: audit 2024-09-16T05:19:06.562291+0000 mgr.a (mgr.14150) 106 : audit [DBG] from='client.24106 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi029=a;smithi081=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:19:08.592 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:08 smithi029 bash[22744]: cephadm 2024-09-16T05:19:06.565213+0000 mgr.a (mgr.14150) 107 : cephadm [INF] Saving service mgr spec with placement smithi029=a;smithi081=b;count:2 2024-09-16T05:19:08.592 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:08 smithi029 bash[22744]: cephadm 2024-09-16T05:19:06.590764+0000 mgr.a (mgr.14150) 108 : cephadm [INF] Deploying daemon mgr.b on smithi081 2024-09-16T05:19:08.601 DEBUG:teuthology.orchestra.run.smithi167:> stat /dev/vg_nvme/lv_2 2024-09-16T05:19:08.648 INFO:teuthology.orchestra.run.smithi167.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-16T05:19:08.648 INFO:teuthology.orchestra.run.smithi167.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T05:19:08.648 INFO:teuthology.orchestra.run.smithi167.stdout:Device: 5h/5d Inode: 900 Links: 1 2024-09-16T05:19:08.648 INFO:teuthology.orchestra.run.smithi167.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T05:19:08.648 INFO:teuthology.orchestra.run.smithi167.stdout:Access: 2024-09-16 05:08:14.310766971 +0000 2024-09-16T05:19:08.648 INFO:teuthology.orchestra.run.smithi167.stdout:Modify: 2024-09-16 05:08:14.018769579 +0000 2024-09-16T05:19:08.648 INFO:teuthology.orchestra.run.smithi167.stdout:Change: 2024-09-16 05:08:14.018769579 +0000 2024-09-16T05:19:08.648 INFO:teuthology.orchestra.run.smithi167.stdout: Birth: - 2024-09-16T05:19:08.648 DEBUG:teuthology.orchestra.run.smithi167:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-16T05:19:08.702 INFO:teuthology.orchestra.run.smithi167.stderr:1+0 records in 2024-09-16T05:19:08.702 INFO:teuthology.orchestra.run.smithi167.stderr:1+0 records out 2024-09-16T05:19:08.702 INFO:teuthology.orchestra.run.smithi167.stderr:512 bytes copied, 0.000357127 s, 1.4 MB/s 2024-09-16T05:19:08.703 DEBUG:teuthology.orchestra.run.smithi167:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-16T05:19:08.757 DEBUG:teuthology.orchestra.run.smithi167:> stat /dev/vg_nvme/lv_3 2024-09-16T05:19:08.803 INFO:teuthology.orchestra.run.smithi167.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-16T05:19:08.804 INFO:teuthology.orchestra.run.smithi167.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T05:19:08.804 INFO:teuthology.orchestra.run.smithi167.stdout:Device: 5h/5d Inode: 916 Links: 1 2024-09-16T05:19:08.804 INFO:teuthology.orchestra.run.smithi167.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T05:19:08.804 INFO:teuthology.orchestra.run.smithi167.stdout:Access: 2024-09-16 05:08:14.806762541 +0000 2024-09-16T05:19:08.804 INFO:teuthology.orchestra.run.smithi167.stdout:Modify: 2024-09-16 05:08:14.550764827 +0000 2024-09-16T05:19:08.804 INFO:teuthology.orchestra.run.smithi167.stdout:Change: 2024-09-16 05:08:14.550764827 +0000 2024-09-16T05:19:08.804 INFO:teuthology.orchestra.run.smithi167.stdout: Birth: - 2024-09-16T05:19:08.804 DEBUG:teuthology.orchestra.run.smithi167:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-16T05:19:08.858 INFO:teuthology.orchestra.run.smithi167.stderr:1+0 records in 2024-09-16T05:19:08.858 INFO:teuthology.orchestra.run.smithi167.stderr:1+0 records out 2024-09-16T05:19:08.859 INFO:teuthology.orchestra.run.smithi167.stderr:512 bytes copied, 0.000441157 s, 1.2 MB/s 2024-09-16T05:19:08.860 DEBUG:teuthology.orchestra.run.smithi167:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-16T05:19:08.910 DEBUG:teuthology.orchestra.run.smithi167:> stat /dev/vg_nvme/lv_4 2024-09-16T05:19:08.957 INFO:teuthology.orchestra.run.smithi167.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-16T05:19:08.957 INFO:teuthology.orchestra.run.smithi167.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T05:19:08.957 INFO:teuthology.orchestra.run.smithi167.stdout:Device: 5h/5d Inode: 933 Links: 1 2024-09-16T05:19:08.957 INFO:teuthology.orchestra.run.smithi167.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T05:19:08.957 INFO:teuthology.orchestra.run.smithi167.stdout:Access: 2024-09-16 05:08:15.338757789 +0000 2024-09-16T05:19:08.957 INFO:teuthology.orchestra.run.smithi167.stdout:Modify: 2024-09-16 05:08:15.070760182 +0000 2024-09-16T05:19:08.957 INFO:teuthology.orchestra.run.smithi167.stdout:Change: 2024-09-16 05:08:15.070760182 +0000 2024-09-16T05:19:08.957 INFO:teuthology.orchestra.run.smithi167.stdout: Birth: - 2024-09-16T05:19:08.958 DEBUG:teuthology.orchestra.run.smithi167:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-16T05:19:09.008 INFO:teuthology.orchestra.run.smithi167.stderr:1+0 records in 2024-09-16T05:19:09.008 INFO:teuthology.orchestra.run.smithi167.stderr:1+0 records out 2024-09-16T05:19:09.008 INFO:teuthology.orchestra.run.smithi167.stderr:512 bytes copied, 0.000216114 s, 2.4 MB/s 2024-09-16T05:19:09.009 DEBUG:teuthology.orchestra.run.smithi167:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-16T05:19:09.057 INFO:tasks.cephadm:Deploying osd.0 on smithi029 with /dev/vg_nvme/lv_4... 2024-09-16T05:19:09.057 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_4 2024-09-16T05:19:09.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:09 smithi167 bash[23275]: cluster 2024-09-16T05:19:07.306768+0000 mgr.a (mgr.14150) 109 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:09.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:09 smithi029 bash[22744]: cluster 2024-09-16T05:19:07.306768+0000 mgr.a (mgr.14150) 109 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:09.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:09 smithi081 bash[23455]: cluster 2024-09-16T05:19:07.306768+0000 mgr.a (mgr.14150) 109 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:10.119 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:09 smithi081 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:19:10.119 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:19:10 smithi081 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:19:10.119 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:19:10 smithi081 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:19:10.119 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:19:10 smithi081 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:19:10.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:10 smithi029 bash[22744]: cluster 2024-09-16T05:19:09.307138+0000 mgr.a (mgr.14150) 110 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:10.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:10 smithi029 bash[22744]: audit 2024-09-16T05:19:09.319077+0000 mon.a (mon.0) 345 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:10.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:10 smithi029 bash[22744]: audit 2024-09-16T05:19:09.326030+0000 mon.a (mon.0) 346 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:10.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:10 smithi029 bash[22744]: audit 2024-09-16T05:19:09.334246+0000 mon.a (mon.0) 347 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:10.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:10 smithi029 bash[22744]: audit 2024-09-16T05:19:10.308781+0000 mon.a (mon.0) 348 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:10.611 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:19:10 smithi081 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:19:10.611 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:19:10 smithi081 systemd[1]: Started Ceph mgr.b for 825322c2-73ea-11ef-bceb-c7b262605968. 2024-09-16T05:19:10.612 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:10 smithi081 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:19:10.612 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:10 smithi081 bash[23455]: cluster 2024-09-16T05:19:09.307138+0000 mgr.a (mgr.14150) 110 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:10.612 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:10 smithi081 bash[23455]: audit 2024-09-16T05:19:09.319077+0000 mon.a (mon.0) 345 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:10.612 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:10 smithi081 bash[23455]: audit 2024-09-16T05:19:09.326030+0000 mon.a (mon.0) 346 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:10.612 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:10 smithi081 bash[23455]: audit 2024-09-16T05:19:09.334246+0000 mon.a (mon.0) 347 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:10.612 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:10 smithi081 bash[23455]: audit 2024-09-16T05:19:10.308781+0000 mon.a (mon.0) 348 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:10.742 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:10 smithi167 bash[23275]: cluster 2024-09-16T05:19:09.307138+0000 mgr.a (mgr.14150) 110 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:10.742 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:10 smithi167 bash[23275]: audit 2024-09-16T05:19:09.319077+0000 mon.a (mon.0) 345 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:10.742 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:10 smithi167 bash[23275]: audit 2024-09-16T05:19:09.326030+0000 mon.a (mon.0) 346 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:10.742 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:10 smithi167 bash[23275]: audit 2024-09-16T05:19:09.334246+0000 mon.a (mon.0) 347 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:10.742 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:10 smithi167 bash[23275]: audit 2024-09-16T05:19:10.308781+0000 mon.a (mon.0) 348 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:11.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:11 smithi029 bash[22744]: audit 2024-09-16T05:19:10.316378+0000 mon.a (mon.0) 349 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:11.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:11 smithi029 bash[22744]: audit 2024-09-16T05:19:10.328476+0000 mon.a (mon.0) 350 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:11.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:11 smithi029 bash[22744]: audit 2024-09-16T05:19:10.335523+0000 mon.a (mon.0) 351 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:11.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:11 smithi029 bash[22744]: audit 2024-09-16T05:19:10.421615+0000 mon.a (mon.0) 352 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:19:11.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:11 smithi029 bash[22744]: audit 2024-09-16T05:19:10.425904+0000 mon.a (mon.0) 353 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:19:11.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:11 smithi029 bash[22744]: audit 2024-09-16T05:19:10.427537+0000 mon.a (mon.0) 354 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:19:11.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:11 smithi029 bash[22744]: audit 2024-09-16T05:19:10.436763+0000 mon.a (mon.0) 355 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:11.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:11 smithi029 bash[22744]: cephadm 2024-09-16T05:19:10.437659+0000 mgr.a (mgr.14150) 111 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-09-16T05:19:11.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:11 smithi029 bash[22744]: cephadm 2024-09-16T05:19:10.515738+0000 mgr.a (mgr.14150) 112 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-09-16T05:19:11.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:11 smithi029 bash[22744]: audit 2024-09-16T05:19:10.516288+0000 mon.a (mon.0) 356 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-16T05:19:11.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:11 smithi029 bash[22744]: audit 2024-09-16T05:19:10.517811+0000 mon.a (mon.0) 357 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-16T05:19:11.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:11 smithi029 bash[22744]: audit 2024-09-16T05:19:10.518954+0000 mon.a (mon.0) 358 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:19:11.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:11 smithi029 bash[22744]: cephadm 2024-09-16T05:19:10.520270+0000 mgr.a (mgr.14150) 113 : cephadm [INF] Reconfiguring daemon mgr.a on smithi029 2024-09-16T05:19:11.591 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:11 smithi029 bash[22744]: audit 2024-09-16T05:19:10.899631+0000 mon.a (mon.0) 359 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:11.649 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:11 smithi081 bash[23455]: audit 2024-09-16T05:19:10.316378+0000 mon.a (mon.0) 349 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:11.649 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:11 smithi081 bash[23455]: audit 2024-09-16T05:19:10.328476+0000 mon.a (mon.0) 350 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:11.649 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:11 smithi081 bash[23455]: audit 2024-09-16T05:19:10.335523+0000 mon.a (mon.0) 351 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:11.650 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:11 smithi081 bash[23455]: audit 2024-09-16T05:19:10.421615+0000 mon.a (mon.0) 352 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:19:11.650 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:11 smithi081 bash[23455]: audit 2024-09-16T05:19:10.425904+0000 mon.a (mon.0) 353 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:19:11.650 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:11 smithi081 bash[23455]: audit 2024-09-16T05:19:10.427537+0000 mon.a (mon.0) 354 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:19:11.650 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:11 smithi081 bash[23455]: audit 2024-09-16T05:19:10.436763+0000 mon.a (mon.0) 355 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:11.650 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:11 smithi081 bash[23455]: cephadm 2024-09-16T05:19:10.437659+0000 mgr.a (mgr.14150) 111 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-09-16T05:19:11.650 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:11 smithi081 bash[23455]: cephadm 2024-09-16T05:19:10.515738+0000 mgr.a (mgr.14150) 112 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-09-16T05:19:11.650 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:11 smithi081 bash[23455]: audit 2024-09-16T05:19:10.516288+0000 mon.a (mon.0) 356 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-16T05:19:11.651 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:11 smithi081 bash[23455]: audit 2024-09-16T05:19:10.517811+0000 mon.a (mon.0) 357 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-16T05:19:11.651 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:11 smithi081 bash[23455]: audit 2024-09-16T05:19:10.518954+0000 mon.a (mon.0) 358 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:19:11.651 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:11 smithi081 bash[23455]: cephadm 2024-09-16T05:19:10.520270+0000 mgr.a (mgr.14150) 113 : cephadm [INF] Reconfiguring daemon mgr.a on smithi029 2024-09-16T05:19:11.651 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:11 smithi081 bash[23455]: audit 2024-09-16T05:19:10.899631+0000 mon.a (mon.0) 359 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:11.742 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:11 smithi167 bash[23275]: audit 2024-09-16T05:19:10.316378+0000 mon.a (mon.0) 349 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:11.742 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:11 smithi167 bash[23275]: audit 2024-09-16T05:19:10.328476+0000 mon.a (mon.0) 350 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:11.743 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:11 smithi167 bash[23275]: audit 2024-09-16T05:19:10.335523+0000 mon.a (mon.0) 351 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:11.743 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:11 smithi167 bash[23275]: audit 2024-09-16T05:19:10.421615+0000 mon.a (mon.0) 352 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:19:11.743 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:11 smithi167 bash[23275]: audit 2024-09-16T05:19:10.425904+0000 mon.a (mon.0) 353 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:19:11.743 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:11 smithi167 bash[23275]: audit 2024-09-16T05:19:10.427537+0000 mon.a (mon.0) 354 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:19:11.743 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:11 smithi167 bash[23275]: audit 2024-09-16T05:19:10.436763+0000 mon.a (mon.0) 355 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:11.743 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:11 smithi167 bash[23275]: cephadm 2024-09-16T05:19:10.437659+0000 mgr.a (mgr.14150) 111 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-09-16T05:19:11.743 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:11 smithi167 bash[23275]: cephadm 2024-09-16T05:19:10.515738+0000 mgr.a (mgr.14150) 112 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-09-16T05:19:11.743 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:11 smithi167 bash[23275]: audit 2024-09-16T05:19:10.516288+0000 mon.a (mon.0) 356 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-16T05:19:11.743 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:11 smithi167 bash[23275]: audit 2024-09-16T05:19:10.517811+0000 mon.a (mon.0) 357 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-16T05:19:11.743 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:11 smithi167 bash[23275]: audit 2024-09-16T05:19:10.518954+0000 mon.a (mon.0) 358 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:19:11.743 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:11 smithi167 bash[23275]: cephadm 2024-09-16T05:19:10.520270+0000 mgr.a (mgr.14150) 113 : cephadm [INF] Reconfiguring daemon mgr.a on smithi029 2024-09-16T05:19:11.743 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:11 smithi167 bash[23275]: audit 2024-09-16T05:19:10.899631+0000 mon.a (mon.0) 359 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:12.077 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:19:11 smithi081 bash[24333]: debug 2024-09-16T05:19:11.967+0000 7fd55e919640 1 -- 172.21.15.81:0/3017724818 <== mon.2 v2:172.21.15.81:3300/0 4 ==== auth_reply(proto 2 0 (0) Success) ==== 194+0+0 (secure 0 0 0) 0x559bc2bbd0e0 con 0x559bc2bbf400 2024-09-16T05:19:12.077 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:19:12 smithi081 bash[24333]: debug 2024-09-16T05:19:12.075+0000 7fd561183040 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-16T05:19:13.089 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:12 smithi029 bash[22744]: cluster 2024-09-16T05:19:11.307591+0000 mgr.a (mgr.14150) 114 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:13.090 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:12 smithi029 bash[22744]: audit 2024-09-16T05:19:11.804107+0000 mon.a (mon.0) 360 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:13.090 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:12 smithi029 bash[22744]: audit 2024-09-16T05:19:11.808563+0000 mon.a (mon.0) 361 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:13.090 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:12 smithi029 bash[22744]: audit 2024-09-16T05:19:11.814484+0000 mon.a (mon.0) 362 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:13.090 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:12 smithi029 bash[22744]: audit 2024-09-16T05:19:12.110873+0000 mon.a (mon.0) 363 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:13.105 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:12 smithi081 bash[23455]: cluster 2024-09-16T05:19:11.307591+0000 mgr.a (mgr.14150) 114 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:13.106 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:12 smithi081 bash[23455]: audit 2024-09-16T05:19:11.804107+0000 mon.a (mon.0) 360 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:13.106 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:12 smithi081 bash[23455]: audit 2024-09-16T05:19:11.808563+0000 mon.a (mon.0) 361 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:13.106 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:12 smithi081 bash[23455]: audit 2024-09-16T05:19:11.814484+0000 mon.a (mon.0) 362 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:13.106 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:12 smithi081 bash[23455]: audit 2024-09-16T05:19:12.110873+0000 mon.a (mon.0) 363 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:13.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:12 smithi167 bash[23275]: cluster 2024-09-16T05:19:11.307591+0000 mgr.a (mgr.14150) 114 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:13.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:12 smithi167 bash[23275]: audit 2024-09-16T05:19:11.804107+0000 mon.a (mon.0) 360 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:13.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:12 smithi167 bash[23275]: audit 2024-09-16T05:19:11.808563+0000 mon.a (mon.0) 361 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:13.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:12 smithi167 bash[23275]: audit 2024-09-16T05:19:11.814484+0000 mon.a (mon.0) 362 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:13.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:12 smithi167 bash[23275]: audit 2024-09-16T05:19:12.110873+0000 mon.a (mon.0) 363 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:13.369 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:19:13 smithi081 bash[24333]: debug 2024-09-16T05:19:13.291+0000 7fd561183040 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-16T05:19:13.369 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:19:13 smithi081 bash[24333]: debug 2024-09-16T05:19:13.355+0000 7fd561183040 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-16T05:19:13.856 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:19:13.869 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:19:13 smithi081 bash[24333]: debug 2024-09-16T05:19:13.507+0000 7fd561183040 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-16T05:19:14.362 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:19:14 smithi081 bash[24333]: debug 2024-09-16T05:19:14.171+0000 7fd561183040 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-16T05:19:14.362 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:19:14 smithi081 bash[24333]: debug 2024-09-16T05:19:14.243+0000 7fd561183040 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-16T05:19:14.362 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:19:14 smithi081 bash[24333]: debug 2024-09-16T05:19:14.311+0000 7fd561183040 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-16T05:19:14.619 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:19:14 smithi081 bash[24333]: debug 2024-09-16T05:19:14.499+0000 7fd561183040 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-16T05:19:14.619 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:19:14 smithi081 bash[24333]: debug 2024-09-16T05:19:14.579+0000 7fd561183040 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-16T05:19:14.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:14 smithi081 bash[23455]: cluster 2024-09-16T05:19:13.308011+0000 mgr.a (mgr.14150) 115 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:14.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:14 smithi081 bash[23455]: audit 2024-09-16T05:19:13.403617+0000 mon.a (mon.0) 364 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:14.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:14 smithi081 bash[23455]: audit 2024-09-16T05:19:13.408585+0000 mon.a (mon.0) 365 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:14.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:14 smithi081 bash[23455]: audit 2024-09-16T05:19:13.411570+0000 mon.a (mon.0) 366 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:19:14.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:14 smithi081 bash[23455]: audit 2024-09-16T05:19:13.414535+0000 mon.a (mon.0) 367 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:19:14.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:14 smithi081 bash[23455]: audit 2024-09-16T05:19:13.415848+0000 mon.a (mon.0) 368 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:19:14.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:14 smithi081 bash[23455]: audit 2024-09-16T05:19:13.422586+0000 mon.a (mon.0) 369 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:14.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:14 smithi081 bash[23455]: cephadm 2024-09-16T05:19:13.423395+0000 mgr.a (mgr.14150) 116 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-09-16T05:19:14.742 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:14 smithi167 bash[23275]: cluster 2024-09-16T05:19:13.308011+0000 mgr.a (mgr.14150) 115 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:14.742 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:14 smithi167 bash[23275]: audit 2024-09-16T05:19:13.403617+0000 mon.a (mon.0) 364 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:14.742 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:14 smithi167 bash[23275]: audit 2024-09-16T05:19:13.408585+0000 mon.a (mon.0) 365 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:14.742 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:14 smithi167 bash[23275]: audit 2024-09-16T05:19:13.411570+0000 mon.a (mon.0) 366 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:19:14.743 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:14 smithi167 bash[23275]: audit 2024-09-16T05:19:13.414535+0000 mon.a (mon.0) 367 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:19:14.743 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:14 smithi167 bash[23275]: audit 2024-09-16T05:19:13.415848+0000 mon.a (mon.0) 368 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:19:14.743 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:14 smithi167 bash[23275]: audit 2024-09-16T05:19:13.422586+0000 mon.a (mon.0) 369 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:14.743 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:14 smithi167 bash[23275]: cephadm 2024-09-16T05:19:13.423395+0000 mgr.a (mgr.14150) 116 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-09-16T05:19:14.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:14 smithi029 bash[22744]: cluster 2024-09-16T05:19:13.308011+0000 mgr.a (mgr.14150) 115 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:14.840 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:14 smithi029 bash[22744]: audit 2024-09-16T05:19:13.403617+0000 mon.a (mon.0) 364 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:14.840 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:14 smithi029 bash[22744]: audit 2024-09-16T05:19:13.408585+0000 mon.a (mon.0) 365 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:14.840 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:14 smithi029 bash[22744]: audit 2024-09-16T05:19:13.411570+0000 mon.a (mon.0) 366 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:19:14.840 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:14 smithi029 bash[22744]: audit 2024-09-16T05:19:13.414535+0000 mon.a (mon.0) 367 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:19:14.840 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:14 smithi029 bash[22744]: audit 2024-09-16T05:19:13.415848+0000 mon.a (mon.0) 368 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:19:14.840 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:14 smithi029 bash[22744]: audit 2024-09-16T05:19:13.422586+0000 mon.a (mon.0) 369 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:14.840 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:14 smithi029 bash[22744]: cephadm 2024-09-16T05:19:13.423395+0000 mgr.a (mgr.14150) 116 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-09-16T05:19:14.908 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:19:14 smithi081 bash[24333]: debug 2024-09-16T05:19:14.647+0000 7fd561183040 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-16T05:19:15.170 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:19:14 smithi081 bash[24333]: debug 2024-09-16T05:19:14.907+0000 7fd561183040 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-16T05:19:15.170 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:19:14 smithi081 bash[24333]: debug 2024-09-16T05:19:14.975+0000 7fd561183040 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-16T05:19:15.499 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:19:15 smithi081 bash[24333]: debug 2024-09-16T05:19:15.171+0000 7fd561183040 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-16T05:19:15.499 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:19:15 smithi081 bash[24333]: debug 2024-09-16T05:19:15.247+0000 7fd561183040 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-16T05:19:15.833 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:19:15 smithi081 bash[24333]: debug 2024-09-16T05:19:15.499+0000 7fd561183040 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-09-16T05:19:15.834 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:19:15 smithi081 bash[24333]: debug 2024-09-16T05:19:15.675+0000 7fd561183040 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-16T05:19:16.110 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:19:15 smithi081 bash[24333]: debug 2024-09-16T05:19:15.843+0000 7fd561183040 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-16T05:19:16.110 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:19:15 smithi081 bash[24333]: debug 2024-09-16T05:19:15.927+0000 7fd561183040 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-16T05:19:16.742 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:16 smithi167 bash[23275]: cluster 2024-09-16T05:19:15.308443+0000 mgr.a (mgr.14150) 117 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:16.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:16 smithi029 bash[22744]: cluster 2024-09-16T05:19:15.308443+0000 mgr.a (mgr.14150) 117 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:16.869 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:16 smithi081 bash[23455]: cluster 2024-09-16T05:19:15.308443+0000 mgr.a (mgr.14150) 117 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:16.869 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:19:16 smithi081 bash[24333]: debug 2024-09-16T05:19:16.111+0000 7fd561183040 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-16T05:19:17.218 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:19:16 smithi081 bash[24333]: debug 2024-09-16T05:19:16.915+0000 7fd561183040 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-16T05:19:17.218 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:19:16 smithi081 bash[24333]: debug 2024-09-16T05:19:16.991+0000 7fd561183040 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-16T05:19:17.218 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:19:17 smithi081 bash[24333]: debug 2024-09-16T05:19:17.219+0000 7fd561183040 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-16T05:19:17.620 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:19:17 smithi081 bash[24333]: debug 2024-09-16T05:19:17.291+0000 7fd561183040 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-16T05:19:18.119 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:19:17 smithi081 bash[24333]: debug 2024-09-16T05:19:17.703+0000 7fd561183040 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-16T05:19:18.119 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:19:17 smithi081 bash[24333]: debug 2024-09-16T05:19:17.791+0000 7fd561183040 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-16T05:19:18.243 INFO:teuthology.orchestra.run.smithi029.stdout: 2024-09-16T05:19:18.295 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi029:vg_nvme/lv_4 2024-09-16T05:19:18.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:18 smithi167 bash[23275]: audit 2024-09-16T05:19:17.120336+0000 mon.a (mon.0) 370 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:18.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:18 smithi167 bash[23275]: audit 2024-09-16T05:19:17.768246+0000 mon.a (mon.0) 371 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:18.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:18 smithi167 bash[23275]: cluster 2024-09-16T05:19:17.813513+0000 mon.a (mon.0) 372 : cluster [DBG] Standby manager daemon b started 2024-09-16T05:19:18.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:18 smithi167 bash[23275]: audit 2024-09-16T05:19:17.817271+0000 mon.b (mon.2) 2 : audit [DBG] from='mgr.? 172.21.15.81:0/4057943861' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-16T05:19:18.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:18 smithi167 bash[23275]: audit 2024-09-16T05:19:17.817855+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.81:0/4057943861' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-16T05:19:18.493 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:18 smithi167 bash[23275]: audit 2024-09-16T05:19:17.818910+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.81:0/4057943861' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-16T05:19:18.493 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:18 smithi167 bash[23275]: audit 2024-09-16T05:19:17.819524+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.81:0/4057943861' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-16T05:19:18.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:18 smithi029 bash[22744]: audit 2024-09-16T05:19:17.120336+0000 mon.a (mon.0) 370 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:18.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:18 smithi029 bash[22744]: audit 2024-09-16T05:19:17.768246+0000 mon.a (mon.0) 371 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:18.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:18 smithi029 bash[22744]: cluster 2024-09-16T05:19:17.813513+0000 mon.a (mon.0) 372 : cluster [DBG] Standby manager daemon b started 2024-09-16T05:19:18.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:18 smithi029 bash[22744]: audit 2024-09-16T05:19:17.817271+0000 mon.b (mon.2) 2 : audit [DBG] from='mgr.? 172.21.15.81:0/4057943861' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-16T05:19:18.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:18 smithi029 bash[22744]: audit 2024-09-16T05:19:17.817855+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.81:0/4057943861' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-16T05:19:18.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:18 smithi029 bash[22744]: audit 2024-09-16T05:19:17.818910+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.81:0/4057943861' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-16T05:19:18.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:18 smithi029 bash[22744]: audit 2024-09-16T05:19:17.819524+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.81:0/4057943861' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-16T05:19:18.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:18 smithi081 bash[23455]: audit 2024-09-16T05:19:17.120336+0000 mon.a (mon.0) 370 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:18.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:18 smithi081 bash[23455]: audit 2024-09-16T05:19:17.768246+0000 mon.a (mon.0) 371 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:18.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:18 smithi081 bash[23455]: cluster 2024-09-16T05:19:17.813513+0000 mon.a (mon.0) 372 : cluster [DBG] Standby manager daemon b started 2024-09-16T05:19:18.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:18 smithi081 bash[23455]: audit 2024-09-16T05:19:17.817271+0000 mon.b (mon.2) 2 : audit [DBG] from='mgr.? 172.21.15.81:0/4057943861' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-16T05:19:18.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:18 smithi081 bash[23455]: audit 2024-09-16T05:19:17.817855+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.81:0/4057943861' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-16T05:19:18.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:18 smithi081 bash[23455]: audit 2024-09-16T05:19:17.818910+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.81:0/4057943861' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-16T05:19:18.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:18 smithi081 bash[23455]: audit 2024-09-16T05:19:17.819524+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.81:0/4057943861' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-16T05:19:19.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:19 smithi167 bash[23275]: cluster 2024-09-16T05:19:17.308864+0000 mgr.a (mgr.14150) 118 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:19.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:19 smithi167 bash[23275]: cluster 2024-09-16T05:19:18.779832+0000 mon.a (mon.0) 373 : cluster [DBG] mgrmap e14: a(active, since 2m), standbys: b 2024-09-16T05:19:19.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:19 smithi167 bash[23275]: audit 2024-09-16T05:19:18.780075+0000 mon.a (mon.0) 374 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-16T05:19:19.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:19 smithi029 bash[22744]: cluster 2024-09-16T05:19:17.308864+0000 mgr.a (mgr.14150) 118 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:19.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:19 smithi029 bash[22744]: cluster 2024-09-16T05:19:18.779832+0000 mon.a (mon.0) 373 : cluster [DBG] mgrmap e14: a(active, since 2m), standbys: b 2024-09-16T05:19:19.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:19 smithi029 bash[22744]: audit 2024-09-16T05:19:18.780075+0000 mon.a (mon.0) 374 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-16T05:19:19.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:19 smithi081 bash[23455]: cluster 2024-09-16T05:19:17.308864+0000 mgr.a (mgr.14150) 118 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:19.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:19 smithi081 bash[23455]: cluster 2024-09-16T05:19:18.779832+0000 mon.a (mon.0) 373 : cluster [DBG] mgrmap e14: a(active, since 2m), standbys: b 2024-09-16T05:19:19.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:19 smithi081 bash[23455]: audit 2024-09-16T05:19:18.780075+0000 mon.a (mon.0) 374 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-16T05:19:21.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:21 smithi167 bash[23275]: cluster 2024-09-16T05:19:19.309264+0000 mgr.a (mgr.14150) 119 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:21.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:21 smithi167 bash[23275]: audit 2024-09-16T05:19:20.341668+0000 mon.a (mon.0) 375 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:21.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:21 smithi167 bash[23275]: audit 2024-09-16T05:19:20.349596+0000 mon.a (mon.0) 376 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:21.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:21 smithi167 bash[23275]: audit 2024-09-16T05:19:20.354298+0000 mon.a (mon.0) 377 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:19:21.493 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:21 smithi167 bash[23275]: audit 2024-09-16T05:19:20.359745+0000 mon.a (mon.0) 378 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:21.493 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:21 smithi167 bash[23275]: audit 2024-09-16T05:19:20.360413+0000 mon.a (mon.0) 379 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:19:21.493 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:21 smithi167 bash[23275]: audit 2024-09-16T05:19:20.362656+0000 mon.a (mon.0) 380 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:19:21.493 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:21 smithi167 bash[23275]: audit 2024-09-16T05:19:20.372138+0000 mon.a (mon.0) 381 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:21.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:21 smithi029 bash[22744]: cluster 2024-09-16T05:19:19.309264+0000 mgr.a (mgr.14150) 119 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:21.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:21 smithi029 bash[22744]: audit 2024-09-16T05:19:20.341668+0000 mon.a (mon.0) 375 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:21.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:21 smithi029 bash[22744]: audit 2024-09-16T05:19:20.349596+0000 mon.a (mon.0) 376 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:21.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:21 smithi029 bash[22744]: audit 2024-09-16T05:19:20.354298+0000 mon.a (mon.0) 377 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:19:21.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:21 smithi029 bash[22744]: audit 2024-09-16T05:19:20.359745+0000 mon.a (mon.0) 378 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:21.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:21 smithi029 bash[22744]: audit 2024-09-16T05:19:20.360413+0000 mon.a (mon.0) 379 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:19:21.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:21 smithi029 bash[22744]: audit 2024-09-16T05:19:20.362656+0000 mon.a (mon.0) 380 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:19:21.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:21 smithi029 bash[22744]: audit 2024-09-16T05:19:20.372138+0000 mon.a (mon.0) 381 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:21.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:21 smithi081 bash[23455]: cluster 2024-09-16T05:19:19.309264+0000 mgr.a (mgr.14150) 119 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:21.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:21 smithi081 bash[23455]: audit 2024-09-16T05:19:20.341668+0000 mon.a (mon.0) 375 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:21.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:21 smithi081 bash[23455]: audit 2024-09-16T05:19:20.349596+0000 mon.a (mon.0) 376 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:21.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:21 smithi081 bash[23455]: audit 2024-09-16T05:19:20.354298+0000 mon.a (mon.0) 377 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:19:21.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:21 smithi081 bash[23455]: audit 2024-09-16T05:19:20.359745+0000 mon.a (mon.0) 378 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:21.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:21 smithi081 bash[23455]: audit 2024-09-16T05:19:20.360413+0000 mon.a (mon.0) 379 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:19:21.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:21 smithi081 bash[23455]: audit 2024-09-16T05:19:20.362656+0000 mon.a (mon.0) 380 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:19:21.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:21 smithi081 bash[23455]: audit 2024-09-16T05:19:20.372138+0000 mon.a (mon.0) 381 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:23.032 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:19:23.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:23 smithi029 bash[22744]: cluster 2024-09-16T05:19:21.309675+0000 mgr.a (mgr.14150) 120 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:23.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:23 smithi167 bash[23275]: cluster 2024-09-16T05:19:21.309675+0000 mgr.a (mgr.14150) 120 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:23.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:23 smithi081 bash[23455]: cluster 2024-09-16T05:19:21.309675+0000 mgr.a (mgr.14150) 120 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:25.421 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:25 smithi029 bash[22744]: cluster 2024-09-16T05:19:23.310082+0000 mgr.a (mgr.14150) 121 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:25.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:25 smithi167 bash[23275]: cluster 2024-09-16T05:19:23.310082+0000 mgr.a (mgr.14150) 121 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:25.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:25 smithi081 bash[23455]: cluster 2024-09-16T05:19:23.310082+0000 mgr.a (mgr.14150) 121 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:26.436 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:26 smithi029 bash[22744]: audit 2024-09-16T05:19:25.596269+0000 mon.a (mon.0) 382 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T05:19:26.436 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:26 smithi029 bash[22744]: audit 2024-09-16T05:19:25.599071+0000 mon.a (mon.0) 383 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T05:19:26.436 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:26 smithi029 bash[22744]: audit 2024-09-16T05:19:25.600307+0000 mon.a (mon.0) 384 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:19:26.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:26 smithi167 bash[23275]: audit 2024-09-16T05:19:25.596269+0000 mon.a (mon.0) 382 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T05:19:26.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:26 smithi167 bash[23275]: audit 2024-09-16T05:19:25.599071+0000 mon.a (mon.0) 383 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T05:19:26.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:26 smithi167 bash[23275]: audit 2024-09-16T05:19:25.600307+0000 mon.a (mon.0) 384 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:19:26.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:26 smithi081 bash[23455]: audit 2024-09-16T05:19:25.596269+0000 mon.a (mon.0) 382 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T05:19:26.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:26 smithi081 bash[23455]: audit 2024-09-16T05:19:25.599071+0000 mon.a (mon.0) 383 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T05:19:26.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:26 smithi081 bash[23455]: audit 2024-09-16T05:19:25.600307+0000 mon.a (mon.0) 384 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:19:27.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:27 smithi167 bash[23275]: cluster 2024-09-16T05:19:25.310399+0000 mgr.a (mgr.14150) 122 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:27.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:27 smithi167 bash[23275]: audit 2024-09-16T05:19:25.593243+0000 mgr.a (mgr.14150) 123 : audit [DBG] from='client.14211 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi029:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:19:27.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:27 smithi029 bash[22744]: cluster 2024-09-16T05:19:25.310399+0000 mgr.a (mgr.14150) 122 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:27.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:27 smithi029 bash[22744]: audit 2024-09-16T05:19:25.593243+0000 mgr.a (mgr.14150) 123 : audit [DBG] from='client.14211 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi029:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:19:27.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:27 smithi081 bash[23455]: cluster 2024-09-16T05:19:25.310399+0000 mgr.a (mgr.14150) 122 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:27.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:27 smithi081 bash[23455]: audit 2024-09-16T05:19:25.593243+0000 mgr.a (mgr.14150) 123 : audit [DBG] from='client.14211 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi029:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:19:29.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:29 smithi167 bash[23275]: cluster 2024-09-16T05:19:27.310822+0000 mgr.a (mgr.14150) 124 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:29.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:29 smithi029 bash[22744]: cluster 2024-09-16T05:19:27.310822+0000 mgr.a (mgr.14150) 124 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:29.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:29 smithi081 bash[23455]: cluster 2024-09-16T05:19:27.310822+0000 mgr.a (mgr.14150) 124 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:30.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:30 smithi029 bash[22744]: cluster 2024-09-16T05:19:29.311247+0000 mgr.a (mgr.14150) 125 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:30.840 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:30 smithi029 bash[22744]: audit 2024-09-16T05:19:29.535888+0000 mon.a (mon.0) 385 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:30.840 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:30 smithi029 bash[22744]: audit 2024-09-16T05:19:29.544439+0000 mon.a (mon.0) 386 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:30.840 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:30 smithi029 bash[22744]: audit 2024-09-16T05:19:29.550981+0000 mon.a (mon.0) 387 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:30.869 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:30 smithi081 bash[23455]: cluster 2024-09-16T05:19:29.311247+0000 mgr.a (mgr.14150) 125 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:30.869 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:30 smithi081 bash[23455]: audit 2024-09-16T05:19:29.535888+0000 mon.a (mon.0) 385 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:30.869 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:30 smithi081 bash[23455]: audit 2024-09-16T05:19:29.544439+0000 mon.a (mon.0) 386 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:30.870 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:30 smithi081 bash[23455]: audit 2024-09-16T05:19:29.550981+0000 mon.a (mon.0) 387 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:30.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:30 smithi167 bash[23275]: cluster 2024-09-16T05:19:29.311247+0000 mgr.a (mgr.14150) 125 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:30.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:30 smithi167 bash[23275]: audit 2024-09-16T05:19:29.535888+0000 mon.a (mon.0) 385 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:30.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:30 smithi167 bash[23275]: audit 2024-09-16T05:19:29.544439+0000 mon.a (mon.0) 386 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:30.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:30 smithi167 bash[23275]: audit 2024-09-16T05:19:29.550981+0000 mon.a (mon.0) 387 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:33.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:33 smithi029 bash[22744]: cluster 2024-09-16T05:19:31.311660+0000 mgr.a (mgr.14150) 126 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:33.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:33 smithi029 bash[22744]: audit 2024-09-16T05:19:32.020377+0000 mon.a (mon.0) 388 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:33.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:33 smithi029 bash[22744]: audit 2024-09-16T05:19:32.025878+0000 mon.a (mon.0) 389 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:33.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:33 smithi029 bash[22744]: audit 2024-09-16T05:19:32.034842+0000 mon.a (mon.0) 390 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:33.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:33 smithi081 bash[23455]: cluster 2024-09-16T05:19:31.311660+0000 mgr.a (mgr.14150) 126 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:33.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:33 smithi081 bash[23455]: audit 2024-09-16T05:19:32.020377+0000 mon.a (mon.0) 388 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:33.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:33 smithi081 bash[23455]: audit 2024-09-16T05:19:32.025878+0000 mon.a (mon.0) 389 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:33.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:33 smithi081 bash[23455]: audit 2024-09-16T05:19:32.034842+0000 mon.a (mon.0) 390 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:33.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:33 smithi167 bash[23275]: cluster 2024-09-16T05:19:31.311660+0000 mgr.a (mgr.14150) 126 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:33.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:33 smithi167 bash[23275]: audit 2024-09-16T05:19:32.020377+0000 mon.a (mon.0) 388 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:33.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:33 smithi167 bash[23275]: audit 2024-09-16T05:19:32.025878+0000 mon.a (mon.0) 389 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:33.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:33 smithi167 bash[23275]: audit 2024-09-16T05:19:32.034842+0000 mon.a (mon.0) 390 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:35.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:35 smithi029 bash[22744]: cluster 2024-09-16T05:19:33.312081+0000 mgr.a (mgr.14150) 127 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:35.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:35 smithi081 bash[23455]: cluster 2024-09-16T05:19:33.312081+0000 mgr.a (mgr.14150) 127 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:35.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:35 smithi167 bash[23275]: cluster 2024-09-16T05:19:33.312081+0000 mgr.a (mgr.14150) 127 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:37.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:37 smithi029 bash[22744]: cluster 2024-09-16T05:19:35.312524+0000 mgr.a (mgr.14150) 128 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:37.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:37 smithi029 bash[22744]: audit 2024-09-16T05:19:36.315259+0000 mon.a (mon.0) 391 : audit [INF] from='client.? 172.21.15.29:0/1595283138' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e86d4117-b8c2-4588-8d46-7b44e45cfb5b"}]: dispatch 2024-09-16T05:19:37.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:37 smithi029 bash[22744]: audit 2024-09-16T05:19:36.318414+0000 mon.a (mon.0) 392 : audit [INF] from='client.? 172.21.15.29:0/1595283138' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e86d4117-b8c2-4588-8d46-7b44e45cfb5b"}]': finished 2024-09-16T05:19:37.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:37 smithi029 bash[22744]: cluster 2024-09-16T05:19:36.323033+0000 mon.a (mon.0) 393 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-09-16T05:19:37.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:37 smithi029 bash[22744]: audit 2024-09-16T05:19:36.323278+0000 mon.a (mon.0) 394 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T05:19:37.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:37 smithi029 bash[22744]: audit 2024-09-16T05:19:36.990318+0000 mon.a (mon.0) 395 : audit [DBG] from='client.? 172.21.15.29:0/3641434056' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T05:19:37.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:37 smithi081 bash[23455]: cluster 2024-09-16T05:19:35.312524+0000 mgr.a (mgr.14150) 128 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:37.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:37 smithi081 bash[23455]: audit 2024-09-16T05:19:36.315259+0000 mon.a (mon.0) 391 : audit [INF] from='client.? 172.21.15.29:0/1595283138' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e86d4117-b8c2-4588-8d46-7b44e45cfb5b"}]: dispatch 2024-09-16T05:19:37.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:37 smithi081 bash[23455]: audit 2024-09-16T05:19:36.318414+0000 mon.a (mon.0) 392 : audit [INF] from='client.? 172.21.15.29:0/1595283138' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e86d4117-b8c2-4588-8d46-7b44e45cfb5b"}]': finished 2024-09-16T05:19:37.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:37 smithi081 bash[23455]: cluster 2024-09-16T05:19:36.323033+0000 mon.a (mon.0) 393 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-09-16T05:19:37.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:37 smithi081 bash[23455]: audit 2024-09-16T05:19:36.323278+0000 mon.a (mon.0) 394 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T05:19:37.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:37 smithi081 bash[23455]: audit 2024-09-16T05:19:36.990318+0000 mon.a (mon.0) 395 : audit [DBG] from='client.? 172.21.15.29:0/3641434056' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T05:19:37.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:37 smithi167 bash[23275]: cluster 2024-09-16T05:19:35.312524+0000 mgr.a (mgr.14150) 128 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:37.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:37 smithi167 bash[23275]: audit 2024-09-16T05:19:36.315259+0000 mon.a (mon.0) 391 : audit [INF] from='client.? 172.21.15.29:0/1595283138' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e86d4117-b8c2-4588-8d46-7b44e45cfb5b"}]: dispatch 2024-09-16T05:19:37.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:37 smithi167 bash[23275]: audit 2024-09-16T05:19:36.318414+0000 mon.a (mon.0) 392 : audit [INF] from='client.? 172.21.15.29:0/1595283138' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e86d4117-b8c2-4588-8d46-7b44e45cfb5b"}]': finished 2024-09-16T05:19:37.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:37 smithi167 bash[23275]: cluster 2024-09-16T05:19:36.323033+0000 mon.a (mon.0) 393 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-09-16T05:19:37.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:37 smithi167 bash[23275]: audit 2024-09-16T05:19:36.323278+0000 mon.a (mon.0) 394 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T05:19:37.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:37 smithi167 bash[23275]: audit 2024-09-16T05:19:36.990318+0000 mon.a (mon.0) 395 : audit [DBG] from='client.? 172.21.15.29:0/3641434056' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T05:19:39.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:39 smithi029 bash[22744]: cluster 2024-09-16T05:19:37.312960+0000 mgr.a (mgr.14150) 129 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:39.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:39 smithi081 bash[23455]: cluster 2024-09-16T05:19:37.312960+0000 mgr.a (mgr.14150) 129 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:39.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:39 smithi167 bash[23275]: cluster 2024-09-16T05:19:37.312960+0000 mgr.a (mgr.14150) 129 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:41.089 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:41 smithi029 bash[22744]: cluster 2024-09-16T05:19:39.313397+0000 mgr.a (mgr.14150) 130 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:41.089 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:41 smithi029 bash[22744]: audit 2024-09-16T05:19:40.543517+0000 mon.a (mon.0) 396 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:41.089 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:41 smithi029 bash[22744]: audit 2024-09-16T05:19:40.547499+0000 mon.a (mon.0) 397 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:41.089 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:41 smithi029 bash[22744]: audit 2024-09-16T05:19:40.553329+0000 mon.a (mon.0) 398 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:41.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:41 smithi081 bash[23455]: cluster 2024-09-16T05:19:39.313397+0000 mgr.a (mgr.14150) 130 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:41.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:41 smithi081 bash[23455]: audit 2024-09-16T05:19:40.543517+0000 mon.a (mon.0) 396 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:41.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:41 smithi081 bash[23455]: audit 2024-09-16T05:19:40.547499+0000 mon.a (mon.0) 397 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:41.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:41 smithi081 bash[23455]: audit 2024-09-16T05:19:40.553329+0000 mon.a (mon.0) 398 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:41.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:41 smithi167 bash[23275]: cluster 2024-09-16T05:19:39.313397+0000 mgr.a (mgr.14150) 130 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:41.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:41 smithi167 bash[23275]: audit 2024-09-16T05:19:40.543517+0000 mon.a (mon.0) 396 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:41.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:41 smithi167 bash[23275]: audit 2024-09-16T05:19:40.547499+0000 mon.a (mon.0) 397 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:41.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:41 smithi167 bash[23275]: audit 2024-09-16T05:19:40.553329+0000 mon.a (mon.0) 398 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:43.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:43 smithi029 bash[22744]: cluster 2024-09-16T05:19:41.313836+0000 mgr.a (mgr.14150) 131 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:43.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:43 smithi081 bash[23455]: cluster 2024-09-16T05:19:41.313836+0000 mgr.a (mgr.14150) 131 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:43.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:43 smithi167 bash[23275]: cluster 2024-09-16T05:19:41.313836+0000 mgr.a (mgr.14150) 131 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:45.317 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:45 smithi167 bash[23275]: cluster 2024-09-16T05:19:43.314239+0000 mgr.a (mgr.14150) 132 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:45.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:45 smithi029 bash[22744]: cluster 2024-09-16T05:19:43.314239+0000 mgr.a (mgr.14150) 132 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:45.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:45 smithi081 bash[23455]: cluster 2024-09-16T05:19:43.314239+0000 mgr.a (mgr.14150) 132 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:47.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:47 smithi029 bash[22744]: cluster 2024-09-16T05:19:45.314653+0000 mgr.a (mgr.14150) 133 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:47.367 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:47 smithi167 bash[23275]: cluster 2024-09-16T05:19:45.314653+0000 mgr.a (mgr.14150) 133 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:47.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:47 smithi081 bash[23455]: cluster 2024-09-16T05:19:45.314653+0000 mgr.a (mgr.14150) 133 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:49.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:49 smithi029 bash[22744]: cluster 2024-09-16T05:19:47.315128+0000 mgr.a (mgr.14150) 134 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:49.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:49 smithi081 bash[23455]: cluster 2024-09-16T05:19:47.315128+0000 mgr.a (mgr.14150) 134 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:49.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:49 smithi167 bash[23275]: cluster 2024-09-16T05:19:47.315128+0000 mgr.a (mgr.14150) 134 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:51.089 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:50 smithi029 bash[22744]: cluster 2024-09-16T05:19:49.315548+0000 mgr.a (mgr.14150) 135 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:51.089 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:50 smithi029 bash[22744]: audit 2024-09-16T05:19:49.756037+0000 mon.a (mon.0) 399 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:51.089 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:50 smithi029 bash[22744]: audit 2024-09-16T05:19:49.763404+0000 mon.a (mon.0) 400 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:51.089 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:50 smithi029 bash[22744]: audit 2024-09-16T05:19:49.772325+0000 mon.a (mon.0) 401 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:51.119 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:50 smithi081 bash[23455]: cluster 2024-09-16T05:19:49.315548+0000 mgr.a (mgr.14150) 135 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:51.119 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:50 smithi081 bash[23455]: audit 2024-09-16T05:19:49.756037+0000 mon.a (mon.0) 399 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:51.119 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:50 smithi081 bash[23455]: audit 2024-09-16T05:19:49.763404+0000 mon.a (mon.0) 400 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:51.119 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:50 smithi081 bash[23455]: audit 2024-09-16T05:19:49.772325+0000 mon.a (mon.0) 401 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:51.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:50 smithi167 bash[23275]: cluster 2024-09-16T05:19:49.315548+0000 mgr.a (mgr.14150) 135 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:51.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:50 smithi167 bash[23275]: audit 2024-09-16T05:19:49.756037+0000 mon.a (mon.0) 399 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:51.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:50 smithi167 bash[23275]: audit 2024-09-16T05:19:49.763404+0000 mon.a (mon.0) 400 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:51.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:50 smithi167 bash[23275]: audit 2024-09-16T05:19:49.772325+0000 mon.a (mon.0) 401 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:53.442 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:53 smithi029 bash[22744]: cluster 2024-09-16T05:19:51.315960+0000 mgr.a (mgr.14150) 136 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:53.442 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:53 smithi029 bash[22744]: audit 2024-09-16T05:19:52.153574+0000 mon.a (mon.0) 402 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:53.442 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:53 smithi029 bash[22744]: audit 2024-09-16T05:19:52.157649+0000 mon.a (mon.0) 403 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:53.442 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:53 smithi029 bash[22744]: cephadm 2024-09-16T05:19:52.158726+0000 mgr.a (mgr.14150) 137 : cephadm [INF] Detected new or changed devices on smithi029 2024-09-16T05:19:53.442 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:53 smithi029 bash[22744]: audit 2024-09-16T05:19:52.162059+0000 mon.a (mon.0) 404 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:53.442 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:53 smithi029 bash[22744]: audit 2024-09-16T05:19:52.971373+0000 mon.a (mon.0) 405 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-16T05:19:53.442 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:53 smithi029 bash[22744]: audit 2024-09-16T05:19:52.972926+0000 mon.a (mon.0) 406 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:19:53.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:53 smithi167 bash[23275]: cluster 2024-09-16T05:19:51.315960+0000 mgr.a (mgr.14150) 136 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:53.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:53 smithi167 bash[23275]: audit 2024-09-16T05:19:52.153574+0000 mon.a (mon.0) 402 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:53.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:53 smithi167 bash[23275]: audit 2024-09-16T05:19:52.157649+0000 mon.a (mon.0) 403 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:53.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:53 smithi167 bash[23275]: cephadm 2024-09-16T05:19:52.158726+0000 mgr.a (mgr.14150) 137 : cephadm [INF] Detected new or changed devices on smithi029 2024-09-16T05:19:53.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:53 smithi167 bash[23275]: audit 2024-09-16T05:19:52.162059+0000 mon.a (mon.0) 404 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:53.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:53 smithi167 bash[23275]: audit 2024-09-16T05:19:52.971373+0000 mon.a (mon.0) 405 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-16T05:19:53.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:53 smithi167 bash[23275]: audit 2024-09-16T05:19:52.972926+0000 mon.a (mon.0) 406 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:19:53.554 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:53 smithi081 bash[23455]: cluster 2024-09-16T05:19:51.315960+0000 mgr.a (mgr.14150) 136 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:53.554 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:53 smithi081 bash[23455]: audit 2024-09-16T05:19:52.153574+0000 mon.a (mon.0) 402 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:53.554 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:53 smithi081 bash[23455]: audit 2024-09-16T05:19:52.157649+0000 mon.a (mon.0) 403 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:53.554 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:53 smithi081 bash[23455]: cephadm 2024-09-16T05:19:52.158726+0000 mgr.a (mgr.14150) 137 : cephadm [INF] Detected new or changed devices on smithi029 2024-09-16T05:19:53.555 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:53 smithi081 bash[23455]: audit 2024-09-16T05:19:52.162059+0000 mon.a (mon.0) 404 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:53.555 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:53 smithi081 bash[23455]: audit 2024-09-16T05:19:52.971373+0000 mon.a (mon.0) 405 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-16T05:19:53.555 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:53 smithi081 bash[23455]: audit 2024-09-16T05:19:52.972926+0000 mon.a (mon.0) 406 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:19:54.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:54 smithi167 bash[23275]: cephadm 2024-09-16T05:19:52.974306+0000 mgr.a (mgr.14150) 138 : cephadm [INF] Deploying daemon osd.0 on smithi029 2024-09-16T05:19:54.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:54 smithi029 bash[22744]: cephadm 2024-09-16T05:19:52.974306+0000 mgr.a (mgr.14150) 138 : cephadm [INF] Deploying daemon osd.0 on smithi029 2024-09-16T05:19:54.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:54 smithi081 bash[23455]: cephadm 2024-09-16T05:19:52.974306+0000 mgr.a (mgr.14150) 138 : cephadm [INF] Deploying daemon osd.0 on smithi029 2024-09-16T05:19:55.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:55 smithi029 bash[22744]: cluster 2024-09-16T05:19:53.316340+0000 mgr.a (mgr.14150) 139 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:55.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:55 smithi167 bash[23275]: cluster 2024-09-16T05:19:53.316340+0000 mgr.a (mgr.14150) 139 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:55.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:55 smithi081 bash[23455]: cluster 2024-09-16T05:19:53.316340+0000 mgr.a (mgr.14150) 139 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:57.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:57 smithi167 bash[23275]: cluster 2024-09-16T05:19:55.316750+0000 mgr.a (mgr.14150) 140 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:57.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:57 smithi029 bash[22744]: cluster 2024-09-16T05:19:55.316750+0000 mgr.a (mgr.14150) 140 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:57.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:57 smithi081 bash[23455]: cluster 2024-09-16T05:19:55.316750+0000 mgr.a (mgr.14150) 140 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:58.614 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:58 smithi029 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:19:58.615 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:19:58 smithi029 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:19:58.979 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:58 smithi029 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:19:58.979 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:19:58 smithi029 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:19:59.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:59 smithi029 bash[22744]: cluster 2024-09-16T05:19:57.317029+0000 mgr.a (mgr.14150) 141 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:59.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:59 smithi029 bash[22744]: audit 2024-09-16T05:19:58.866100+0000 mon.a (mon.0) 407 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:19:59.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:59 smithi029 bash[22744]: audit 2024-09-16T05:19:58.870226+0000 mon.a (mon.0) 408 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:59.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:59 smithi029 bash[22744]: audit 2024-09-16T05:19:58.870638+0000 mon.a (mon.0) 409 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:19:59.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:59 smithi029 bash[22744]: audit 2024-09-16T05:19:58.871722+0000 mon.a (mon.0) 410 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:19:59.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:59 smithi029 bash[22744]: audit 2024-09-16T05:19:58.874363+0000 mon.a (mon.0) 411 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:59.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:19:59 smithi029 bash[22744]: audit 2024-09-16T05:19:58.880882+0000 mon.a (mon.0) 412 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:59.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:59 smithi167 bash[23275]: cluster 2024-09-16T05:19:57.317029+0000 mgr.a (mgr.14150) 141 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:59.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:59 smithi167 bash[23275]: audit 2024-09-16T05:19:58.866100+0000 mon.a (mon.0) 407 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:19:59.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:59 smithi167 bash[23275]: audit 2024-09-16T05:19:58.870226+0000 mon.a (mon.0) 408 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:59.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:59 smithi167 bash[23275]: audit 2024-09-16T05:19:58.870638+0000 mon.a (mon.0) 409 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:19:59.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:59 smithi167 bash[23275]: audit 2024-09-16T05:19:58.871722+0000 mon.a (mon.0) 410 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:19:59.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:59 smithi167 bash[23275]: audit 2024-09-16T05:19:58.874363+0000 mon.a (mon.0) 411 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:59.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:19:59 smithi167 bash[23275]: audit 2024-09-16T05:19:58.880882+0000 mon.a (mon.0) 412 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:59.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:59 smithi081 bash[23455]: cluster 2024-09-16T05:19:57.317029+0000 mgr.a (mgr.14150) 141 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:19:59.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:59 smithi081 bash[23455]: audit 2024-09-16T05:19:58.866100+0000 mon.a (mon.0) 407 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:19:59.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:59 smithi081 bash[23455]: audit 2024-09-16T05:19:58.870226+0000 mon.a (mon.0) 408 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:59.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:59 smithi081 bash[23455]: audit 2024-09-16T05:19:58.870638+0000 mon.a (mon.0) 409 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:19:59.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:59 smithi081 bash[23455]: audit 2024-09-16T05:19:58.871722+0000 mon.a (mon.0) 410 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:19:59.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:59 smithi081 bash[23455]: audit 2024-09-16T05:19:58.874363+0000 mon.a (mon.0) 411 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:19:59.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:19:59 smithi081 bash[23455]: audit 2024-09-16T05:19:58.880882+0000 mon.a (mon.0) 412 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:00.478 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:00 smithi029 bash[22744]: cluster 2024-09-16T05:20:00.000176+0000 mon.a (mon.0) 413 : cluster [INF] overall HEALTH_OK 2024-09-16T05:20:00.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:00 smithi167 bash[23275]: cluster 2024-09-16T05:20:00.000176+0000 mon.a (mon.0) 413 : cluster [INF] overall HEALTH_OK 2024-09-16T05:20:00.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:00 smithi081 bash[23455]: cluster 2024-09-16T05:20:00.000176+0000 mon.a (mon.0) 413 : cluster [INF] overall HEALTH_OK 2024-09-16T05:20:01.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:01 smithi167 bash[23275]: cluster 2024-09-16T05:19:59.317361+0000 mgr.a (mgr.14150) 142 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:20:01.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:01 smithi167 bash[23275]: audit 2024-09-16T05:20:00.764926+0000 mon.a (mon.0) 414 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:01.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:01 smithi167 bash[23275]: audit 2024-09-16T05:20:00.772763+0000 mon.a (mon.0) 415 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:01.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:01 smithi167 bash[23275]: audit 2024-09-16T05:20:00.782171+0000 mon.a (mon.0) 416 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:01.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:01 smithi029 bash[22744]: cluster 2024-09-16T05:19:59.317361+0000 mgr.a (mgr.14150) 142 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:20:01.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:01 smithi029 bash[22744]: audit 2024-09-16T05:20:00.764926+0000 mon.a (mon.0) 414 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:01.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:01 smithi029 bash[22744]: audit 2024-09-16T05:20:00.772763+0000 mon.a (mon.0) 415 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:01.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:01 smithi029 bash[22744]: audit 2024-09-16T05:20:00.782171+0000 mon.a (mon.0) 416 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:01.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:01 smithi081 bash[23455]: cluster 2024-09-16T05:19:59.317361+0000 mgr.a (mgr.14150) 142 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:20:01.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:01 smithi081 bash[23455]: audit 2024-09-16T05:20:00.764926+0000 mon.a (mon.0) 414 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:01.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:01 smithi081 bash[23455]: audit 2024-09-16T05:20:00.772763+0000 mon.a (mon.0) 415 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:01.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:01 smithi081 bash[23455]: audit 2024-09-16T05:20:00.782171+0000 mon.a (mon.0) 416 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:03.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:03 smithi167 bash[23275]: cluster 2024-09-16T05:20:01.317759+0000 mgr.a (mgr.14150) 143 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:20:03.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:03 smithi029 bash[22744]: cluster 2024-09-16T05:20:01.317759+0000 mgr.a (mgr.14150) 143 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:20:03.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:03 smithi081 bash[23455]: cluster 2024-09-16T05:20:01.317759+0000 mgr.a (mgr.14150) 143 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:20:05.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:05 smithi167 bash[23275]: cluster 2024-09-16T05:20:03.318096+0000 mgr.a (mgr.14150) 144 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:20:05.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:05 smithi029 bash[22744]: cluster 2024-09-16T05:20:03.318096+0000 mgr.a (mgr.14150) 144 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:20:05.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:05 smithi081 bash[23455]: cluster 2024-09-16T05:20:03.318096+0000 mgr.a (mgr.14150) 144 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:20:07.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:07 smithi167 bash[23275]: cluster 2024-09-16T05:20:05.318487+0000 mgr.a (mgr.14150) 145 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:20:07.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:07 smithi029 bash[22744]: cluster 2024-09-16T05:20:05.318487+0000 mgr.a (mgr.14150) 145 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:20:07.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:07 smithi081 bash[23455]: cluster 2024-09-16T05:20:05.318487+0000 mgr.a (mgr.14150) 145 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:20:09.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:09 smithi167 bash[23275]: cluster 2024-09-16T05:20:07.318899+0000 mgr.a (mgr.14150) 146 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:20:09.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:09 smithi029 bash[22744]: cluster 2024-09-16T05:20:07.318899+0000 mgr.a (mgr.14150) 146 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:20:09.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:09 smithi081 bash[23455]: cluster 2024-09-16T05:20:07.318899+0000 mgr.a (mgr.14150) 146 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:20:10.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:10 smithi167 bash[23275]: audit 2024-09-16T05:20:09.797686+0000 mon.a (mon.0) 417 : audit [INF] from='osd.0 [v2:172.21.15.29:6802/742799578,v1:172.21.15.29:6803/742799578]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-16T05:20:10.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:10 smithi167 bash[23275]: audit 2024-09-16T05:20:09.976782+0000 mon.a (mon.0) 418 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:10.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:10 smithi167 bash[23275]: audit 2024-09-16T05:20:09.984274+0000 mon.a (mon.0) 419 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:10.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:10 smithi167 bash[23275]: audit 2024-09-16T05:20:09.993885+0000 mon.a (mon.0) 420 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:10.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:10 smithi029 bash[22744]: audit 2024-09-16T05:20:09.797686+0000 mon.a (mon.0) 417 : audit [INF] from='osd.0 [v2:172.21.15.29:6802/742799578,v1:172.21.15.29:6803/742799578]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-16T05:20:10.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:10 smithi029 bash[22744]: audit 2024-09-16T05:20:09.976782+0000 mon.a (mon.0) 418 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:10.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:10 smithi029 bash[22744]: audit 2024-09-16T05:20:09.984274+0000 mon.a (mon.0) 419 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:10.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:10 smithi029 bash[22744]: audit 2024-09-16T05:20:09.993885+0000 mon.a (mon.0) 420 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:10.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:10 smithi081 bash[23455]: audit 2024-09-16T05:20:09.797686+0000 mon.a (mon.0) 417 : audit [INF] from='osd.0 [v2:172.21.15.29:6802/742799578,v1:172.21.15.29:6803/742799578]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-16T05:20:10.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:10 smithi081 bash[23455]: audit 2024-09-16T05:20:09.976782+0000 mon.a (mon.0) 418 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:10.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:10 smithi081 bash[23455]: audit 2024-09-16T05:20:09.984274+0000 mon.a (mon.0) 419 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:10.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:10 smithi081 bash[23455]: audit 2024-09-16T05:20:09.993885+0000 mon.a (mon.0) 420 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:11.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:11 smithi167 bash[23275]: cluster 2024-09-16T05:20:09.319204+0000 mgr.a (mgr.14150) 147 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:20:11.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:11 smithi167 bash[23275]: audit 2024-09-16T05:20:10.206111+0000 mon.a (mon.0) 421 : audit [INF] from='osd.0 [v2:172.21.15.29:6802/742799578,v1:172.21.15.29:6803/742799578]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-16T05:20:11.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:11 smithi167 bash[23275]: cluster 2024-09-16T05:20:10.212726+0000 mon.a (mon.0) 422 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-16T05:20:11.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:11 smithi167 bash[23275]: audit 2024-09-16T05:20:10.213293+0000 mon.a (mon.0) 423 : audit [INF] from='osd.0 [v2:172.21.15.29:6802/742799578,v1:172.21.15.29:6803/742799578]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi029", "root=default"]}]: dispatch 2024-09-16T05:20:11.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:11 smithi167 bash[23275]: audit 2024-09-16T05:20:10.213750+0000 mon.a (mon.0) 424 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T05:20:11.501 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:11 smithi029 bash[22744]: cluster 2024-09-16T05:20:09.319204+0000 mgr.a (mgr.14150) 147 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:20:11.501 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:11 smithi029 bash[22744]: audit 2024-09-16T05:20:10.206111+0000 mon.a (mon.0) 421 : audit [INF] from='osd.0 [v2:172.21.15.29:6802/742799578,v1:172.21.15.29:6803/742799578]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-16T05:20:11.501 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:11 smithi029 bash[22744]: cluster 2024-09-16T05:20:10.212726+0000 mon.a (mon.0) 422 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-16T05:20:11.501 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:11 smithi029 bash[22744]: audit 2024-09-16T05:20:10.213293+0000 mon.a (mon.0) 423 : audit [INF] from='osd.0 [v2:172.21.15.29:6802/742799578,v1:172.21.15.29:6803/742799578]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi029", "root=default"]}]: dispatch 2024-09-16T05:20:11.501 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:11 smithi029 bash[22744]: audit 2024-09-16T05:20:10.213750+0000 mon.a (mon.0) 424 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T05:20:11.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:11 smithi081 bash[23455]: cluster 2024-09-16T05:20:09.319204+0000 mgr.a (mgr.14150) 147 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:20:11.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:11 smithi081 bash[23455]: audit 2024-09-16T05:20:10.206111+0000 mon.a (mon.0) 421 : audit [INF] from='osd.0 [v2:172.21.15.29:6802/742799578,v1:172.21.15.29:6803/742799578]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-16T05:20:11.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:11 smithi081 bash[23455]: cluster 2024-09-16T05:20:10.212726+0000 mon.a (mon.0) 422 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-16T05:20:11.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:11 smithi081 bash[23455]: audit 2024-09-16T05:20:10.213293+0000 mon.a (mon.0) 423 : audit [INF] from='osd.0 [v2:172.21.15.29:6802/742799578,v1:172.21.15.29:6803/742799578]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi029", "root=default"]}]: dispatch 2024-09-16T05:20:11.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:11 smithi081 bash[23455]: audit 2024-09-16T05:20:10.213750+0000 mon.a (mon.0) 424 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T05:20:12.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:12 smithi167 bash[23275]: audit 2024-09-16T05:20:11.207737+0000 mon.a (mon.0) 425 : audit [INF] from='osd.0 [v2:172.21.15.29:6802/742799578,v1:172.21.15.29:6803/742799578]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi029", "root=default"]}]': finished 2024-09-16T05:20:12.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:12 smithi167 bash[23275]: cluster 2024-09-16T05:20:11.210524+0000 mon.a (mon.0) 426 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-09-16T05:20:12.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:12 smithi167 bash[23275]: audit 2024-09-16T05:20:11.211410+0000 mon.a (mon.0) 427 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T05:20:12.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:12 smithi167 bash[23275]: audit 2024-09-16T05:20:11.216012+0000 mon.a (mon.0) 428 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T05:20:12.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:12 smithi167 bash[23275]: audit 2024-09-16T05:20:11.505684+0000 mon.a (mon.0) 429 : audit [INF] from='osd.0 [v2:172.21.15.29:6802/742799578,v1:172.21.15.29:6803/742799578]' entity='osd.0' 2024-09-16T05:20:12.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:12 smithi167 bash[23275]: audit 2024-09-16T05:20:12.215650+0000 mon.a (mon.0) 430 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T05:20:12.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:12 smithi029 bash[22744]: audit 2024-09-16T05:20:11.207737+0000 mon.a (mon.0) 425 : audit [INF] from='osd.0 [v2:172.21.15.29:6802/742799578,v1:172.21.15.29:6803/742799578]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi029", "root=default"]}]': finished 2024-09-16T05:20:12.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:12 smithi029 bash[22744]: cluster 2024-09-16T05:20:11.210524+0000 mon.a (mon.0) 426 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-09-16T05:20:12.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:12 smithi029 bash[22744]: audit 2024-09-16T05:20:11.211410+0000 mon.a (mon.0) 427 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T05:20:12.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:12 smithi029 bash[22744]: audit 2024-09-16T05:20:11.216012+0000 mon.a (mon.0) 428 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T05:20:12.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:12 smithi029 bash[22744]: audit 2024-09-16T05:20:11.505684+0000 mon.a (mon.0) 429 : audit [INF] from='osd.0 [v2:172.21.15.29:6802/742799578,v1:172.21.15.29:6803/742799578]' entity='osd.0' 2024-09-16T05:20:12.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:12 smithi029 bash[22744]: audit 2024-09-16T05:20:12.215650+0000 mon.a (mon.0) 430 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T05:20:12.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:12 smithi081 bash[23455]: audit 2024-09-16T05:20:11.207737+0000 mon.a (mon.0) 425 : audit [INF] from='osd.0 [v2:172.21.15.29:6802/742799578,v1:172.21.15.29:6803/742799578]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi029", "root=default"]}]': finished 2024-09-16T05:20:12.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:12 smithi081 bash[23455]: cluster 2024-09-16T05:20:11.210524+0000 mon.a (mon.0) 426 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-09-16T05:20:12.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:12 smithi081 bash[23455]: audit 2024-09-16T05:20:11.211410+0000 mon.a (mon.0) 427 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T05:20:12.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:12 smithi081 bash[23455]: audit 2024-09-16T05:20:11.216012+0000 mon.a (mon.0) 428 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T05:20:12.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:12 smithi081 bash[23455]: audit 2024-09-16T05:20:11.505684+0000 mon.a (mon.0) 429 : audit [INF] from='osd.0 [v2:172.21.15.29:6802/742799578,v1:172.21.15.29:6803/742799578]' entity='osd.0' 2024-09-16T05:20:12.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:12 smithi081 bash[23455]: audit 2024-09-16T05:20:12.215650+0000 mon.a (mon.0) 430 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T05:20:13.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:13 smithi167 bash[23275]: cluster 2024-09-16T05:20:10.806427+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T05:20:13.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:13 smithi167 bash[23275]: cluster 2024-09-16T05:20:10.806524+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T05:20:13.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:13 smithi167 bash[23275]: cluster 2024-09-16T05:20:11.319569+0000 mgr.a (mgr.14150) 148 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:20:13.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:13 smithi167 bash[23275]: audit 2024-09-16T05:20:12.355931+0000 mon.a (mon.0) 431 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:13.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:13 smithi167 bash[23275]: audit 2024-09-16T05:20:12.363915+0000 mon.a (mon.0) 432 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:13.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:13 smithi167 bash[23275]: audit 2024-09-16T05:20:12.368676+0000 mon.a (mon.0) 433 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:20:13.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:13 smithi167 bash[23275]: audit 2024-09-16T05:20:12.373637+0000 mon.a (mon.0) 434 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:13.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:13 smithi167 bash[23275]: audit 2024-09-16T05:20:12.379545+0000 mon.a (mon.0) 435 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:20:13.493 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:13 smithi167 bash[23275]: audit 2024-09-16T05:20:12.381223+0000 mon.a (mon.0) 436 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:20:13.493 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:13 smithi167 bash[23275]: audit 2024-09-16T05:20:12.390540+0000 mon.a (mon.0) 437 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:13.493 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:13 smithi167 bash[23275]: cluster 2024-09-16T05:20:12.511045+0000 mon.a (mon.0) 438 : cluster [INF] osd.0 [v2:172.21.15.29:6802/742799578,v1:172.21.15.29:6803/742799578] boot 2024-09-16T05:20:13.493 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:13 smithi167 bash[23275]: cluster 2024-09-16T05:20:12.511107+0000 mon.a (mon.0) 439 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-09-16T05:20:13.493 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:13 smithi167 bash[23275]: audit 2024-09-16T05:20:12.511322+0000 mon.a (mon.0) 440 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T05:20:13.511 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:13 smithi029 bash[22744]: cluster 2024-09-16T05:20:10.806427+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T05:20:13.511 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:13 smithi029 bash[22744]: cluster 2024-09-16T05:20:10.806524+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T05:20:13.511 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:13 smithi029 bash[22744]: cluster 2024-09-16T05:20:11.319569+0000 mgr.a (mgr.14150) 148 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:20:13.511 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:13 smithi029 bash[22744]: audit 2024-09-16T05:20:12.355931+0000 mon.a (mon.0) 431 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:13.512 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:13 smithi029 bash[22744]: audit 2024-09-16T05:20:12.363915+0000 mon.a (mon.0) 432 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:13.512 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:13 smithi029 bash[22744]: audit 2024-09-16T05:20:12.368676+0000 mon.a (mon.0) 433 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:20:13.512 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:13 smithi029 bash[22744]: audit 2024-09-16T05:20:12.373637+0000 mon.a (mon.0) 434 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:13.512 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:13 smithi029 bash[22744]: audit 2024-09-16T05:20:12.379545+0000 mon.a (mon.0) 435 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:20:13.512 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:13 smithi029 bash[22744]: audit 2024-09-16T05:20:12.381223+0000 mon.a (mon.0) 436 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:20:13.512 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:13 smithi029 bash[22744]: audit 2024-09-16T05:20:12.390540+0000 mon.a (mon.0) 437 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:13.512 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:13 smithi029 bash[22744]: cluster 2024-09-16T05:20:12.511045+0000 mon.a (mon.0) 438 : cluster [INF] osd.0 [v2:172.21.15.29:6802/742799578,v1:172.21.15.29:6803/742799578] boot 2024-09-16T05:20:13.512 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:13 smithi029 bash[22744]: cluster 2024-09-16T05:20:12.511107+0000 mon.a (mon.0) 439 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-09-16T05:20:13.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:13 smithi081 bash[23455]: cluster 2024-09-16T05:20:10.806427+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T05:20:13.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:13 smithi081 bash[23455]: cluster 2024-09-16T05:20:10.806524+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T05:20:13.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:13 smithi081 bash[23455]: cluster 2024-09-16T05:20:11.319569+0000 mgr.a (mgr.14150) 148 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T05:20:13.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:13 smithi081 bash[23455]: audit 2024-09-16T05:20:12.355931+0000 mon.a (mon.0) 431 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:13.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:13 smithi081 bash[23455]: audit 2024-09-16T05:20:12.363915+0000 mon.a (mon.0) 432 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:13.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:13 smithi081 bash[23455]: audit 2024-09-16T05:20:12.368676+0000 mon.a (mon.0) 433 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:20:13.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:13 smithi081 bash[23455]: audit 2024-09-16T05:20:12.373637+0000 mon.a (mon.0) 434 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:13.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:13 smithi081 bash[23455]: audit 2024-09-16T05:20:12.379545+0000 mon.a (mon.0) 435 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:20:13.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:13 smithi081 bash[23455]: audit 2024-09-16T05:20:12.381223+0000 mon.a (mon.0) 436 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:20:13.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:13 smithi081 bash[23455]: audit 2024-09-16T05:20:12.390540+0000 mon.a (mon.0) 437 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:13.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:13 smithi081 bash[23455]: cluster 2024-09-16T05:20:12.511045+0000 mon.a (mon.0) 438 : cluster [INF] osd.0 [v2:172.21.15.29:6802/742799578,v1:172.21.15.29:6803/742799578] boot 2024-09-16T05:20:13.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:13 smithi081 bash[23455]: cluster 2024-09-16T05:20:12.511107+0000 mon.a (mon.0) 439 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-09-16T05:20:13.620 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:13 smithi081 bash[23455]: audit 2024-09-16T05:20:12.511322+0000 mon.a (mon.0) 440 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T05:20:13.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:13 smithi029 bash[22744]: audit 2024-09-16T05:20:12.511322+0000 mon.a (mon.0) 440 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T05:20:14.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:14 smithi029 bash[22744]: cluster 2024-09-16T05:20:13.320027+0000 mgr.a (mgr.14150) 149 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:14.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:14 smithi029 bash[22744]: cluster 2024-09-16T05:20:13.513503+0000 mon.a (mon.0) 441 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-09-16T05:20:14.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:14 smithi081 bash[23455]: cluster 2024-09-16T05:20:13.320027+0000 mgr.a (mgr.14150) 149 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:14.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:14 smithi081 bash[23455]: cluster 2024-09-16T05:20:13.513503+0000 mon.a (mon.0) 441 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-09-16T05:20:14.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:14 smithi167 bash[23275]: cluster 2024-09-16T05:20:13.320027+0000 mgr.a (mgr.14150) 149 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:14.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:14 smithi167 bash[23275]: cluster 2024-09-16T05:20:13.513503+0000 mon.a (mon.0) 441 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-09-16T05:20:16.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:16 smithi029 bash[22744]: cluster 2024-09-16T05:20:15.320529+0000 mgr.a (mgr.14150) 150 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:16.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:16 smithi081 bash[23455]: cluster 2024-09-16T05:20:15.320529+0000 mgr.a (mgr.14150) 150 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:16.978 INFO:teuthology.orchestra.run.smithi029.stdout:Created osd(s) 0 on host 'smithi029' 2024-09-16T05:20:16.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:16 smithi167 bash[23275]: cluster 2024-09-16T05:20:15.320529+0000 mgr.a (mgr.14150) 150 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:17.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:17 smithi029 bash[22744]: audit 2024-09-16T05:20:16.963165+0000 mon.a (mon.0) 442 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:20:17.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:17 smithi029 bash[22744]: audit 2024-09-16T05:20:16.970080+0000 mon.a (mon.0) 443 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:17.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:17 smithi029 bash[22744]: audit 2024-09-16T05:20:16.970762+0000 mon.a (mon.0) 444 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi029", "name": "osd_memory_target"}]: dispatch 2024-09-16T05:20:17.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:17 smithi029 bash[22744]: audit 2024-09-16T05:20:16.973152+0000 mon.a (mon.0) 445 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:20:17.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:17 smithi029 bash[22744]: audit 2024-09-16T05:20:16.977518+0000 mon.a (mon.0) 446 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:17.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:17 smithi029 bash[22744]: audit 2024-09-16T05:20:16.979491+0000 mon.a (mon.0) 447 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:20:17.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:17 smithi029 bash[22744]: audit 2024-09-16T05:20:16.988426+0000 mon.a (mon.0) 448 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:17.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:17 smithi081 bash[23455]: audit 2024-09-16T05:20:16.963165+0000 mon.a (mon.0) 442 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:20:17.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:17 smithi081 bash[23455]: audit 2024-09-16T05:20:16.970080+0000 mon.a (mon.0) 443 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:17.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:17 smithi081 bash[23455]: audit 2024-09-16T05:20:16.970762+0000 mon.a (mon.0) 444 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi029", "name": "osd_memory_target"}]: dispatch 2024-09-16T05:20:17.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:17 smithi081 bash[23455]: audit 2024-09-16T05:20:16.973152+0000 mon.a (mon.0) 445 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:20:17.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:17 smithi081 bash[23455]: audit 2024-09-16T05:20:16.977518+0000 mon.a (mon.0) 446 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:17.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:17 smithi081 bash[23455]: audit 2024-09-16T05:20:16.979491+0000 mon.a (mon.0) 447 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:20:17.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:17 smithi081 bash[23455]: audit 2024-09-16T05:20:16.988426+0000 mon.a (mon.0) 448 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:17.903 DEBUG:teuthology.orchestra.run.smithi029:osd.0> sudo journalctl -f -n 0 -u ceph-825322c2-73ea-11ef-bceb-c7b262605968@osd.0.service 2024-09-16T05:20:17.906 INFO:tasks.cephadm:Deploying osd.1 on smithi029 with /dev/vg_nvme/lv_3... 2024-09-16T05:20:17.906 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_3 2024-09-16T05:20:17.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:17 smithi167 bash[23275]: audit 2024-09-16T05:20:16.963165+0000 mon.a (mon.0) 442 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:20:17.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:17 smithi167 bash[23275]: audit 2024-09-16T05:20:16.970080+0000 mon.a (mon.0) 443 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:17.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:17 smithi167 bash[23275]: audit 2024-09-16T05:20:16.970762+0000 mon.a (mon.0) 444 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi029", "name": "osd_memory_target"}]: dispatch 2024-09-16T05:20:17.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:17 smithi167 bash[23275]: audit 2024-09-16T05:20:16.973152+0000 mon.a (mon.0) 445 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:20:17.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:17 smithi167 bash[23275]: audit 2024-09-16T05:20:16.977518+0000 mon.a (mon.0) 446 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:17.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:17 smithi167 bash[23275]: audit 2024-09-16T05:20:16.979491+0000 mon.a (mon.0) 447 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:20:17.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:17 smithi167 bash[23275]: audit 2024-09-16T05:20:16.988426+0000 mon.a (mon.0) 448 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:19.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:18 smithi167 bash[23275]: cluster 2024-09-16T05:20:17.320988+0000 mgr.a (mgr.14150) 151 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:19.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:18 smithi029 bash[22744]: cluster 2024-09-16T05:20:17.320988+0000 mgr.a (mgr.14150) 151 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:19.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:18 smithi081 bash[23455]: cluster 2024-09-16T05:20:17.320988+0000 mgr.a (mgr.14150) 151 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:21.089 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:20 smithi029 bash[22744]: cluster 2024-09-16T05:20:19.321473+0000 mgr.a (mgr.14150) 152 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:21.089 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:20 smithi029 bash[22744]: audit 2024-09-16T05:20:19.808328+0000 mon.a (mon.0) 449 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:21.089 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:20 smithi029 bash[22744]: audit 2024-09-16T05:20:19.814985+0000 mon.a (mon.0) 450 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:21.089 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:20 smithi029 bash[22744]: audit 2024-09-16T05:20:19.817579+0000 mon.a (mon.0) 451 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:20:21.090 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:20 smithi029 bash[22744]: audit 2024-09-16T05:20:19.820373+0000 mon.a (mon.0) 452 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:21.090 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:20 smithi029 bash[22744]: audit 2024-09-16T05:20:19.821000+0000 mon.a (mon.0) 453 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:20:21.090 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:20 smithi029 bash[22744]: audit 2024-09-16T05:20:19.822159+0000 mon.a (mon.0) 454 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:20:21.090 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:20 smithi029 bash[22744]: audit 2024-09-16T05:20:19.830312+0000 mon.a (mon.0) 455 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:21.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:20 smithi081 bash[23455]: cluster 2024-09-16T05:20:19.321473+0000 mgr.a (mgr.14150) 152 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:21.119 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:20 smithi081 bash[23455]: audit 2024-09-16T05:20:19.808328+0000 mon.a (mon.0) 449 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:21.119 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:20 smithi081 bash[23455]: audit 2024-09-16T05:20:19.814985+0000 mon.a (mon.0) 450 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:21.119 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:20 smithi081 bash[23455]: audit 2024-09-16T05:20:19.817579+0000 mon.a (mon.0) 451 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:20:21.119 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:20 smithi081 bash[23455]: audit 2024-09-16T05:20:19.820373+0000 mon.a (mon.0) 452 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:21.119 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:20 smithi081 bash[23455]: audit 2024-09-16T05:20:19.821000+0000 mon.a (mon.0) 453 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:20:21.119 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:20 smithi081 bash[23455]: audit 2024-09-16T05:20:19.822159+0000 mon.a (mon.0) 454 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:20:21.119 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:20 smithi081 bash[23455]: audit 2024-09-16T05:20:19.830312+0000 mon.a (mon.0) 455 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:21.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:20 smithi167 bash[23275]: cluster 2024-09-16T05:20:19.321473+0000 mgr.a (mgr.14150) 152 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:21.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:20 smithi167 bash[23275]: audit 2024-09-16T05:20:19.808328+0000 mon.a (mon.0) 449 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:21.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:20 smithi167 bash[23275]: audit 2024-09-16T05:20:19.814985+0000 mon.a (mon.0) 450 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:21.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:20 smithi167 bash[23275]: audit 2024-09-16T05:20:19.817579+0000 mon.a (mon.0) 451 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:20:21.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:20 smithi167 bash[23275]: audit 2024-09-16T05:20:19.820373+0000 mon.a (mon.0) 452 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:21.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:20 smithi167 bash[23275]: audit 2024-09-16T05:20:19.821000+0000 mon.a (mon.0) 453 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:20:21.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:20 smithi167 bash[23275]: audit 2024-09-16T05:20:19.822159+0000 mon.a (mon.0) 454 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:20:21.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:20 smithi167 bash[23275]: audit 2024-09-16T05:20:19.830312+0000 mon.a (mon.0) 455 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:22.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:21 smithi167 bash[23275]: audit 2024-09-16T05:20:20.984553+0000 mon.a (mon.0) 456 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:22.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:21 smithi167 bash[23275]: audit 2024-09-16T05:20:20.992894+0000 mon.a (mon.0) 457 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:22.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:21 smithi167 bash[23275]: audit 2024-09-16T05:20:21.002502+0000 mon.a (mon.0) 458 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:22.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:21 smithi029 bash[22744]: audit 2024-09-16T05:20:20.984553+0000 mon.a (mon.0) 456 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:22.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:21 smithi029 bash[22744]: audit 2024-09-16T05:20:20.992894+0000 mon.a (mon.0) 457 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:22.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:21 smithi029 bash[22744]: audit 2024-09-16T05:20:21.002502+0000 mon.a (mon.0) 458 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:22.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:21 smithi081 bash[23455]: audit 2024-09-16T05:20:20.984553+0000 mon.a (mon.0) 456 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:22.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:21 smithi081 bash[23455]: audit 2024-09-16T05:20:20.992894+0000 mon.a (mon.0) 457 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:22.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:21 smithi081 bash[23455]: audit 2024-09-16T05:20:21.002502+0000 mon.a (mon.0) 458 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:22.446 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:20:23.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:23 smithi029 bash[22744]: cluster 2024-09-16T05:20:21.322044+0000 mgr.a (mgr.14150) 153 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:23.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:23 smithi081 bash[23455]: cluster 2024-09-16T05:20:21.322044+0000 mgr.a (mgr.14150) 153 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:23.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:23 smithi167 bash[23275]: cluster 2024-09-16T05:20:21.322044+0000 mgr.a (mgr.14150) 153 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:25.325 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:25 smithi167 bash[23275]: cluster 2024-09-16T05:20:23.322545+0000 mgr.a (mgr.14150) 154 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:25.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:25 smithi029 bash[22744]: cluster 2024-09-16T05:20:23.322545+0000 mgr.a (mgr.14150) 154 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:25.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:25 smithi081 bash[23455]: cluster 2024-09-16T05:20:23.322545+0000 mgr.a (mgr.14150) 154 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:27.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:27 smithi029 bash[22744]: cluster 2024-09-16T05:20:25.323009+0000 mgr.a (mgr.14150) 155 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:27.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:27 smithi081 bash[23455]: cluster 2024-09-16T05:20:25.323009+0000 mgr.a (mgr.14150) 155 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:27.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:27 smithi167 bash[23275]: cluster 2024-09-16T05:20:25.323009+0000 mgr.a (mgr.14150) 155 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:28.394 INFO:teuthology.orchestra.run.smithi029.stdout: 2024-09-16T05:20:28.445 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi029:vg_nvme/lv_3 2024-09-16T05:20:29.331 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:29 smithi029 bash[22744]: cluster 2024-09-16T05:20:27.323454+0000 mgr.a (mgr.14150) 156 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:29.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:29 smithi081 bash[23455]: cluster 2024-09-16T05:20:27.323454+0000 mgr.a (mgr.14150) 156 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:29.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:29 smithi167 bash[23275]: cluster 2024-09-16T05:20:27.323454+0000 mgr.a (mgr.14150) 156 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:31.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:31 smithi167 bash[23275]: cluster 2024-09-16T05:20:29.323939+0000 mgr.a (mgr.14150) 157 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:31.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:31 smithi167 bash[23275]: audit 2024-09-16T05:20:30.195678+0000 mon.a (mon.0) 459 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:31.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:31 smithi167 bash[23275]: audit 2024-09-16T05:20:30.203187+0000 mon.a (mon.0) 460 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:31.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:31 smithi167 bash[23275]: audit 2024-09-16T05:20:30.212241+0000 mon.a (mon.0) 461 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:31.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:31 smithi029 bash[22744]: cluster 2024-09-16T05:20:29.323939+0000 mgr.a (mgr.14150) 157 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:31.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:31 smithi029 bash[22744]: audit 2024-09-16T05:20:30.195678+0000 mon.a (mon.0) 459 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:31.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:31 smithi029 bash[22744]: audit 2024-09-16T05:20:30.203187+0000 mon.a (mon.0) 460 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:31.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:31 smithi029 bash[22744]: audit 2024-09-16T05:20:30.212241+0000 mon.a (mon.0) 461 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:31.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:31 smithi081 bash[23455]: cluster 2024-09-16T05:20:29.323939+0000 mgr.a (mgr.14150) 157 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:31.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:31 smithi081 bash[23455]: audit 2024-09-16T05:20:30.195678+0000 mon.a (mon.0) 459 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:31.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:31 smithi081 bash[23455]: audit 2024-09-16T05:20:30.203187+0000 mon.a (mon.0) 460 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:31.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:31 smithi081 bash[23455]: audit 2024-09-16T05:20:30.212241+0000 mon.a (mon.0) 461 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:33.265 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:20:33.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:33 smithi167 bash[23275]: cluster 2024-09-16T05:20:31.324377+0000 mgr.a (mgr.14150) 158 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:33.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:33 smithi029 bash[22744]: cluster 2024-09-16T05:20:31.324377+0000 mgr.a (mgr.14150) 158 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:33.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:33 smithi081 bash[23455]: cluster 2024-09-16T05:20:31.324377+0000 mgr.a (mgr.14150) 158 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:35.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:35 smithi081 bash[23455]: cluster 2024-09-16T05:20:33.324835+0000 mgr.a (mgr.14150) 159 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:35.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:35 smithi081 bash[23455]: audit 2024-09-16T05:20:34.993990+0000 mon.a (mon.0) 462 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T05:20:35.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:35 smithi081 bash[23455]: audit 2024-09-16T05:20:34.999470+0000 mon.a (mon.0) 463 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T05:20:35.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:35 smithi081 bash[23455]: audit 2024-09-16T05:20:35.000682+0000 mon.a (mon.0) 464 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:20:35.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:35 smithi167 bash[23275]: cluster 2024-09-16T05:20:33.324835+0000 mgr.a (mgr.14150) 159 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:35.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:35 smithi167 bash[23275]: audit 2024-09-16T05:20:34.993990+0000 mon.a (mon.0) 462 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T05:20:35.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:35 smithi167 bash[23275]: audit 2024-09-16T05:20:34.999470+0000 mon.a (mon.0) 463 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T05:20:35.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:35 smithi167 bash[23275]: audit 2024-09-16T05:20:35.000682+0000 mon.a (mon.0) 464 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:20:35.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:35 smithi029 bash[22744]: cluster 2024-09-16T05:20:33.324835+0000 mgr.a (mgr.14150) 159 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:35.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:35 smithi029 bash[22744]: audit 2024-09-16T05:20:34.993990+0000 mon.a (mon.0) 462 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T05:20:35.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:35 smithi029 bash[22744]: audit 2024-09-16T05:20:34.999470+0000 mon.a (mon.0) 463 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T05:20:35.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:35 smithi029 bash[22744]: audit 2024-09-16T05:20:35.000682+0000 mon.a (mon.0) 464 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:20:36.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:36 smithi167 bash[23275]: audit 2024-09-16T05:20:34.987793+0000 mgr.a (mgr.14150) 160 : audit [DBG] from='client.14238 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi029:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:20:36.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:36 smithi029 bash[22744]: audit 2024-09-16T05:20:34.987793+0000 mgr.a (mgr.14150) 160 : audit [DBG] from='client.14238 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi029:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:20:36.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:36 smithi081 bash[23455]: audit 2024-09-16T05:20:34.987793+0000 mgr.a (mgr.14150) 160 : audit [DBG] from='client.14238 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi029:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:20:37.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:37 smithi167 bash[23275]: cluster 2024-09-16T05:20:35.325152+0000 mgr.a (mgr.14150) 161 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:37.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:37 smithi029 bash[22744]: cluster 2024-09-16T05:20:35.325152+0000 mgr.a (mgr.14150) 161 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:37.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:37 smithi081 bash[23455]: cluster 2024-09-16T05:20:35.325152+0000 mgr.a (mgr.14150) 161 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:39.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:39 smithi167 bash[23275]: cluster 2024-09-16T05:20:37.325595+0000 mgr.a (mgr.14150) 162 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:39.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:39 smithi167 bash[23275]: audit 2024-09-16T05:20:38.208099+0000 mon.a (mon.0) 465 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:39.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:39 smithi167 bash[23275]: audit 2024-09-16T05:20:38.213014+0000 mon.a (mon.0) 466 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:39.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:39 smithi167 bash[23275]: audit 2024-09-16T05:20:38.221848+0000 mon.a (mon.0) 467 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:39.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:39 smithi029 bash[22744]: cluster 2024-09-16T05:20:37.325595+0000 mgr.a (mgr.14150) 162 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:39.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:39 smithi029 bash[22744]: audit 2024-09-16T05:20:38.208099+0000 mon.a (mon.0) 465 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:39.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:39 smithi029 bash[22744]: audit 2024-09-16T05:20:38.213014+0000 mon.a (mon.0) 466 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:39.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:39 smithi029 bash[22744]: audit 2024-09-16T05:20:38.221848+0000 mon.a (mon.0) 467 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:39.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:39 smithi081 bash[23455]: cluster 2024-09-16T05:20:37.325595+0000 mgr.a (mgr.14150) 162 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:39.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:39 smithi081 bash[23455]: audit 2024-09-16T05:20:38.208099+0000 mon.a (mon.0) 465 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:39.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:39 smithi081 bash[23455]: audit 2024-09-16T05:20:38.213014+0000 mon.a (mon.0) 466 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:39.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:39 smithi081 bash[23455]: audit 2024-09-16T05:20:38.221848+0000 mon.a (mon.0) 467 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:41.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:41 smithi167 bash[23275]: cluster 2024-09-16T05:20:39.325999+0000 mgr.a (mgr.14150) 163 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:41.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:41 smithi167 bash[23275]: audit 2024-09-16T05:20:41.205829+0000 mon.a (mon.0) 468 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:41.542 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:41 smithi029 bash[22744]: cluster 2024-09-16T05:20:39.325999+0000 mgr.a (mgr.14150) 163 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:41.542 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:41 smithi029 bash[22744]: audit 2024-09-16T05:20:41.205829+0000 mon.a (mon.0) 468 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:41.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:41 smithi081 bash[23455]: cluster 2024-09-16T05:20:39.325999+0000 mgr.a (mgr.14150) 163 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:41.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:41 smithi081 bash[23455]: audit 2024-09-16T05:20:41.205829+0000 mon.a (mon.0) 468 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:42.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:42 smithi167 bash[23275]: audit 2024-09-16T05:20:41.213381+0000 mon.a (mon.0) 469 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:42.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:42 smithi167 bash[23275]: audit 2024-09-16T05:20:41.226936+0000 mon.a (mon.0) 470 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:42.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:42 smithi029 bash[22744]: audit 2024-09-16T05:20:41.213381+0000 mon.a (mon.0) 469 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:42.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:42 smithi029 bash[22744]: audit 2024-09-16T05:20:41.226936+0000 mon.a (mon.0) 470 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:42.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:42 smithi081 bash[23455]: audit 2024-09-16T05:20:41.213381+0000 mon.a (mon.0) 469 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:42.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:42 smithi081 bash[23455]: audit 2024-09-16T05:20:41.226936+0000 mon.a (mon.0) 470 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:43.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:43 smithi167 bash[23275]: cluster 2024-09-16T05:20:41.326394+0000 mgr.a (mgr.14150) 164 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:43.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:43 smithi029 bash[22744]: cluster 2024-09-16T05:20:41.326394+0000 mgr.a (mgr.14150) 164 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:43.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:43 smithi081 bash[23455]: cluster 2024-09-16T05:20:41.326394+0000 mgr.a (mgr.14150) 164 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:45.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:45 smithi167 bash[23275]: cluster 2024-09-16T05:20:43.326837+0000 mgr.a (mgr.14150) 165 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:45.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:45 smithi167 bash[23275]: audit 2024-09-16T05:20:44.679919+0000 mon.a (mon.0) 471 : audit [INF] from='client.? 172.21.15.29:0/380948853' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "55340442-35d7-4ff3-bd34-1099318086ee"}]: dispatch 2024-09-16T05:20:45.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:45 smithi167 bash[23275]: audit 2024-09-16T05:20:44.682333+0000 mon.a (mon.0) 472 : audit [INF] from='client.? 172.21.15.29:0/380948853' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "55340442-35d7-4ff3-bd34-1099318086ee"}]': finished 2024-09-16T05:20:45.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:45 smithi167 bash[23275]: cluster 2024-09-16T05:20:44.685483+0000 mon.a (mon.0) 473 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-09-16T05:20:45.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:45 smithi167 bash[23275]: audit 2024-09-16T05:20:44.685741+0000 mon.a (mon.0) 474 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T05:20:45.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:45 smithi029 bash[22744]: cluster 2024-09-16T05:20:43.326837+0000 mgr.a (mgr.14150) 165 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:45.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:45 smithi029 bash[22744]: audit 2024-09-16T05:20:44.679919+0000 mon.a (mon.0) 471 : audit [INF] from='client.? 172.21.15.29:0/380948853' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "55340442-35d7-4ff3-bd34-1099318086ee"}]: dispatch 2024-09-16T05:20:45.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:45 smithi029 bash[22744]: audit 2024-09-16T05:20:44.682333+0000 mon.a (mon.0) 472 : audit [INF] from='client.? 172.21.15.29:0/380948853' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "55340442-35d7-4ff3-bd34-1099318086ee"}]': finished 2024-09-16T05:20:45.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:45 smithi029 bash[22744]: cluster 2024-09-16T05:20:44.685483+0000 mon.a (mon.0) 473 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-09-16T05:20:45.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:45 smithi029 bash[22744]: audit 2024-09-16T05:20:44.685741+0000 mon.a (mon.0) 474 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T05:20:45.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:45 smithi081 bash[23455]: cluster 2024-09-16T05:20:43.326837+0000 mgr.a (mgr.14150) 165 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:45.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:45 smithi081 bash[23455]: audit 2024-09-16T05:20:44.679919+0000 mon.a (mon.0) 471 : audit [INF] from='client.? 172.21.15.29:0/380948853' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "55340442-35d7-4ff3-bd34-1099318086ee"}]: dispatch 2024-09-16T05:20:45.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:45 smithi081 bash[23455]: audit 2024-09-16T05:20:44.682333+0000 mon.a (mon.0) 472 : audit [INF] from='client.? 172.21.15.29:0/380948853' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "55340442-35d7-4ff3-bd34-1099318086ee"}]': finished 2024-09-16T05:20:45.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:45 smithi081 bash[23455]: cluster 2024-09-16T05:20:44.685483+0000 mon.a (mon.0) 473 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-09-16T05:20:45.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:45 smithi081 bash[23455]: audit 2024-09-16T05:20:44.685741+0000 mon.a (mon.0) 474 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T05:20:46.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:46 smithi167 bash[23275]: audit 2024-09-16T05:20:45.361224+0000 mon.a (mon.0) 475 : audit [DBG] from='client.? 172.21.15.29:0/2036420456' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T05:20:46.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:46 smithi029 bash[22744]: audit 2024-09-16T05:20:45.361224+0000 mon.a (mon.0) 475 : audit [DBG] from='client.? 172.21.15.29:0/2036420456' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T05:20:46.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:46 smithi081 bash[23455]: audit 2024-09-16T05:20:45.361224+0000 mon.a (mon.0) 475 : audit [DBG] from='client.? 172.21.15.29:0/2036420456' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T05:20:47.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:47 smithi167 bash[23275]: cluster 2024-09-16T05:20:45.327251+0000 mgr.a (mgr.14150) 166 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:47.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:47 smithi029 bash[22744]: cluster 2024-09-16T05:20:45.327251+0000 mgr.a (mgr.14150) 166 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:47.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:47 smithi081 bash[23455]: cluster 2024-09-16T05:20:45.327251+0000 mgr.a (mgr.14150) 166 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:49.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:49 smithi029 bash[22744]: cluster 2024-09-16T05:20:47.327727+0000 mgr.a (mgr.14150) 167 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:49.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:49 smithi081 bash[23455]: cluster 2024-09-16T05:20:47.327727+0000 mgr.a (mgr.14150) 167 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:49.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:49 smithi167 bash[23275]: cluster 2024-09-16T05:20:47.327727+0000 mgr.a (mgr.14150) 167 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:51.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:51 smithi029 bash[22744]: cluster 2024-09-16T05:20:49.328199+0000 mgr.a (mgr.14150) 168 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:51.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:51 smithi029 bash[22744]: audit 2024-09-16T05:20:50.370059+0000 mon.a (mon.0) 476 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:51.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:51 smithi029 bash[22744]: audit 2024-09-16T05:20:50.377178+0000 mon.a (mon.0) 477 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:51.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:51 smithi029 bash[22744]: audit 2024-09-16T05:20:50.386491+0000 mon.a (mon.0) 478 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:51.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:51 smithi081 bash[23455]: cluster 2024-09-16T05:20:49.328199+0000 mgr.a (mgr.14150) 168 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:51.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:51 smithi081 bash[23455]: audit 2024-09-16T05:20:50.370059+0000 mon.a (mon.0) 476 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:51.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:51 smithi081 bash[23455]: audit 2024-09-16T05:20:50.377178+0000 mon.a (mon.0) 477 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:51.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:51 smithi081 bash[23455]: audit 2024-09-16T05:20:50.386491+0000 mon.a (mon.0) 478 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:51.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:51 smithi167 bash[23275]: cluster 2024-09-16T05:20:49.328199+0000 mgr.a (mgr.14150) 168 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:51.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:51 smithi167 bash[23275]: audit 2024-09-16T05:20:50.370059+0000 mon.a (mon.0) 476 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:51.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:51 smithi167 bash[23275]: audit 2024-09-16T05:20:50.377178+0000 mon.a (mon.0) 477 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:51.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:51 smithi167 bash[23275]: audit 2024-09-16T05:20:50.386491+0000 mon.a (mon.0) 478 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:53.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:53 smithi029 bash[22744]: cluster 2024-09-16T05:20:51.328676+0000 mgr.a (mgr.14150) 169 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:53.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:53 smithi081 bash[23455]: cluster 2024-09-16T05:20:51.328676+0000 mgr.a (mgr.14150) 169 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:53.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:53 smithi167 bash[23275]: cluster 2024-09-16T05:20:51.328676+0000 mgr.a (mgr.14150) 169 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:55.564 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:55 smithi081 bash[23455]: cluster 2024-09-16T05:20:53.329175+0000 mgr.a (mgr.14150) 170 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:55.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:55 smithi029 bash[22744]: cluster 2024-09-16T05:20:53.329175+0000 mgr.a (mgr.14150) 170 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:55.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:55 smithi167 bash[23275]: cluster 2024-09-16T05:20:53.329175+0000 mgr.a (mgr.14150) 170 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:57.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:57 smithi029 bash[22744]: cluster 2024-09-16T05:20:55.329682+0000 mgr.a (mgr.14150) 171 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:57.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:57 smithi081 bash[23455]: cluster 2024-09-16T05:20:55.329682+0000 mgr.a (mgr.14150) 171 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:57.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:57 smithi167 bash[23275]: cluster 2024-09-16T05:20:55.329682+0000 mgr.a (mgr.14150) 171 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:59.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:59 smithi029 bash[22744]: cluster 2024-09-16T05:20:57.330143+0000 mgr.a (mgr.14150) 172 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:59.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:59 smithi029 bash[22744]: audit 2024-09-16T05:20:58.383221+0000 mon.a (mon.0) 479 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:59.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:59 smithi029 bash[22744]: audit 2024-09-16T05:20:58.388176+0000 mon.a (mon.0) 480 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:59.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:20:59 smithi029 bash[22744]: audit 2024-09-16T05:20:58.393743+0000 mon.a (mon.0) 481 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:59.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:59 smithi081 bash[23455]: cluster 2024-09-16T05:20:57.330143+0000 mgr.a (mgr.14150) 172 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:59.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:59 smithi081 bash[23455]: audit 2024-09-16T05:20:58.383221+0000 mon.a (mon.0) 479 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:59.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:59 smithi081 bash[23455]: audit 2024-09-16T05:20:58.388176+0000 mon.a (mon.0) 480 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:59.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:20:59 smithi081 bash[23455]: audit 2024-09-16T05:20:58.393743+0000 mon.a (mon.0) 481 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:59.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:59 smithi167 bash[23275]: cluster 2024-09-16T05:20:57.330143+0000 mgr.a (mgr.14150) 172 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:20:59.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:59 smithi167 bash[23275]: audit 2024-09-16T05:20:58.383221+0000 mon.a (mon.0) 479 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:59.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:59 smithi167 bash[23275]: audit 2024-09-16T05:20:58.388176+0000 mon.a (mon.0) 480 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:20:59.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:20:59 smithi167 bash[23275]: audit 2024-09-16T05:20:58.393743+0000 mon.a (mon.0) 481 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:00.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:00 smithi029 bash[22744]: cephadm 2024-09-16T05:20:58.390068+0000 mgr.a (mgr.14150) 173 : cephadm [INF] Detected new or changed devices on smithi029 2024-09-16T05:21:00.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:00 smithi081 bash[23455]: cephadm 2024-09-16T05:20:58.390068+0000 mgr.a (mgr.14150) 173 : cephadm [INF] Detected new or changed devices on smithi029 2024-09-16T05:21:00.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:00 smithi167 bash[23275]: cephadm 2024-09-16T05:20:58.390068+0000 mgr.a (mgr.14150) 173 : cephadm [INF] Detected new or changed devices on smithi029 2024-09-16T05:21:01.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:01 smithi029 bash[22744]: cluster 2024-09-16T05:20:59.330508+0000 mgr.a (mgr.14150) 174 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:01.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:01 smithi029 bash[22744]: audit 2024-09-16T05:21:00.516473+0000 mon.a (mon.0) 482 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-16T05:21:01.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:01 smithi029 bash[22744]: audit 2024-09-16T05:21:00.517938+0000 mon.a (mon.0) 483 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:21:01.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:01 smithi081 bash[23455]: cluster 2024-09-16T05:20:59.330508+0000 mgr.a (mgr.14150) 174 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:01.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:01 smithi081 bash[23455]: audit 2024-09-16T05:21:00.516473+0000 mon.a (mon.0) 482 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-16T05:21:01.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:01 smithi081 bash[23455]: audit 2024-09-16T05:21:00.517938+0000 mon.a (mon.0) 483 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:21:01.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:01 smithi167 bash[23275]: cluster 2024-09-16T05:20:59.330508+0000 mgr.a (mgr.14150) 174 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:01.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:01 smithi167 bash[23275]: audit 2024-09-16T05:21:00.516473+0000 mon.a (mon.0) 482 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-16T05:21:01.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:01 smithi167 bash[23275]: audit 2024-09-16T05:21:00.517938+0000 mon.a (mon.0) 483 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:21:02.553 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:02 smithi029 bash[22744]: cephadm 2024-09-16T05:21:00.519390+0000 mgr.a (mgr.14150) 175 : cephadm [INF] Deploying daemon osd.1 on smithi029 2024-09-16T05:21:02.553 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:02 smithi029 bash[22744]: audit 2024-09-16T05:21:01.430189+0000 mon.a (mon.0) 484 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:02.553 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:02 smithi029 bash[22744]: audit 2024-09-16T05:21:01.437610+0000 mon.a (mon.0) 485 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:02.553 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:02 smithi029 bash[22744]: audit 2024-09-16T05:21:01.447169+0000 mon.a (mon.0) 486 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:02.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:02 smithi081 bash[23455]: cephadm 2024-09-16T05:21:00.519390+0000 mgr.a (mgr.14150) 175 : cephadm [INF] Deploying daemon osd.1 on smithi029 2024-09-16T05:21:02.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:02 smithi081 bash[23455]: audit 2024-09-16T05:21:01.430189+0000 mon.a (mon.0) 484 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:02.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:02 smithi081 bash[23455]: audit 2024-09-16T05:21:01.437610+0000 mon.a (mon.0) 485 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:02.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:02 smithi081 bash[23455]: audit 2024-09-16T05:21:01.447169+0000 mon.a (mon.0) 486 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:02.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:02 smithi167 bash[23275]: cephadm 2024-09-16T05:21:00.519390+0000 mgr.a (mgr.14150) 175 : cephadm [INF] Deploying daemon osd.1 on smithi029 2024-09-16T05:21:02.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:02 smithi167 bash[23275]: audit 2024-09-16T05:21:01.430189+0000 mon.a (mon.0) 484 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:02.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:02 smithi167 bash[23275]: audit 2024-09-16T05:21:01.437610+0000 mon.a (mon.0) 485 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:02.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:02 smithi167 bash[23275]: audit 2024-09-16T05:21:01.447169+0000 mon.a (mon.0) 486 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:03.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:03 smithi029 bash[22744]: cluster 2024-09-16T05:21:01.330894+0000 mgr.a (mgr.14150) 176 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:03.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:03 smithi081 bash[23455]: cluster 2024-09-16T05:21:01.330894+0000 mgr.a (mgr.14150) 176 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:03.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:03 smithi167 bash[23275]: cluster 2024-09-16T05:21:01.330894+0000 mgr.a (mgr.14150) 176 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:05.412 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:05 smithi029 bash[22744]: cluster 2024-09-16T05:21:03.331426+0000 mgr.a (mgr.14150) 177 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:05.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:05 smithi081 bash[23455]: cluster 2024-09-16T05:21:03.331426+0000 mgr.a (mgr.14150) 177 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:05.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:05 smithi167 bash[23275]: cluster 2024-09-16T05:21:03.331426+0000 mgr.a (mgr.14150) 177 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:06.481 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:06 smithi029 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:21:06.481 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:21:06 smithi029 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:21:06.482 INFO:journalctl@ceph.osd.0.smithi029.stdout:Sep 16 05:21:06 smithi029 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:21:06.822 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:06 smithi029 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:21:06.822 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:21:06 smithi029 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:21:06.823 INFO:journalctl@ceph.osd.0.smithi029.stdout:Sep 16 05:21:06 smithi029 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:21:07.380 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:07 smithi167 bash[23275]: cluster 2024-09-16T05:21:05.331976+0000 mgr.a (mgr.14150) 178 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:07.380 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:07 smithi167 bash[23275]: audit 2024-09-16T05:21:06.746297+0000 mon.a (mon.0) 487 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:21:07.380 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:07 smithi167 bash[23275]: audit 2024-09-16T05:21:06.750710+0000 mon.a (mon.0) 488 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:07.380 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:07 smithi167 bash[23275]: audit 2024-09-16T05:21:06.750968+0000 mon.a (mon.0) 489 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:21:07.381 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:07 smithi167 bash[23275]: audit 2024-09-16T05:21:06.751938+0000 mon.a (mon.0) 490 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:21:07.381 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:07 smithi167 bash[23275]: audit 2024-09-16T05:21:06.755383+0000 mon.a (mon.0) 491 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:07.381 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:07 smithi167 bash[23275]: audit 2024-09-16T05:21:06.759937+0000 mon.a (mon.0) 492 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:07.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:07 smithi029 bash[22744]: cluster 2024-09-16T05:21:05.331976+0000 mgr.a (mgr.14150) 178 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:07.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:07 smithi029 bash[22744]: audit 2024-09-16T05:21:06.746297+0000 mon.a (mon.0) 487 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:21:07.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:07 smithi029 bash[22744]: audit 2024-09-16T05:21:06.750710+0000 mon.a (mon.0) 488 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:07.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:07 smithi029 bash[22744]: audit 2024-09-16T05:21:06.750968+0000 mon.a (mon.0) 489 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:21:07.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:07 smithi029 bash[22744]: audit 2024-09-16T05:21:06.751938+0000 mon.a (mon.0) 490 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:21:07.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:07 smithi029 bash[22744]: audit 2024-09-16T05:21:06.755383+0000 mon.a (mon.0) 491 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:07.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:07 smithi029 bash[22744]: audit 2024-09-16T05:21:06.759937+0000 mon.a (mon.0) 492 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:07.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:07 smithi081 bash[23455]: cluster 2024-09-16T05:21:05.331976+0000 mgr.a (mgr.14150) 178 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:07.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:07 smithi081 bash[23455]: audit 2024-09-16T05:21:06.746297+0000 mon.a (mon.0) 487 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:21:07.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:07 smithi081 bash[23455]: audit 2024-09-16T05:21:06.750710+0000 mon.a (mon.0) 488 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:07.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:07 smithi081 bash[23455]: audit 2024-09-16T05:21:06.750968+0000 mon.a (mon.0) 489 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:21:07.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:07 smithi081 bash[23455]: audit 2024-09-16T05:21:06.751938+0000 mon.a (mon.0) 490 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:21:07.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:07 smithi081 bash[23455]: audit 2024-09-16T05:21:06.755383+0000 mon.a (mon.0) 491 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:07.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:07 smithi081 bash[23455]: audit 2024-09-16T05:21:06.759937+0000 mon.a (mon.0) 492 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:09.348 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:09 smithi029 bash[22744]: cluster 2024-09-16T05:21:07.332450+0000 mgr.a (mgr.14150) 179 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:09.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:09 smithi081 bash[23455]: cluster 2024-09-16T05:21:07.332450+0000 mgr.a (mgr.14150) 179 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:09.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:09 smithi167 bash[23275]: cluster 2024-09-16T05:21:07.332450+0000 mgr.a (mgr.14150) 179 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:11.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:11 smithi029 bash[22744]: cluster 2024-09-16T05:21:09.332779+0000 mgr.a (mgr.14150) 180 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:11.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:11 smithi029 bash[22744]: audit 2024-09-16T05:21:10.581157+0000 mon.a (mon.0) 493 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:11.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:11 smithi029 bash[22744]: audit 2024-09-16T05:21:10.588048+0000 mon.a (mon.0) 494 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:11.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:11 smithi029 bash[22744]: audit 2024-09-16T05:21:10.597499+0000 mon.a (mon.0) 495 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:11.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:11 smithi081 bash[23455]: cluster 2024-09-16T05:21:09.332779+0000 mgr.a (mgr.14150) 180 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:11.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:11 smithi081 bash[23455]: audit 2024-09-16T05:21:10.581157+0000 mon.a (mon.0) 493 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:11.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:11 smithi081 bash[23455]: audit 2024-09-16T05:21:10.588048+0000 mon.a (mon.0) 494 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:11.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:11 smithi081 bash[23455]: audit 2024-09-16T05:21:10.597499+0000 mon.a (mon.0) 495 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:11.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:11 smithi167 bash[23275]: cluster 2024-09-16T05:21:09.332779+0000 mgr.a (mgr.14150) 180 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:11.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:11 smithi167 bash[23275]: audit 2024-09-16T05:21:10.581157+0000 mon.a (mon.0) 493 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:11.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:11 smithi167 bash[23275]: audit 2024-09-16T05:21:10.588048+0000 mon.a (mon.0) 494 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:11.742 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:11 smithi167 bash[23275]: audit 2024-09-16T05:21:10.597499+0000 mon.a (mon.0) 495 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:12.583 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:12 smithi029 bash[22744]: cluster 2024-09-16T05:21:11.333150+0000 mgr.a (mgr.14150) 181 : cluster [DBG] pgmap v119: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:12.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:12 smithi081 bash[23455]: cluster 2024-09-16T05:21:11.333150+0000 mgr.a (mgr.14150) 181 : cluster [DBG] pgmap v119: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:12.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:12 smithi167 bash[23275]: cluster 2024-09-16T05:21:11.333150+0000 mgr.a (mgr.14150) 181 : cluster [DBG] pgmap v119: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:14.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:14 smithi167 bash[23275]: cluster 2024-09-16T05:21:13.333645+0000 mgr.a (mgr.14150) 182 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:14.800 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:14 smithi029 bash[22744]: cluster 2024-09-16T05:21:13.333645+0000 mgr.a (mgr.14150) 182 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:14.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:14 smithi081 bash[23455]: cluster 2024-09-16T05:21:13.333645+0000 mgr.a (mgr.14150) 182 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:16.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:16 smithi029 bash[22744]: cluster 2024-09-16T05:21:15.334096+0000 mgr.a (mgr.14150) 183 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:16.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:16 smithi167 bash[23275]: cluster 2024-09-16T05:21:15.334096+0000 mgr.a (mgr.14150) 183 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:16.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:16 smithi081 bash[23455]: cluster 2024-09-16T05:21:15.334096+0000 mgr.a (mgr.14150) 183 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:18.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:18 smithi081 bash[23455]: cluster 2024-09-16T05:21:17.334534+0000 mgr.a (mgr.14150) 184 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:18.763 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:18 smithi167 bash[23275]: cluster 2024-09-16T05:21:17.334534+0000 mgr.a (mgr.14150) 184 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:18.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:18 smithi029 bash[22744]: cluster 2024-09-16T05:21:17.334534+0000 mgr.a (mgr.14150) 184 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:19.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:19 smithi081 bash[23455]: audit 2024-09-16T05:21:18.517062+0000 mon.a (mon.0) 496 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:19.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:19 smithi081 bash[23455]: audit 2024-09-16T05:21:18.522869+0000 mon.a (mon.0) 497 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:19.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:19 smithi081 bash[23455]: audit 2024-09-16T05:21:18.526040+0000 mon.a (mon.0) 498 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:21:19.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:19 smithi081 bash[23455]: audit 2024-09-16T05:21:18.529884+0000 mon.a (mon.0) 499 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:19.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:19 smithi081 bash[23455]: audit 2024-09-16T05:21:18.530341+0000 mon.a (mon.0) 500 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:21:19.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:19 smithi081 bash[23455]: audit 2024-09-16T05:21:18.531930+0000 mon.a (mon.0) 501 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:21:19.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:19 smithi081 bash[23455]: audit 2024-09-16T05:21:18.539983+0000 mon.a (mon.0) 502 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:19.684 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:19 smithi029 bash[22744]: audit 2024-09-16T05:21:18.517062+0000 mon.a (mon.0) 496 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:19.684 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:19 smithi029 bash[22744]: audit 2024-09-16T05:21:18.522869+0000 mon.a (mon.0) 497 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:19.684 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:19 smithi029 bash[22744]: audit 2024-09-16T05:21:18.526040+0000 mon.a (mon.0) 498 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:21:19.684 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:19 smithi029 bash[22744]: audit 2024-09-16T05:21:18.529884+0000 mon.a (mon.0) 499 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:19.684 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:19 smithi029 bash[22744]: audit 2024-09-16T05:21:18.530341+0000 mon.a (mon.0) 500 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:21:19.684 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:19 smithi029 bash[22744]: audit 2024-09-16T05:21:18.531930+0000 mon.a (mon.0) 501 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:21:19.685 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:19 smithi029 bash[22744]: audit 2024-09-16T05:21:18.539983+0000 mon.a (mon.0) 502 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:19.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:19 smithi167 bash[23275]: audit 2024-09-16T05:21:18.517062+0000 mon.a (mon.0) 496 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:19.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:19 smithi167 bash[23275]: audit 2024-09-16T05:21:18.522869+0000 mon.a (mon.0) 497 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:19.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:19 smithi167 bash[23275]: audit 2024-09-16T05:21:18.526040+0000 mon.a (mon.0) 498 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:21:19.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:19 smithi167 bash[23275]: audit 2024-09-16T05:21:18.529884+0000 mon.a (mon.0) 499 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:19.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:19 smithi167 bash[23275]: audit 2024-09-16T05:21:18.530341+0000 mon.a (mon.0) 500 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:21:19.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:19 smithi167 bash[23275]: audit 2024-09-16T05:21:18.531930+0000 mon.a (mon.0) 501 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:21:19.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:19 smithi167 bash[23275]: audit 2024-09-16T05:21:18.539983+0000 mon.a (mon.0) 502 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:20.440 INFO:teuthology.orchestra.run.smithi029.stdout:Created osd(s) 1 on host 'smithi029' 2024-09-16T05:21:20.775 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:20 smithi029 bash[22744]: cluster 2024-09-16T05:21:19.334983+0000 mgr.a (mgr.14150) 185 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:20.776 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:20 smithi029 bash[22744]: audit 2024-09-16T05:21:20.236334+0000 mon.a (mon.0) 503 : audit [INF] from='osd.1 [v2:172.21.15.29:6810/3972944792,v1:172.21.15.29:6811/3972944792]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-16T05:21:20.776 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:20 smithi029 bash[22744]: audit 2024-09-16T05:21:20.423417+0000 mon.a (mon.0) 504 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:21:20.776 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:20 smithi029 bash[22744]: audit 2024-09-16T05:21:20.432050+0000 mon.a (mon.0) 505 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:20.776 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:20 smithi029 bash[22744]: audit 2024-09-16T05:21:20.432908+0000 mon.a (mon.0) 506 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-16T05:21:20.776 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:20 smithi029 bash[22744]: audit 2024-09-16T05:21:20.440164+0000 mon.a (mon.0) 507 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:20.776 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:20 smithi029 bash[22744]: audit 2024-09-16T05:21:20.447034+0000 mon.a (mon.0) 508 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:20.777 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:20 smithi029 bash[22744]: audit 2024-09-16T05:21:20.451668+0000 mon.a (mon.0) 509 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:21:20.777 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:20 smithi029 bash[22744]: audit 2024-09-16T05:21:20.453005+0000 mon.a (mon.0) 510 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:21:20.777 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:20 smithi029 bash[22744]: audit 2024-09-16T05:21:20.462017+0000 mon.a (mon.0) 511 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:20.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:20 smithi081 bash[23455]: cluster 2024-09-16T05:21:19.334983+0000 mgr.a (mgr.14150) 185 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:20.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:20 smithi081 bash[23455]: audit 2024-09-16T05:21:20.236334+0000 mon.a (mon.0) 503 : audit [INF] from='osd.1 [v2:172.21.15.29:6810/3972944792,v1:172.21.15.29:6811/3972944792]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-16T05:21:20.869 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:20 smithi081 bash[23455]: audit 2024-09-16T05:21:20.423417+0000 mon.a (mon.0) 504 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:21:20.869 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:20 smithi081 bash[23455]: audit 2024-09-16T05:21:20.432050+0000 mon.a (mon.0) 505 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:20.869 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:20 smithi081 bash[23455]: audit 2024-09-16T05:21:20.432908+0000 mon.a (mon.0) 506 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-16T05:21:20.869 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:20 smithi081 bash[23455]: audit 2024-09-16T05:21:20.440164+0000 mon.a (mon.0) 507 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:20.869 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:20 smithi081 bash[23455]: audit 2024-09-16T05:21:20.447034+0000 mon.a (mon.0) 508 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:20.869 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:20 smithi081 bash[23455]: audit 2024-09-16T05:21:20.451668+0000 mon.a (mon.0) 509 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:21:20.869 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:20 smithi081 bash[23455]: audit 2024-09-16T05:21:20.453005+0000 mon.a (mon.0) 510 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:21:20.870 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:20 smithi081 bash[23455]: audit 2024-09-16T05:21:20.462017+0000 mon.a (mon.0) 511 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:20.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:20 smithi167 bash[23275]: cluster 2024-09-16T05:21:19.334983+0000 mgr.a (mgr.14150) 185 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:20.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:20 smithi167 bash[23275]: audit 2024-09-16T05:21:20.236334+0000 mon.a (mon.0) 503 : audit [INF] from='osd.1 [v2:172.21.15.29:6810/3972944792,v1:172.21.15.29:6811/3972944792]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-16T05:21:20.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:20 smithi167 bash[23275]: audit 2024-09-16T05:21:20.423417+0000 mon.a (mon.0) 504 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:21:20.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:20 smithi167 bash[23275]: audit 2024-09-16T05:21:20.432050+0000 mon.a (mon.0) 505 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:20.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:20 smithi167 bash[23275]: audit 2024-09-16T05:21:20.432908+0000 mon.a (mon.0) 506 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-16T05:21:20.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:20 smithi167 bash[23275]: audit 2024-09-16T05:21:20.440164+0000 mon.a (mon.0) 507 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:20.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:20 smithi167 bash[23275]: audit 2024-09-16T05:21:20.447034+0000 mon.a (mon.0) 508 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:20.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:20 smithi167 bash[23275]: audit 2024-09-16T05:21:20.451668+0000 mon.a (mon.0) 509 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:21:20.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:20 smithi167 bash[23275]: audit 2024-09-16T05:21:20.453005+0000 mon.a (mon.0) 510 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:21:20.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:20 smithi167 bash[23275]: audit 2024-09-16T05:21:20.462017+0000 mon.a (mon.0) 511 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:21.342 DEBUG:teuthology.orchestra.run.smithi029:osd.1> sudo journalctl -f -n 0 -u ceph-825322c2-73ea-11ef-bceb-c7b262605968@osd.1.service 2024-09-16T05:21:21.345 INFO:tasks.cephadm:Deploying osd.2 on smithi081 with /dev/vg_nvme/lv_4... 2024-09-16T05:21:21.345 DEBUG:teuthology.orchestra.run.smithi081:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_4 2024-09-16T05:21:21.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:21 smithi081 bash[23455]: cephadm 2024-09-16T05:21:20.435577+0000 mgr.a (mgr.14150) 186 : cephadm [INF] Adjusting osd_memory_target on smithi029 to 16245M 2024-09-16T05:21:21.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:21 smithi081 bash[23455]: audit 2024-09-16T05:21:20.547221+0000 mon.a (mon.0) 512 : audit [INF] from='osd.1 [v2:172.21.15.29:6810/3972944792,v1:172.21.15.29:6811/3972944792]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-16T05:21:21.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:21 smithi081 bash[23455]: cluster 2024-09-16T05:21:20.549369+0000 mon.a (mon.0) 513 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-09-16T05:21:21.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:21 smithi081 bash[23455]: audit 2024-09-16T05:21:20.549596+0000 mon.a (mon.0) 514 : audit [INF] from='osd.1 [v2:172.21.15.29:6810/3972944792,v1:172.21.15.29:6811/3972944792]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi029", "root=default"]}]: dispatch 2024-09-16T05:21:21.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:21 smithi081 bash[23455]: audit 2024-09-16T05:21:20.549836+0000 mon.a (mon.0) 515 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T05:21:21.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:21 smithi081 bash[23455]: audit 2024-09-16T05:21:21.280295+0000 mon.a (mon.0) 516 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:21.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:21 smithi081 bash[23455]: audit 2024-09-16T05:21:21.284718+0000 mon.a (mon.0) 517 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:21.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:21 smithi081 bash[23455]: audit 2024-09-16T05:21:21.288406+0000 mon.a (mon.0) 518 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:21:21.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:21 smithi081 bash[23455]: audit 2024-09-16T05:21:21.290820+0000 mon.a (mon.0) 519 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:21.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:21 smithi081 bash[23455]: audit 2024-09-16T05:21:21.293990+0000 mon.a (mon.0) 520 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:21:21.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:21 smithi081 bash[23455]: audit 2024-09-16T05:21:21.294947+0000 mon.a (mon.0) 521 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:21:21.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:21 smithi081 bash[23455]: audit 2024-09-16T05:21:21.300488+0000 mon.a (mon.0) 522 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:21.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:21 smithi029 bash[22744]: cephadm 2024-09-16T05:21:20.435577+0000 mgr.a (mgr.14150) 186 : cephadm [INF] Adjusting osd_memory_target on smithi029 to 16245M 2024-09-16T05:21:21.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:21 smithi029 bash[22744]: audit 2024-09-16T05:21:20.547221+0000 mon.a (mon.0) 512 : audit [INF] from='osd.1 [v2:172.21.15.29:6810/3972944792,v1:172.21.15.29:6811/3972944792]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-16T05:21:21.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:21 smithi029 bash[22744]: cluster 2024-09-16T05:21:20.549369+0000 mon.a (mon.0) 513 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-09-16T05:21:21.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:21 smithi029 bash[22744]: audit 2024-09-16T05:21:20.549596+0000 mon.a (mon.0) 514 : audit [INF] from='osd.1 [v2:172.21.15.29:6810/3972944792,v1:172.21.15.29:6811/3972944792]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi029", "root=default"]}]: dispatch 2024-09-16T05:21:21.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:21 smithi029 bash[22744]: audit 2024-09-16T05:21:20.549836+0000 mon.a (mon.0) 515 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T05:21:21.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:21 smithi029 bash[22744]: audit 2024-09-16T05:21:21.280295+0000 mon.a (mon.0) 516 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:21.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:21 smithi029 bash[22744]: audit 2024-09-16T05:21:21.284718+0000 mon.a (mon.0) 517 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:21.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:21 smithi029 bash[22744]: audit 2024-09-16T05:21:21.288406+0000 mon.a (mon.0) 518 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:21:21.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:21 smithi029 bash[22744]: audit 2024-09-16T05:21:21.290820+0000 mon.a (mon.0) 519 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:21.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:21 smithi029 bash[22744]: audit 2024-09-16T05:21:21.293990+0000 mon.a (mon.0) 520 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:21:21.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:21 smithi029 bash[22744]: audit 2024-09-16T05:21:21.294947+0000 mon.a (mon.0) 521 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:21:21.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:21 smithi029 bash[22744]: audit 2024-09-16T05:21:21.300488+0000 mon.a (mon.0) 522 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:21.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:21 smithi167 bash[23275]: cephadm 2024-09-16T05:21:20.435577+0000 mgr.a (mgr.14150) 186 : cephadm [INF] Adjusting osd_memory_target on smithi029 to 16245M 2024-09-16T05:21:21.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:21 smithi167 bash[23275]: audit 2024-09-16T05:21:20.547221+0000 mon.a (mon.0) 512 : audit [INF] from='osd.1 [v2:172.21.15.29:6810/3972944792,v1:172.21.15.29:6811/3972944792]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-16T05:21:21.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:21 smithi167 bash[23275]: cluster 2024-09-16T05:21:20.549369+0000 mon.a (mon.0) 513 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-09-16T05:21:21.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:21 smithi167 bash[23275]: audit 2024-09-16T05:21:20.549596+0000 mon.a (mon.0) 514 : audit [INF] from='osd.1 [v2:172.21.15.29:6810/3972944792,v1:172.21.15.29:6811/3972944792]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi029", "root=default"]}]: dispatch 2024-09-16T05:21:21.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:21 smithi167 bash[23275]: audit 2024-09-16T05:21:20.549836+0000 mon.a (mon.0) 515 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T05:21:21.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:21 smithi167 bash[23275]: audit 2024-09-16T05:21:21.280295+0000 mon.a (mon.0) 516 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:21.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:21 smithi167 bash[23275]: audit 2024-09-16T05:21:21.284718+0000 mon.a (mon.0) 517 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:21.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:21 smithi167 bash[23275]: audit 2024-09-16T05:21:21.288406+0000 mon.a (mon.0) 518 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:21:21.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:21 smithi167 bash[23275]: audit 2024-09-16T05:21:21.290820+0000 mon.a (mon.0) 519 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:21.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:21 smithi167 bash[23275]: audit 2024-09-16T05:21:21.293990+0000 mon.a (mon.0) 520 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:21:21.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:21 smithi167 bash[23275]: audit 2024-09-16T05:21:21.294947+0000 mon.a (mon.0) 521 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:21:21.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:21 smithi167 bash[23275]: audit 2024-09-16T05:21:21.300488+0000 mon.a (mon.0) 522 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:22.339 INFO:journalctl@ceph.osd.1.smithi029.stdout:Sep 16 05:21:21 smithi029 bash[35955]: debug 2024-09-16T05:21:21.853+0000 7f15fd5bc640 -1 osd.1 0 waiting for initial osdmap 2024-09-16T05:21:22.339 INFO:journalctl@ceph.osd.1.smithi029.stdout:Sep 16 05:21:21 smithi029 bash[35955]: debug 2024-09-16T05:21:21.881+0000 7f15f53dc640 -1 osd.1 12 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-16T05:21:22.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:22 smithi029 bash[22744]: cluster 2024-09-16T05:21:21.335457+0000 mgr.a (mgr.14150) 187 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:22.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:22 smithi029 bash[22744]: audit 2024-09-16T05:21:21.549798+0000 mon.a (mon.0) 523 : audit [INF] from='osd.1 [v2:172.21.15.29:6810/3972944792,v1:172.21.15.29:6811/3972944792]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi029", "root=default"]}]': finished 2024-09-16T05:21:22.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:22 smithi029 bash[22744]: cluster 2024-09-16T05:21:21.555115+0000 mon.a (mon.0) 524 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-09-16T05:21:22.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:22 smithi029 bash[22744]: audit 2024-09-16T05:21:21.556726+0000 mon.a (mon.0) 525 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T05:21:22.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:22 smithi029 bash[22744]: audit 2024-09-16T05:21:21.569651+0000 mon.a (mon.0) 526 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T05:21:22.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:22 smithi029 bash[22744]: audit 2024-09-16T05:21:21.603543+0000 mon.a (mon.0) 527 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:22.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:22 smithi029 bash[22744]: audit 2024-09-16T05:21:21.619905+0000 mon.a (mon.0) 528 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:22.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:22 smithi029 bash[22744]: audit 2024-09-16T05:21:21.637402+0000 mon.a (mon.0) 529 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:22.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:22 smithi029 bash[22744]: audit 2024-09-16T05:21:21.859844+0000 mon.a (mon.0) 530 : audit [INF] from='osd.1 [v2:172.21.15.29:6810/3972944792,v1:172.21.15.29:6811/3972944792]' entity='osd.1' 2024-09-16T05:21:22.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:22 smithi081 bash[23455]: cluster 2024-09-16T05:21:21.335457+0000 mgr.a (mgr.14150) 187 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:22.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:22 smithi081 bash[23455]: audit 2024-09-16T05:21:21.549798+0000 mon.a (mon.0) 523 : audit [INF] from='osd.1 [v2:172.21.15.29:6810/3972944792,v1:172.21.15.29:6811/3972944792]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi029", "root=default"]}]': finished 2024-09-16T05:21:22.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:22 smithi081 bash[23455]: cluster 2024-09-16T05:21:21.555115+0000 mon.a (mon.0) 524 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-09-16T05:21:22.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:22 smithi081 bash[23455]: audit 2024-09-16T05:21:21.556726+0000 mon.a (mon.0) 525 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T05:21:22.869 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:22 smithi081 bash[23455]: audit 2024-09-16T05:21:21.569651+0000 mon.a (mon.0) 526 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T05:21:22.869 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:22 smithi081 bash[23455]: audit 2024-09-16T05:21:21.603543+0000 mon.a (mon.0) 527 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:22.869 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:22 smithi081 bash[23455]: audit 2024-09-16T05:21:21.619905+0000 mon.a (mon.0) 528 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:22.869 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:22 smithi081 bash[23455]: audit 2024-09-16T05:21:21.637402+0000 mon.a (mon.0) 529 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:22.869 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:22 smithi081 bash[23455]: audit 2024-09-16T05:21:21.859844+0000 mon.a (mon.0) 530 : audit [INF] from='osd.1 [v2:172.21.15.29:6810/3972944792,v1:172.21.15.29:6811/3972944792]' entity='osd.1' 2024-09-16T05:21:22.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:22 smithi167 bash[23275]: cluster 2024-09-16T05:21:21.335457+0000 mgr.a (mgr.14150) 187 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:22.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:22 smithi167 bash[23275]: audit 2024-09-16T05:21:21.549798+0000 mon.a (mon.0) 523 : audit [INF] from='osd.1 [v2:172.21.15.29:6810/3972944792,v1:172.21.15.29:6811/3972944792]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi029", "root=default"]}]': finished 2024-09-16T05:21:22.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:22 smithi167 bash[23275]: cluster 2024-09-16T05:21:21.555115+0000 mon.a (mon.0) 524 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-09-16T05:21:22.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:22 smithi167 bash[23275]: audit 2024-09-16T05:21:21.556726+0000 mon.a (mon.0) 525 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T05:21:22.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:22 smithi167 bash[23275]: audit 2024-09-16T05:21:21.569651+0000 mon.a (mon.0) 526 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T05:21:22.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:22 smithi167 bash[23275]: audit 2024-09-16T05:21:21.603543+0000 mon.a (mon.0) 527 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:22.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:22 smithi167 bash[23275]: audit 2024-09-16T05:21:21.619905+0000 mon.a (mon.0) 528 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:22.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:22 smithi167 bash[23275]: audit 2024-09-16T05:21:21.637402+0000 mon.a (mon.0) 529 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:22.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:22 smithi167 bash[23275]: audit 2024-09-16T05:21:21.859844+0000 mon.a (mon.0) 530 : audit [INF] from='osd.1 [v2:172.21.15.29:6810/3972944792,v1:172.21.15.29:6811/3972944792]' entity='osd.1' 2024-09-16T05:21:23.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:23 smithi029 bash[22744]: cluster 2024-09-16T05:21:21.234183+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T05:21:23.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:23 smithi029 bash[22744]: cluster 2024-09-16T05:21:21.234281+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T05:21:23.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:23 smithi029 bash[22744]: audit 2024-09-16T05:21:22.568050+0000 mon.a (mon.0) 531 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T05:21:23.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:23 smithi029 bash[22744]: cluster 2024-09-16T05:21:22.865223+0000 mon.a (mon.0) 532 : cluster [INF] osd.1 [v2:172.21.15.29:6810/3972944792,v1:172.21.15.29:6811/3972944792] boot 2024-09-16T05:21:23.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:23 smithi029 bash[22744]: cluster 2024-09-16T05:21:22.865284+0000 mon.a (mon.0) 533 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-09-16T05:21:23.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:23 smithi029 bash[22744]: audit 2024-09-16T05:21:22.865504+0000 mon.a (mon.0) 534 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T05:21:23.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:23 smithi081 bash[23455]: cluster 2024-09-16T05:21:21.234183+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T05:21:23.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:23 smithi081 bash[23455]: cluster 2024-09-16T05:21:21.234281+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T05:21:23.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:23 smithi081 bash[23455]: audit 2024-09-16T05:21:22.568050+0000 mon.a (mon.0) 531 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T05:21:23.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:23 smithi081 bash[23455]: cluster 2024-09-16T05:21:22.865223+0000 mon.a (mon.0) 532 : cluster [INF] osd.1 [v2:172.21.15.29:6810/3972944792,v1:172.21.15.29:6811/3972944792] boot 2024-09-16T05:21:23.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:23 smithi081 bash[23455]: cluster 2024-09-16T05:21:22.865284+0000 mon.a (mon.0) 533 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-09-16T05:21:23.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:23 smithi081 bash[23455]: audit 2024-09-16T05:21:22.865504+0000 mon.a (mon.0) 534 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T05:21:23.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:23 smithi167 bash[23275]: cluster 2024-09-16T05:21:21.234183+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T05:21:23.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:23 smithi167 bash[23275]: cluster 2024-09-16T05:21:21.234281+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T05:21:23.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:23 smithi167 bash[23275]: audit 2024-09-16T05:21:22.568050+0000 mon.a (mon.0) 531 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T05:21:23.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:23 smithi167 bash[23275]: cluster 2024-09-16T05:21:22.865223+0000 mon.a (mon.0) 532 : cluster [INF] osd.1 [v2:172.21.15.29:6810/3972944792,v1:172.21.15.29:6811/3972944792] boot 2024-09-16T05:21:23.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:23 smithi167 bash[23275]: cluster 2024-09-16T05:21:22.865284+0000 mon.a (mon.0) 533 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-09-16T05:21:23.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:23 smithi167 bash[23275]: audit 2024-09-16T05:21:22.865504+0000 mon.a (mon.0) 534 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T05:21:25.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:24 smithi167 bash[23275]: cluster 2024-09-16T05:21:23.335897+0000 mgr.a (mgr.14150) 188 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:25.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:24 smithi167 bash[23275]: cluster 2024-09-16T05:21:23.872389+0000 mon.a (mon.0) 535 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-09-16T05:21:25.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:24 smithi029 bash[22744]: cluster 2024-09-16T05:21:23.335897+0000 mgr.a (mgr.14150) 188 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:25.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:24 smithi029 bash[22744]: cluster 2024-09-16T05:21:23.872389+0000 mon.a (mon.0) 535 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-09-16T05:21:25.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:24 smithi081 bash[23455]: cluster 2024-09-16T05:21:23.335897+0000 mgr.a (mgr.14150) 188 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-16T05:21:25.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:24 smithi081 bash[23455]: cluster 2024-09-16T05:21:23.872389+0000 mon.a (mon.0) 535 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-09-16T05:21:26.072 INFO:teuthology.orchestra.run.smithi081.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.b/config 2024-09-16T05:21:27.185 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:26 smithi081 bash[23455]: cluster 2024-09-16T05:21:25.336355+0000 mgr.a (mgr.14150) 189 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:27.209 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:26 smithi167 bash[23275]: cluster 2024-09-16T05:21:25.336355+0000 mgr.a (mgr.14150) 189 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:27.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:26 smithi029 bash[22744]: cluster 2024-09-16T05:21:25.336355+0000 mgr.a (mgr.14150) 189 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:29.230 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:28 smithi081 bash[23455]: cluster 2024-09-16T05:21:27.336842+0000 mgr.a (mgr.14150) 190 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:29.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:28 smithi167 bash[23275]: cluster 2024-09-16T05:21:27.336842+0000 mgr.a (mgr.14150) 190 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:29.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:28 smithi029 bash[22744]: cluster 2024-09-16T05:21:27.336842+0000 mgr.a (mgr.14150) 190 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:29.771 INFO:teuthology.orchestra.run.smithi081.stdout: 2024-09-16T05:21:29.804 DEBUG:teuthology.orchestra.run.smithi081:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi081:vg_nvme/lv_4 2024-09-16T05:21:31.195 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:30 smithi029 bash[22744]: cluster 2024-09-16T05:21:29.337320+0000 mgr.a (mgr.14150) 191 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:31.195 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:30 smithi029 bash[22744]: audit 2024-09-16T05:21:30.808602+0000 mon.a (mon.0) 536 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:31.195 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:30 smithi029 bash[22744]: audit 2024-09-16T05:21:30.815856+0000 mon.a (mon.0) 537 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:31.195 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:30 smithi029 bash[22744]: audit 2024-09-16T05:21:30.823432+0000 mon.a (mon.0) 538 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:31.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:30 smithi167 bash[23275]: cluster 2024-09-16T05:21:29.337320+0000 mgr.a (mgr.14150) 191 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:31.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:30 smithi167 bash[23275]: audit 2024-09-16T05:21:30.808602+0000 mon.a (mon.0) 536 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:31.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:30 smithi167 bash[23275]: audit 2024-09-16T05:21:30.815856+0000 mon.a (mon.0) 537 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:31.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:30 smithi167 bash[23275]: audit 2024-09-16T05:21:30.823432+0000 mon.a (mon.0) 538 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:31.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:30 smithi081 bash[23455]: cluster 2024-09-16T05:21:29.337320+0000 mgr.a (mgr.14150) 191 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:31.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:30 smithi081 bash[23455]: audit 2024-09-16T05:21:30.808602+0000 mon.a (mon.0) 536 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:31.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:30 smithi081 bash[23455]: audit 2024-09-16T05:21:30.815856+0000 mon.a (mon.0) 537 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:31.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:30 smithi081 bash[23455]: audit 2024-09-16T05:21:30.823432+0000 mon.a (mon.0) 538 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:33.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:32 smithi167 bash[23275]: cluster 2024-09-16T05:21:31.337815+0000 mgr.a (mgr.14150) 192 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:33.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:32 smithi029 bash[22744]: cluster 2024-09-16T05:21:31.337815+0000 mgr.a (mgr.14150) 192 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:33.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:32 smithi081 bash[23455]: cluster 2024-09-16T05:21:31.337815+0000 mgr.a (mgr.14150) 192 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:34.520 INFO:teuthology.orchestra.run.smithi081.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.b/config 2024-09-16T05:21:35.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:34 smithi167 bash[23275]: cluster 2024-09-16T05:21:33.338292+0000 mgr.a (mgr.14150) 193 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:35.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:34 smithi029 bash[22744]: cluster 2024-09-16T05:21:33.338292+0000 mgr.a (mgr.14150) 193 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:35.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:34 smithi081 bash[23455]: cluster 2024-09-16T05:21:33.338292+0000 mgr.a (mgr.14150) 193 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:37.069 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:36 smithi081 bash[23455]: cluster 2024-09-16T05:21:35.338757+0000 mgr.a (mgr.14150) 194 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:37.069 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:36 smithi081 bash[23455]: audit 2024-09-16T05:21:35.895065+0000 mgr.a (mgr.14150) 195 : audit [DBG] from='client.24149 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi081:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:21:37.069 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:36 smithi081 bash[23455]: audit 2024-09-16T05:21:35.901867+0000 mon.a (mon.0) 539 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T05:21:37.069 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:36 smithi081 bash[23455]: audit 2024-09-16T05:21:35.907770+0000 mon.a (mon.0) 540 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T05:21:37.069 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:36 smithi081 bash[23455]: audit 2024-09-16T05:21:35.909369+0000 mon.a (mon.0) 541 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:21:37.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:36 smithi167 bash[23275]: cluster 2024-09-16T05:21:35.338757+0000 mgr.a (mgr.14150) 194 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:37.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:36 smithi167 bash[23275]: audit 2024-09-16T05:21:35.895065+0000 mgr.a (mgr.14150) 195 : audit [DBG] from='client.24149 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi081:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:21:37.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:36 smithi167 bash[23275]: audit 2024-09-16T05:21:35.901867+0000 mon.a (mon.0) 539 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T05:21:37.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:36 smithi167 bash[23275]: audit 2024-09-16T05:21:35.907770+0000 mon.a (mon.0) 540 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T05:21:37.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:36 smithi167 bash[23275]: audit 2024-09-16T05:21:35.909369+0000 mon.a (mon.0) 541 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:21:37.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:36 smithi029 bash[22744]: cluster 2024-09-16T05:21:35.338757+0000 mgr.a (mgr.14150) 194 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:37.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:36 smithi029 bash[22744]: audit 2024-09-16T05:21:35.895065+0000 mgr.a (mgr.14150) 195 : audit [DBG] from='client.24149 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi081:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:21:37.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:36 smithi029 bash[22744]: audit 2024-09-16T05:21:35.901867+0000 mon.a (mon.0) 539 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T05:21:37.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:36 smithi029 bash[22744]: audit 2024-09-16T05:21:35.907770+0000 mon.a (mon.0) 540 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T05:21:37.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:36 smithi029 bash[22744]: audit 2024-09-16T05:21:35.909369+0000 mon.a (mon.0) 541 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:21:39.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:38 smithi167 bash[23275]: cluster 2024-09-16T05:21:37.339247+0000 mgr.a (mgr.14150) 196 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:39.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:38 smithi029 bash[22744]: cluster 2024-09-16T05:21:37.339247+0000 mgr.a (mgr.14150) 196 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:39.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:38 smithi081 bash[23455]: cluster 2024-09-16T05:21:37.339247+0000 mgr.a (mgr.14150) 196 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:41.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:40 smithi167 bash[23275]: cluster 2024-09-16T05:21:39.339720+0000 mgr.a (mgr.14150) 197 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:41.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:40 smithi167 bash[23275]: audit 2024-09-16T05:21:39.921978+0000 mon.a (mon.0) 542 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:41.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:40 smithi167 bash[23275]: audit 2024-09-16T05:21:39.929403+0000 mon.a (mon.0) 543 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:41.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:40 smithi167 bash[23275]: audit 2024-09-16T05:21:39.938326+0000 mon.a (mon.0) 544 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:41.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:40 smithi029 bash[22744]: cluster 2024-09-16T05:21:39.339720+0000 mgr.a (mgr.14150) 197 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:41.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:40 smithi029 bash[22744]: audit 2024-09-16T05:21:39.921978+0000 mon.a (mon.0) 542 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:41.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:40 smithi029 bash[22744]: audit 2024-09-16T05:21:39.929403+0000 mon.a (mon.0) 543 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:41.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:40 smithi029 bash[22744]: audit 2024-09-16T05:21:39.938326+0000 mon.a (mon.0) 544 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:41.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:40 smithi081 bash[23455]: cluster 2024-09-16T05:21:39.339720+0000 mgr.a (mgr.14150) 197 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:41.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:40 smithi081 bash[23455]: audit 2024-09-16T05:21:39.921978+0000 mon.a (mon.0) 542 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:41.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:40 smithi081 bash[23455]: audit 2024-09-16T05:21:39.929403+0000 mon.a (mon.0) 543 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:41.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:40 smithi081 bash[23455]: audit 2024-09-16T05:21:39.938326+0000 mon.a (mon.0) 544 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:43.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:42 smithi029 bash[22744]: cluster 2024-09-16T05:21:41.340193+0000 mgr.a (mgr.14150) 198 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:43.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:42 smithi029 bash[22744]: audit 2024-09-16T05:21:41.806365+0000 mon.a (mon.0) 545 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:43.089 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:42 smithi029 bash[22744]: audit 2024-09-16T05:21:41.814090+0000 mon.a (mon.0) 546 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:43.089 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:42 smithi029 bash[22744]: audit 2024-09-16T05:21:41.823695+0000 mon.a (mon.0) 547 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:43.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:42 smithi081 bash[23455]: cluster 2024-09-16T05:21:41.340193+0000 mgr.a (mgr.14150) 198 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:43.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:42 smithi081 bash[23455]: audit 2024-09-16T05:21:41.806365+0000 mon.a (mon.0) 545 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:43.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:42 smithi081 bash[23455]: audit 2024-09-16T05:21:41.814090+0000 mon.a (mon.0) 546 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:43.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:42 smithi081 bash[23455]: audit 2024-09-16T05:21:41.823695+0000 mon.a (mon.0) 547 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:43.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:42 smithi167 bash[23275]: cluster 2024-09-16T05:21:41.340193+0000 mgr.a (mgr.14150) 198 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:43.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:42 smithi167 bash[23275]: audit 2024-09-16T05:21:41.806365+0000 mon.a (mon.0) 545 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:43.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:42 smithi167 bash[23275]: audit 2024-09-16T05:21:41.814090+0000 mon.a (mon.0) 546 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:43.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:42 smithi167 bash[23275]: audit 2024-09-16T05:21:41.823695+0000 mon.a (mon.0) 547 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:45.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:44 smithi029 bash[22744]: cluster 2024-09-16T05:21:43.340657+0000 mgr.a (mgr.14150) 199 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:45.089 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:44 smithi029 bash[22744]: audit 2024-09-16T05:21:44.232771+0000 mon.a (mon.0) 548 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "547b547b-d335-4a7a-b4a2-0e165a5c528d"}]: dispatch 2024-09-16T05:21:45.089 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:44 smithi029 bash[22744]: audit 2024-09-16T05:21:44.234533+0000 mon.b (mon.2) 6 : audit [INF] from='client.? 172.21.15.81:0/383207362' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "547b547b-d335-4a7a-b4a2-0e165a5c528d"}]: dispatch 2024-09-16T05:21:45.089 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:44 smithi029 bash[22744]: audit 2024-09-16T05:21:44.236509+0000 mon.a (mon.0) 549 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "547b547b-d335-4a7a-b4a2-0e165a5c528d"}]': finished 2024-09-16T05:21:45.089 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:44 smithi029 bash[22744]: cluster 2024-09-16T05:21:44.241513+0000 mon.a (mon.0) 550 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-09-16T05:21:45.089 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:44 smithi029 bash[22744]: audit 2024-09-16T05:21:44.242166+0000 mon.a (mon.0) 551 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T05:21:45.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:44 smithi081 bash[23455]: cluster 2024-09-16T05:21:43.340657+0000 mgr.a (mgr.14150) 199 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:45.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:44 smithi081 bash[23455]: audit 2024-09-16T05:21:44.232771+0000 mon.a (mon.0) 548 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "547b547b-d335-4a7a-b4a2-0e165a5c528d"}]: dispatch 2024-09-16T05:21:45.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:44 smithi081 bash[23455]: audit 2024-09-16T05:21:44.234533+0000 mon.b (mon.2) 6 : audit [INF] from='client.? 172.21.15.81:0/383207362' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "547b547b-d335-4a7a-b4a2-0e165a5c528d"}]: dispatch 2024-09-16T05:21:45.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:44 smithi081 bash[23455]: audit 2024-09-16T05:21:44.236509+0000 mon.a (mon.0) 549 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "547b547b-d335-4a7a-b4a2-0e165a5c528d"}]': finished 2024-09-16T05:21:45.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:44 smithi081 bash[23455]: cluster 2024-09-16T05:21:44.241513+0000 mon.a (mon.0) 550 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-09-16T05:21:45.119 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:44 smithi081 bash[23455]: audit 2024-09-16T05:21:44.242166+0000 mon.a (mon.0) 551 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T05:21:45.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:44 smithi167 bash[23275]: cluster 2024-09-16T05:21:43.340657+0000 mgr.a (mgr.14150) 199 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:45.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:44 smithi167 bash[23275]: audit 2024-09-16T05:21:44.232771+0000 mon.a (mon.0) 548 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "547b547b-d335-4a7a-b4a2-0e165a5c528d"}]: dispatch 2024-09-16T05:21:45.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:44 smithi167 bash[23275]: audit 2024-09-16T05:21:44.234533+0000 mon.b (mon.2) 6 : audit [INF] from='client.? 172.21.15.81:0/383207362' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "547b547b-d335-4a7a-b4a2-0e165a5c528d"}]: dispatch 2024-09-16T05:21:45.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:44 smithi167 bash[23275]: audit 2024-09-16T05:21:44.236509+0000 mon.a (mon.0) 549 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "547b547b-d335-4a7a-b4a2-0e165a5c528d"}]': finished 2024-09-16T05:21:45.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:44 smithi167 bash[23275]: cluster 2024-09-16T05:21:44.241513+0000 mon.a (mon.0) 550 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-09-16T05:21:45.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:44 smithi167 bash[23275]: audit 2024-09-16T05:21:44.242166+0000 mon.a (mon.0) 551 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T05:21:46.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:45 smithi029 bash[22744]: audit 2024-09-16T05:21:44.840437+0000 mon.b (mon.2) 7 : audit [DBG] from='client.? 172.21.15.81:0/4200458375' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T05:21:46.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:45 smithi081 bash[23455]: audit 2024-09-16T05:21:44.840437+0000 mon.b (mon.2) 7 : audit [DBG] from='client.? 172.21.15.81:0/4200458375' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T05:21:46.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:45 smithi167 bash[23275]: audit 2024-09-16T05:21:44.840437+0000 mon.b (mon.2) 7 : audit [DBG] from='client.? 172.21.15.81:0/4200458375' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T05:21:47.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:46 smithi029 bash[22744]: cluster 2024-09-16T05:21:45.341125+0000 mgr.a (mgr.14150) 200 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:47.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:46 smithi081 bash[23455]: cluster 2024-09-16T05:21:45.341125+0000 mgr.a (mgr.14150) 200 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:47.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:46 smithi167 bash[23275]: cluster 2024-09-16T05:21:45.341125+0000 mgr.a (mgr.14150) 200 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:49.090 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:48 smithi029 bash[22744]: cluster 2024-09-16T05:21:47.341648+0000 mgr.a (mgr.14150) 201 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:49.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:48 smithi081 bash[23455]: cluster 2024-09-16T05:21:47.341648+0000 mgr.a (mgr.14150) 201 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:49.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:48 smithi167 bash[23275]: cluster 2024-09-16T05:21:47.341648+0000 mgr.a (mgr.14150) 201 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:50.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:50 smithi167 bash[23275]: cluster 2024-09-16T05:21:49.342114+0000 mgr.a (mgr.14150) 202 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:51.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:50 smithi029 bash[22744]: cluster 2024-09-16T05:21:49.342114+0000 mgr.a (mgr.14150) 202 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:51.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:50 smithi081 bash[23455]: cluster 2024-09-16T05:21:49.342114+0000 mgr.a (mgr.14150) 202 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:52.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:51 smithi029 bash[22744]: audit 2024-09-16T05:21:50.998884+0000 mon.a (mon.0) 552 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:52.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:51 smithi029 bash[22744]: audit 2024-09-16T05:21:51.006470+0000 mon.a (mon.0) 553 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:52.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:51 smithi029 bash[22744]: audit 2024-09-16T05:21:51.015479+0000 mon.a (mon.0) 554 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:52.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:52 smithi081 bash[23455]: audit 2024-09-16T05:21:50.998884+0000 mon.a (mon.0) 552 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:52.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:52 smithi081 bash[23455]: audit 2024-09-16T05:21:51.006470+0000 mon.a (mon.0) 553 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:52.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:52 smithi081 bash[23455]: audit 2024-09-16T05:21:51.015479+0000 mon.a (mon.0) 554 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:52.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:51 smithi167 bash[23275]: audit 2024-09-16T05:21:50.998884+0000 mon.a (mon.0) 552 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:52.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:51 smithi167 bash[23275]: audit 2024-09-16T05:21:51.006470+0000 mon.a (mon.0) 553 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:52.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:51 smithi167 bash[23275]: audit 2024-09-16T05:21:51.015479+0000 mon.a (mon.0) 554 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:21:53.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:53 smithi029 bash[22744]: cluster 2024-09-16T05:21:51.342510+0000 mgr.a (mgr.14150) 203 : cluster [DBG] pgmap v144: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:53.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:53 smithi081 bash[23455]: cluster 2024-09-16T05:21:51.342510+0000 mgr.a (mgr.14150) 203 : cluster [DBG] pgmap v144: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:53.483 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:53 smithi167 bash[23275]: cluster 2024-09-16T05:21:51.342510+0000 mgr.a (mgr.14150) 203 : cluster [DBG] pgmap v144: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:55.299 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:55 smithi081 bash[23455]: cluster 2024-09-16T05:21:53.343093+0000 mgr.a (mgr.14150) 204 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:55.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:55 smithi029 bash[22744]: cluster 2024-09-16T05:21:53.343093+0000 mgr.a (mgr.14150) 204 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:55.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:55 smithi167 bash[23275]: cluster 2024-09-16T05:21:53.343093+0000 mgr.a (mgr.14150) 204 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:57.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:57 smithi029 bash[22744]: cluster 2024-09-16T05:21:55.343614+0000 mgr.a (mgr.14150) 205 : cluster [DBG] pgmap v146: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:57.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:57 smithi081 bash[23455]: cluster 2024-09-16T05:21:55.343614+0000 mgr.a (mgr.14150) 205 : cluster [DBG] pgmap v146: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:57.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:57 smithi167 bash[23275]: cluster 2024-09-16T05:21:55.343614+0000 mgr.a (mgr.14150) 205 : cluster [DBG] pgmap v146: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:59.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:59 smithi029 bash[22744]: cluster 2024-09-16T05:21:57.344108+0000 mgr.a (mgr.14150) 206 : cluster [DBG] pgmap v147: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:59.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:59 smithi029 bash[22744]: audit 2024-09-16T05:21:58.030097+0000 mon.a (mon.0) 555 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-16T05:21:59.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:59 smithi029 bash[22744]: audit 2024-09-16T05:21:58.031942+0000 mon.a (mon.0) 556 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:21:59.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:21:59 smithi029 bash[22744]: cephadm 2024-09-16T05:21:58.033511+0000 mgr.a (mgr.14150) 207 : cephadm [INF] Deploying daemon osd.2 on smithi081 2024-09-16T05:21:59.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:59 smithi081 bash[23455]: cluster 2024-09-16T05:21:57.344108+0000 mgr.a (mgr.14150) 206 : cluster [DBG] pgmap v147: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:59.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:59 smithi081 bash[23455]: audit 2024-09-16T05:21:58.030097+0000 mon.a (mon.0) 555 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-16T05:21:59.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:59 smithi081 bash[23455]: audit 2024-09-16T05:21:58.031942+0000 mon.a (mon.0) 556 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:21:59.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:21:59 smithi081 bash[23455]: cephadm 2024-09-16T05:21:58.033511+0000 mgr.a (mgr.14150) 207 : cephadm [INF] Deploying daemon osd.2 on smithi081 2024-09-16T05:21:59.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:59 smithi167 bash[23275]: cluster 2024-09-16T05:21:57.344108+0000 mgr.a (mgr.14150) 206 : cluster [DBG] pgmap v147: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:21:59.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:59 smithi167 bash[23275]: audit 2024-09-16T05:21:58.030097+0000 mon.a (mon.0) 555 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-16T05:21:59.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:59 smithi167 bash[23275]: audit 2024-09-16T05:21:58.031942+0000 mon.a (mon.0) 556 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:21:59.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:21:59 smithi167 bash[23275]: cephadm 2024-09-16T05:21:58.033511+0000 mgr.a (mgr.14150) 207 : cephadm [INF] Deploying daemon osd.2 on smithi081 2024-09-16T05:22:01.325 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:01 smithi081 bash[23455]: cluster 2024-09-16T05:21:59.344607+0000 mgr.a (mgr.14150) 208 : cluster [DBG] pgmap v148: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:22:01.325 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:01 smithi081 bash[23455]: audit 2024-09-16T05:22:00.135665+0000 mon.a (mon.0) 557 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:01.325 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:01 smithi081 bash[23455]: audit 2024-09-16T05:22:00.141282+0000 mon.a (mon.0) 558 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:01.325 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:01 smithi081 bash[23455]: audit 2024-09-16T05:22:00.147456+0000 mon.a (mon.0) 559 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:01.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:01 smithi167 bash[23275]: cluster 2024-09-16T05:21:59.344607+0000 mgr.a (mgr.14150) 208 : cluster [DBG] pgmap v148: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:22:01.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:01 smithi167 bash[23275]: audit 2024-09-16T05:22:00.135665+0000 mon.a (mon.0) 557 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:01.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:01 smithi167 bash[23275]: audit 2024-09-16T05:22:00.141282+0000 mon.a (mon.0) 558 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:01.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:01 smithi167 bash[23275]: audit 2024-09-16T05:22:00.147456+0000 mon.a (mon.0) 559 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:01.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:01 smithi029 bash[22744]: cluster 2024-09-16T05:21:59.344607+0000 mgr.a (mgr.14150) 208 : cluster [DBG] pgmap v148: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:22:01.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:01 smithi029 bash[22744]: audit 2024-09-16T05:22:00.135665+0000 mon.a (mon.0) 557 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:01.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:01 smithi029 bash[22744]: audit 2024-09-16T05:22:00.141282+0000 mon.a (mon.0) 558 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:01.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:01 smithi029 bash[22744]: audit 2024-09-16T05:22:00.147456+0000 mon.a (mon.0) 559 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:02.259 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:22:02 smithi081 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:22:02.259 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:02 smithi081 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:22:02.605 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:02 smithi081 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:22:02.606 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:22:02 smithi081 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:22:03.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:02 smithi167 bash[23275]: cluster 2024-09-16T05:22:01.345081+0000 mgr.a (mgr.14150) 209 : cluster [DBG] pgmap v149: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:22:03.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:02 smithi167 bash[23275]: audit 2024-09-16T05:22:01.975472+0000 mon.a (mon.0) 560 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:03.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:02 smithi167 bash[23275]: audit 2024-09-16T05:22:01.983721+0000 mon.a (mon.0) 561 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:03.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:02 smithi167 bash[23275]: audit 2024-09-16T05:22:01.993303+0000 mon.a (mon.0) 562 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:03.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:02 smithi167 bash[23275]: audit 2024-09-16T05:22:02.534054+0000 mon.a (mon.0) 563 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:22:03.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:02 smithi167 bash[23275]: audit 2024-09-16T05:22:02.541605+0000 mon.a (mon.0) 564 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:03.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:02 smithi167 bash[23275]: audit 2024-09-16T05:22:02.542163+0000 mon.a (mon.0) 565 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:22:03.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:02 smithi167 bash[23275]: audit 2024-09-16T05:22:02.544607+0000 mon.a (mon.0) 566 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:22:03.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:02 smithi167 bash[23275]: audit 2024-09-16T05:22:02.549930+0000 mon.a (mon.0) 567 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:03.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:02 smithi167 bash[23275]: audit 2024-09-16T05:22:02.556721+0000 mon.a (mon.0) 568 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:03.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:02 smithi029 bash[22744]: cluster 2024-09-16T05:22:01.345081+0000 mgr.a (mgr.14150) 209 : cluster [DBG] pgmap v149: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:22:03.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:02 smithi029 bash[22744]: audit 2024-09-16T05:22:01.975472+0000 mon.a (mon.0) 560 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:03.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:02 smithi029 bash[22744]: audit 2024-09-16T05:22:01.983721+0000 mon.a (mon.0) 561 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:03.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:02 smithi029 bash[22744]: audit 2024-09-16T05:22:01.993303+0000 mon.a (mon.0) 562 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:03.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:02 smithi029 bash[22744]: audit 2024-09-16T05:22:02.534054+0000 mon.a (mon.0) 563 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:22:03.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:02 smithi029 bash[22744]: audit 2024-09-16T05:22:02.541605+0000 mon.a (mon.0) 564 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:03.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:02 smithi029 bash[22744]: audit 2024-09-16T05:22:02.542163+0000 mon.a (mon.0) 565 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:22:03.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:02 smithi029 bash[22744]: audit 2024-09-16T05:22:02.544607+0000 mon.a (mon.0) 566 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:22:03.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:02 smithi029 bash[22744]: audit 2024-09-16T05:22:02.549930+0000 mon.a (mon.0) 567 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:03.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:02 smithi029 bash[22744]: audit 2024-09-16T05:22:02.556721+0000 mon.a (mon.0) 568 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:03.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:02 smithi081 bash[23455]: cluster 2024-09-16T05:22:01.345081+0000 mgr.a (mgr.14150) 209 : cluster [DBG] pgmap v149: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:22:03.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:02 smithi081 bash[23455]: audit 2024-09-16T05:22:01.975472+0000 mon.a (mon.0) 560 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:03.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:02 smithi081 bash[23455]: audit 2024-09-16T05:22:01.983721+0000 mon.a (mon.0) 561 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:03.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:02 smithi081 bash[23455]: audit 2024-09-16T05:22:01.993303+0000 mon.a (mon.0) 562 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:03.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:02 smithi081 bash[23455]: audit 2024-09-16T05:22:02.534054+0000 mon.a (mon.0) 563 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:22:03.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:02 smithi081 bash[23455]: audit 2024-09-16T05:22:02.541605+0000 mon.a (mon.0) 564 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:03.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:02 smithi081 bash[23455]: audit 2024-09-16T05:22:02.542163+0000 mon.a (mon.0) 565 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:22:03.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:02 smithi081 bash[23455]: audit 2024-09-16T05:22:02.544607+0000 mon.a (mon.0) 566 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:22:03.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:02 smithi081 bash[23455]: audit 2024-09-16T05:22:02.549930+0000 mon.a (mon.0) 567 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:03.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:02 smithi081 bash[23455]: audit 2024-09-16T05:22:02.556721+0000 mon.a (mon.0) 568 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:05.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:04 smithi081 bash[23455]: cluster 2024-09-16T05:22:03.345556+0000 mgr.a (mgr.14150) 210 : cluster [DBG] pgmap v150: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:22:05.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:04 smithi167 bash[23275]: cluster 2024-09-16T05:22:03.345556+0000 mgr.a (mgr.14150) 210 : cluster [DBG] pgmap v150: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:22:05.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:04 smithi029 bash[22744]: cluster 2024-09-16T05:22:03.345556+0000 mgr.a (mgr.14150) 210 : cluster [DBG] pgmap v150: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:22:07.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:06 smithi081 bash[23455]: cluster 2024-09-16T05:22:05.346046+0000 mgr.a (mgr.14150) 211 : cluster [DBG] pgmap v151: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:22:07.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:06 smithi167 bash[23275]: cluster 2024-09-16T05:22:05.346046+0000 mgr.a (mgr.14150) 211 : cluster [DBG] pgmap v151: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:22:07.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:06 smithi029 bash[22744]: cluster 2024-09-16T05:22:05.346046+0000 mgr.a (mgr.14150) 211 : cluster [DBG] pgmap v151: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:22:09.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:08 smithi167 bash[23275]: cluster 2024-09-16T05:22:07.346591+0000 mgr.a (mgr.14150) 212 : cluster [DBG] pgmap v152: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:22:09.278 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:08 smithi081 bash[23455]: cluster 2024-09-16T05:22:07.346591+0000 mgr.a (mgr.14150) 212 : cluster [DBG] pgmap v152: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:22:09.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:08 smithi029 bash[22744]: cluster 2024-09-16T05:22:07.346591+0000 mgr.a (mgr.14150) 212 : cluster [DBG] pgmap v152: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:22:11.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:10 smithi167 bash[23275]: cluster 2024-09-16T05:22:09.347219+0000 mgr.a (mgr.14150) 213 : cluster [DBG] pgmap v153: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:22:11.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:10 smithi029 bash[22744]: cluster 2024-09-16T05:22:09.347219+0000 mgr.a (mgr.14150) 213 : cluster [DBG] pgmap v153: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:22:11.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:10 smithi081 bash[23455]: cluster 2024-09-16T05:22:09.347219+0000 mgr.a (mgr.14150) 213 : cluster [DBG] pgmap v153: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:22:12.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:12 smithi167 bash[23275]: audit 2024-09-16T05:22:11.174323+0000 mon.a (mon.0) 569 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:12.493 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:12 smithi167 bash[23275]: audit 2024-09-16T05:22:11.181827+0000 mon.a (mon.0) 570 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:12.493 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:12 smithi167 bash[23275]: audit 2024-09-16T05:22:11.190832+0000 mon.a (mon.0) 571 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:12.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:12 smithi029 bash[22744]: audit 2024-09-16T05:22:11.174323+0000 mon.a (mon.0) 569 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:12.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:12 smithi029 bash[22744]: audit 2024-09-16T05:22:11.181827+0000 mon.a (mon.0) 570 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:12.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:12 smithi029 bash[22744]: audit 2024-09-16T05:22:11.190832+0000 mon.a (mon.0) 571 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:12.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:12 smithi081 bash[23455]: audit 2024-09-16T05:22:11.174323+0000 mon.a (mon.0) 569 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:12.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:12 smithi081 bash[23455]: audit 2024-09-16T05:22:11.181827+0000 mon.a (mon.0) 570 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:12.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:12 smithi081 bash[23455]: audit 2024-09-16T05:22:11.190832+0000 mon.a (mon.0) 571 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:13.310 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:13 smithi029 bash[22744]: cluster 2024-09-16T05:22:11.347712+0000 mgr.a (mgr.14150) 214 : cluster [DBG] pgmap v154: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:22:13.310 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:13 smithi029 bash[22744]: audit 2024-09-16T05:22:12.962925+0000 mon.a (mon.0) 572 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-16T05:22:13.310 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:13 smithi029 bash[22744]: audit 2024-09-16T05:22:12.965082+0000 mon.b (mon.2) 8 : audit [INF] from='osd.2 [v2:172.21.15.81:6800/1522975439,v1:172.21.15.81:6801/1522975439]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-16T05:22:13.323 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:13 smithi081 bash[23455]: cluster 2024-09-16T05:22:11.347712+0000 mgr.a (mgr.14150) 214 : cluster [DBG] pgmap v154: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:22:13.323 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:13 smithi081 bash[23455]: audit 2024-09-16T05:22:12.962925+0000 mon.a (mon.0) 572 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-16T05:22:13.323 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:13 smithi081 bash[23455]: audit 2024-09-16T05:22:12.965082+0000 mon.b (mon.2) 8 : audit [INF] from='osd.2 [v2:172.21.15.81:6800/1522975439,v1:172.21.15.81:6801/1522975439]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-16T05:22:13.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:13 smithi167 bash[23275]: cluster 2024-09-16T05:22:11.347712+0000 mgr.a (mgr.14150) 214 : cluster [DBG] pgmap v154: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:22:13.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:13 smithi167 bash[23275]: audit 2024-09-16T05:22:12.962925+0000 mon.a (mon.0) 572 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-16T05:22:13.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:13 smithi167 bash[23275]: audit 2024-09-16T05:22:12.965082+0000 mon.b (mon.2) 8 : audit [INF] from='osd.2 [v2:172.21.15.81:6800/1522975439,v1:172.21.15.81:6801/1522975439]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-16T05:22:13.817 INFO:teuthology.orchestra.run.smithi081.stdout:Created osd(s) 2 on host 'smithi081' 2024-09-16T05:22:14.472 DEBUG:teuthology.orchestra.run.smithi081:osd.2> sudo journalctl -f -n 0 -u ceph-825322c2-73ea-11ef-bceb-c7b262605968@osd.2.service 2024-09-16T05:22:14.472 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:14 smithi081 bash[23455]: audit 2024-09-16T05:22:13.199952+0000 mon.a (mon.0) 573 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-16T05:22:14.472 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:14 smithi081 bash[23455]: cluster 2024-09-16T05:22:13.204274+0000 mon.a (mon.0) 574 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-09-16T05:22:14.472 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:14 smithi081 bash[23455]: audit 2024-09-16T05:22:13.204687+0000 mon.a (mon.0) 575 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T05:22:14.473 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:14 smithi081 bash[23455]: audit 2024-09-16T05:22:13.205401+0000 mon.a (mon.0) 576 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi081", "root=default"]}]: dispatch 2024-09-16T05:22:14.473 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:14 smithi081 bash[23455]: audit 2024-09-16T05:22:13.206162+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.81:6800/1522975439,v1:172.21.15.81:6801/1522975439]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi081", "root=default"]}]: dispatch 2024-09-16T05:22:14.473 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:14 smithi081 bash[23455]: audit 2024-09-16T05:22:13.794171+0000 mon.a (mon.0) 577 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:22:14.473 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:14 smithi081 bash[23455]: audit 2024-09-16T05:22:13.801739+0000 mon.a (mon.0) 578 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:14.473 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:14 smithi081 bash[23455]: audit 2024-09-16T05:22:13.802428+0000 mon.a (mon.0) 579 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-16T05:22:14.473 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:14 smithi081 bash[23455]: audit 2024-09-16T05:22:13.809869+0000 mon.a (mon.0) 580 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:14.473 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:14 smithi081 bash[23455]: audit 2024-09-16T05:22:13.827022+0000 mon.a (mon.0) 581 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:14.473 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:14 smithi081 bash[23455]: audit 2024-09-16T05:22:13.831068+0000 mon.a (mon.0) 582 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:22:14.473 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:14 smithi081 bash[23455]: audit 2024-09-16T05:22:13.832870+0000 mon.a (mon.0) 583 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:22:14.473 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:14 smithi081 bash[23455]: audit 2024-09-16T05:22:13.842617+0000 mon.a (mon.0) 584 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:14.476 INFO:tasks.cephadm:Deploying osd.3 on smithi081 with /dev/vg_nvme/lv_3... 2024-09-16T05:22:14.476 DEBUG:teuthology.orchestra.run.smithi081:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_3 2024-09-16T05:22:14.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:14 smithi167 bash[23275]: audit 2024-09-16T05:22:13.199952+0000 mon.a (mon.0) 573 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-16T05:22:14.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:14 smithi167 bash[23275]: cluster 2024-09-16T05:22:13.204274+0000 mon.a (mon.0) 574 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-09-16T05:22:14.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:14 smithi167 bash[23275]: audit 2024-09-16T05:22:13.204687+0000 mon.a (mon.0) 575 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T05:22:14.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:14 smithi167 bash[23275]: audit 2024-09-16T05:22:13.205401+0000 mon.a (mon.0) 576 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi081", "root=default"]}]: dispatch 2024-09-16T05:22:14.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:14 smithi167 bash[23275]: audit 2024-09-16T05:22:13.206162+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.81:6800/1522975439,v1:172.21.15.81:6801/1522975439]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi081", "root=default"]}]: dispatch 2024-09-16T05:22:14.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:14 smithi167 bash[23275]: audit 2024-09-16T05:22:13.794171+0000 mon.a (mon.0) 577 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:22:14.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:14 smithi167 bash[23275]: audit 2024-09-16T05:22:13.801739+0000 mon.a (mon.0) 578 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:14.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:14 smithi167 bash[23275]: audit 2024-09-16T05:22:13.802428+0000 mon.a (mon.0) 579 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-16T05:22:14.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:14 smithi167 bash[23275]: audit 2024-09-16T05:22:13.809869+0000 mon.a (mon.0) 580 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:14.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:14 smithi167 bash[23275]: audit 2024-09-16T05:22:13.827022+0000 mon.a (mon.0) 581 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:14.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:14 smithi167 bash[23275]: audit 2024-09-16T05:22:13.831068+0000 mon.a (mon.0) 582 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:22:14.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:14 smithi167 bash[23275]: audit 2024-09-16T05:22:13.832870+0000 mon.a (mon.0) 583 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:22:14.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:14 smithi167 bash[23275]: audit 2024-09-16T05:22:13.842617+0000 mon.a (mon.0) 584 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:14.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:14 smithi029 bash[22744]: audit 2024-09-16T05:22:13.199952+0000 mon.a (mon.0) 573 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-16T05:22:14.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:14 smithi029 bash[22744]: cluster 2024-09-16T05:22:13.204274+0000 mon.a (mon.0) 574 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-09-16T05:22:14.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:14 smithi029 bash[22744]: audit 2024-09-16T05:22:13.204687+0000 mon.a (mon.0) 575 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T05:22:14.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:14 smithi029 bash[22744]: audit 2024-09-16T05:22:13.205401+0000 mon.a (mon.0) 576 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi081", "root=default"]}]: dispatch 2024-09-16T05:22:14.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:14 smithi029 bash[22744]: audit 2024-09-16T05:22:13.206162+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.81:6800/1522975439,v1:172.21.15.81:6801/1522975439]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi081", "root=default"]}]: dispatch 2024-09-16T05:22:14.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:14 smithi029 bash[22744]: audit 2024-09-16T05:22:13.794171+0000 mon.a (mon.0) 577 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:22:14.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:14 smithi029 bash[22744]: audit 2024-09-16T05:22:13.801739+0000 mon.a (mon.0) 578 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:14.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:14 smithi029 bash[22744]: audit 2024-09-16T05:22:13.802428+0000 mon.a (mon.0) 579 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-16T05:22:14.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:14 smithi029 bash[22744]: audit 2024-09-16T05:22:13.809869+0000 mon.a (mon.0) 580 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:14.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:14 smithi029 bash[22744]: audit 2024-09-16T05:22:13.827022+0000 mon.a (mon.0) 581 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:14.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:14 smithi029 bash[22744]: audit 2024-09-16T05:22:13.831068+0000 mon.a (mon.0) 582 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:22:14.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:14 smithi029 bash[22744]: audit 2024-09-16T05:22:13.832870+0000 mon.a (mon.0) 583 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:22:14.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:14 smithi029 bash[22744]: audit 2024-09-16T05:22:13.842617+0000 mon.a (mon.0) 584 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:14.868 INFO:journalctl@ceph.osd.2.smithi081.stdout:Sep 16 05:22:14 smithi081 bash[29009]: debug 2024-09-16T05:22:14.669+0000 7fb1bd910640 -1 osd.2 0 waiting for initial osdmap 2024-09-16T05:22:14.868 INFO:journalctl@ceph.osd.2.smithi081.stdout:Sep 16 05:22:14 smithi081 bash[29009]: debug 2024-09-16T05:22:14.689+0000 7fb1b5730640 -1 osd.2 17 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-16T05:22:15.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:15 smithi167 bash[23275]: cluster 2024-09-16T05:22:13.348179+0000 mgr.a (mgr.14150) 215 : cluster [DBG] pgmap v156: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:22:15.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:15 smithi167 bash[23275]: cephadm 2024-09-16T05:22:13.820574+0000 mgr.a (mgr.14150) 216 : cephadm [INF] Adjusting osd_memory_target on smithi081 to 16241M 2024-09-16T05:22:15.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:15 smithi167 bash[23275]: audit 2024-09-16T05:22:14.202445+0000 mon.a (mon.0) 585 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi081", "root=default"]}]': finished 2024-09-16T05:22:15.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:15 smithi167 bash[23275]: cluster 2024-09-16T05:22:14.207451+0000 mon.a (mon.0) 586 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-09-16T05:22:15.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:15 smithi167 bash[23275]: audit 2024-09-16T05:22:14.208269+0000 mon.a (mon.0) 587 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T05:22:15.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:15 smithi167 bash[23275]: audit 2024-09-16T05:22:14.218272+0000 mon.a (mon.0) 588 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T05:22:15.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:15 smithi167 bash[23275]: audit 2024-09-16T05:22:14.680286+0000 mon.a (mon.0) 589 : audit [INF] from='osd.2 ' entity='osd.2' 2024-09-16T05:22:15.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:15 smithi029 bash[22744]: cluster 2024-09-16T05:22:13.348179+0000 mgr.a (mgr.14150) 215 : cluster [DBG] pgmap v156: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:22:15.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:15 smithi029 bash[22744]: cephadm 2024-09-16T05:22:13.820574+0000 mgr.a (mgr.14150) 216 : cephadm [INF] Adjusting osd_memory_target on smithi081 to 16241M 2024-09-16T05:22:15.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:15 smithi029 bash[22744]: audit 2024-09-16T05:22:14.202445+0000 mon.a (mon.0) 585 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi081", "root=default"]}]': finished 2024-09-16T05:22:15.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:15 smithi029 bash[22744]: cluster 2024-09-16T05:22:14.207451+0000 mon.a (mon.0) 586 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-09-16T05:22:15.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:15 smithi029 bash[22744]: audit 2024-09-16T05:22:14.208269+0000 mon.a (mon.0) 587 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T05:22:15.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:15 smithi029 bash[22744]: audit 2024-09-16T05:22:14.218272+0000 mon.a (mon.0) 588 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T05:22:15.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:15 smithi029 bash[22744]: audit 2024-09-16T05:22:14.680286+0000 mon.a (mon.0) 589 : audit [INF] from='osd.2 ' entity='osd.2' 2024-09-16T05:22:15.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:15 smithi081 bash[23455]: cluster 2024-09-16T05:22:13.348179+0000 mgr.a (mgr.14150) 215 : cluster [DBG] pgmap v156: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:22:15.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:15 smithi081 bash[23455]: cephadm 2024-09-16T05:22:13.820574+0000 mgr.a (mgr.14150) 216 : cephadm [INF] Adjusting osd_memory_target on smithi081 to 16241M 2024-09-16T05:22:15.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:15 smithi081 bash[23455]: audit 2024-09-16T05:22:14.202445+0000 mon.a (mon.0) 585 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi081", "root=default"]}]': finished 2024-09-16T05:22:15.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:15 smithi081 bash[23455]: cluster 2024-09-16T05:22:14.207451+0000 mon.a (mon.0) 586 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-09-16T05:22:15.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:15 smithi081 bash[23455]: audit 2024-09-16T05:22:14.208269+0000 mon.a (mon.0) 587 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T05:22:15.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:15 smithi081 bash[23455]: audit 2024-09-16T05:22:14.218272+0000 mon.a (mon.0) 588 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T05:22:15.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:15 smithi081 bash[23455]: audit 2024-09-16T05:22:14.680286+0000 mon.a (mon.0) 589 : audit [INF] from='osd.2 ' entity='osd.2' 2024-09-16T05:22:16.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:16 smithi167 bash[23275]: cluster 2024-09-16T05:22:14.009954+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T05:22:16.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:16 smithi167 bash[23275]: cluster 2024-09-16T05:22:14.010084+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T05:22:16.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:16 smithi167 bash[23275]: audit 2024-09-16T05:22:15.217590+0000 mon.a (mon.0) 590 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T05:22:16.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:16 smithi167 bash[23275]: cluster 2024-09-16T05:22:15.684669+0000 mon.a (mon.0) 591 : cluster [INF] osd.2 [v2:172.21.15.81:6800/1522975439,v1:172.21.15.81:6801/1522975439] boot 2024-09-16T05:22:16.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:16 smithi167 bash[23275]: cluster 2024-09-16T05:22:15.684729+0000 mon.a (mon.0) 592 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-09-16T05:22:16.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:16 smithi167 bash[23275]: audit 2024-09-16T05:22:15.684930+0000 mon.a (mon.0) 593 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T05:22:16.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:16 smithi029 bash[22744]: cluster 2024-09-16T05:22:14.009954+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T05:22:16.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:16 smithi029 bash[22744]: cluster 2024-09-16T05:22:14.010084+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T05:22:16.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:16 smithi029 bash[22744]: audit 2024-09-16T05:22:15.217590+0000 mon.a (mon.0) 590 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T05:22:16.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:16 smithi029 bash[22744]: cluster 2024-09-16T05:22:15.684669+0000 mon.a (mon.0) 591 : cluster [INF] osd.2 [v2:172.21.15.81:6800/1522975439,v1:172.21.15.81:6801/1522975439] boot 2024-09-16T05:22:16.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:16 smithi029 bash[22744]: cluster 2024-09-16T05:22:15.684729+0000 mon.a (mon.0) 592 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-09-16T05:22:16.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:16 smithi029 bash[22744]: audit 2024-09-16T05:22:15.684930+0000 mon.a (mon.0) 593 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T05:22:16.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:16 smithi081 bash[23455]: cluster 2024-09-16T05:22:14.009954+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T05:22:16.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:16 smithi081 bash[23455]: cluster 2024-09-16T05:22:14.010084+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T05:22:16.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:16 smithi081 bash[23455]: audit 2024-09-16T05:22:15.217590+0000 mon.a (mon.0) 590 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T05:22:16.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:16 smithi081 bash[23455]: cluster 2024-09-16T05:22:15.684669+0000 mon.a (mon.0) 591 : cluster [INF] osd.2 [v2:172.21.15.81:6800/1522975439,v1:172.21.15.81:6801/1522975439] boot 2024-09-16T05:22:16.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:16 smithi081 bash[23455]: cluster 2024-09-16T05:22:15.684729+0000 mon.a (mon.0) 592 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-09-16T05:22:16.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:16 smithi081 bash[23455]: audit 2024-09-16T05:22:15.684930+0000 mon.a (mon.0) 593 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T05:22:17.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:17 smithi029 bash[22744]: cluster 2024-09-16T05:22:15.348640+0000 mgr.a (mgr.14150) 217 : cluster [DBG] pgmap v158: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:22:17.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:17 smithi029 bash[22744]: cluster 2024-09-16T05:22:16.686362+0000 mon.a (mon.0) 594 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-09-16T05:22:17.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:17 smithi167 bash[23275]: cluster 2024-09-16T05:22:15.348640+0000 mgr.a (mgr.14150) 217 : cluster [DBG] pgmap v158: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:22:17.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:17 smithi167 bash[23275]: cluster 2024-09-16T05:22:16.686362+0000 mon.a (mon.0) 594 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-09-16T05:22:17.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:17 smithi081 bash[23455]: cluster 2024-09-16T05:22:15.348640+0000 mgr.a (mgr.14150) 217 : cluster [DBG] pgmap v158: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-16T05:22:17.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:17 smithi081 bash[23455]: cluster 2024-09-16T05:22:16.686362+0000 mon.a (mon.0) 594 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-09-16T05:22:18.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:18 smithi167 bash[23275]: audit 2024-09-16T05:22:17.486035+0000 mon.a (mon.0) 595 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]: dispatch 2024-09-16T05:22:18.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:18 smithi029 bash[22744]: audit 2024-09-16T05:22:17.486035+0000 mon.a (mon.0) 595 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]: dispatch 2024-09-16T05:22:18.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:18 smithi081 bash[23455]: audit 2024-09-16T05:22:17.486035+0000 mon.a (mon.0) 595 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]: dispatch 2024-09-16T05:22:19.264 INFO:teuthology.orchestra.run.smithi081.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.b/config 2024-09-16T05:22:19.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:19 smithi167 bash[23275]: cluster 2024-09-16T05:22:17.349123+0000 mgr.a (mgr.14150) 218 : cluster [DBG] pgmap v161: 0 pgs: ; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:19.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:19 smithi167 bash[23275]: audit 2024-09-16T05:22:18.231574+0000 mon.a (mon.0) 596 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-16T05:22:19.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:19 smithi167 bash[23275]: cluster 2024-09-16T05:22:18.236442+0000 mon.a (mon.0) 597 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-09-16T05:22:19.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:19 smithi167 bash[23275]: audit 2024-09-16T05:22:18.238197+0000 mon.a (mon.0) 598 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-16T05:22:19.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:19 smithi029 bash[22744]: cluster 2024-09-16T05:22:17.349123+0000 mgr.a (mgr.14150) 218 : cluster [DBG] pgmap v161: 0 pgs: ; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:19.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:19 smithi029 bash[22744]: audit 2024-09-16T05:22:18.231574+0000 mon.a (mon.0) 596 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-16T05:22:19.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:19 smithi029 bash[22744]: cluster 2024-09-16T05:22:18.236442+0000 mon.a (mon.0) 597 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-09-16T05:22:19.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:19 smithi029 bash[22744]: audit 2024-09-16T05:22:18.238197+0000 mon.a (mon.0) 598 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-16T05:22:19.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:19 smithi081 bash[23455]: cluster 2024-09-16T05:22:17.349123+0000 mgr.a (mgr.14150) 218 : cluster [DBG] pgmap v161: 0 pgs: ; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:19.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:19 smithi081 bash[23455]: audit 2024-09-16T05:22:18.231574+0000 mon.a (mon.0) 596 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-16T05:22:19.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:19 smithi081 bash[23455]: cluster 2024-09-16T05:22:18.236442+0000 mon.a (mon.0) 597 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-09-16T05:22:19.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:19 smithi081 bash[23455]: audit 2024-09-16T05:22:18.238197+0000 mon.a (mon.0) 598 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-16T05:22:20.540 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:20 smithi081 bash[23455]: audit 2024-09-16T05:22:19.233991+0000 mon.a (mon.0) 599 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-16T05:22:20.540 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:20 smithi081 bash[23455]: cluster 2024-09-16T05:22:19.239193+0000 mon.a (mon.0) 600 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-09-16T05:22:20.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:20 smithi029 bash[22744]: audit 2024-09-16T05:22:19.233991+0000 mon.a (mon.0) 599 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-16T05:22:20.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:20 smithi029 bash[22744]: cluster 2024-09-16T05:22:19.239193+0000 mon.a (mon.0) 600 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-09-16T05:22:20.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:20 smithi167 bash[23275]: audit 2024-09-16T05:22:19.233991+0000 mon.a (mon.0) 599 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-16T05:22:20.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:20 smithi167 bash[23275]: cluster 2024-09-16T05:22:19.239193+0000 mon.a (mon.0) 600 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-09-16T05:22:21.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:21 smithi029 bash[22744]: cluster 2024-09-16T05:22:19.349738+0000 mgr.a (mgr.14150) 219 : cluster [DBG] pgmap v164: 1 pgs: 1 unknown; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:21.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:21 smithi029 bash[22744]: cluster 2024-09-16T05:22:20.261370+0000 mon.a (mon.0) 601 : cluster [DBG] mgrmap e15: a(active, since 5m), standbys: b 2024-09-16T05:22:21.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:21 smithi029 bash[22744]: cluster 2024-09-16T05:22:20.261444+0000 mon.a (mon.0) 602 : cluster [DBG] osdmap e22: 3 total, 3 up, 3 in 2024-09-16T05:22:21.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:21 smithi029 bash[22744]: audit 2024-09-16T05:22:20.304821+0000 mon.a (mon.0) 603 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:21.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:21 smithi029 bash[22744]: audit 2024-09-16T05:22:20.311972+0000 mon.a (mon.0) 604 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:21.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:21 smithi029 bash[22744]: audit 2024-09-16T05:22:20.320367+0000 mon.a (mon.0) 605 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:21.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:21 smithi029 bash[22744]: audit 2024-09-16T05:22:20.435176+0000 mon.a (mon.0) 606 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:21.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:21 smithi081 bash[23455]: cluster 2024-09-16T05:22:19.349738+0000 mgr.a (mgr.14150) 219 : cluster [DBG] pgmap v164: 1 pgs: 1 unknown; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:21.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:21 smithi081 bash[23455]: cluster 2024-09-16T05:22:20.261370+0000 mon.a (mon.0) 601 : cluster [DBG] mgrmap e15: a(active, since 5m), standbys: b 2024-09-16T05:22:21.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:21 smithi081 bash[23455]: cluster 2024-09-16T05:22:20.261444+0000 mon.a (mon.0) 602 : cluster [DBG] osdmap e22: 3 total, 3 up, 3 in 2024-09-16T05:22:21.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:21 smithi081 bash[23455]: audit 2024-09-16T05:22:20.304821+0000 mon.a (mon.0) 603 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:21.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:21 smithi081 bash[23455]: audit 2024-09-16T05:22:20.311972+0000 mon.a (mon.0) 604 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:21.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:21 smithi081 bash[23455]: audit 2024-09-16T05:22:20.320367+0000 mon.a (mon.0) 605 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:21.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:21 smithi081 bash[23455]: audit 2024-09-16T05:22:20.435176+0000 mon.a (mon.0) 606 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:21.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:21 smithi167 bash[23275]: cluster 2024-09-16T05:22:19.349738+0000 mgr.a (mgr.14150) 219 : cluster [DBG] pgmap v164: 1 pgs: 1 unknown; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:21.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:21 smithi167 bash[23275]: cluster 2024-09-16T05:22:20.261370+0000 mon.a (mon.0) 601 : cluster [DBG] mgrmap e15: a(active, since 5m), standbys: b 2024-09-16T05:22:21.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:21 smithi167 bash[23275]: cluster 2024-09-16T05:22:20.261444+0000 mon.a (mon.0) 602 : cluster [DBG] osdmap e22: 3 total, 3 up, 3 in 2024-09-16T05:22:21.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:21 smithi167 bash[23275]: audit 2024-09-16T05:22:20.304821+0000 mon.a (mon.0) 603 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:21.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:21 smithi167 bash[23275]: audit 2024-09-16T05:22:20.311972+0000 mon.a (mon.0) 604 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:21.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:21 smithi167 bash[23275]: audit 2024-09-16T05:22:20.320367+0000 mon.a (mon.0) 605 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:21.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:21 smithi167 bash[23275]: audit 2024-09-16T05:22:20.435176+0000 mon.a (mon.0) 606 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:23.487 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:23 smithi081 bash[23455]: audit 2024-09-16T05:22:22.128594+0000 mon.a (mon.0) 607 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:23.487 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:23 smithi081 bash[23455]: audit 2024-09-16T05:22:22.136668+0000 mon.a (mon.0) 608 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:23.487 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:23 smithi081 bash[23455]: audit 2024-09-16T05:22:22.141604+0000 mon.a (mon.0) 609 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:22:23.487 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:23 smithi081 bash[23455]: audit 2024-09-16T05:22:22.146597+0000 mon.a (mon.0) 610 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:23.487 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:23 smithi081 bash[23455]: audit 2024-09-16T05:22:22.152902+0000 mon.a (mon.0) 611 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:22:23.487 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:23 smithi081 bash[23455]: audit 2024-09-16T05:22:22.155536+0000 mon.a (mon.0) 612 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:22:23.487 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:23 smithi081 bash[23455]: audit 2024-09-16T05:22:22.164962+0000 mon.a (mon.0) 613 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:23.487 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:23 smithi081 bash[23455]: audit 2024-09-16T05:22:22.276881+0000 mon.a (mon.0) 614 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:23.487 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:23 smithi081 bash[23455]: audit 2024-09-16T05:22:22.279380+0000 mon.a (mon.0) 615 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-16T05:22:23.487 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:23 smithi081 bash[23455]: audit 2024-09-16T05:22:23.218879+0000 mon.a (mon.0) 616 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-16T05:22:23.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:23 smithi167 bash[23275]: audit 2024-09-16T05:22:22.128594+0000 mon.a (mon.0) 607 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:23.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:23 smithi167 bash[23275]: audit 2024-09-16T05:22:22.136668+0000 mon.a (mon.0) 608 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:23.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:23 smithi167 bash[23275]: audit 2024-09-16T05:22:22.141604+0000 mon.a (mon.0) 609 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:22:23.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:23 smithi167 bash[23275]: audit 2024-09-16T05:22:22.146597+0000 mon.a (mon.0) 610 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:23.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:23 smithi167 bash[23275]: audit 2024-09-16T05:22:22.152902+0000 mon.a (mon.0) 611 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:22:23.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:23 smithi167 bash[23275]: audit 2024-09-16T05:22:22.155536+0000 mon.a (mon.0) 612 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:22:23.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:23 smithi167 bash[23275]: audit 2024-09-16T05:22:22.164962+0000 mon.a (mon.0) 613 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:23.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:23 smithi167 bash[23275]: audit 2024-09-16T05:22:22.276881+0000 mon.a (mon.0) 614 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:23.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:23 smithi167 bash[23275]: audit 2024-09-16T05:22:22.279380+0000 mon.a (mon.0) 615 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-16T05:22:23.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:23 smithi167 bash[23275]: audit 2024-09-16T05:22:23.218879+0000 mon.a (mon.0) 616 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-16T05:22:23.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:23 smithi029 bash[22744]: audit 2024-09-16T05:22:22.128594+0000 mon.a (mon.0) 607 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:23.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:23 smithi029 bash[22744]: audit 2024-09-16T05:22:22.136668+0000 mon.a (mon.0) 608 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:23.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:23 smithi029 bash[22744]: audit 2024-09-16T05:22:22.141604+0000 mon.a (mon.0) 609 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:22:23.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:23 smithi029 bash[22744]: audit 2024-09-16T05:22:22.146597+0000 mon.a (mon.0) 610 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:23.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:23 smithi029 bash[22744]: audit 2024-09-16T05:22:22.152902+0000 mon.a (mon.0) 611 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:22:23.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:23 smithi029 bash[22744]: audit 2024-09-16T05:22:22.155536+0000 mon.a (mon.0) 612 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:22:23.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:23 smithi029 bash[22744]: audit 2024-09-16T05:22:22.164962+0000 mon.a (mon.0) 613 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:23.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:23 smithi029 bash[22744]: audit 2024-09-16T05:22:22.276881+0000 mon.a (mon.0) 614 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:23.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:23 smithi029 bash[22744]: audit 2024-09-16T05:22:22.279380+0000 mon.a (mon.0) 615 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-16T05:22:23.590 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:23 smithi029 bash[22744]: audit 2024-09-16T05:22:23.218879+0000 mon.a (mon.0) 616 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-16T05:22:24.701 INFO:teuthology.orchestra.run.smithi081.stdout: 2024-09-16T05:22:24.747 DEBUG:teuthology.orchestra.run.smithi081:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi081:vg_nvme/lv_3 2024-09-16T05:22:25.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:25 smithi029 bash[22744]: cluster 2024-09-16T05:22:21.350177+0000 mgr.a (mgr.14150) 220 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 93 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:25.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:25 smithi029 bash[22744]: cephadm 2024-09-16T05:22:22.139478+0000 mgr.a (mgr.14150) 221 : cephadm [INF] Detected new or changed devices on smithi081 2024-09-16T05:22:25.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:25 smithi029 bash[22744]: audit 2024-09-16T05:22:23.219340+0000 mon.a (mon.0) 617 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T05:22:25.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:25 smithi029 bash[22744]: audit 2024-09-16T05:22:23.220079+0000 mon.a (mon.0) 618 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:22:25.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:25 smithi029 bash[22744]: audit 2024-09-16T05:22:23.220213+0000 mon.a (mon.0) 619 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T05:22:25.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:25 smithi029 bash[22744]: audit 2024-09-16T05:22:23.227039+0000 mon.a (mon.0) 620 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T05:22:25.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:25 smithi029 bash[22744]: audit 2024-09-16T05:22:23.227171+0000 mon.c (mon.1) 3 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-16T05:22:25.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:25 smithi029 bash[22744]: audit 2024-09-16T05:22:23.227301+0000 mon.a (mon.0) 621 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:22:25.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:25 smithi029 bash[22744]: audit 2024-09-16T05:22:23.227427+0000 mon.a (mon.0) 622 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T05:22:25.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:25 smithi029 bash[22744]: audit 2024-09-16T05:22:24.125687+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-16T05:22:25.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:25 smithi029 bash[22744]: audit 2024-09-16T05:22:24.159481+0000 mon.a (mon.0) 623 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:25.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:25 smithi029 bash[22744]: audit 2024-09-16T05:22:24.162686+0000 mon.a (mon.0) 624 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T05:22:25.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:25 smithi029 bash[22744]: audit 2024-09-16T05:22:24.163064+0000 mon.a (mon.0) 625 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:22:25.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:25 smithi029 bash[22744]: audit 2024-09-16T05:22:24.163423+0000 mon.a (mon.0) 626 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T05:22:25.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:25 smithi081 bash[23455]: cluster 2024-09-16T05:22:21.350177+0000 mgr.a (mgr.14150) 220 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 93 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:25.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:25 smithi081 bash[23455]: cephadm 2024-09-16T05:22:22.139478+0000 mgr.a (mgr.14150) 221 : cephadm [INF] Detected new or changed devices on smithi081 2024-09-16T05:22:25.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:25 smithi081 bash[23455]: audit 2024-09-16T05:22:23.219340+0000 mon.a (mon.0) 617 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T05:22:25.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:25 smithi081 bash[23455]: audit 2024-09-16T05:22:23.220079+0000 mon.a (mon.0) 618 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:22:25.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:25 smithi081 bash[23455]: audit 2024-09-16T05:22:23.220213+0000 mon.a (mon.0) 619 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T05:22:25.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:25 smithi081 bash[23455]: audit 2024-09-16T05:22:23.227039+0000 mon.a (mon.0) 620 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T05:22:25.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:25 smithi081 bash[23455]: audit 2024-09-16T05:22:23.227171+0000 mon.c (mon.1) 3 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-16T05:22:25.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:25 smithi081 bash[23455]: audit 2024-09-16T05:22:23.227301+0000 mon.a (mon.0) 621 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:22:25.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:25 smithi081 bash[23455]: audit 2024-09-16T05:22:23.227427+0000 mon.a (mon.0) 622 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T05:22:25.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:25 smithi081 bash[23455]: audit 2024-09-16T05:22:24.125687+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-16T05:22:25.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:25 smithi081 bash[23455]: audit 2024-09-16T05:22:24.159481+0000 mon.a (mon.0) 623 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:25.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:25 smithi081 bash[23455]: audit 2024-09-16T05:22:24.162686+0000 mon.a (mon.0) 624 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T05:22:25.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:25 smithi081 bash[23455]: audit 2024-09-16T05:22:24.163064+0000 mon.a (mon.0) 625 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:22:25.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:25 smithi081 bash[23455]: audit 2024-09-16T05:22:24.163423+0000 mon.a (mon.0) 626 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T05:22:25.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:25 smithi167 bash[23275]: cluster 2024-09-16T05:22:21.350177+0000 mgr.a (mgr.14150) 220 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 93 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:25.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:25 smithi167 bash[23275]: cephadm 2024-09-16T05:22:22.139478+0000 mgr.a (mgr.14150) 221 : cephadm [INF] Detected new or changed devices on smithi081 2024-09-16T05:22:25.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:25 smithi167 bash[23275]: audit 2024-09-16T05:22:23.219340+0000 mon.a (mon.0) 617 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T05:22:25.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:25 smithi167 bash[23275]: audit 2024-09-16T05:22:23.220079+0000 mon.a (mon.0) 618 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:22:25.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:25 smithi167 bash[23275]: audit 2024-09-16T05:22:23.220213+0000 mon.a (mon.0) 619 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T05:22:25.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:25 smithi167 bash[23275]: audit 2024-09-16T05:22:23.227039+0000 mon.a (mon.0) 620 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T05:22:25.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:25 smithi167 bash[23275]: audit 2024-09-16T05:22:23.227171+0000 mon.c (mon.1) 3 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-16T05:22:25.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:25 smithi167 bash[23275]: audit 2024-09-16T05:22:23.227301+0000 mon.a (mon.0) 621 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:22:25.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:25 smithi167 bash[23275]: audit 2024-09-16T05:22:23.227427+0000 mon.a (mon.0) 622 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T05:22:25.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:25 smithi167 bash[23275]: audit 2024-09-16T05:22:24.125687+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-16T05:22:25.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:25 smithi167 bash[23275]: audit 2024-09-16T05:22:24.159481+0000 mon.a (mon.0) 623 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:25.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:25 smithi167 bash[23275]: audit 2024-09-16T05:22:24.162686+0000 mon.a (mon.0) 624 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T05:22:25.492 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:25 smithi167 bash[23275]: audit 2024-09-16T05:22:24.163064+0000 mon.a (mon.0) 625 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:22:25.493 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:25 smithi167 bash[23275]: audit 2024-09-16T05:22:24.163423+0000 mon.a (mon.0) 626 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T05:22:26.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:26 smithi029 bash[22744]: cluster 2024-09-16T05:22:23.350744+0000 mgr.a (mgr.14150) 222 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:26.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:26 smithi029 bash[22744]: audit 2024-09-16T05:22:24.164885+0000 mon.b (mon.2) 10 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-16T05:22:26.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:26 smithi029 bash[22744]: audit 2024-09-16T05:22:25.035151+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-16T05:22:26.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:26 smithi029 bash[22744]: audit 2024-09-16T05:22:25.038521+0000 mon.a (mon.0) 627 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:26.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:26 smithi029 bash[22744]: audit 2024-09-16T05:22:25.058543+0000 mon.a (mon.0) 628 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:26.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:26 smithi029 bash[22744]: audit 2024-09-16T05:22:25.063735+0000 mon.a (mon.0) 629 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:22:26.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:26 smithi029 bash[22744]: audit 2024-09-16T05:22:25.068914+0000 mon.a (mon.0) 630 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:26.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:26 smithi029 bash[22744]: audit 2024-09-16T05:22:25.074432+0000 mon.a (mon.0) 631 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:22:26.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:26 smithi029 bash[22744]: audit 2024-09-16T05:22:25.076305+0000 mon.a (mon.0) 632 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:22:26.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:26 smithi029 bash[22744]: audit 2024-09-16T05:22:25.085877+0000 mon.a (mon.0) 633 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:26.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:26 smithi081 bash[23455]: cluster 2024-09-16T05:22:23.350744+0000 mgr.a (mgr.14150) 222 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:26.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:26 smithi081 bash[23455]: audit 2024-09-16T05:22:24.164885+0000 mon.b (mon.2) 10 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-16T05:22:26.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:26 smithi081 bash[23455]: audit 2024-09-16T05:22:25.035151+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-16T05:22:26.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:26 smithi081 bash[23455]: audit 2024-09-16T05:22:25.038521+0000 mon.a (mon.0) 627 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:26.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:26 smithi081 bash[23455]: audit 2024-09-16T05:22:25.058543+0000 mon.a (mon.0) 628 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:26.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:26 smithi081 bash[23455]: audit 2024-09-16T05:22:25.063735+0000 mon.a (mon.0) 629 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:22:26.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:26 smithi081 bash[23455]: audit 2024-09-16T05:22:25.068914+0000 mon.a (mon.0) 630 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:26.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:26 smithi081 bash[23455]: audit 2024-09-16T05:22:25.074432+0000 mon.a (mon.0) 631 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:22:26.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:26 smithi081 bash[23455]: audit 2024-09-16T05:22:25.076305+0000 mon.a (mon.0) 632 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:22:26.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:26 smithi081 bash[23455]: audit 2024-09-16T05:22:25.085877+0000 mon.a (mon.0) 633 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:26.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:26 smithi167 bash[23275]: cluster 2024-09-16T05:22:23.350744+0000 mgr.a (mgr.14150) 222 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:26.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:26 smithi167 bash[23275]: audit 2024-09-16T05:22:24.164885+0000 mon.b (mon.2) 10 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-16T05:22:26.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:26 smithi167 bash[23275]: audit 2024-09-16T05:22:25.035151+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-16T05:22:26.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:26 smithi167 bash[23275]: audit 2024-09-16T05:22:25.038521+0000 mon.a (mon.0) 627 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:26.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:26 smithi167 bash[23275]: audit 2024-09-16T05:22:25.058543+0000 mon.a (mon.0) 628 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:26.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:26 smithi167 bash[23275]: audit 2024-09-16T05:22:25.063735+0000 mon.a (mon.0) 629 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:22:26.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:26 smithi167 bash[23275]: audit 2024-09-16T05:22:25.068914+0000 mon.a (mon.0) 630 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:26.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:26 smithi167 bash[23275]: audit 2024-09-16T05:22:25.074432+0000 mon.a (mon.0) 631 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:22:26.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:26 smithi167 bash[23275]: audit 2024-09-16T05:22:25.076305+0000 mon.a (mon.0) 632 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:22:26.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:26 smithi167 bash[23275]: audit 2024-09-16T05:22:25.085877+0000 mon.a (mon.0) 633 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:27.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:27 smithi029 bash[22744]: cluster 2024-09-16T05:22:25.351307+0000 mgr.a (mgr.14150) 223 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 95 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:27.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:27 smithi081 bash[23455]: cluster 2024-09-16T05:22:25.351307+0000 mgr.a (mgr.14150) 223 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 95 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:27.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:27 smithi167 bash[23275]: cluster 2024-09-16T05:22:25.351307+0000 mgr.a (mgr.14150) 223 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 95 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:29.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:29 smithi167 bash[23275]: cluster 2024-09-16T05:22:27.351981+0000 mgr.a (mgr.14150) 224 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 95 MiB used, 268 GiB / 268 GiB avail; 4.5 KiB/s rd, 218 KiB/s wr, 14 op/s 2024-09-16T05:22:29.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:29 smithi029 bash[22744]: cluster 2024-09-16T05:22:27.351981+0000 mgr.a (mgr.14150) 224 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 95 MiB used, 268 GiB / 268 GiB avail; 4.5 KiB/s rd, 218 KiB/s wr, 14 op/s 2024-09-16T05:22:29.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:29 smithi081 bash[23455]: cluster 2024-09-16T05:22:27.351981+0000 mgr.a (mgr.14150) 224 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 95 MiB used, 268 GiB / 268 GiB avail; 4.5 KiB/s rd, 218 KiB/s wr, 14 op/s 2024-09-16T05:22:29.700 INFO:teuthology.orchestra.run.smithi081.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.b/config 2024-09-16T05:22:31.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:31 smithi081 bash[23455]: cluster 2024-09-16T05:22:29.352675+0000 mgr.a (mgr.14150) 225 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 95 MiB used, 268 GiB / 268 GiB avail; 3.4 KiB/s rd, 163 KiB/s wr, 10 op/s 2024-09-16T05:22:31.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:31 smithi081 bash[23455]: audit 2024-09-16T05:22:31.083800+0000 mon.a (mon.0) 634 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T05:22:31.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:31 smithi081 bash[23455]: audit 2024-09-16T05:22:31.090548+0000 mon.a (mon.0) 635 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T05:22:31.373 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:31 smithi167 bash[23275]: cluster 2024-09-16T05:22:29.352675+0000 mgr.a (mgr.14150) 225 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 95 MiB used, 268 GiB / 268 GiB avail; 3.4 KiB/s rd, 163 KiB/s wr, 10 op/s 2024-09-16T05:22:31.374 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:31 smithi167 bash[23275]: audit 2024-09-16T05:22:31.083800+0000 mon.a (mon.0) 634 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T05:22:31.374 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:31 smithi167 bash[23275]: audit 2024-09-16T05:22:31.090548+0000 mon.a (mon.0) 635 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T05:22:31.480 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:31 smithi029 bash[22744]: cluster 2024-09-16T05:22:29.352675+0000 mgr.a (mgr.14150) 225 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 95 MiB used, 268 GiB / 268 GiB avail; 3.4 KiB/s rd, 163 KiB/s wr, 10 op/s 2024-09-16T05:22:31.481 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:31 smithi029 bash[22744]: audit 2024-09-16T05:22:31.083800+0000 mon.a (mon.0) 634 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T05:22:31.481 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:31 smithi029 bash[22744]: audit 2024-09-16T05:22:31.090548+0000 mon.a (mon.0) 635 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T05:22:32.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:32 smithi167 bash[23275]: audit 2024-09-16T05:22:31.077319+0000 mgr.a (mgr.14150) 226 : audit [DBG] from='client.24185 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi081:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:22:32.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:32 smithi167 bash[23275]: audit 2024-09-16T05:22:31.092783+0000 mon.a (mon.0) 636 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:22:32.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:32 smithi167 bash[23275]: audit 2024-09-16T05:22:31.359535+0000 mon.a (mon.0) 637 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:32.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:32 smithi167 bash[23275]: audit 2024-09-16T05:22:31.365667+0000 mon.a (mon.0) 638 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:32.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:32 smithi167 bash[23275]: audit 2024-09-16T05:22:31.373675+0000 mon.a (mon.0) 639 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:32.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:32 smithi081 bash[23455]: audit 2024-09-16T05:22:31.077319+0000 mgr.a (mgr.14150) 226 : audit [DBG] from='client.24185 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi081:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:22:32.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:32 smithi081 bash[23455]: audit 2024-09-16T05:22:31.092783+0000 mon.a (mon.0) 636 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:22:32.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:32 smithi081 bash[23455]: audit 2024-09-16T05:22:31.359535+0000 mon.a (mon.0) 637 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:32.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:32 smithi081 bash[23455]: audit 2024-09-16T05:22:31.365667+0000 mon.a (mon.0) 638 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:32.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:32 smithi081 bash[23455]: audit 2024-09-16T05:22:31.373675+0000 mon.a (mon.0) 639 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:32.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:32 smithi029 bash[22744]: audit 2024-09-16T05:22:31.077319+0000 mgr.a (mgr.14150) 226 : audit [DBG] from='client.24185 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi081:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:22:32.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:32 smithi029 bash[22744]: audit 2024-09-16T05:22:31.092783+0000 mon.a (mon.0) 636 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:22:32.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:32 smithi029 bash[22744]: audit 2024-09-16T05:22:31.359535+0000 mon.a (mon.0) 637 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:32.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:32 smithi029 bash[22744]: audit 2024-09-16T05:22:31.365667+0000 mon.a (mon.0) 638 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:32.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:32 smithi029 bash[22744]: audit 2024-09-16T05:22:31.373675+0000 mon.a (mon.0) 639 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:33.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:33 smithi029 bash[22744]: cluster 2024-09-16T05:22:31.353332+0000 mgr.a (mgr.14150) 227 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 95 MiB used, 268 GiB / 268 GiB avail; 2.7 KiB/s rd, 131 KiB/s wr, 8 op/s 2024-09-16T05:22:33.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:33 smithi081 bash[23455]: cluster 2024-09-16T05:22:31.353332+0000 mgr.a (mgr.14150) 227 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 95 MiB used, 268 GiB / 268 GiB avail; 2.7 KiB/s rd, 131 KiB/s wr, 8 op/s 2024-09-16T05:22:33.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:33 smithi167 bash[23275]: cluster 2024-09-16T05:22:31.353332+0000 mgr.a (mgr.14150) 227 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 95 MiB used, 268 GiB / 268 GiB avail; 2.7 KiB/s rd, 131 KiB/s wr, 8 op/s 2024-09-16T05:22:35.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:35 smithi081 bash[23455]: cluster 2024-09-16T05:22:33.353837+0000 mgr.a (mgr.14150) 228 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 95 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-09-16T05:22:35.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:35 smithi167 bash[23275]: cluster 2024-09-16T05:22:33.353837+0000 mgr.a (mgr.14150) 228 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 95 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-09-16T05:22:35.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:35 smithi029 bash[22744]: cluster 2024-09-16T05:22:33.353837+0000 mgr.a (mgr.14150) 228 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 95 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-09-16T05:22:37.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:37 smithi081 bash[23455]: cluster 2024-09-16T05:22:35.354337+0000 mgr.a (mgr.14150) 229 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 95 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-09-16T05:22:37.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:37 smithi167 bash[23275]: cluster 2024-09-16T05:22:35.354337+0000 mgr.a (mgr.14150) 229 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 95 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-09-16T05:22:37.583 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:37 smithi029 bash[22744]: cluster 2024-09-16T05:22:35.354337+0000 mgr.a (mgr.14150) 229 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 95 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-09-16T05:22:39.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:39 smithi081 bash[23455]: cluster 2024-09-16T05:22:37.354921+0000 mgr.a (mgr.14150) 230 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 95 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-09-16T05:22:39.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:39 smithi167 bash[23275]: cluster 2024-09-16T05:22:37.354921+0000 mgr.a (mgr.14150) 230 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 95 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-09-16T05:22:39.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:39 smithi029 bash[22744]: cluster 2024-09-16T05:22:37.354921+0000 mgr.a (mgr.14150) 230 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 95 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-09-16T05:22:40.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:40 smithi167 bash[23275]: audit 2024-09-16T05:22:39.702898+0000 mon.a (mon.0) 640 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "4127cde4-9ec3-4580-90dd-d3e2f05e1333"}]: dispatch 2024-09-16T05:22:40.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:40 smithi167 bash[23275]: audit 2024-09-16T05:22:39.704750+0000 mon.b (mon.2) 12 : audit [INF] from='client.? 172.21.15.81:0/3103636042' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "4127cde4-9ec3-4580-90dd-d3e2f05e1333"}]: dispatch 2024-09-16T05:22:40.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:40 smithi167 bash[23275]: audit 2024-09-16T05:22:39.706547+0000 mon.a (mon.0) 641 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "4127cde4-9ec3-4580-90dd-d3e2f05e1333"}]': finished 2024-09-16T05:22:40.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:40 smithi167 bash[23275]: cluster 2024-09-16T05:22:39.712429+0000 mon.a (mon.0) 642 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-09-16T05:22:40.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:40 smithi167 bash[23275]: audit 2024-09-16T05:22:39.712943+0000 mon.a (mon.0) 643 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T05:22:40.537 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:40 smithi029 bash[22744]: audit 2024-09-16T05:22:39.702898+0000 mon.a (mon.0) 640 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "4127cde4-9ec3-4580-90dd-d3e2f05e1333"}]: dispatch 2024-09-16T05:22:40.538 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:40 smithi029 bash[22744]: audit 2024-09-16T05:22:39.704750+0000 mon.b (mon.2) 12 : audit [INF] from='client.? 172.21.15.81:0/3103636042' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "4127cde4-9ec3-4580-90dd-d3e2f05e1333"}]: dispatch 2024-09-16T05:22:40.538 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:40 smithi029 bash[22744]: audit 2024-09-16T05:22:39.706547+0000 mon.a (mon.0) 641 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "4127cde4-9ec3-4580-90dd-d3e2f05e1333"}]': finished 2024-09-16T05:22:40.538 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:40 smithi029 bash[22744]: cluster 2024-09-16T05:22:39.712429+0000 mon.a (mon.0) 642 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-09-16T05:22:40.538 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:40 smithi029 bash[22744]: audit 2024-09-16T05:22:39.712943+0000 mon.a (mon.0) 643 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T05:22:40.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:40 smithi081 bash[23455]: audit 2024-09-16T05:22:39.702898+0000 mon.a (mon.0) 640 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "4127cde4-9ec3-4580-90dd-d3e2f05e1333"}]: dispatch 2024-09-16T05:22:40.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:40 smithi081 bash[23455]: audit 2024-09-16T05:22:39.704750+0000 mon.b (mon.2) 12 : audit [INF] from='client.? 172.21.15.81:0/3103636042' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "4127cde4-9ec3-4580-90dd-d3e2f05e1333"}]: dispatch 2024-09-16T05:22:40.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:40 smithi081 bash[23455]: audit 2024-09-16T05:22:39.706547+0000 mon.a (mon.0) 641 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "4127cde4-9ec3-4580-90dd-d3e2f05e1333"}]': finished 2024-09-16T05:22:40.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:40 smithi081 bash[23455]: cluster 2024-09-16T05:22:39.712429+0000 mon.a (mon.0) 642 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-09-16T05:22:40.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:40 smithi081 bash[23455]: audit 2024-09-16T05:22:39.712943+0000 mon.a (mon.0) 643 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T05:22:41.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:41 smithi167 bash[23275]: cluster 2024-09-16T05:22:39.355467+0000 mgr.a (mgr.14150) 231 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 95 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:41.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:41 smithi167 bash[23275]: audit 2024-09-16T05:22:40.351857+0000 mon.b (mon.2) 13 : audit [DBG] from='client.? 172.21.15.81:0/3085607887' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T05:22:41.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:41 smithi167 bash[23275]: audit 2024-09-16T05:22:40.520333+0000 mon.a (mon.0) 644 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:41.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:41 smithi167 bash[23275]: audit 2024-09-16T05:22:40.528344+0000 mon.a (mon.0) 645 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:41.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:41 smithi167 bash[23275]: audit 2024-09-16T05:22:40.537362+0000 mon.a (mon.0) 646 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:41.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:41 smithi029 bash[22744]: cluster 2024-09-16T05:22:39.355467+0000 mgr.a (mgr.14150) 231 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 95 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:41.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:41 smithi029 bash[22744]: audit 2024-09-16T05:22:40.351857+0000 mon.b (mon.2) 13 : audit [DBG] from='client.? 172.21.15.81:0/3085607887' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T05:22:41.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:41 smithi029 bash[22744]: audit 2024-09-16T05:22:40.520333+0000 mon.a (mon.0) 644 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:41.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:41 smithi029 bash[22744]: audit 2024-09-16T05:22:40.528344+0000 mon.a (mon.0) 645 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:41.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:41 smithi029 bash[22744]: audit 2024-09-16T05:22:40.537362+0000 mon.a (mon.0) 646 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:41.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:41 smithi081 bash[23455]: cluster 2024-09-16T05:22:39.355467+0000 mgr.a (mgr.14150) 231 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 95 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:41.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:41 smithi081 bash[23455]: audit 2024-09-16T05:22:40.351857+0000 mon.b (mon.2) 13 : audit [DBG] from='client.? 172.21.15.81:0/3085607887' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T05:22:41.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:41 smithi081 bash[23455]: audit 2024-09-16T05:22:40.520333+0000 mon.a (mon.0) 644 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:41.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:41 smithi081 bash[23455]: audit 2024-09-16T05:22:40.528344+0000 mon.a (mon.0) 645 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:41.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:41 smithi081 bash[23455]: audit 2024-09-16T05:22:40.537362+0000 mon.a (mon.0) 646 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:43.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:43 smithi167 bash[23275]: cluster 2024-09-16T05:22:41.356083+0000 mgr.a (mgr.14150) 232 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:43.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:43 smithi029 bash[22744]: cluster 2024-09-16T05:22:41.356083+0000 mgr.a (mgr.14150) 232 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:43.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:43 smithi081 bash[23455]: cluster 2024-09-16T05:22:41.356083+0000 mgr.a (mgr.14150) 232 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:45.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:44 smithi029 bash[22744]: cluster 2024-09-16T05:22:43.356603+0000 mgr.a (mgr.14150) 233 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:45.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:44 smithi029 bash[22744]: audit 2024-09-16T05:22:43.776108+0000 mon.a (mon.0) 647 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:45.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:44 smithi029 bash[22744]: audit 2024-09-16T05:22:43.784299+0000 mon.a (mon.0) 648 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:45.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:44 smithi029 bash[22744]: audit 2024-09-16T05:22:43.793767+0000 mon.a (mon.0) 649 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:45.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:44 smithi081 bash[23455]: cluster 2024-09-16T05:22:43.356603+0000 mgr.a (mgr.14150) 233 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:45.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:44 smithi081 bash[23455]: audit 2024-09-16T05:22:43.776108+0000 mon.a (mon.0) 647 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:45.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:44 smithi081 bash[23455]: audit 2024-09-16T05:22:43.784299+0000 mon.a (mon.0) 648 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:45.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:44 smithi081 bash[23455]: audit 2024-09-16T05:22:43.793767+0000 mon.a (mon.0) 649 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:45.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:44 smithi167 bash[23275]: cluster 2024-09-16T05:22:43.356603+0000 mgr.a (mgr.14150) 233 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:45.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:44 smithi167 bash[23275]: audit 2024-09-16T05:22:43.776108+0000 mon.a (mon.0) 647 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:45.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:44 smithi167 bash[23275]: audit 2024-09-16T05:22:43.784299+0000 mon.a (mon.0) 648 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:45.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:44 smithi167 bash[23275]: audit 2024-09-16T05:22:43.793767+0000 mon.a (mon.0) 649 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:47.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:46 smithi029 bash[22744]: cluster 2024-09-16T05:22:45.357143+0000 mgr.a (mgr.14150) 234 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:47.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:46 smithi081 bash[23455]: cluster 2024-09-16T05:22:45.357143+0000 mgr.a (mgr.14150) 234 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:47.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:46 smithi167 bash[23275]: cluster 2024-09-16T05:22:45.357143+0000 mgr.a (mgr.14150) 234 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:49.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:48 smithi029 bash[22744]: cluster 2024-09-16T05:22:47.357829+0000 mgr.a (mgr.14150) 235 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:49.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:48 smithi081 bash[23455]: cluster 2024-09-16T05:22:47.357829+0000 mgr.a (mgr.14150) 235 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:49.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:48 smithi167 bash[23275]: cluster 2024-09-16T05:22:47.357829+0000 mgr.a (mgr.14150) 235 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:50.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:50 smithi167 bash[23275]: cluster 2024-09-16T05:22:49.358416+0000 mgr.a (mgr.14150) 236 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:51.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:50 smithi029 bash[22744]: cluster 2024-09-16T05:22:49.358416+0000 mgr.a (mgr.14150) 236 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:51.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:50 smithi081 bash[23455]: cluster 2024-09-16T05:22:49.358416+0000 mgr.a (mgr.14150) 236 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:52.826 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:52 smithi081 bash[23455]: cluster 2024-09-16T05:22:51.358970+0000 mgr.a (mgr.14150) 237 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:52.826 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:52 smithi081 bash[23455]: audit 2024-09-16T05:22:51.548838+0000 mon.a (mon.0) 650 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:52.826 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:52 smithi081 bash[23455]: audit 2024-09-16T05:22:51.557177+0000 mon.a (mon.0) 651 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:52.826 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:52 smithi081 bash[23455]: audit 2024-09-16T05:22:51.566671+0000 mon.a (mon.0) 652 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:52.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:52 smithi029 bash[22744]: cluster 2024-09-16T05:22:51.358970+0000 mgr.a (mgr.14150) 237 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:52.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:52 smithi029 bash[22744]: audit 2024-09-16T05:22:51.548838+0000 mon.a (mon.0) 650 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:52.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:52 smithi029 bash[22744]: audit 2024-09-16T05:22:51.557177+0000 mon.a (mon.0) 651 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:52.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:52 smithi029 bash[22744]: audit 2024-09-16T05:22:51.566671+0000 mon.a (mon.0) 652 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:52.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:52 smithi167 bash[23275]: cluster 2024-09-16T05:22:51.358970+0000 mgr.a (mgr.14150) 237 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:52.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:52 smithi167 bash[23275]: audit 2024-09-16T05:22:51.548838+0000 mon.a (mon.0) 650 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:52.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:52 smithi167 bash[23275]: audit 2024-09-16T05:22:51.557177+0000 mon.a (mon.0) 651 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:52.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:52 smithi167 bash[23275]: audit 2024-09-16T05:22:51.566671+0000 mon.a (mon.0) 652 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:53.818 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:53 smithi081 bash[23455]: audit 2024-09-16T05:22:53.306940+0000 mon.a (mon.0) 653 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-16T05:22:53.818 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:53 smithi081 bash[23455]: audit 2024-09-16T05:22:53.308721+0000 mon.a (mon.0) 654 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:22:53.818 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:53 smithi081 bash[23455]: cephadm 2024-09-16T05:22:53.310276+0000 mgr.a (mgr.14150) 238 : cephadm [INF] Deploying daemon osd.3 on smithi081 2024-09-16T05:22:53.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:53 smithi029 bash[22744]: audit 2024-09-16T05:22:53.306940+0000 mon.a (mon.0) 653 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-16T05:22:53.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:53 smithi029 bash[22744]: audit 2024-09-16T05:22:53.308721+0000 mon.a (mon.0) 654 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:22:53.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:53 smithi029 bash[22744]: cephadm 2024-09-16T05:22:53.310276+0000 mgr.a (mgr.14150) 238 : cephadm [INF] Deploying daemon osd.3 on smithi081 2024-09-16T05:22:53.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:53 smithi167 bash[23275]: audit 2024-09-16T05:22:53.306940+0000 mon.a (mon.0) 653 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-16T05:22:53.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:53 smithi167 bash[23275]: audit 2024-09-16T05:22:53.308721+0000 mon.a (mon.0) 654 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:22:53.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:53 smithi167 bash[23275]: cephadm 2024-09-16T05:22:53.310276+0000 mgr.a (mgr.14150) 238 : cephadm [INF] Deploying daemon osd.3 on smithi081 2024-09-16T05:22:54.814 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:54 smithi081 bash[23455]: cluster 2024-09-16T05:22:53.359622+0000 mgr.a (mgr.14150) 239 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:54.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:54 smithi029 bash[22744]: cluster 2024-09-16T05:22:53.359622+0000 mgr.a (mgr.14150) 239 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:54.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:54 smithi167 bash[23275]: cluster 2024-09-16T05:22:53.359622+0000 mgr.a (mgr.14150) 239 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:56.824 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:56 smithi081 bash[23455]: cluster 2024-09-16T05:22:55.360222+0000 mgr.a (mgr.14150) 240 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:56.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:56 smithi029 bash[22744]: cluster 2024-09-16T05:22:55.360222+0000 mgr.a (mgr.14150) 240 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:56.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:56 smithi167 bash[23275]: cluster 2024-09-16T05:22:55.360222+0000 mgr.a (mgr.14150) 240 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:58.004 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:57 smithi081 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:22:58.005 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:22:57 smithi081 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:22:58.005 INFO:journalctl@ceph.osd.2.smithi081.stdout:Sep 16 05:22:57 smithi081 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:22:58.351 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:22:58 smithi081 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:22:58.351 INFO:journalctl@ceph.osd.2.smithi081.stdout:Sep 16 05:22:58 smithi081 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:22:58.352 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:58 smithi081 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:22:58.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:58 smithi081 bash[23455]: cluster 2024-09-16T05:22:57.360769+0000 mgr.a (mgr.14150) 241 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:58.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:58 smithi081 bash[23455]: audit 2024-09-16T05:22:58.282345+0000 mon.a (mon.0) 655 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:22:58.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:58 smithi081 bash[23455]: audit 2024-09-16T05:22:58.286922+0000 mon.a (mon.0) 656 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:58.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:58 smithi081 bash[23455]: audit 2024-09-16T05:22:58.287209+0000 mon.a (mon.0) 657 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:22:58.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:58 smithi081 bash[23455]: audit 2024-09-16T05:22:58.288592+0000 mon.a (mon.0) 658 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:22:58.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:58 smithi081 bash[23455]: audit 2024-09-16T05:22:58.291692+0000 mon.a (mon.0) 659 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:58.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:22:58 smithi081 bash[23455]: audit 2024-09-16T05:22:58.298510+0000 mon.a (mon.0) 660 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:58.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:58 smithi029 bash[22744]: cluster 2024-09-16T05:22:57.360769+0000 mgr.a (mgr.14150) 241 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:58.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:58 smithi029 bash[22744]: audit 2024-09-16T05:22:58.282345+0000 mon.a (mon.0) 655 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:22:58.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:58 smithi029 bash[22744]: audit 2024-09-16T05:22:58.286922+0000 mon.a (mon.0) 656 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:58.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:58 smithi029 bash[22744]: audit 2024-09-16T05:22:58.287209+0000 mon.a (mon.0) 657 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:22:58.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:58 smithi029 bash[22744]: audit 2024-09-16T05:22:58.288592+0000 mon.a (mon.0) 658 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:22:58.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:58 smithi029 bash[22744]: audit 2024-09-16T05:22:58.291692+0000 mon.a (mon.0) 659 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:58.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:22:58 smithi029 bash[22744]: audit 2024-09-16T05:22:58.298510+0000 mon.a (mon.0) 660 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:58.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:58 smithi167 bash[23275]: cluster 2024-09-16T05:22:57.360769+0000 mgr.a (mgr.14150) 241 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:22:58.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:58 smithi167 bash[23275]: audit 2024-09-16T05:22:58.282345+0000 mon.a (mon.0) 655 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:22:58.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:58 smithi167 bash[23275]: audit 2024-09-16T05:22:58.286922+0000 mon.a (mon.0) 656 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:58.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:58 smithi167 bash[23275]: audit 2024-09-16T05:22:58.287209+0000 mon.a (mon.0) 657 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:22:58.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:58 smithi167 bash[23275]: audit 2024-09-16T05:22:58.288592+0000 mon.a (mon.0) 658 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:22:58.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:58 smithi167 bash[23275]: audit 2024-09-16T05:22:58.291692+0000 mon.a (mon.0) 659 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:22:58.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:22:58 smithi167 bash[23275]: audit 2024-09-16T05:22:58.298510+0000 mon.a (mon.0) 660 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:00.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:00 smithi029 bash[22744]: cluster 2024-09-16T05:22:59.361303+0000 mgr.a (mgr.14150) 242 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:23:00.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:00 smithi081 bash[23455]: cluster 2024-09-16T05:22:59.361303+0000 mgr.a (mgr.14150) 242 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:23:00.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:00 smithi167 bash[23275]: cluster 2024-09-16T05:22:59.361303+0000 mgr.a (mgr.14150) 242 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:23:01.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:01 smithi167 bash[23275]: audit 2024-09-16T05:23:00.712442+0000 mon.a (mon.0) 661 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:01.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:01 smithi167 bash[23275]: audit 2024-09-16T05:23:00.720089+0000 mon.a (mon.0) 662 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:01.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:01 smithi167 bash[23275]: audit 2024-09-16T05:23:00.728019+0000 mon.a (mon.0) 663 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:02.072 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:01 smithi081 bash[23455]: audit 2024-09-16T05:23:00.712442+0000 mon.a (mon.0) 661 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:02.072 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:01 smithi081 bash[23455]: audit 2024-09-16T05:23:00.720089+0000 mon.a (mon.0) 662 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:02.072 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:01 smithi081 bash[23455]: audit 2024-09-16T05:23:00.728019+0000 mon.a (mon.0) 663 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:02.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:01 smithi029 bash[22744]: audit 2024-09-16T05:23:00.712442+0000 mon.a (mon.0) 661 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:02.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:01 smithi029 bash[22744]: audit 2024-09-16T05:23:00.720089+0000 mon.a (mon.0) 662 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:02.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:01 smithi029 bash[22744]: audit 2024-09-16T05:23:00.728019+0000 mon.a (mon.0) 663 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:02.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:02 smithi167 bash[23275]: cluster 2024-09-16T05:23:01.361856+0000 mgr.a (mgr.14150) 243 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:23:03.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:02 smithi029 bash[22744]: cluster 2024-09-16T05:23:01.361856+0000 mgr.a (mgr.14150) 243 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:23:03.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:02 smithi081 bash[23455]: cluster 2024-09-16T05:23:01.361856+0000 mgr.a (mgr.14150) 243 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:23:05.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:04 smithi081 bash[23455]: cluster 2024-09-16T05:23:03.362463+0000 mgr.a (mgr.14150) 244 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:23:05.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:04 smithi081 bash[23455]: audit 2024-09-16T05:23:03.941688+0000 mon.a (mon.0) 664 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:05.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:04 smithi081 bash[23455]: audit 2024-09-16T05:23:03.949545+0000 mon.a (mon.0) 665 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:05.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:04 smithi081 bash[23455]: cephadm 2024-09-16T05:23:03.952368+0000 mgr.a (mgr.14150) 245 : cephadm [INF] Detected new or changed devices on smithi081 2024-09-16T05:23:05.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:04 smithi081 bash[23455]: audit 2024-09-16T05:23:03.954475+0000 mon.a (mon.0) 666 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:23:05.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:04 smithi081 bash[23455]: audit 2024-09-16T05:23:03.959304+0000 mon.a (mon.0) 667 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:05.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:04 smithi081 bash[23455]: audit 2024-09-16T05:23:03.965005+0000 mon.a (mon.0) 668 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:23:05.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:04 smithi081 bash[23455]: audit 2024-09-16T05:23:03.966708+0000 mon.a (mon.0) 669 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:23:05.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:04 smithi081 bash[23455]: audit 2024-09-16T05:23:03.975936+0000 mon.a (mon.0) 670 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:05.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:04 smithi167 bash[23275]: cluster 2024-09-16T05:23:03.362463+0000 mgr.a (mgr.14150) 244 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:23:05.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:04 smithi167 bash[23275]: audit 2024-09-16T05:23:03.941688+0000 mon.a (mon.0) 664 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:05.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:04 smithi167 bash[23275]: audit 2024-09-16T05:23:03.949545+0000 mon.a (mon.0) 665 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:05.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:04 smithi167 bash[23275]: cephadm 2024-09-16T05:23:03.952368+0000 mgr.a (mgr.14150) 245 : cephadm [INF] Detected new or changed devices on smithi081 2024-09-16T05:23:05.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:04 smithi167 bash[23275]: audit 2024-09-16T05:23:03.954475+0000 mon.a (mon.0) 666 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:23:05.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:04 smithi167 bash[23275]: audit 2024-09-16T05:23:03.959304+0000 mon.a (mon.0) 667 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:05.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:04 smithi167 bash[23275]: audit 2024-09-16T05:23:03.965005+0000 mon.a (mon.0) 668 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:23:05.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:04 smithi167 bash[23275]: audit 2024-09-16T05:23:03.966708+0000 mon.a (mon.0) 669 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:23:05.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:04 smithi167 bash[23275]: audit 2024-09-16T05:23:03.975936+0000 mon.a (mon.0) 670 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:05.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:04 smithi029 bash[22744]: cluster 2024-09-16T05:23:03.362463+0000 mgr.a (mgr.14150) 244 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:23:05.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:04 smithi029 bash[22744]: audit 2024-09-16T05:23:03.941688+0000 mon.a (mon.0) 664 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:05.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:04 smithi029 bash[22744]: audit 2024-09-16T05:23:03.949545+0000 mon.a (mon.0) 665 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:05.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:04 smithi029 bash[22744]: cephadm 2024-09-16T05:23:03.952368+0000 mgr.a (mgr.14150) 245 : cephadm [INF] Detected new or changed devices on smithi081 2024-09-16T05:23:05.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:04 smithi029 bash[22744]: audit 2024-09-16T05:23:03.954475+0000 mon.a (mon.0) 666 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:23:05.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:04 smithi029 bash[22744]: audit 2024-09-16T05:23:03.959304+0000 mon.a (mon.0) 667 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:05.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:04 smithi029 bash[22744]: audit 2024-09-16T05:23:03.965005+0000 mon.a (mon.0) 668 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:23:05.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:04 smithi029 bash[22744]: audit 2024-09-16T05:23:03.966708+0000 mon.a (mon.0) 669 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:23:05.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:04 smithi029 bash[22744]: audit 2024-09-16T05:23:03.975936+0000 mon.a (mon.0) 670 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:07.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:06 smithi167 bash[23275]: cluster 2024-09-16T05:23:05.363109+0000 mgr.a (mgr.14150) 246 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:23:07.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:06 smithi029 bash[22744]: cluster 2024-09-16T05:23:05.363109+0000 mgr.a (mgr.14150) 246 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:23:07.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:06 smithi081 bash[23455]: cluster 2024-09-16T05:23:05.363109+0000 mgr.a (mgr.14150) 246 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:23:08.740 INFO:teuthology.orchestra.run.smithi081.stdout:Created osd(s) 3 on host 'smithi081' 2024-09-16T05:23:09.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:08 smithi081 bash[23455]: cluster 2024-09-16T05:23:07.363829+0000 mgr.a (mgr.14150) 247 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:23:09.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:08 smithi081 bash[23455]: audit 2024-09-16T05:23:07.923805+0000 mon.a (mon.0) 671 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:09.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:08 smithi081 bash[23455]: audit 2024-09-16T05:23:07.932181+0000 mon.a (mon.0) 672 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:09.119 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:08 smithi081 bash[23455]: audit 2024-09-16T05:23:07.937016+0000 mon.a (mon.0) 673 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:23:09.119 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:08 smithi081 bash[23455]: audit 2024-09-16T05:23:07.941962+0000 mon.a (mon.0) 674 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:09.119 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:08 smithi081 bash[23455]: audit 2024-09-16T05:23:07.950050+0000 mon.a (mon.0) 675 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:23:09.119 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:08 smithi081 bash[23455]: audit 2024-09-16T05:23:07.951817+0000 mon.a (mon.0) 676 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:23:09.119 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:08 smithi081 bash[23455]: audit 2024-09-16T05:23:07.961115+0000 mon.a (mon.0) 677 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:09.119 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:08 smithi081 bash[23455]: audit 2024-09-16T05:23:08.723930+0000 mon.a (mon.0) 678 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:23:09.119 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:08 smithi081 bash[23455]: audit 2024-09-16T05:23:08.732156+0000 mon.a (mon.0) 679 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:09.119 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:08 smithi081 bash[23455]: audit 2024-09-16T05:23:08.733110+0000 mon.a (mon.0) 680 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-16T05:23:09.119 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:08 smithi081 bash[23455]: audit 2024-09-16T05:23:08.735714+0000 mon.a (mon.0) 681 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-16T05:23:09.119 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:08 smithi081 bash[23455]: audit 2024-09-16T05:23:08.740844+0000 mon.a (mon.0) 682 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:09.119 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:08 smithi081 bash[23455]: audit 2024-09-16T05:23:08.748953+0000 mon.a (mon.0) 683 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:09.119 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:08 smithi081 bash[23455]: audit 2024-09-16T05:23:08.752944+0000 mon.a (mon.0) 684 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:23:09.120 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:08 smithi081 bash[23455]: audit 2024-09-16T05:23:08.754574+0000 mon.a (mon.0) 685 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:23:09.120 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:08 smithi081 bash[23455]: audit 2024-09-16T05:23:08.764058+0000 mon.a (mon.0) 686 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:09.120 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:08 smithi081 bash[23455]: audit 2024-09-16T05:23:08.902049+0000 mon.a (mon.0) 687 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-16T05:23:09.120 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:08 smithi081 bash[23455]: audit 2024-09-16T05:23:08.904063+0000 mon.b (mon.2) 14 : audit [INF] from='osd.3 [v2:172.21.15.81:6808/274505392,v1:172.21.15.81:6809/274505392]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-16T05:23:09.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:08 smithi167 bash[23275]: cluster 2024-09-16T05:23:07.363829+0000 mgr.a (mgr.14150) 247 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:23:09.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:08 smithi167 bash[23275]: audit 2024-09-16T05:23:07.923805+0000 mon.a (mon.0) 671 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:09.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:08 smithi167 bash[23275]: audit 2024-09-16T05:23:07.932181+0000 mon.a (mon.0) 672 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:09.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:08 smithi167 bash[23275]: audit 2024-09-16T05:23:07.937016+0000 mon.a (mon.0) 673 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:23:09.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:08 smithi167 bash[23275]: audit 2024-09-16T05:23:07.941962+0000 mon.a (mon.0) 674 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:09.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:08 smithi167 bash[23275]: audit 2024-09-16T05:23:07.950050+0000 mon.a (mon.0) 675 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:23:09.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:08 smithi167 bash[23275]: audit 2024-09-16T05:23:07.951817+0000 mon.a (mon.0) 676 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:23:09.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:08 smithi167 bash[23275]: audit 2024-09-16T05:23:07.961115+0000 mon.a (mon.0) 677 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:09.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:08 smithi167 bash[23275]: audit 2024-09-16T05:23:08.723930+0000 mon.a (mon.0) 678 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:23:09.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:08 smithi167 bash[23275]: audit 2024-09-16T05:23:08.732156+0000 mon.a (mon.0) 679 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:09.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:08 smithi167 bash[23275]: audit 2024-09-16T05:23:08.733110+0000 mon.a (mon.0) 680 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-16T05:23:09.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:08 smithi167 bash[23275]: audit 2024-09-16T05:23:08.735714+0000 mon.a (mon.0) 681 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-16T05:23:09.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:08 smithi167 bash[23275]: audit 2024-09-16T05:23:08.740844+0000 mon.a (mon.0) 682 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:09.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:08 smithi167 bash[23275]: audit 2024-09-16T05:23:08.748953+0000 mon.a (mon.0) 683 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:09.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:08 smithi167 bash[23275]: audit 2024-09-16T05:23:08.752944+0000 mon.a (mon.0) 684 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:23:09.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:08 smithi167 bash[23275]: audit 2024-09-16T05:23:08.754574+0000 mon.a (mon.0) 685 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:23:09.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:08 smithi167 bash[23275]: audit 2024-09-16T05:23:08.764058+0000 mon.a (mon.0) 686 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:09.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:08 smithi167 bash[23275]: audit 2024-09-16T05:23:08.902049+0000 mon.a (mon.0) 687 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-16T05:23:09.243 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:08 smithi167 bash[23275]: audit 2024-09-16T05:23:08.904063+0000 mon.b (mon.2) 14 : audit [INF] from='osd.3 [v2:172.21.15.81:6808/274505392,v1:172.21.15.81:6809/274505392]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-16T05:23:09.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:08 smithi029 bash[22744]: cluster 2024-09-16T05:23:07.363829+0000 mgr.a (mgr.14150) 247 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:23:09.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:08 smithi029 bash[22744]: audit 2024-09-16T05:23:07.923805+0000 mon.a (mon.0) 671 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:09.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:08 smithi029 bash[22744]: audit 2024-09-16T05:23:07.932181+0000 mon.a (mon.0) 672 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:09.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:08 smithi029 bash[22744]: audit 2024-09-16T05:23:07.937016+0000 mon.a (mon.0) 673 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:23:09.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:08 smithi029 bash[22744]: audit 2024-09-16T05:23:07.941962+0000 mon.a (mon.0) 674 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:09.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:08 smithi029 bash[22744]: audit 2024-09-16T05:23:07.950050+0000 mon.a (mon.0) 675 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:23:09.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:08 smithi029 bash[22744]: audit 2024-09-16T05:23:07.951817+0000 mon.a (mon.0) 676 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:23:09.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:08 smithi029 bash[22744]: audit 2024-09-16T05:23:07.961115+0000 mon.a (mon.0) 677 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:09.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:08 smithi029 bash[22744]: audit 2024-09-16T05:23:08.723930+0000 mon.a (mon.0) 678 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:23:09.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:08 smithi029 bash[22744]: audit 2024-09-16T05:23:08.732156+0000 mon.a (mon.0) 679 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:09.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:08 smithi029 bash[22744]: audit 2024-09-16T05:23:08.733110+0000 mon.a (mon.0) 680 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-16T05:23:09.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:08 smithi029 bash[22744]: audit 2024-09-16T05:23:08.735714+0000 mon.a (mon.0) 681 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-16T05:23:09.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:08 smithi029 bash[22744]: audit 2024-09-16T05:23:08.740844+0000 mon.a (mon.0) 682 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:09.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:08 smithi029 bash[22744]: audit 2024-09-16T05:23:08.748953+0000 mon.a (mon.0) 683 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:09.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:08 smithi029 bash[22744]: audit 2024-09-16T05:23:08.752944+0000 mon.a (mon.0) 684 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:23:09.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:08 smithi029 bash[22744]: audit 2024-09-16T05:23:08.754574+0000 mon.a (mon.0) 685 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:23:09.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:08 smithi029 bash[22744]: audit 2024-09-16T05:23:08.764058+0000 mon.a (mon.0) 686 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:09.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:08 smithi029 bash[22744]: audit 2024-09-16T05:23:08.902049+0000 mon.a (mon.0) 687 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-16T05:23:09.340 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:08 smithi029 bash[22744]: audit 2024-09-16T05:23:08.904063+0000 mon.b (mon.2) 14 : audit [INF] from='osd.3 [v2:172.21.15.81:6808/274505392,v1:172.21.15.81:6809/274505392]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-16T05:23:09.448 DEBUG:teuthology.orchestra.run.smithi081:osd.3> sudo journalctl -f -n 0 -u ceph-825322c2-73ea-11ef-bceb-c7b262605968@osd.3.service 2024-09-16T05:23:09.451 INFO:tasks.cephadm:Deploying osd.4 on smithi167 with /dev/vg_nvme/lv_4... 2024-09-16T05:23:09.451 DEBUG:teuthology.orchestra.run.smithi167:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_4 2024-09-16T05:23:10.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:09 smithi167 bash[23275]: cephadm 2024-09-16T05:23:08.742912+0000 mgr.a (mgr.14150) 248 : cephadm [INF] Adjusting osd_memory_target on smithi081 to 8120M 2024-09-16T05:23:10.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:09 smithi167 bash[23275]: audit 2024-09-16T05:23:09.763476+0000 mon.a (mon.0) 688 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-16T05:23:10.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:09 smithi167 bash[23275]: cluster 2024-09-16T05:23:09.768759+0000 mon.a (mon.0) 689 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-09-16T05:23:10.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:09 smithi167 bash[23275]: audit 2024-09-16T05:23:09.769190+0000 mon.a (mon.0) 690 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T05:23:10.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:09 smithi167 bash[23275]: audit 2024-09-16T05:23:09.771347+0000 mon.a (mon.0) 691 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi081", "root=default"]}]: dispatch 2024-09-16T05:23:10.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:09 smithi167 bash[23275]: audit 2024-09-16T05:23:09.773176+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.81:6808/274505392,v1:172.21.15.81:6809/274505392]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi081", "root=default"]}]: dispatch 2024-09-16T05:23:10.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:09 smithi029 bash[22744]: cephadm 2024-09-16T05:23:08.742912+0000 mgr.a (mgr.14150) 248 : cephadm [INF] Adjusting osd_memory_target on smithi081 to 8120M 2024-09-16T05:23:10.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:09 smithi029 bash[22744]: audit 2024-09-16T05:23:09.763476+0000 mon.a (mon.0) 688 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-16T05:23:10.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:09 smithi029 bash[22744]: cluster 2024-09-16T05:23:09.768759+0000 mon.a (mon.0) 689 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-09-16T05:23:10.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:09 smithi029 bash[22744]: audit 2024-09-16T05:23:09.769190+0000 mon.a (mon.0) 690 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T05:23:10.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:09 smithi029 bash[22744]: audit 2024-09-16T05:23:09.771347+0000 mon.a (mon.0) 691 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi081", "root=default"]}]: dispatch 2024-09-16T05:23:10.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:09 smithi029 bash[22744]: audit 2024-09-16T05:23:09.773176+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.81:6808/274505392,v1:172.21.15.81:6809/274505392]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi081", "root=default"]}]: dispatch 2024-09-16T05:23:10.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:09 smithi081 bash[23455]: cephadm 2024-09-16T05:23:08.742912+0000 mgr.a (mgr.14150) 248 : cephadm [INF] Adjusting osd_memory_target on smithi081 to 8120M 2024-09-16T05:23:10.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:09 smithi081 bash[23455]: audit 2024-09-16T05:23:09.763476+0000 mon.a (mon.0) 688 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-16T05:23:10.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:09 smithi081 bash[23455]: cluster 2024-09-16T05:23:09.768759+0000 mon.a (mon.0) 689 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-09-16T05:23:10.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:09 smithi081 bash[23455]: audit 2024-09-16T05:23:09.769190+0000 mon.a (mon.0) 690 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T05:23:10.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:09 smithi081 bash[23455]: audit 2024-09-16T05:23:09.771347+0000 mon.a (mon.0) 691 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi081", "root=default"]}]: dispatch 2024-09-16T05:23:10.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:09 smithi081 bash[23455]: audit 2024-09-16T05:23:09.773176+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.81:6808/274505392,v1:172.21.15.81:6809/274505392]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi081", "root=default"]}]: dispatch 2024-09-16T05:23:11.200 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:10 smithi029 bash[22744]: cluster 2024-09-16T05:23:09.364499+0000 mgr.a (mgr.14150) 249 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:23:11.200 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:10 smithi029 bash[22744]: audit 2024-09-16T05:23:10.766048+0000 mon.a (mon.0) 692 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi081", "root=default"]}]': finished 2024-09-16T05:23:11.200 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:10 smithi029 bash[22744]: cluster 2024-09-16T05:23:10.772126+0000 mon.a (mon.0) 693 : cluster [DBG] osdmap e25: 4 total, 3 up, 4 in 2024-09-16T05:23:11.200 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:10 smithi029 bash[22744]: audit 2024-09-16T05:23:10.772658+0000 mon.a (mon.0) 694 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T05:23:11.200 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:10 smithi029 bash[22744]: audit 2024-09-16T05:23:10.781010+0000 mon.a (mon.0) 695 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T05:23:11.236 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:10 smithi167 bash[23275]: cluster 2024-09-16T05:23:09.364499+0000 mgr.a (mgr.14150) 249 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:23:11.236 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:10 smithi167 bash[23275]: audit 2024-09-16T05:23:10.766048+0000 mon.a (mon.0) 692 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi081", "root=default"]}]': finished 2024-09-16T05:23:11.236 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:10 smithi167 bash[23275]: cluster 2024-09-16T05:23:10.772126+0000 mon.a (mon.0) 693 : cluster [DBG] osdmap e25: 4 total, 3 up, 4 in 2024-09-16T05:23:11.236 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:10 smithi167 bash[23275]: audit 2024-09-16T05:23:10.772658+0000 mon.a (mon.0) 694 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T05:23:11.236 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:10 smithi167 bash[23275]: audit 2024-09-16T05:23:10.781010+0000 mon.a (mon.0) 695 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T05:23:11.301 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:10 smithi081 bash[23455]: cluster 2024-09-16T05:23:09.364499+0000 mgr.a (mgr.14150) 249 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:23:11.301 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:10 smithi081 bash[23455]: audit 2024-09-16T05:23:10.766048+0000 mon.a (mon.0) 692 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi081", "root=default"]}]': finished 2024-09-16T05:23:11.301 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:10 smithi081 bash[23455]: cluster 2024-09-16T05:23:10.772126+0000 mon.a (mon.0) 693 : cluster [DBG] osdmap e25: 4 total, 3 up, 4 in 2024-09-16T05:23:11.301 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:10 smithi081 bash[23455]: audit 2024-09-16T05:23:10.772658+0000 mon.a (mon.0) 694 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T05:23:11.301 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:10 smithi081 bash[23455]: audit 2024-09-16T05:23:10.781010+0000 mon.a (mon.0) 695 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T05:23:11.618 INFO:journalctl@ceph.osd.3.smithi081.stdout:Sep 16 05:23:11 smithi081 bash[32718]: debug 2024-09-16T05:23:11.300+0000 7f0643d00640 -1 osd.3 0 waiting for initial osdmap 2024-09-16T05:23:11.618 INFO:journalctl@ceph.osd.3.smithi081.stdout:Sep 16 05:23:11 smithi081 bash[32718]: debug 2024-09-16T05:23:11.332+0000 7f063bb20640 -1 osd.3 25 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-16T05:23:12.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:12 smithi029 bash[22744]: cluster 2024-09-16T05:23:09.882459+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T05:23:12.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:12 smithi029 bash[22744]: cluster 2024-09-16T05:23:09.882577+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T05:23:12.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:12 smithi029 bash[22744]: audit 2024-09-16T05:23:11.306944+0000 mon.a (mon.0) 696 : audit [INF] from='osd.3 ' entity='osd.3' 2024-09-16T05:23:12.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:12 smithi029 bash[22744]: audit 2024-09-16T05:23:11.733653+0000 mon.a (mon.0) 697 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:12.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:12 smithi029 bash[22744]: audit 2024-09-16T05:23:11.741242+0000 mon.a (mon.0) 698 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:12.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:12 smithi029 bash[22744]: audit 2024-09-16T05:23:11.750628+0000 mon.a (mon.0) 699 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:12.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:12 smithi029 bash[22744]: cluster 2024-09-16T05:23:11.773717+0000 mon.a (mon.0) 700 : cluster [INF] osd.3 [v2:172.21.15.81:6808/274505392,v1:172.21.15.81:6809/274505392] boot 2024-09-16T05:23:12.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:12 smithi029 bash[22744]: cluster 2024-09-16T05:23:11.773833+0000 mon.a (mon.0) 701 : cluster [DBG] osdmap e26: 4 total, 4 up, 4 in 2024-09-16T05:23:12.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:12 smithi029 bash[22744]: audit 2024-09-16T05:23:11.774321+0000 mon.a (mon.0) 702 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T05:23:12.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:12 smithi081 bash[23455]: cluster 2024-09-16T05:23:09.882459+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T05:23:12.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:12 smithi081 bash[23455]: cluster 2024-09-16T05:23:09.882577+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T05:23:12.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:12 smithi081 bash[23455]: audit 2024-09-16T05:23:11.306944+0000 mon.a (mon.0) 696 : audit [INF] from='osd.3 ' entity='osd.3' 2024-09-16T05:23:12.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:12 smithi081 bash[23455]: audit 2024-09-16T05:23:11.733653+0000 mon.a (mon.0) 697 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:12.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:12 smithi081 bash[23455]: audit 2024-09-16T05:23:11.741242+0000 mon.a (mon.0) 698 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:12.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:12 smithi081 bash[23455]: audit 2024-09-16T05:23:11.750628+0000 mon.a (mon.0) 699 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:12.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:12 smithi081 bash[23455]: cluster 2024-09-16T05:23:11.773717+0000 mon.a (mon.0) 700 : cluster [INF] osd.3 [v2:172.21.15.81:6808/274505392,v1:172.21.15.81:6809/274505392] boot 2024-09-16T05:23:12.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:12 smithi081 bash[23455]: cluster 2024-09-16T05:23:11.773833+0000 mon.a (mon.0) 701 : cluster [DBG] osdmap e26: 4 total, 4 up, 4 in 2024-09-16T05:23:12.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:12 smithi081 bash[23455]: audit 2024-09-16T05:23:11.774321+0000 mon.a (mon.0) 702 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T05:23:12.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:12 smithi167 bash[23275]: cluster 2024-09-16T05:23:09.882459+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T05:23:12.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:12 smithi167 bash[23275]: cluster 2024-09-16T05:23:09.882577+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T05:23:12.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:12 smithi167 bash[23275]: audit 2024-09-16T05:23:11.306944+0000 mon.a (mon.0) 696 : audit [INF] from='osd.3 ' entity='osd.3' 2024-09-16T05:23:12.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:12 smithi167 bash[23275]: audit 2024-09-16T05:23:11.733653+0000 mon.a (mon.0) 697 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:12.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:12 smithi167 bash[23275]: audit 2024-09-16T05:23:11.741242+0000 mon.a (mon.0) 698 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:12.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:12 smithi167 bash[23275]: audit 2024-09-16T05:23:11.750628+0000 mon.a (mon.0) 699 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:12.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:12 smithi167 bash[23275]: cluster 2024-09-16T05:23:11.773717+0000 mon.a (mon.0) 700 : cluster [INF] osd.3 [v2:172.21.15.81:6808/274505392,v1:172.21.15.81:6809/274505392] boot 2024-09-16T05:23:12.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:12 smithi167 bash[23275]: cluster 2024-09-16T05:23:11.773833+0000 mon.a (mon.0) 701 : cluster [DBG] osdmap e26: 4 total, 4 up, 4 in 2024-09-16T05:23:12.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:12 smithi167 bash[23275]: audit 2024-09-16T05:23:11.774321+0000 mon.a (mon.0) 702 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T05:23:13.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:13 smithi167 bash[23275]: cluster 2024-09-16T05:23:11.365023+0000 mgr.a (mgr.14150) 250 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:23:13.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:13 smithi167 bash[23275]: cluster 2024-09-16T05:23:12.776838+0000 mon.a (mon.0) 703 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-09-16T05:23:13.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:13 smithi029 bash[22744]: cluster 2024-09-16T05:23:11.365023+0000 mgr.a (mgr.14150) 250 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:23:13.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:13 smithi029 bash[22744]: cluster 2024-09-16T05:23:12.776838+0000 mon.a (mon.0) 703 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-09-16T05:23:13.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:13 smithi081 bash[23455]: cluster 2024-09-16T05:23:11.365023+0000 mgr.a (mgr.14150) 250 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-16T05:23:13.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:13 smithi081 bash[23455]: cluster 2024-09-16T05:23:12.776838+0000 mon.a (mon.0) 703 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-09-16T05:23:14.188 INFO:teuthology.orchestra.run.smithi167.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.c/config 2024-09-16T05:23:15.050 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:14 smithi167 bash[23275]: cluster 2024-09-16T05:23:13.365622+0000 mgr.a (mgr.14150) 251 : cluster [DBG] pgmap v197: 1 pgs: 1 remapped+peering; 577 KiB data, 272 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:15.051 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:14 smithi167 bash[23275]: cluster 2024-09-16T05:23:13.778039+0000 mon.a (mon.0) 704 : cluster [DBG] osdmap e28: 4 total, 4 up, 4 in 2024-09-16T05:23:15.051 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:14 smithi167 bash[23275]: cluster 2024-09-16T05:23:14.743311+0000 mon.a (mon.0) 705 : cluster [DBG] osdmap e29: 4 total, 4 up, 4 in 2024-09-16T05:23:15.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:14 smithi029 bash[22744]: cluster 2024-09-16T05:23:13.365622+0000 mgr.a (mgr.14150) 251 : cluster [DBG] pgmap v197: 1 pgs: 1 remapped+peering; 577 KiB data, 272 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:15.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:14 smithi029 bash[22744]: cluster 2024-09-16T05:23:13.778039+0000 mon.a (mon.0) 704 : cluster [DBG] osdmap e28: 4 total, 4 up, 4 in 2024-09-16T05:23:15.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:14 smithi029 bash[22744]: cluster 2024-09-16T05:23:14.743311+0000 mon.a (mon.0) 705 : cluster [DBG] osdmap e29: 4 total, 4 up, 4 in 2024-09-16T05:23:15.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:14 smithi081 bash[23455]: cluster 2024-09-16T05:23:13.365622+0000 mgr.a (mgr.14150) 251 : cluster [DBG] pgmap v197: 1 pgs: 1 remapped+peering; 577 KiB data, 272 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:15.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:14 smithi081 bash[23455]: cluster 2024-09-16T05:23:13.778039+0000 mon.a (mon.0) 704 : cluster [DBG] osdmap e28: 4 total, 4 up, 4 in 2024-09-16T05:23:15.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:14 smithi081 bash[23455]: cluster 2024-09-16T05:23:14.743311+0000 mon.a (mon.0) 705 : cluster [DBG] osdmap e29: 4 total, 4 up, 4 in 2024-09-16T05:23:16.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:16 smithi167 bash[23275]: cluster 2024-09-16T05:23:15.366192+0000 mgr.a (mgr.14150) 252 : cluster [DBG] pgmap v200: 1 pgs: 1 remapped+peering; 577 KiB data, 272 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:16.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:16 smithi167 bash[23275]: cluster 2024-09-16T05:23:15.744681+0000 mon.a (mon.0) 706 : cluster [DBG] osdmap e30: 4 total, 4 up, 4 in 2024-09-16T05:23:17.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:16 smithi029 bash[22744]: cluster 2024-09-16T05:23:15.366192+0000 mgr.a (mgr.14150) 252 : cluster [DBG] pgmap v200: 1 pgs: 1 remapped+peering; 577 KiB data, 272 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:17.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:16 smithi029 bash[22744]: cluster 2024-09-16T05:23:15.744681+0000 mon.a (mon.0) 706 : cluster [DBG] osdmap e30: 4 total, 4 up, 4 in 2024-09-16T05:23:17.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:16 smithi081 bash[23455]: cluster 2024-09-16T05:23:15.366192+0000 mgr.a (mgr.14150) 252 : cluster [DBG] pgmap v200: 1 pgs: 1 remapped+peering; 577 KiB data, 272 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:17.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:16 smithi081 bash[23455]: cluster 2024-09-16T05:23:15.744681+0000 mon.a (mon.0) 706 : cluster [DBG] osdmap e30: 4 total, 4 up, 4 in 2024-09-16T05:23:17.673 INFO:teuthology.orchestra.run.smithi167.stdout: 2024-09-16T05:23:17.708 DEBUG:teuthology.orchestra.run.smithi167:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi167:vg_nvme/lv_4 2024-09-16T05:23:19.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:18 smithi029 bash[22744]: cluster 2024-09-16T05:23:17.366765+0000 mgr.a (mgr.14150) 253 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail; 125 KiB/s, 0 objects/s recovering 2024-09-16T05:23:19.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:18 smithi081 bash[23455]: cluster 2024-09-16T05:23:17.366765+0000 mgr.a (mgr.14150) 253 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail; 125 KiB/s, 0 objects/s recovering 2024-09-16T05:23:19.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:18 smithi167 bash[23275]: cluster 2024-09-16T05:23:17.366765+0000 mgr.a (mgr.14150) 253 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail; 125 KiB/s, 0 objects/s recovering 2024-09-16T05:23:21.013 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:20 smithi081 bash[23455]: cluster 2024-09-16T05:23:19.367369+0000 mgr.a (mgr.14150) 254 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-16T05:23:21.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:20 smithi029 bash[22744]: cluster 2024-09-16T05:23:19.367369+0000 mgr.a (mgr.14150) 254 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-16T05:23:21.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:20 smithi167 bash[23275]: cluster 2024-09-16T05:23:19.367369+0000 mgr.a (mgr.14150) 254 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-16T05:23:21.422 INFO:teuthology.orchestra.run.smithi167.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.c/config 2024-09-16T05:23:22.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:21 smithi167 bash[23275]: audit 2024-09-16T05:23:20.883835+0000 mon.a (mon.0) 707 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:22.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:21 smithi167 bash[23275]: audit 2024-09-16T05:23:20.892135+0000 mon.a (mon.0) 708 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:22.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:21 smithi167 bash[23275]: audit 2024-09-16T05:23:20.901403+0000 mon.a (mon.0) 709 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:22.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:21 smithi029 bash[22744]: audit 2024-09-16T05:23:20.883835+0000 mon.a (mon.0) 707 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:22.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:21 smithi029 bash[22744]: audit 2024-09-16T05:23:20.892135+0000 mon.a (mon.0) 708 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:22.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:21 smithi029 bash[22744]: audit 2024-09-16T05:23:20.901403+0000 mon.a (mon.0) 709 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:22.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:21 smithi081 bash[23455]: audit 2024-09-16T05:23:20.883835+0000 mon.a (mon.0) 707 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:22.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:21 smithi081 bash[23455]: audit 2024-09-16T05:23:20.892135+0000 mon.a (mon.0) 708 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:22.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:21 smithi081 bash[23455]: audit 2024-09-16T05:23:20.901403+0000 mon.a (mon.0) 709 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:23.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:22 smithi081 bash[23455]: cluster 2024-09-16T05:23:21.367937+0000 mgr.a (mgr.14150) 255 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail; 76 KiB/s, 0 objects/s recovering 2024-09-16T05:23:23.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:22 smithi081 bash[23455]: audit 2024-09-16T05:23:22.778193+0000 mon.a (mon.0) 710 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T05:23:23.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:22 smithi081 bash[23455]: audit 2024-09-16T05:23:22.784141+0000 mon.a (mon.0) 711 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T05:23:23.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:22 smithi081 bash[23455]: audit 2024-09-16T05:23:22.785802+0000 mon.a (mon.0) 712 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:23:23.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:22 smithi167 bash[23275]: cluster 2024-09-16T05:23:21.367937+0000 mgr.a (mgr.14150) 255 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail; 76 KiB/s, 0 objects/s recovering 2024-09-16T05:23:23.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:22 smithi167 bash[23275]: audit 2024-09-16T05:23:22.778193+0000 mon.a (mon.0) 710 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T05:23:23.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:22 smithi167 bash[23275]: audit 2024-09-16T05:23:22.784141+0000 mon.a (mon.0) 711 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T05:23:23.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:22 smithi167 bash[23275]: audit 2024-09-16T05:23:22.785802+0000 mon.a (mon.0) 712 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:23:23.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:22 smithi029 bash[22744]: cluster 2024-09-16T05:23:21.367937+0000 mgr.a (mgr.14150) 255 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail; 76 KiB/s, 0 objects/s recovering 2024-09-16T05:23:23.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:22 smithi029 bash[22744]: audit 2024-09-16T05:23:22.778193+0000 mon.a (mon.0) 710 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T05:23:23.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:22 smithi029 bash[22744]: audit 2024-09-16T05:23:22.784141+0000 mon.a (mon.0) 711 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T05:23:23.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:22 smithi029 bash[22744]: audit 2024-09-16T05:23:22.785802+0000 mon.a (mon.0) 712 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:23:24.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:23 smithi167 bash[23275]: audit 2024-09-16T05:23:22.771358+0000 mgr.a (mgr.14150) 256 : audit [DBG] from='client.24184 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi167:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:23:24.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:23 smithi029 bash[22744]: audit 2024-09-16T05:23:22.771358+0000 mgr.a (mgr.14150) 256 : audit [DBG] from='client.24184 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi167:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:23:24.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:23 smithi081 bash[23455]: audit 2024-09-16T05:23:22.771358+0000 mgr.a (mgr.14150) 256 : audit [DBG] from='client.24184 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi167:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:23:25.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:24 smithi167 bash[23275]: cluster 2024-09-16T05:23:23.368530+0000 mgr.a (mgr.14150) 257 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail; 67 KiB/s, 0 objects/s recovering 2024-09-16T05:23:25.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:24 smithi029 bash[22744]: cluster 2024-09-16T05:23:23.368530+0000 mgr.a (mgr.14150) 257 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail; 67 KiB/s, 0 objects/s recovering 2024-09-16T05:23:25.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:24 smithi081 bash[23455]: cluster 2024-09-16T05:23:23.368530+0000 mgr.a (mgr.14150) 257 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail; 67 KiB/s, 0 objects/s recovering 2024-09-16T05:23:27.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:26 smithi029 bash[22744]: cluster 2024-09-16T05:23:25.369092+0000 mgr.a (mgr.14150) 258 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-16T05:23:27.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:26 smithi029 bash[22744]: audit 2024-09-16T05:23:25.804760+0000 mon.a (mon.0) 713 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:27.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:26 smithi029 bash[22744]: audit 2024-09-16T05:23:25.813225+0000 mon.a (mon.0) 714 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:27.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:26 smithi029 bash[22744]: audit 2024-09-16T05:23:25.822762+0000 mon.a (mon.0) 715 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:27.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:26 smithi081 bash[23455]: cluster 2024-09-16T05:23:25.369092+0000 mgr.a (mgr.14150) 258 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-16T05:23:27.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:26 smithi081 bash[23455]: audit 2024-09-16T05:23:25.804760+0000 mon.a (mon.0) 713 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:27.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:26 smithi081 bash[23455]: audit 2024-09-16T05:23:25.813225+0000 mon.a (mon.0) 714 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:27.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:26 smithi081 bash[23455]: audit 2024-09-16T05:23:25.822762+0000 mon.a (mon.0) 715 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:27.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:26 smithi167 bash[23275]: cluster 2024-09-16T05:23:25.369092+0000 mgr.a (mgr.14150) 258 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-16T05:23:27.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:26 smithi167 bash[23275]: audit 2024-09-16T05:23:25.804760+0000 mon.a (mon.0) 713 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:27.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:26 smithi167 bash[23275]: audit 2024-09-16T05:23:25.813225+0000 mon.a (mon.0) 714 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:27.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:26 smithi167 bash[23275]: audit 2024-09-16T05:23:25.822762+0000 mon.a (mon.0) 715 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:28.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:28 smithi167 bash[23275]: cluster 2024-09-16T05:23:27.369682+0000 mgr.a (mgr.14150) 259 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail; 50 KiB/s, 0 objects/s recovering 2024-09-16T05:23:29.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:28 smithi029 bash[22744]: cluster 2024-09-16T05:23:27.369682+0000 mgr.a (mgr.14150) 259 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail; 50 KiB/s, 0 objects/s recovering 2024-09-16T05:23:29.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:28 smithi081 bash[23455]: cluster 2024-09-16T05:23:27.369682+0000 mgr.a (mgr.14150) 259 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail; 50 KiB/s, 0 objects/s recovering 2024-09-16T05:23:31.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:30 smithi029 bash[22744]: cluster 2024-09-16T05:23:29.370212+0000 mgr.a (mgr.14150) 260 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:31.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:30 smithi081 bash[23455]: cluster 2024-09-16T05:23:29.370212+0000 mgr.a (mgr.14150) 260 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:31.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:30 smithi167 bash[23275]: cluster 2024-09-16T05:23:29.370212+0000 mgr.a (mgr.14150) 260 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:31.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:31 smithi167 bash[23275]: audit 2024-09-16T05:23:31.029675+0000 mon.c (mon.1) 5 : audit [INF] from='client.? 172.21.15.167:0/2229678172' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "fc697d4d-a6f5-4472-82b6-d6e51ccbab6a"}]: dispatch 2024-09-16T05:23:31.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:31 smithi167 bash[23275]: audit 2024-09-16T05:23:31.030211+0000 mon.a (mon.0) 716 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "fc697d4d-a6f5-4472-82b6-d6e51ccbab6a"}]: dispatch 2024-09-16T05:23:31.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:31 smithi167 bash[23275]: audit 2024-09-16T05:23:31.033839+0000 mon.a (mon.0) 717 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "fc697d4d-a6f5-4472-82b6-d6e51ccbab6a"}]': finished 2024-09-16T05:23:31.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:31 smithi167 bash[23275]: cluster 2024-09-16T05:23:31.038857+0000 mon.a (mon.0) 718 : cluster [DBG] osdmap e31: 5 total, 4 up, 5 in 2024-09-16T05:23:31.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:31 smithi167 bash[23275]: audit 2024-09-16T05:23:31.039292+0000 mon.a (mon.0) 719 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T05:23:32.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:31 smithi029 bash[22744]: audit 2024-09-16T05:23:31.029675+0000 mon.c (mon.1) 5 : audit [INF] from='client.? 172.21.15.167:0/2229678172' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "fc697d4d-a6f5-4472-82b6-d6e51ccbab6a"}]: dispatch 2024-09-16T05:23:32.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:31 smithi029 bash[22744]: audit 2024-09-16T05:23:31.030211+0000 mon.a (mon.0) 716 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "fc697d4d-a6f5-4472-82b6-d6e51ccbab6a"}]: dispatch 2024-09-16T05:23:32.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:31 smithi029 bash[22744]: audit 2024-09-16T05:23:31.033839+0000 mon.a (mon.0) 717 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "fc697d4d-a6f5-4472-82b6-d6e51ccbab6a"}]': finished 2024-09-16T05:23:32.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:31 smithi029 bash[22744]: cluster 2024-09-16T05:23:31.038857+0000 mon.a (mon.0) 718 : cluster [DBG] osdmap e31: 5 total, 4 up, 5 in 2024-09-16T05:23:32.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:31 smithi029 bash[22744]: audit 2024-09-16T05:23:31.039292+0000 mon.a (mon.0) 719 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T05:23:32.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:31 smithi081 bash[23455]: audit 2024-09-16T05:23:31.029675+0000 mon.c (mon.1) 5 : audit [INF] from='client.? 172.21.15.167:0/2229678172' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "fc697d4d-a6f5-4472-82b6-d6e51ccbab6a"}]: dispatch 2024-09-16T05:23:32.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:31 smithi081 bash[23455]: audit 2024-09-16T05:23:31.030211+0000 mon.a (mon.0) 716 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "fc697d4d-a6f5-4472-82b6-d6e51ccbab6a"}]: dispatch 2024-09-16T05:23:32.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:31 smithi081 bash[23455]: audit 2024-09-16T05:23:31.033839+0000 mon.a (mon.0) 717 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "fc697d4d-a6f5-4472-82b6-d6e51ccbab6a"}]': finished 2024-09-16T05:23:32.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:31 smithi081 bash[23455]: cluster 2024-09-16T05:23:31.038857+0000 mon.a (mon.0) 718 : cluster [DBG] osdmap e31: 5 total, 4 up, 5 in 2024-09-16T05:23:32.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:31 smithi081 bash[23455]: audit 2024-09-16T05:23:31.039292+0000 mon.a (mon.0) 719 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T05:23:33.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:32 smithi167 bash[23275]: cluster 2024-09-16T05:23:31.370660+0000 mgr.a (mgr.14150) 261 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:33.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:32 smithi167 bash[23275]: audit 2024-09-16T05:23:31.875718+0000 mon.a (mon.0) 720 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:33.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:32 smithi167 bash[23275]: audit 2024-09-16T05:23:31.882469+0000 mon.c (mon.1) 6 : audit [DBG] from='client.? 172.21.15.167:0/189505545' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T05:23:33.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:32 smithi167 bash[23275]: audit 2024-09-16T05:23:31.883289+0000 mon.a (mon.0) 721 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:33.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:32 smithi167 bash[23275]: audit 2024-09-16T05:23:31.893070+0000 mon.a (mon.0) 722 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:33.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:32 smithi029 bash[22744]: cluster 2024-09-16T05:23:31.370660+0000 mgr.a (mgr.14150) 261 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:33.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:32 smithi029 bash[22744]: audit 2024-09-16T05:23:31.875718+0000 mon.a (mon.0) 720 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:33.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:32 smithi029 bash[22744]: audit 2024-09-16T05:23:31.882469+0000 mon.c (mon.1) 6 : audit [DBG] from='client.? 172.21.15.167:0/189505545' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T05:23:33.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:32 smithi029 bash[22744]: audit 2024-09-16T05:23:31.883289+0000 mon.a (mon.0) 721 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:33.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:32 smithi029 bash[22744]: audit 2024-09-16T05:23:31.893070+0000 mon.a (mon.0) 722 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:33.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:32 smithi081 bash[23455]: cluster 2024-09-16T05:23:31.370660+0000 mgr.a (mgr.14150) 261 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:33.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:32 smithi081 bash[23455]: audit 2024-09-16T05:23:31.875718+0000 mon.a (mon.0) 720 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:33.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:32 smithi081 bash[23455]: audit 2024-09-16T05:23:31.882469+0000 mon.c (mon.1) 6 : audit [DBG] from='client.? 172.21.15.167:0/189505545' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T05:23:33.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:32 smithi081 bash[23455]: audit 2024-09-16T05:23:31.883289+0000 mon.a (mon.0) 721 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:33.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:32 smithi081 bash[23455]: audit 2024-09-16T05:23:31.893070+0000 mon.a (mon.0) 722 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:35.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:34 smithi167 bash[23275]: cluster 2024-09-16T05:23:33.371157+0000 mgr.a (mgr.14150) 262 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:35.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:34 smithi029 bash[22744]: cluster 2024-09-16T05:23:33.371157+0000 mgr.a (mgr.14150) 262 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:35.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:34 smithi081 bash[23455]: cluster 2024-09-16T05:23:33.371157+0000 mgr.a (mgr.14150) 262 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:37.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:36 smithi167 bash[23275]: cluster 2024-09-16T05:23:35.371696+0000 mgr.a (mgr.14150) 263 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:37.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:36 smithi029 bash[22744]: cluster 2024-09-16T05:23:35.371696+0000 mgr.a (mgr.14150) 263 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:37.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:36 smithi081 bash[23455]: cluster 2024-09-16T05:23:35.371696+0000 mgr.a (mgr.14150) 263 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:38.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:38 smithi167 bash[23275]: cluster 2024-09-16T05:23:37.372259+0000 mgr.a (mgr.14150) 264 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:39.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:38 smithi029 bash[22744]: cluster 2024-09-16T05:23:37.372259+0000 mgr.a (mgr.14150) 264 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:39.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:38 smithi081 bash[23455]: cluster 2024-09-16T05:23:37.372259+0000 mgr.a (mgr.14150) 264 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:41.204 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:40 smithi081 bash[23455]: cluster 2024-09-16T05:23:39.372779+0000 mgr.a (mgr.14150) 265 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:41.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:40 smithi167 bash[23275]: cluster 2024-09-16T05:23:39.372779+0000 mgr.a (mgr.14150) 265 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:41.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:40 smithi029 bash[22744]: cluster 2024-09-16T05:23:39.372779+0000 mgr.a (mgr.14150) 265 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:42.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:42 smithi029 bash[22744]: audit 2024-09-16T05:23:41.085919+0000 mon.a (mon.0) 723 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:42.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:42 smithi029 bash[22744]: audit 2024-09-16T05:23:41.092985+0000 mon.a (mon.0) 724 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:42.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:42 smithi029 bash[22744]: audit 2024-09-16T05:23:41.100930+0000 mon.a (mon.0) 725 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:42.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:42 smithi081 bash[23455]: audit 2024-09-16T05:23:41.085919+0000 mon.a (mon.0) 723 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:42.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:42 smithi081 bash[23455]: audit 2024-09-16T05:23:41.092985+0000 mon.a (mon.0) 724 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:42.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:42 smithi081 bash[23455]: audit 2024-09-16T05:23:41.100930+0000 mon.a (mon.0) 725 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:42.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:42 smithi167 bash[23275]: audit 2024-09-16T05:23:41.085919+0000 mon.a (mon.0) 723 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:42.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:42 smithi167 bash[23275]: audit 2024-09-16T05:23:41.092985+0000 mon.a (mon.0) 724 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:42.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:42 smithi167 bash[23275]: audit 2024-09-16T05:23:41.100930+0000 mon.a (mon.0) 725 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:43.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:43 smithi081 bash[23455]: cluster 2024-09-16T05:23:41.373331+0000 mgr.a (mgr.14150) 266 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:43.386 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:43 smithi167 bash[23275]: cluster 2024-09-16T05:23:41.373331+0000 mgr.a (mgr.14150) 266 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:43.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:43 smithi029 bash[22744]: cluster 2024-09-16T05:23:41.373331+0000 mgr.a (mgr.14150) 266 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:45.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:45 smithi081 bash[23455]: cluster 2024-09-16T05:23:43.373884+0000 mgr.a (mgr.14150) 267 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:45.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:45 smithi081 bash[23455]: audit 2024-09-16T05:23:44.328204+0000 mon.a (mon.0) 726 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-16T05:23:45.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:45 smithi081 bash[23455]: audit 2024-09-16T05:23:44.330116+0000 mon.a (mon.0) 727 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:23:45.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:45 smithi081 bash[23455]: cephadm 2024-09-16T05:23:44.331778+0000 mgr.a (mgr.14150) 268 : cephadm [INF] Deploying daemon osd.4 on smithi167 2024-09-16T05:23:45.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:45 smithi167 bash[23275]: cluster 2024-09-16T05:23:43.373884+0000 mgr.a (mgr.14150) 267 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:45.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:45 smithi167 bash[23275]: audit 2024-09-16T05:23:44.328204+0000 mon.a (mon.0) 726 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-16T05:23:45.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:45 smithi167 bash[23275]: audit 2024-09-16T05:23:44.330116+0000 mon.a (mon.0) 727 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:23:45.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:45 smithi167 bash[23275]: cephadm 2024-09-16T05:23:44.331778+0000 mgr.a (mgr.14150) 268 : cephadm [INF] Deploying daemon osd.4 on smithi167 2024-09-16T05:23:45.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:45 smithi029 bash[22744]: cluster 2024-09-16T05:23:43.373884+0000 mgr.a (mgr.14150) 267 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:45.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:45 smithi029 bash[22744]: audit 2024-09-16T05:23:44.328204+0000 mon.a (mon.0) 726 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-16T05:23:45.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:45 smithi029 bash[22744]: audit 2024-09-16T05:23:44.330116+0000 mon.a (mon.0) 727 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:23:45.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:45 smithi029 bash[22744]: cephadm 2024-09-16T05:23:44.331778+0000 mgr.a (mgr.14150) 268 : cephadm [INF] Deploying daemon osd.4 on smithi167 2024-09-16T05:23:47.277 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:47 smithi167 bash[23275]: cluster 2024-09-16T05:23:45.374441+0000 mgr.a (mgr.14150) 269 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:47.277 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:47 smithi167 bash[23275]: audit 2024-09-16T05:23:46.028152+0000 mon.a (mon.0) 728 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:47.278 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:47 smithi167 bash[23275]: audit 2024-09-16T05:23:46.036845+0000 mon.a (mon.0) 729 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:47.278 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:47 smithi167 bash[23275]: audit 2024-09-16T05:23:46.046523+0000 mon.a (mon.0) 730 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:47.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:47 smithi029 bash[22744]: cluster 2024-09-16T05:23:45.374441+0000 mgr.a (mgr.14150) 269 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:47.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:47 smithi029 bash[22744]: audit 2024-09-16T05:23:46.028152+0000 mon.a (mon.0) 728 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:47.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:47 smithi029 bash[22744]: audit 2024-09-16T05:23:46.036845+0000 mon.a (mon.0) 729 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:47.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:47 smithi029 bash[22744]: audit 2024-09-16T05:23:46.046523+0000 mon.a (mon.0) 730 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:47.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:47 smithi081 bash[23455]: cluster 2024-09-16T05:23:45.374441+0000 mgr.a (mgr.14150) 269 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:47.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:47 smithi081 bash[23455]: audit 2024-09-16T05:23:46.028152+0000 mon.a (mon.0) 728 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:47.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:47 smithi081 bash[23455]: audit 2024-09-16T05:23:46.036845+0000 mon.a (mon.0) 729 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:47.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:47 smithi081 bash[23455]: audit 2024-09-16T05:23:46.046523+0000 mon.a (mon.0) 730 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:48.538 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:48 smithi167 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:23:48.893 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:48 smithi167 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:23:49.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:49 smithi167 bash[23275]: cluster 2024-09-16T05:23:47.374997+0000 mgr.a (mgr.14150) 270 : cluster [DBG] pgmap v218: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:49.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:49 smithi167 bash[23275]: audit 2024-09-16T05:23:48.823171+0000 mon.a (mon.0) 731 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:23:49.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:49 smithi167 bash[23275]: audit 2024-09-16T05:23:48.831197+0000 mon.a (mon.0) 732 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:49.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:49 smithi167 bash[23275]: audit 2024-09-16T05:23:48.831884+0000 mon.a (mon.0) 733 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:23:49.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:49 smithi167 bash[23275]: audit 2024-09-16T05:23:48.835182+0000 mon.a (mon.0) 734 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:23:49.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:49 smithi167 bash[23275]: audit 2024-09-16T05:23:48.839254+0000 mon.a (mon.0) 735 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:49.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:49 smithi167 bash[23275]: audit 2024-09-16T05:23:48.851771+0000 mon.a (mon.0) 736 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:49.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:49 smithi029 bash[22744]: cluster 2024-09-16T05:23:47.374997+0000 mgr.a (mgr.14150) 270 : cluster [DBG] pgmap v218: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:49.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:49 smithi029 bash[22744]: audit 2024-09-16T05:23:48.823171+0000 mon.a (mon.0) 731 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:23:49.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:49 smithi029 bash[22744]: audit 2024-09-16T05:23:48.831197+0000 mon.a (mon.0) 732 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:49.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:49 smithi029 bash[22744]: audit 2024-09-16T05:23:48.831884+0000 mon.a (mon.0) 733 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:23:49.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:49 smithi029 bash[22744]: audit 2024-09-16T05:23:48.835182+0000 mon.a (mon.0) 734 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:23:49.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:49 smithi029 bash[22744]: audit 2024-09-16T05:23:48.839254+0000 mon.a (mon.0) 735 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:49.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:49 smithi029 bash[22744]: audit 2024-09-16T05:23:48.851771+0000 mon.a (mon.0) 736 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:49.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:49 smithi081 bash[23455]: cluster 2024-09-16T05:23:47.374997+0000 mgr.a (mgr.14150) 270 : cluster [DBG] pgmap v218: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:49.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:49 smithi081 bash[23455]: audit 2024-09-16T05:23:48.823171+0000 mon.a (mon.0) 731 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:23:49.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:49 smithi081 bash[23455]: audit 2024-09-16T05:23:48.831197+0000 mon.a (mon.0) 732 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:49.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:49 smithi081 bash[23455]: audit 2024-09-16T05:23:48.831884+0000 mon.a (mon.0) 733 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:23:49.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:49 smithi081 bash[23455]: audit 2024-09-16T05:23:48.835182+0000 mon.a (mon.0) 734 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:23:49.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:49 smithi081 bash[23455]: audit 2024-09-16T05:23:48.839254+0000 mon.a (mon.0) 735 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:49.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:49 smithi081 bash[23455]: audit 2024-09-16T05:23:48.851771+0000 mon.a (mon.0) 736 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:51.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:51 smithi029 bash[22744]: cluster 2024-09-16T05:23:49.375534+0000 mgr.a (mgr.14150) 271 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:51.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:51 smithi081 bash[23455]: cluster 2024-09-16T05:23:49.375534+0000 mgr.a (mgr.14150) 271 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:51.453 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:51 smithi167 bash[23275]: cluster 2024-09-16T05:23:49.375534+0000 mgr.a (mgr.14150) 271 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:53.267 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:52 smithi167 bash[23275]: cluster 2024-09-16T05:23:51.376057+0000 mgr.a (mgr.14150) 272 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:53.267 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:52 smithi167 bash[23275]: audit 2024-09-16T05:23:51.995861+0000 mon.a (mon.0) 737 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:53.267 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:52 smithi167 bash[23275]: audit 2024-09-16T05:23:51.999816+0000 mon.a (mon.0) 738 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:53.267 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:52 smithi167 bash[23275]: cephadm 2024-09-16T05:23:52.001254+0000 mgr.a (mgr.14150) 273 : cephadm [INF] Detected new or changed devices on smithi167 2024-09-16T05:23:53.267 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:52 smithi167 bash[23275]: audit 2024-09-16T05:23:52.002412+0000 mon.a (mon.0) 739 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:23:53.267 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:52 smithi167 bash[23275]: audit 2024-09-16T05:23:52.006108+0000 mon.a (mon.0) 740 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:53.268 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:52 smithi167 bash[23275]: audit 2024-09-16T05:23:52.006527+0000 mon.a (mon.0) 741 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:23:53.268 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:52 smithi167 bash[23275]: audit 2024-09-16T05:23:52.007603+0000 mon.a (mon.0) 742 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:23:53.268 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:52 smithi167 bash[23275]: audit 2024-09-16T05:23:52.012355+0000 mon.a (mon.0) 743 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:53.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:52 smithi029 bash[22744]: cluster 2024-09-16T05:23:51.376057+0000 mgr.a (mgr.14150) 272 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:53.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:52 smithi029 bash[22744]: audit 2024-09-16T05:23:51.995861+0000 mon.a (mon.0) 737 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:53.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:52 smithi029 bash[22744]: audit 2024-09-16T05:23:51.999816+0000 mon.a (mon.0) 738 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:53.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:52 smithi029 bash[22744]: cephadm 2024-09-16T05:23:52.001254+0000 mgr.a (mgr.14150) 273 : cephadm [INF] Detected new or changed devices on smithi167 2024-09-16T05:23:53.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:52 smithi029 bash[22744]: audit 2024-09-16T05:23:52.002412+0000 mon.a (mon.0) 739 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:23:53.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:52 smithi029 bash[22744]: audit 2024-09-16T05:23:52.006108+0000 mon.a (mon.0) 740 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:53.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:52 smithi029 bash[22744]: audit 2024-09-16T05:23:52.006527+0000 mon.a (mon.0) 741 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:23:53.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:52 smithi029 bash[22744]: audit 2024-09-16T05:23:52.007603+0000 mon.a (mon.0) 742 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:23:53.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:52 smithi029 bash[22744]: audit 2024-09-16T05:23:52.012355+0000 mon.a (mon.0) 743 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:53.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:52 smithi081 bash[23455]: cluster 2024-09-16T05:23:51.376057+0000 mgr.a (mgr.14150) 272 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:53.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:52 smithi081 bash[23455]: audit 2024-09-16T05:23:51.995861+0000 mon.a (mon.0) 737 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:53.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:52 smithi081 bash[23455]: audit 2024-09-16T05:23:51.999816+0000 mon.a (mon.0) 738 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:53.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:52 smithi081 bash[23455]: cephadm 2024-09-16T05:23:52.001254+0000 mgr.a (mgr.14150) 273 : cephadm [INF] Detected new or changed devices on smithi167 2024-09-16T05:23:53.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:52 smithi081 bash[23455]: audit 2024-09-16T05:23:52.002412+0000 mon.a (mon.0) 739 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:23:53.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:52 smithi081 bash[23455]: audit 2024-09-16T05:23:52.006108+0000 mon.a (mon.0) 740 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:53.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:52 smithi081 bash[23455]: audit 2024-09-16T05:23:52.006527+0000 mon.a (mon.0) 741 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:23:53.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:52 smithi081 bash[23455]: audit 2024-09-16T05:23:52.007603+0000 mon.a (mon.0) 742 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:23:53.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:53 smithi081 bash[23455]: audit 2024-09-16T05:23:52.012355+0000 mon.a (mon.0) 743 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:23:55.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:55 smithi167 bash[23275]: cluster 2024-09-16T05:23:53.376615+0000 mgr.a (mgr.14150) 274 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:55.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:55 smithi029 bash[22744]: cluster 2024-09-16T05:23:53.376615+0000 mgr.a (mgr.14150) 274 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:55.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:55 smithi081 bash[23455]: cluster 2024-09-16T05:23:53.376615+0000 mgr.a (mgr.14150) 274 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:57.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:57 smithi029 bash[22744]: cluster 2024-09-16T05:23:55.377172+0000 mgr.a (mgr.14150) 275 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:57.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:57 smithi081 bash[23455]: cluster 2024-09-16T05:23:55.377172+0000 mgr.a (mgr.14150) 275 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:57.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:57 smithi167 bash[23275]: cluster 2024-09-16T05:23:55.377172+0000 mgr.a (mgr.14150) 275 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:59.275 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:59 smithi167 bash[23275]: cluster 2024-09-16T05:23:57.377756+0000 mgr.a (mgr.14150) 276 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:59.275 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:59 smithi167 bash[23275]: audit 2024-09-16T05:23:58.242318+0000 mon.c (mon.1) 7 : audit [INF] from='osd.4 [v2:172.21.15.167:6800/690822019,v1:172.21.15.167:6801/690822019]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-16T05:23:59.275 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:23:59 smithi167 bash[23275]: audit 2024-09-16T05:23:58.242688+0000 mon.a (mon.0) 744 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-16T05:23:59.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:59 smithi029 bash[22744]: cluster 2024-09-16T05:23:57.377756+0000 mgr.a (mgr.14150) 276 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:59.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:59 smithi029 bash[22744]: audit 2024-09-16T05:23:58.242318+0000 mon.c (mon.1) 7 : audit [INF] from='osd.4 [v2:172.21.15.167:6800/690822019,v1:172.21.15.167:6801/690822019]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-16T05:23:59.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:23:59 smithi029 bash[22744]: audit 2024-09-16T05:23:58.242688+0000 mon.a (mon.0) 744 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-16T05:23:59.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:59 smithi081 bash[23455]: cluster 2024-09-16T05:23:57.377756+0000 mgr.a (mgr.14150) 276 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:23:59.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:59 smithi081 bash[23455]: audit 2024-09-16T05:23:58.242318+0000 mon.c (mon.1) 7 : audit [INF] from='osd.4 [v2:172.21.15.167:6800/690822019,v1:172.21.15.167:6801/690822019]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-16T05:23:59.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:23:59 smithi081 bash[23455]: audit 2024-09-16T05:23:58.242688+0000 mon.a (mon.0) 744 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-16T05:24:00.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:00 smithi167 bash[23275]: audit 2024-09-16T05:23:59.015217+0000 mon.a (mon.0) 745 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-16T05:24:00.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:00 smithi167 bash[23275]: cluster 2024-09-16T05:23:59.019888+0000 mon.a (mon.0) 746 : cluster [DBG] osdmap e32: 5 total, 4 up, 5 in 2024-09-16T05:24:00.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:00 smithi167 bash[23275]: audit 2024-09-16T05:23:59.020391+0000 mon.a (mon.0) 747 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T05:24:00.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:00 smithi167 bash[23275]: audit 2024-09-16T05:23:59.021336+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.167:6800/690822019,v1:172.21.15.167:6801/690822019]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]: dispatch 2024-09-16T05:24:00.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:00 smithi167 bash[23275]: audit 2024-09-16T05:23:59.021950+0000 mon.a (mon.0) 748 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]: dispatch 2024-09-16T05:24:00.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:00 smithi029 bash[22744]: audit 2024-09-16T05:23:59.015217+0000 mon.a (mon.0) 745 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-16T05:24:00.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:00 smithi029 bash[22744]: cluster 2024-09-16T05:23:59.019888+0000 mon.a (mon.0) 746 : cluster [DBG] osdmap e32: 5 total, 4 up, 5 in 2024-09-16T05:24:00.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:00 smithi029 bash[22744]: audit 2024-09-16T05:23:59.020391+0000 mon.a (mon.0) 747 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T05:24:00.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:00 smithi029 bash[22744]: audit 2024-09-16T05:23:59.021336+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.167:6800/690822019,v1:172.21.15.167:6801/690822019]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]: dispatch 2024-09-16T05:24:00.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:00 smithi029 bash[22744]: audit 2024-09-16T05:23:59.021950+0000 mon.a (mon.0) 748 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]: dispatch 2024-09-16T05:24:00.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:00 smithi081 bash[23455]: audit 2024-09-16T05:23:59.015217+0000 mon.a (mon.0) 745 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-16T05:24:00.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:00 smithi081 bash[23455]: cluster 2024-09-16T05:23:59.019888+0000 mon.a (mon.0) 746 : cluster [DBG] osdmap e32: 5 total, 4 up, 5 in 2024-09-16T05:24:00.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:00 smithi081 bash[23455]: audit 2024-09-16T05:23:59.020391+0000 mon.a (mon.0) 747 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T05:24:00.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:00 smithi081 bash[23455]: audit 2024-09-16T05:23:59.021336+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.167:6800/690822019,v1:172.21.15.167:6801/690822019]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]: dispatch 2024-09-16T05:24:00.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:00 smithi081 bash[23455]: audit 2024-09-16T05:23:59.021950+0000 mon.a (mon.0) 748 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]: dispatch 2024-09-16T05:24:01.283 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:01 smithi081 bash[23455]: cluster 2024-09-16T05:23:59.378217+0000 mgr.a (mgr.14150) 277 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:24:01.284 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:01 smithi081 bash[23455]: audit 2024-09-16T05:24:00.017046+0000 mon.a (mon.0) 749 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]': finished 2024-09-16T05:24:01.284 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:01 smithi081 bash[23455]: cluster 2024-09-16T05:24:00.020359+0000 mon.a (mon.0) 750 : cluster [DBG] osdmap e33: 5 total, 4 up, 5 in 2024-09-16T05:24:01.284 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:01 smithi081 bash[23455]: audit 2024-09-16T05:24:00.020810+0000 mon.a (mon.0) 751 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T05:24:01.284 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:01 smithi081 bash[23455]: audit 2024-09-16T05:24:00.030700+0000 mon.a (mon.0) 752 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T05:24:01.284 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:01 smithi081 bash[23455]: audit 2024-09-16T05:24:00.528618+0000 mon.a (mon.0) 753 : audit [INF] from='osd.4 ' entity='osd.4' 2024-09-16T05:24:01.321 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:01 smithi029 bash[22744]: cluster 2024-09-16T05:23:59.378217+0000 mgr.a (mgr.14150) 277 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:24:01.321 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:01 smithi029 bash[22744]: audit 2024-09-16T05:24:00.017046+0000 mon.a (mon.0) 749 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]': finished 2024-09-16T05:24:01.321 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:01 smithi029 bash[22744]: cluster 2024-09-16T05:24:00.020359+0000 mon.a (mon.0) 750 : cluster [DBG] osdmap e33: 5 total, 4 up, 5 in 2024-09-16T05:24:01.321 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:01 smithi029 bash[22744]: audit 2024-09-16T05:24:00.020810+0000 mon.a (mon.0) 751 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T05:24:01.321 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:01 smithi029 bash[22744]: audit 2024-09-16T05:24:00.030700+0000 mon.a (mon.0) 752 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T05:24:01.322 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:01 smithi029 bash[22744]: audit 2024-09-16T05:24:00.528618+0000 mon.a (mon.0) 753 : audit [INF] from='osd.4 ' entity='osd.4' 2024-09-16T05:24:01.355 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:01 smithi167 bash[23275]: cluster 2024-09-16T05:23:59.378217+0000 mgr.a (mgr.14150) 277 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:24:01.355 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:01 smithi167 bash[23275]: audit 2024-09-16T05:24:00.017046+0000 mon.a (mon.0) 749 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]': finished 2024-09-16T05:24:01.355 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:01 smithi167 bash[23275]: cluster 2024-09-16T05:24:00.020359+0000 mon.a (mon.0) 750 : cluster [DBG] osdmap e33: 5 total, 4 up, 5 in 2024-09-16T05:24:01.355 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:01 smithi167 bash[23275]: audit 2024-09-16T05:24:00.020810+0000 mon.a (mon.0) 751 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T05:24:01.355 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:01 smithi167 bash[23275]: audit 2024-09-16T05:24:00.030700+0000 mon.a (mon.0) 752 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T05:24:01.355 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:01 smithi167 bash[23275]: audit 2024-09-16T05:24:00.528618+0000 mon.a (mon.0) 753 : audit [INF] from='osd.4 ' entity='osd.4' 2024-09-16T05:24:01.810 INFO:teuthology.orchestra.run.smithi167.stdout:Created osd(s) 4 on host 'smithi167' 2024-09-16T05:24:02.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:02 smithi167 bash[23275]: cluster 2024-09-16T05:23:59.210925+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T05:24:02.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:02 smithi167 bash[23275]: cluster 2024-09-16T05:23:59.211020+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T05:24:02.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:02 smithi167 bash[23275]: cluster 2024-09-16T05:24:01.033677+0000 mon.a (mon.0) 754 : cluster [INF] osd.4 [v2:172.21.15.167:6800/690822019,v1:172.21.15.167:6801/690822019] boot 2024-09-16T05:24:02.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:02 smithi167 bash[23275]: cluster 2024-09-16T05:24:01.033804+0000 mon.a (mon.0) 755 : cluster [DBG] osdmap e34: 5 total, 5 up, 5 in 2024-09-16T05:24:02.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:02 smithi167 bash[23275]: audit 2024-09-16T05:24:01.034718+0000 mon.a (mon.0) 756 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T05:24:02.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:02 smithi167 bash[23275]: audit 2024-09-16T05:24:01.303091+0000 mon.a (mon.0) 757 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:02.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:02 smithi167 bash[23275]: audit 2024-09-16T05:24:01.311486+0000 mon.a (mon.0) 758 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:02.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:02 smithi167 bash[23275]: audit 2024-09-16T05:24:01.321483+0000 mon.a (mon.0) 759 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:02.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:02 smithi167 bash[23275]: audit 2024-09-16T05:24:01.794106+0000 mon.a (mon.0) 760 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:24:02.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:02 smithi167 bash[23275]: audit 2024-09-16T05:24:01.803249+0000 mon.a (mon.0) 761 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:02.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:02 smithi167 bash[23275]: audit 2024-09-16T05:24:01.803901+0000 mon.a (mon.0) 762 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi167", "name": "osd_memory_target"}]: dispatch 2024-09-16T05:24:02.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:02 smithi167 bash[23275]: audit 2024-09-16T05:24:01.807177+0000 mon.a (mon.0) 763 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:24:02.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:02 smithi167 bash[23275]: audit 2024-09-16T05:24:01.811530+0000 mon.a (mon.0) 764 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:02.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:02 smithi167 bash[23275]: audit 2024-09-16T05:24:01.813866+0000 mon.a (mon.0) 765 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:24:02.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:02 smithi167 bash[23275]: audit 2024-09-16T05:24:01.823465+0000 mon.a (mon.0) 766 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:02.242 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:02 smithi167 bash[23275]: cluster 2024-09-16T05:24:02.034555+0000 mon.a (mon.0) 767 : cluster [DBG] osdmap e35: 5 total, 5 up, 5 in 2024-09-16T05:24:02.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:02 smithi029 bash[22744]: cluster 2024-09-16T05:23:59.210925+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T05:24:02.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:02 smithi029 bash[22744]: cluster 2024-09-16T05:23:59.211020+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T05:24:02.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:02 smithi029 bash[22744]: cluster 2024-09-16T05:24:01.033677+0000 mon.a (mon.0) 754 : cluster [INF] osd.4 [v2:172.21.15.167:6800/690822019,v1:172.21.15.167:6801/690822019] boot 2024-09-16T05:24:02.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:02 smithi029 bash[22744]: cluster 2024-09-16T05:24:01.033804+0000 mon.a (mon.0) 755 : cluster [DBG] osdmap e34: 5 total, 5 up, 5 in 2024-09-16T05:24:02.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:02 smithi029 bash[22744]: audit 2024-09-16T05:24:01.034718+0000 mon.a (mon.0) 756 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T05:24:02.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:02 smithi029 bash[22744]: audit 2024-09-16T05:24:01.303091+0000 mon.a (mon.0) 757 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:02.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:02 smithi029 bash[22744]: audit 2024-09-16T05:24:01.311486+0000 mon.a (mon.0) 758 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:02.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:02 smithi029 bash[22744]: audit 2024-09-16T05:24:01.321483+0000 mon.a (mon.0) 759 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:02.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:02 smithi029 bash[22744]: audit 2024-09-16T05:24:01.794106+0000 mon.a (mon.0) 760 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:24:02.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:02 smithi029 bash[22744]: audit 2024-09-16T05:24:01.803249+0000 mon.a (mon.0) 761 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:02.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:02 smithi029 bash[22744]: audit 2024-09-16T05:24:01.803901+0000 mon.a (mon.0) 762 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi167", "name": "osd_memory_target"}]: dispatch 2024-09-16T05:24:02.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:02 smithi029 bash[22744]: audit 2024-09-16T05:24:01.807177+0000 mon.a (mon.0) 763 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:24:02.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:02 smithi029 bash[22744]: audit 2024-09-16T05:24:01.811530+0000 mon.a (mon.0) 764 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:02.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:02 smithi029 bash[22744]: audit 2024-09-16T05:24:01.813866+0000 mon.a (mon.0) 765 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:24:02.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:02 smithi029 bash[22744]: audit 2024-09-16T05:24:01.823465+0000 mon.a (mon.0) 766 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:02.339 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:02 smithi029 bash[22744]: cluster 2024-09-16T05:24:02.034555+0000 mon.a (mon.0) 767 : cluster [DBG] osdmap e35: 5 total, 5 up, 5 in 2024-09-16T05:24:02.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:02 smithi081 bash[23455]: cluster 2024-09-16T05:23:59.210925+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T05:24:02.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:02 smithi081 bash[23455]: cluster 2024-09-16T05:23:59.211020+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T05:24:02.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:02 smithi081 bash[23455]: cluster 2024-09-16T05:24:01.033677+0000 mon.a (mon.0) 754 : cluster [INF] osd.4 [v2:172.21.15.167:6800/690822019,v1:172.21.15.167:6801/690822019] boot 2024-09-16T05:24:02.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:02 smithi081 bash[23455]: cluster 2024-09-16T05:24:01.033804+0000 mon.a (mon.0) 755 : cluster [DBG] osdmap e34: 5 total, 5 up, 5 in 2024-09-16T05:24:02.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:02 smithi081 bash[23455]: audit 2024-09-16T05:24:01.034718+0000 mon.a (mon.0) 756 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T05:24:02.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:02 smithi081 bash[23455]: audit 2024-09-16T05:24:01.303091+0000 mon.a (mon.0) 757 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:02.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:02 smithi081 bash[23455]: audit 2024-09-16T05:24:01.311486+0000 mon.a (mon.0) 758 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:02.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:02 smithi081 bash[23455]: audit 2024-09-16T05:24:01.321483+0000 mon.a (mon.0) 759 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:02.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:02 smithi081 bash[23455]: audit 2024-09-16T05:24:01.794106+0000 mon.a (mon.0) 760 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:24:02.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:02 smithi081 bash[23455]: audit 2024-09-16T05:24:01.803249+0000 mon.a (mon.0) 761 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:02.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:02 smithi081 bash[23455]: audit 2024-09-16T05:24:01.803901+0000 mon.a (mon.0) 762 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi167", "name": "osd_memory_target"}]: dispatch 2024-09-16T05:24:02.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:02 smithi081 bash[23455]: audit 2024-09-16T05:24:01.807177+0000 mon.a (mon.0) 763 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:24:02.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:02 smithi081 bash[23455]: audit 2024-09-16T05:24:01.811530+0000 mon.a (mon.0) 764 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:02.369 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:02 smithi081 bash[23455]: audit 2024-09-16T05:24:01.813866+0000 mon.a (mon.0) 765 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:24:02.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:02 smithi081 bash[23455]: audit 2024-09-16T05:24:01.823465+0000 mon.a (mon.0) 766 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:02.370 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:02 smithi081 bash[23455]: cluster 2024-09-16T05:24:02.034555+0000 mon.a (mon.0) 767 : cluster [DBG] osdmap e35: 5 total, 5 up, 5 in 2024-09-16T05:24:02.376 DEBUG:teuthology.orchestra.run.smithi167:osd.4> sudo journalctl -f -n 0 -u ceph-825322c2-73ea-11ef-bceb-c7b262605968@osd.4.service 2024-09-16T05:24:02.379 INFO:tasks.cephadm:Deploying osd.5 on smithi167 with /dev/vg_nvme/lv_3... 2024-09-16T05:24:02.379 DEBUG:teuthology.orchestra.run.smithi167:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_3 2024-09-16T05:24:03.467 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:03 smithi081 bash[23455]: cluster 2024-09-16T05:24:01.378832+0000 mgr.a (mgr.14150) 278 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:24:03.467 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:03 smithi081 bash[23455]: cluster 2024-09-16T05:24:03.036358+0000 mon.a (mon.0) 768 : cluster [DBG] osdmap e36: 5 total, 5 up, 5 in 2024-09-16T05:24:03.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:03 smithi029 bash[22744]: cluster 2024-09-16T05:24:01.378832+0000 mgr.a (mgr.14150) 278 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:24:03.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:03 smithi029 bash[22744]: cluster 2024-09-16T05:24:03.036358+0000 mon.a (mon.0) 768 : cluster [DBG] osdmap e36: 5 total, 5 up, 5 in 2024-09-16T05:24:03.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:03 smithi167 bash[23275]: cluster 2024-09-16T05:24:01.378832+0000 mgr.a (mgr.14150) 278 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 125 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:24:03.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:03 smithi167 bash[23275]: cluster 2024-09-16T05:24:03.036358+0000 mon.a (mon.0) 768 : cluster [DBG] osdmap e36: 5 total, 5 up, 5 in 2024-09-16T05:24:05.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:05 smithi029 bash[22744]: cluster 2024-09-16T05:24:03.379412+0000 mgr.a (mgr.14150) 279 : cluster [DBG] pgmap v231: 1 pgs: 1 remapped+peering; 577 KiB data, 155 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:05.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:05 smithi029 bash[22744]: cluster 2024-09-16T05:24:04.038621+0000 mon.a (mon.0) 769 : cluster [DBG] osdmap e37: 5 total, 5 up, 5 in 2024-09-16T05:24:05.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:05 smithi081 bash[23455]: cluster 2024-09-16T05:24:03.379412+0000 mgr.a (mgr.14150) 279 : cluster [DBG] pgmap v231: 1 pgs: 1 remapped+peering; 577 KiB data, 155 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:05.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:05 smithi081 bash[23455]: cluster 2024-09-16T05:24:04.038621+0000 mon.a (mon.0) 769 : cluster [DBG] osdmap e37: 5 total, 5 up, 5 in 2024-09-16T05:24:05.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:05 smithi167 bash[23275]: cluster 2024-09-16T05:24:03.379412+0000 mgr.a (mgr.14150) 279 : cluster [DBG] pgmap v231: 1 pgs: 1 remapped+peering; 577 KiB data, 155 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:05.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:05 smithi167 bash[23275]: cluster 2024-09-16T05:24:04.038621+0000 mon.a (mon.0) 769 : cluster [DBG] osdmap e37: 5 total, 5 up, 5 in 2024-09-16T05:24:06.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:06 smithi029 bash[22744]: cluster 2024-09-16T05:24:05.040672+0000 mon.a (mon.0) 770 : cluster [DBG] osdmap e38: 5 total, 5 up, 5 in 2024-09-16T05:24:06.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:06 smithi029 bash[22744]: audit 2024-09-16T05:24:05.092755+0000 mon.a (mon.0) 771 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:06.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:06 smithi029 bash[22744]: audit 2024-09-16T05:24:05.100436+0000 mon.a (mon.0) 772 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:06.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:06 smithi029 bash[22744]: audit 2024-09-16T05:24:05.105357+0000 mon.a (mon.0) 773 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:24:06.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:06 smithi029 bash[22744]: audit 2024-09-16T05:24:05.110363+0000 mon.a (mon.0) 774 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:06.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:06 smithi029 bash[22744]: audit 2024-09-16T05:24:05.116900+0000 mon.a (mon.0) 775 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:24:06.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:06 smithi029 bash[22744]: audit 2024-09-16T05:24:05.118803+0000 mon.a (mon.0) 776 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:24:06.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:06 smithi029 bash[22744]: audit 2024-09-16T05:24:05.128432+0000 mon.a (mon.0) 777 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:06.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:06 smithi081 bash[23455]: cluster 2024-09-16T05:24:05.040672+0000 mon.a (mon.0) 770 : cluster [DBG] osdmap e38: 5 total, 5 up, 5 in 2024-09-16T05:24:06.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:06 smithi081 bash[23455]: audit 2024-09-16T05:24:05.092755+0000 mon.a (mon.0) 771 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:06.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:06 smithi081 bash[23455]: audit 2024-09-16T05:24:05.100436+0000 mon.a (mon.0) 772 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:06.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:06 smithi081 bash[23455]: audit 2024-09-16T05:24:05.105357+0000 mon.a (mon.0) 773 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:24:06.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:06 smithi081 bash[23455]: audit 2024-09-16T05:24:05.110363+0000 mon.a (mon.0) 774 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:06.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:06 smithi081 bash[23455]: audit 2024-09-16T05:24:05.116900+0000 mon.a (mon.0) 775 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:24:06.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:06 smithi081 bash[23455]: audit 2024-09-16T05:24:05.118803+0000 mon.a (mon.0) 776 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:24:06.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:06 smithi081 bash[23455]: audit 2024-09-16T05:24:05.128432+0000 mon.a (mon.0) 777 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:06.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:06 smithi167 bash[23275]: cluster 2024-09-16T05:24:05.040672+0000 mon.a (mon.0) 770 : cluster [DBG] osdmap e38: 5 total, 5 up, 5 in 2024-09-16T05:24:06.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:06 smithi167 bash[23275]: audit 2024-09-16T05:24:05.092755+0000 mon.a (mon.0) 771 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:06.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:06 smithi167 bash[23275]: audit 2024-09-16T05:24:05.100436+0000 mon.a (mon.0) 772 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:06.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:06 smithi167 bash[23275]: audit 2024-09-16T05:24:05.105357+0000 mon.a (mon.0) 773 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:24:06.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:06 smithi167 bash[23275]: audit 2024-09-16T05:24:05.110363+0000 mon.a (mon.0) 774 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:06.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:06 smithi167 bash[23275]: audit 2024-09-16T05:24:05.116900+0000 mon.a (mon.0) 775 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:24:06.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:06 smithi167 bash[23275]: audit 2024-09-16T05:24:05.118803+0000 mon.a (mon.0) 776 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:24:06.491 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:06 smithi167 bash[23275]: audit 2024-09-16T05:24:05.128432+0000 mon.a (mon.0) 777 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:06.736 INFO:teuthology.orchestra.run.smithi167.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.c/config 2024-09-16T05:24:07.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:07 smithi029 bash[22744]: cluster 2024-09-16T05:24:05.380051+0000 mgr.a (mgr.14150) 280 : cluster [DBG] pgmap v234: 1 pgs: 1 remapped+peering; 577 KiB data, 155 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:07.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:07 smithi029 bash[22744]: audit 2024-09-16T05:24:06.252999+0000 mon.a (mon.0) 778 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:07.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:07 smithi029 bash[22744]: audit 2024-09-16T05:24:06.261352+0000 mon.a (mon.0) 779 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:07.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:07 smithi029 bash[22744]: audit 2024-09-16T05:24:06.270840+0000 mon.a (mon.0) 780 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:07.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:07 smithi081 bash[23455]: cluster 2024-09-16T05:24:05.380051+0000 mgr.a (mgr.14150) 280 : cluster [DBG] pgmap v234: 1 pgs: 1 remapped+peering; 577 KiB data, 155 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:07.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:07 smithi081 bash[23455]: audit 2024-09-16T05:24:06.252999+0000 mon.a (mon.0) 778 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:07.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:07 smithi081 bash[23455]: audit 2024-09-16T05:24:06.261352+0000 mon.a (mon.0) 779 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:07.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:07 smithi081 bash[23455]: audit 2024-09-16T05:24:06.270840+0000 mon.a (mon.0) 780 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:07.714 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:07 smithi167 bash[23275]: cluster 2024-09-16T05:24:05.380051+0000 mgr.a (mgr.14150) 280 : cluster [DBG] pgmap v234: 1 pgs: 1 remapped+peering; 577 KiB data, 155 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:07.715 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:07 smithi167 bash[23275]: audit 2024-09-16T05:24:06.252999+0000 mon.a (mon.0) 778 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:07.715 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:07 smithi167 bash[23275]: audit 2024-09-16T05:24:06.261352+0000 mon.a (mon.0) 779 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:07.715 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:07 smithi167 bash[23275]: audit 2024-09-16T05:24:06.270840+0000 mon.a (mon.0) 780 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:09.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:09 smithi029 bash[22744]: cluster 2024-09-16T05:24:07.380771+0000 mgr.a (mgr.14150) 281 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail; 108 KiB/s, 0 objects/s recovering 2024-09-16T05:24:09.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:09 smithi081 bash[23455]: cluster 2024-09-16T05:24:07.380771+0000 mgr.a (mgr.14150) 281 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail; 108 KiB/s, 0 objects/s recovering 2024-09-16T05:24:09.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:09 smithi167 bash[23275]: cluster 2024-09-16T05:24:07.380771+0000 mgr.a (mgr.14150) 281 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail; 108 KiB/s, 0 objects/s recovering 2024-09-16T05:24:10.365 INFO:teuthology.orchestra.run.smithi167.stdout: 2024-09-16T05:24:10.415 DEBUG:teuthology.orchestra.run.smithi167:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi167:vg_nvme/lv_3 2024-09-16T05:24:11.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:11 smithi029 bash[22744]: cluster 2024-09-16T05:24:09.381361+0000 mgr.a (mgr.14150) 282 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail; 91 KiB/s, 0 objects/s recovering 2024-09-16T05:24:11.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:11 smithi081 bash[23455]: cluster 2024-09-16T05:24:09.381361+0000 mgr.a (mgr.14150) 282 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail; 91 KiB/s, 0 objects/s recovering 2024-09-16T05:24:11.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:11 smithi167 bash[23275]: cluster 2024-09-16T05:24:09.381361+0000 mgr.a (mgr.14150) 282 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail; 91 KiB/s, 0 objects/s recovering 2024-09-16T05:24:13.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:13 smithi029 bash[22744]: cluster 2024-09-16T05:24:11.381930+0000 mgr.a (mgr.14150) 283 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-16T05:24:13.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:13 smithi081 bash[23455]: cluster 2024-09-16T05:24:11.381930+0000 mgr.a (mgr.14150) 283 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-16T05:24:13.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:13 smithi167 bash[23275]: cluster 2024-09-16T05:24:11.381930+0000 mgr.a (mgr.14150) 283 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-16T05:24:15.143 INFO:teuthology.orchestra.run.smithi167.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.c/config 2024-09-16T05:24:15.428 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:15 smithi167 bash[23275]: cluster 2024-09-16T05:24:13.382487+0000 mgr.a (mgr.14150) 284 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail; 62 KiB/s, 0 objects/s recovering 2024-09-16T05:24:15.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:15 smithi029 bash[22744]: cluster 2024-09-16T05:24:13.382487+0000 mgr.a (mgr.14150) 284 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail; 62 KiB/s, 0 objects/s recovering 2024-09-16T05:24:15.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:15 smithi081 bash[23455]: cluster 2024-09-16T05:24:13.382487+0000 mgr.a (mgr.14150) 284 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail; 62 KiB/s, 0 objects/s recovering 2024-09-16T05:24:17.578 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:17 smithi167 bash[23275]: cluster 2024-09-16T05:24:15.382955+0000 mgr.a (mgr.14150) 285 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail; 56 KiB/s, 0 objects/s recovering 2024-09-16T05:24:17.579 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:17 smithi167 bash[23275]: audit 2024-09-16T05:24:17.084512+0000 mon.a (mon.0) 781 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T05:24:17.579 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:17 smithi167 bash[23275]: audit 2024-09-16T05:24:17.090477+0000 mon.a (mon.0) 782 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T05:24:17.579 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:17 smithi167 bash[23275]: audit 2024-09-16T05:24:17.092130+0000 mon.a (mon.0) 783 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:24:17.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:17 smithi029 bash[22744]: cluster 2024-09-16T05:24:15.382955+0000 mgr.a (mgr.14150) 285 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail; 56 KiB/s, 0 objects/s recovering 2024-09-16T05:24:17.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:17 smithi029 bash[22744]: audit 2024-09-16T05:24:17.084512+0000 mon.a (mon.0) 781 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T05:24:17.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:17 smithi029 bash[22744]: audit 2024-09-16T05:24:17.090477+0000 mon.a (mon.0) 782 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T05:24:17.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:17 smithi029 bash[22744]: audit 2024-09-16T05:24:17.092130+0000 mon.a (mon.0) 783 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:24:17.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:17 smithi081 bash[23455]: cluster 2024-09-16T05:24:15.382955+0000 mgr.a (mgr.14150) 285 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail; 56 KiB/s, 0 objects/s recovering 2024-09-16T05:24:17.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:17 smithi081 bash[23455]: audit 2024-09-16T05:24:17.084512+0000 mon.a (mon.0) 781 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T05:24:17.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:17 smithi081 bash[23455]: audit 2024-09-16T05:24:17.090477+0000 mon.a (mon.0) 782 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T05:24:17.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:17 smithi081 bash[23455]: audit 2024-09-16T05:24:17.092130+0000 mon.a (mon.0) 783 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:24:18.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:18 smithi029 bash[22744]: audit 2024-09-16T05:24:17.078161+0000 mgr.a (mgr.14150) 286 : audit [DBG] from='client.24211 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi167:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:24:18.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:18 smithi081 bash[23455]: audit 2024-09-16T05:24:17.078161+0000 mgr.a (mgr.14150) 286 : audit [DBG] from='client.24211 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi167:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:24:18.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:18 smithi167 bash[23275]: audit 2024-09-16T05:24:17.078161+0000 mgr.a (mgr.14150) 286 : audit [DBG] from='client.24211 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi167:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:24:19.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:19 smithi029 bash[22744]: cluster 2024-09-16T05:24:17.383504+0000 mgr.a (mgr.14150) 287 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-16T05:24:19.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:19 smithi081 bash[23455]: cluster 2024-09-16T05:24:17.383504+0000 mgr.a (mgr.14150) 287 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-16T05:24:19.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:19 smithi167 bash[23275]: cluster 2024-09-16T05:24:17.383504+0000 mgr.a (mgr.14150) 287 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-16T05:24:21.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:21 smithi029 bash[22744]: cluster 2024-09-16T05:24:19.384020+0000 mgr.a (mgr.14150) 288 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:21.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:21 smithi081 bash[23455]: cluster 2024-09-16T05:24:19.384020+0000 mgr.a (mgr.14150) 288 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:21.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:21 smithi167 bash[23275]: cluster 2024-09-16T05:24:19.384020+0000 mgr.a (mgr.14150) 288 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:22.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:22 smithi167 bash[23275]: cluster 2024-09-16T05:24:21.384413+0000 mgr.a (mgr.14150) 289 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:22.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:22 smithi167 bash[23275]: audit 2024-09-16T05:24:21.495203+0000 mon.a (mon.0) 784 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:22.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:22 smithi167 bash[23275]: audit 2024-09-16T05:24:21.501685+0000 mon.a (mon.0) 785 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:22.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:22 smithi167 bash[23275]: audit 2024-09-16T05:24:21.509636+0000 mon.a (mon.0) 786 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:22.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:22 smithi029 bash[22744]: cluster 2024-09-16T05:24:21.384413+0000 mgr.a (mgr.14150) 289 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:22.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:22 smithi029 bash[22744]: audit 2024-09-16T05:24:21.495203+0000 mon.a (mon.0) 784 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:22.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:22 smithi029 bash[22744]: audit 2024-09-16T05:24:21.501685+0000 mon.a (mon.0) 785 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:22.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:22 smithi029 bash[22744]: audit 2024-09-16T05:24:21.509636+0000 mon.a (mon.0) 786 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:22.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:22 smithi081 bash[23455]: cluster 2024-09-16T05:24:21.384413+0000 mgr.a (mgr.14150) 289 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:22.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:22 smithi081 bash[23455]: audit 2024-09-16T05:24:21.495203+0000 mon.a (mon.0) 784 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:22.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:22 smithi081 bash[23455]: audit 2024-09-16T05:24:21.501685+0000 mon.a (mon.0) 785 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:22.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:22 smithi081 bash[23455]: audit 2024-09-16T05:24:21.509636+0000 mon.a (mon.0) 786 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:24.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:24 smithi029 bash[22744]: audit 2024-09-16T05:24:23.323182+0000 mon.a (mon.0) 787 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:24.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:24 smithi029 bash[22744]: audit 2024-09-16T05:24:23.330938+0000 mon.a (mon.0) 788 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:24.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:24 smithi029 bash[22744]: audit 2024-09-16T05:24:23.340813+0000 mon.a (mon.0) 789 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:24.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:24 smithi081 bash[23455]: audit 2024-09-16T05:24:23.323182+0000 mon.a (mon.0) 787 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:24.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:24 smithi081 bash[23455]: audit 2024-09-16T05:24:23.330938+0000 mon.a (mon.0) 788 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:24.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:24 smithi081 bash[23455]: audit 2024-09-16T05:24:23.340813+0000 mon.a (mon.0) 789 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:24.680 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:24 smithi167 bash[23275]: audit 2024-09-16T05:24:23.323182+0000 mon.a (mon.0) 787 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:24.680 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:24 smithi167 bash[23275]: audit 2024-09-16T05:24:23.330938+0000 mon.a (mon.0) 788 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:24.680 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:24 smithi167 bash[23275]: audit 2024-09-16T05:24:23.340813+0000 mon.a (mon.0) 789 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:25.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:25 smithi081 bash[23455]: cluster 2024-09-16T05:24:23.384885+0000 mgr.a (mgr.14150) 290 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:25.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:25 smithi167 bash[23275]: cluster 2024-09-16T05:24:23.384885+0000 mgr.a (mgr.14150) 290 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:25.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:25 smithi029 bash[22744]: cluster 2024-09-16T05:24:23.384885+0000 mgr.a (mgr.14150) 290 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:26.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:26 smithi081 bash[23455]: cluster 2024-09-16T05:24:25.385415+0000 mgr.a (mgr.14150) 291 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:26.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:26 smithi081 bash[23455]: audit 2024-09-16T05:24:25.466508+0000 mon.c (mon.1) 9 : audit [INF] from='client.? 172.21.15.167:0/4183331816' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ddca3109-6cda-4962-bec3-2a3271911f17"}]: dispatch 2024-09-16T05:24:26.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:26 smithi081 bash[23455]: audit 2024-09-16T05:24:25.467238+0000 mon.a (mon.0) 790 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ddca3109-6cda-4962-bec3-2a3271911f17"}]: dispatch 2024-09-16T05:24:26.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:26 smithi081 bash[23455]: audit 2024-09-16T05:24:25.470908+0000 mon.a (mon.0) 791 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ddca3109-6cda-4962-bec3-2a3271911f17"}]': finished 2024-09-16T05:24:26.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:26 smithi081 bash[23455]: cluster 2024-09-16T05:24:25.475835+0000 mon.a (mon.0) 792 : cluster [DBG] osdmap e39: 6 total, 5 up, 6 in 2024-09-16T05:24:26.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:26 smithi081 bash[23455]: audit 2024-09-16T05:24:25.476246+0000 mon.a (mon.0) 793 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T05:24:26.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:26 smithi081 bash[23455]: audit 2024-09-16T05:24:26.113278+0000 mon.c (mon.1) 10 : audit [DBG] from='client.? 172.21.15.167:0/483247068' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T05:24:26.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:26 smithi167 bash[23275]: cluster 2024-09-16T05:24:25.385415+0000 mgr.a (mgr.14150) 291 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:26.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:26 smithi167 bash[23275]: audit 2024-09-16T05:24:25.466508+0000 mon.c (mon.1) 9 : audit [INF] from='client.? 172.21.15.167:0/4183331816' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ddca3109-6cda-4962-bec3-2a3271911f17"}]: dispatch 2024-09-16T05:24:26.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:26 smithi167 bash[23275]: audit 2024-09-16T05:24:25.467238+0000 mon.a (mon.0) 790 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ddca3109-6cda-4962-bec3-2a3271911f17"}]: dispatch 2024-09-16T05:24:26.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:26 smithi167 bash[23275]: audit 2024-09-16T05:24:25.470908+0000 mon.a (mon.0) 791 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ddca3109-6cda-4962-bec3-2a3271911f17"}]': finished 2024-09-16T05:24:26.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:26 smithi167 bash[23275]: cluster 2024-09-16T05:24:25.475835+0000 mon.a (mon.0) 792 : cluster [DBG] osdmap e39: 6 total, 5 up, 6 in 2024-09-16T05:24:26.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:26 smithi167 bash[23275]: audit 2024-09-16T05:24:25.476246+0000 mon.a (mon.0) 793 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T05:24:26.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:26 smithi167 bash[23275]: audit 2024-09-16T05:24:26.113278+0000 mon.c (mon.1) 10 : audit [DBG] from='client.? 172.21.15.167:0/483247068' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T05:24:26.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:26 smithi029 bash[22744]: cluster 2024-09-16T05:24:25.385415+0000 mgr.a (mgr.14150) 291 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:26.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:26 smithi029 bash[22744]: audit 2024-09-16T05:24:25.466508+0000 mon.c (mon.1) 9 : audit [INF] from='client.? 172.21.15.167:0/4183331816' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ddca3109-6cda-4962-bec3-2a3271911f17"}]: dispatch 2024-09-16T05:24:26.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:26 smithi029 bash[22744]: audit 2024-09-16T05:24:25.467238+0000 mon.a (mon.0) 790 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ddca3109-6cda-4962-bec3-2a3271911f17"}]: dispatch 2024-09-16T05:24:26.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:26 smithi029 bash[22744]: audit 2024-09-16T05:24:25.470908+0000 mon.a (mon.0) 791 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ddca3109-6cda-4962-bec3-2a3271911f17"}]': finished 2024-09-16T05:24:26.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:26 smithi029 bash[22744]: cluster 2024-09-16T05:24:25.475835+0000 mon.a (mon.0) 792 : cluster [DBG] osdmap e39: 6 total, 5 up, 6 in 2024-09-16T05:24:26.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:26 smithi029 bash[22744]: audit 2024-09-16T05:24:25.476246+0000 mon.a (mon.0) 793 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T05:24:26.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:26 smithi029 bash[22744]: audit 2024-09-16T05:24:26.113278+0000 mon.c (mon.1) 10 : audit [DBG] from='client.? 172.21.15.167:0/483247068' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T05:24:27.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:27 smithi167 bash[23275]: audit 2024-09-16T05:24:26.478719+0000 mon.a (mon.0) 794 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:27.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:27 smithi167 bash[23275]: audit 2024-09-16T05:24:26.487236+0000 mon.a (mon.0) 795 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:27.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:27 smithi167 bash[23275]: audit 2024-09-16T05:24:26.497049+0000 mon.a (mon.0) 796 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:27.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:27 smithi029 bash[22744]: audit 2024-09-16T05:24:26.478719+0000 mon.a (mon.0) 794 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:27.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:27 smithi029 bash[22744]: audit 2024-09-16T05:24:26.487236+0000 mon.a (mon.0) 795 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:27.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:27 smithi029 bash[22744]: audit 2024-09-16T05:24:26.497049+0000 mon.a (mon.0) 796 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:27.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:27 smithi081 bash[23455]: audit 2024-09-16T05:24:26.478719+0000 mon.a (mon.0) 794 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:27.869 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:27 smithi081 bash[23455]: audit 2024-09-16T05:24:26.487236+0000 mon.a (mon.0) 795 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:27.869 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:27 smithi081 bash[23455]: audit 2024-09-16T05:24:26.497049+0000 mon.a (mon.0) 796 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:28.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:28 smithi029 bash[22744]: cluster 2024-09-16T05:24:27.385971+0000 mgr.a (mgr.14150) 292 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:28.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:28 smithi081 bash[23455]: cluster 2024-09-16T05:24:27.385971+0000 mgr.a (mgr.14150) 292 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:28.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:28 smithi167 bash[23275]: cluster 2024-09-16T05:24:27.385971+0000 mgr.a (mgr.14150) 292 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:30.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:30 smithi029 bash[22744]: cluster 2024-09-16T05:24:29.386514+0000 mgr.a (mgr.14150) 293 : cluster [DBG] pgmap v247: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:30.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:30 smithi081 bash[23455]: cluster 2024-09-16T05:24:29.386514+0000 mgr.a (mgr.14150) 293 : cluster [DBG] pgmap v247: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:30.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:30 smithi167 bash[23275]: cluster 2024-09-16T05:24:29.386514+0000 mgr.a (mgr.14150) 293 : cluster [DBG] pgmap v247: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:32.764 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:32 smithi029 bash[22744]: cluster 2024-09-16T05:24:31.387054+0000 mgr.a (mgr.14150) 294 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:32.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:32 smithi081 bash[23455]: cluster 2024-09-16T05:24:31.387054+0000 mgr.a (mgr.14150) 294 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:32.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:32 smithi167 bash[23275]: cluster 2024-09-16T05:24:31.387054+0000 mgr.a (mgr.14150) 294 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:34.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:34 smithi167 bash[23275]: cluster 2024-09-16T05:24:33.387678+0000 mgr.a (mgr.14150) 295 : cluster [DBG] pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:34.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:34 smithi029 bash[22744]: cluster 2024-09-16T05:24:33.387678+0000 mgr.a (mgr.14150) 295 : cluster [DBG] pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:34.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:34 smithi081 bash[23455]: cluster 2024-09-16T05:24:33.387678+0000 mgr.a (mgr.14150) 295 : cluster [DBG] pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:36.715 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:36 smithi167 bash[23275]: cluster 2024-09-16T05:24:35.388259+0000 mgr.a (mgr.14150) 296 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:36.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:36 smithi029 bash[22744]: cluster 2024-09-16T05:24:35.388259+0000 mgr.a (mgr.14150) 296 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:36.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:36 smithi081 bash[23455]: cluster 2024-09-16T05:24:35.388259+0000 mgr.a (mgr.14150) 296 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:38.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:38 smithi029 bash[22744]: cluster 2024-09-16T05:24:37.388824+0000 mgr.a (mgr.14150) 297 : cluster [DBG] pgmap v251: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:38.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:38 smithi081 bash[23455]: cluster 2024-09-16T05:24:37.388824+0000 mgr.a (mgr.14150) 297 : cluster [DBG] pgmap v251: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:38.974 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:38 smithi167 bash[23275]: cluster 2024-09-16T05:24:37.388824+0000 mgr.a (mgr.14150) 297 : cluster [DBG] pgmap v251: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:40.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:40 smithi029 bash[22744]: cluster 2024-09-16T05:24:39.389351+0000 mgr.a (mgr.14150) 298 : cluster [DBG] pgmap v252: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:40.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:40 smithi029 bash[22744]: audit 2024-09-16T05:24:39.581339+0000 mon.a (mon.0) 797 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-16T05:24:40.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:40 smithi029 bash[22744]: audit 2024-09-16T05:24:39.583114+0000 mon.a (mon.0) 798 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:24:40.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:40 smithi029 bash[22744]: cephadm 2024-09-16T05:24:39.584723+0000 mgr.a (mgr.14150) 299 : cephadm [INF] Deploying daemon osd.5 on smithi167 2024-09-16T05:24:40.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:40 smithi081 bash[23455]: cluster 2024-09-16T05:24:39.389351+0000 mgr.a (mgr.14150) 298 : cluster [DBG] pgmap v252: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:40.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:40 smithi081 bash[23455]: audit 2024-09-16T05:24:39.581339+0000 mon.a (mon.0) 797 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-16T05:24:40.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:40 smithi081 bash[23455]: audit 2024-09-16T05:24:39.583114+0000 mon.a (mon.0) 798 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:24:40.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:40 smithi081 bash[23455]: cephadm 2024-09-16T05:24:39.584723+0000 mgr.a (mgr.14150) 299 : cephadm [INF] Deploying daemon osd.5 on smithi167 2024-09-16T05:24:40.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:40 smithi167 bash[23275]: cluster 2024-09-16T05:24:39.389351+0000 mgr.a (mgr.14150) 298 : cluster [DBG] pgmap v252: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:40.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:40 smithi167 bash[23275]: audit 2024-09-16T05:24:39.581339+0000 mon.a (mon.0) 797 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-16T05:24:40.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:40 smithi167 bash[23275]: audit 2024-09-16T05:24:39.583114+0000 mon.a (mon.0) 798 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:24:40.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:40 smithi167 bash[23275]: cephadm 2024-09-16T05:24:39.584723+0000 mgr.a (mgr.14150) 299 : cephadm [INF] Deploying daemon osd.5 on smithi167 2024-09-16T05:24:42.960 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:42 smithi167 bash[23275]: cluster 2024-09-16T05:24:41.389877+0000 mgr.a (mgr.14150) 300 : cluster [DBG] pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:42.961 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:42 smithi167 bash[23275]: audit 2024-09-16T05:24:41.686381+0000 mon.a (mon.0) 799 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:42.961 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:42 smithi167 bash[23275]: audit 2024-09-16T05:24:41.694757+0000 mon.a (mon.0) 800 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:42.961 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:42 smithi167 bash[23275]: audit 2024-09-16T05:24:41.704191+0000 mon.a (mon.0) 801 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:43.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:42 smithi029 bash[22744]: cluster 2024-09-16T05:24:41.389877+0000 mgr.a (mgr.14150) 300 : cluster [DBG] pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:43.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:42 smithi029 bash[22744]: audit 2024-09-16T05:24:41.686381+0000 mon.a (mon.0) 799 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:43.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:42 smithi029 bash[22744]: audit 2024-09-16T05:24:41.694757+0000 mon.a (mon.0) 800 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:43.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:42 smithi029 bash[22744]: audit 2024-09-16T05:24:41.704191+0000 mon.a (mon.0) 801 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:43.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:42 smithi081 bash[23455]: cluster 2024-09-16T05:24:41.389877+0000 mgr.a (mgr.14150) 300 : cluster [DBG] pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:43.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:42 smithi081 bash[23455]: audit 2024-09-16T05:24:41.686381+0000 mon.a (mon.0) 799 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:43.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:42 smithi081 bash[23455]: audit 2024-09-16T05:24:41.694757+0000 mon.a (mon.0) 800 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:43.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:42 smithi081 bash[23455]: audit 2024-09-16T05:24:41.704191+0000 mon.a (mon.0) 801 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:43.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:43 smithi167 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:24:43.990 INFO:journalctl@ceph.osd.4.smithi167.stdout:Sep 16 05:24:43 smithi167 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:24:44.489 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:44 smithi167 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:24:44.489 INFO:journalctl@ceph.osd.4.smithi167.stdout:Sep 16 05:24:44 smithi167 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:24:44.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:44 smithi167 bash[23275]: cluster 2024-09-16T05:24:43.390411+0000 mgr.a (mgr.14150) 301 : cluster [DBG] pgmap v254: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:44.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:44 smithi167 bash[23275]: audit 2024-09-16T05:24:43.492352+0000 mon.a (mon.0) 802 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:44.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:44 smithi167 bash[23275]: audit 2024-09-16T05:24:43.500152+0000 mon.a (mon.0) 803 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:44.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:44 smithi167 bash[23275]: cephadm 2024-09-16T05:24:43.502976+0000 mgr.a (mgr.14150) 302 : cephadm [INF] Detected new or changed devices on smithi167 2024-09-16T05:24:44.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:44 smithi167 bash[23275]: audit 2024-09-16T05:24:43.509922+0000 mon.a (mon.0) 804 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:44.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:44 smithi167 bash[23275]: audit 2024-09-16T05:24:44.214039+0000 mon.a (mon.0) 805 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:24:44.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:44 smithi167 bash[23275]: audit 2024-09-16T05:24:44.221748+0000 mon.a (mon.0) 806 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:44.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:44 smithi167 bash[23275]: audit 2024-09-16T05:24:44.222487+0000 mon.a (mon.0) 807 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:24:44.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:44 smithi167 bash[23275]: audit 2024-09-16T05:24:44.229175+0000 mon.a (mon.0) 808 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:44.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:44 smithi167 bash[23275]: audit 2024-09-16T05:24:44.229951+0000 mon.a (mon.0) 809 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:24:44.741 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:44 smithi167 bash[23275]: audit 2024-09-16T05:24:44.240255+0000 mon.a (mon.0) 810 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:44.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:44 smithi029 bash[22744]: cluster 2024-09-16T05:24:43.390411+0000 mgr.a (mgr.14150) 301 : cluster [DBG] pgmap v254: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:44.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:44 smithi029 bash[22744]: audit 2024-09-16T05:24:43.492352+0000 mon.a (mon.0) 802 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:44.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:44 smithi029 bash[22744]: audit 2024-09-16T05:24:43.500152+0000 mon.a (mon.0) 803 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:44.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:44 smithi029 bash[22744]: cephadm 2024-09-16T05:24:43.502976+0000 mgr.a (mgr.14150) 302 : cephadm [INF] Detected new or changed devices on smithi167 2024-09-16T05:24:44.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:44 smithi029 bash[22744]: audit 2024-09-16T05:24:43.509922+0000 mon.a (mon.0) 804 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:44.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:44 smithi029 bash[22744]: audit 2024-09-16T05:24:44.214039+0000 mon.a (mon.0) 805 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:24:44.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:44 smithi029 bash[22744]: audit 2024-09-16T05:24:44.221748+0000 mon.a (mon.0) 806 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:44.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:44 smithi029 bash[22744]: audit 2024-09-16T05:24:44.222487+0000 mon.a (mon.0) 807 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:24:44.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:44 smithi029 bash[22744]: audit 2024-09-16T05:24:44.229175+0000 mon.a (mon.0) 808 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:44.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:44 smithi029 bash[22744]: audit 2024-09-16T05:24:44.229951+0000 mon.a (mon.0) 809 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:24:44.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:44 smithi029 bash[22744]: audit 2024-09-16T05:24:44.240255+0000 mon.a (mon.0) 810 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:44.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:44 smithi081 bash[23455]: cluster 2024-09-16T05:24:43.390411+0000 mgr.a (mgr.14150) 301 : cluster [DBG] pgmap v254: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:44.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:44 smithi081 bash[23455]: audit 2024-09-16T05:24:43.492352+0000 mon.a (mon.0) 802 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:44.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:44 smithi081 bash[23455]: audit 2024-09-16T05:24:43.500152+0000 mon.a (mon.0) 803 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:44.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:44 smithi081 bash[23455]: cephadm 2024-09-16T05:24:43.502976+0000 mgr.a (mgr.14150) 302 : cephadm [INF] Detected new or changed devices on smithi167 2024-09-16T05:24:44.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:44 smithi081 bash[23455]: audit 2024-09-16T05:24:43.509922+0000 mon.a (mon.0) 804 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:44.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:44 smithi081 bash[23455]: audit 2024-09-16T05:24:44.214039+0000 mon.a (mon.0) 805 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:24:44.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:44 smithi081 bash[23455]: audit 2024-09-16T05:24:44.221748+0000 mon.a (mon.0) 806 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:44.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:44 smithi081 bash[23455]: audit 2024-09-16T05:24:44.222487+0000 mon.a (mon.0) 807 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:24:44.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:44 smithi081 bash[23455]: audit 2024-09-16T05:24:44.229175+0000 mon.a (mon.0) 808 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:44.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:44 smithi081 bash[23455]: audit 2024-09-16T05:24:44.229951+0000 mon.a (mon.0) 809 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:24:44.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:44 smithi081 bash[23455]: audit 2024-09-16T05:24:44.240255+0000 mon.a (mon.0) 810 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:46.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:46 smithi029 bash[22744]: cluster 2024-09-16T05:24:45.390937+0000 mgr.a (mgr.14150) 303 : cluster [DBG] pgmap v255: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:46.838 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:46 smithi167 bash[23275]: cluster 2024-09-16T05:24:45.390937+0000 mgr.a (mgr.14150) 303 : cluster [DBG] pgmap v255: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:46.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:46 smithi081 bash[23455]: cluster 2024-09-16T05:24:45.390937+0000 mgr.a (mgr.14150) 303 : cluster [DBG] pgmap v255: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:47.994 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:47 smithi167 bash[23275]: audit 2024-09-16T05:24:46.704385+0000 mon.a (mon.0) 811 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:47.994 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:47 smithi167 bash[23275]: audit 2024-09-16T05:24:46.713314+0000 mon.a (mon.0) 812 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:47.994 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:47 smithi167 bash[23275]: audit 2024-09-16T05:24:46.723015+0000 mon.a (mon.0) 813 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:48.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:47 smithi029 bash[22744]: audit 2024-09-16T05:24:46.704385+0000 mon.a (mon.0) 811 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:48.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:47 smithi029 bash[22744]: audit 2024-09-16T05:24:46.713314+0000 mon.a (mon.0) 812 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:48.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:47 smithi029 bash[22744]: audit 2024-09-16T05:24:46.723015+0000 mon.a (mon.0) 813 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:48.120 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:47 smithi081 bash[23455]: audit 2024-09-16T05:24:46.704385+0000 mon.a (mon.0) 811 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:48.120 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:47 smithi081 bash[23455]: audit 2024-09-16T05:24:46.713314+0000 mon.a (mon.0) 812 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:48.121 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:47 smithi081 bash[23455]: audit 2024-09-16T05:24:46.723015+0000 mon.a (mon.0) 813 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:48.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:48 smithi167 bash[23275]: cluster 2024-09-16T05:24:47.391485+0000 mgr.a (mgr.14150) 304 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:49.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:48 smithi029 bash[22744]: cluster 2024-09-16T05:24:47.391485+0000 mgr.a (mgr.14150) 304 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:49.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:48 smithi081 bash[23455]: cluster 2024-09-16T05:24:47.391485+0000 mgr.a (mgr.14150) 304 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:50.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:50 smithi167 bash[23275]: cluster 2024-09-16T05:24:49.392004+0000 mgr.a (mgr.14150) 305 : cluster [DBG] pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:51.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:50 smithi029 bash[22744]: cluster 2024-09-16T05:24:49.392004+0000 mgr.a (mgr.14150) 305 : cluster [DBG] pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:51.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:50 smithi081 bash[23455]: cluster 2024-09-16T05:24:49.392004+0000 mgr.a (mgr.14150) 305 : cluster [DBG] pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:52.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:52 smithi167 bash[23275]: cluster 2024-09-16T05:24:51.392516+0000 mgr.a (mgr.14150) 306 : cluster [DBG] pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:53.068 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:52 smithi029 bash[22744]: cluster 2024-09-16T05:24:51.392516+0000 mgr.a (mgr.14150) 306 : cluster [DBG] pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:53.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:52 smithi081 bash[23455]: cluster 2024-09-16T05:24:51.392516+0000 mgr.a (mgr.14150) 306 : cluster [DBG] pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:53.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:53 smithi167 bash[23275]: audit 2024-09-16T05:24:53.703177+0000 mon.c (mon.1) 11 : audit [INF] from='osd.5 [v2:172.21.15.167:6808/1389889963,v1:172.21.15.167:6809/1389889963]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-16T05:24:53.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:53 smithi167 bash[23275]: audit 2024-09-16T05:24:53.703859+0000 mon.a (mon.0) 814 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-16T05:24:54.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:53 smithi029 bash[22744]: audit 2024-09-16T05:24:53.703177+0000 mon.c (mon.1) 11 : audit [INF] from='osd.5 [v2:172.21.15.167:6808/1389889963,v1:172.21.15.167:6809/1389889963]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-16T05:24:54.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:53 smithi029 bash[22744]: audit 2024-09-16T05:24:53.703859+0000 mon.a (mon.0) 814 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-16T05:24:54.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:53 smithi081 bash[23455]: audit 2024-09-16T05:24:53.703177+0000 mon.c (mon.1) 11 : audit [INF] from='osd.5 [v2:172.21.15.167:6808/1389889963,v1:172.21.15.167:6809/1389889963]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-16T05:24:54.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:53 smithi081 bash[23455]: audit 2024-09-16T05:24:53.703859+0000 mon.a (mon.0) 814 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-16T05:24:54.908 INFO:teuthology.orchestra.run.smithi167.stdout:Created osd(s) 5 on host 'smithi167' 2024-09-16T05:24:55.003 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:54 smithi167 bash[23275]: cluster 2024-09-16T05:24:53.393066+0000 mgr.a (mgr.14150) 307 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:55.003 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:54 smithi167 bash[23275]: audit 2024-09-16T05:24:53.740547+0000 mon.a (mon.0) 815 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-16T05:24:55.004 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:54 smithi167 bash[23275]: cluster 2024-09-16T05:24:53.745067+0000 mon.a (mon.0) 816 : cluster [DBG] osdmap e40: 6 total, 5 up, 6 in 2024-09-16T05:24:55.004 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:54 smithi167 bash[23275]: audit 2024-09-16T05:24:53.745620+0000 mon.a (mon.0) 817 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T05:24:55.004 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:54 smithi167 bash[23275]: audit 2024-09-16T05:24:53.748123+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.167:6808/1389889963,v1:172.21.15.167:6809/1389889963]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]: dispatch 2024-09-16T05:24:55.004 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:54 smithi167 bash[23275]: audit 2024-09-16T05:24:53.748767+0000 mon.a (mon.0) 818 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]: dispatch 2024-09-16T05:24:55.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:54 smithi029 bash[22744]: cluster 2024-09-16T05:24:53.393066+0000 mgr.a (mgr.14150) 307 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:55.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:54 smithi029 bash[22744]: audit 2024-09-16T05:24:53.740547+0000 mon.a (mon.0) 815 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-16T05:24:55.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:54 smithi029 bash[22744]: cluster 2024-09-16T05:24:53.745067+0000 mon.a (mon.0) 816 : cluster [DBG] osdmap e40: 6 total, 5 up, 6 in 2024-09-16T05:24:55.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:54 smithi029 bash[22744]: audit 2024-09-16T05:24:53.745620+0000 mon.a (mon.0) 817 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T05:24:55.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:54 smithi029 bash[22744]: audit 2024-09-16T05:24:53.748123+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.167:6808/1389889963,v1:172.21.15.167:6809/1389889963]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]: dispatch 2024-09-16T05:24:55.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:54 smithi029 bash[22744]: audit 2024-09-16T05:24:53.748767+0000 mon.a (mon.0) 818 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]: dispatch 2024-09-16T05:24:55.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:54 smithi081 bash[23455]: cluster 2024-09-16T05:24:53.393066+0000 mgr.a (mgr.14150) 307 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:55.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:54 smithi081 bash[23455]: audit 2024-09-16T05:24:53.740547+0000 mon.a (mon.0) 815 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-16T05:24:55.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:54 smithi081 bash[23455]: cluster 2024-09-16T05:24:53.745067+0000 mon.a (mon.0) 816 : cluster [DBG] osdmap e40: 6 total, 5 up, 6 in 2024-09-16T05:24:55.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:54 smithi081 bash[23455]: audit 2024-09-16T05:24:53.745620+0000 mon.a (mon.0) 817 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T05:24:55.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:54 smithi081 bash[23455]: audit 2024-09-16T05:24:53.748123+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.167:6808/1389889963,v1:172.21.15.167:6809/1389889963]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]: dispatch 2024-09-16T05:24:55.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:54 smithi081 bash[23455]: audit 2024-09-16T05:24:53.748767+0000 mon.a (mon.0) 818 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]: dispatch 2024-09-16T05:24:55.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:55 smithi167 bash[23275]: audit 2024-09-16T05:24:54.743289+0000 mon.a (mon.0) 819 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]': finished 2024-09-16T05:24:55.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:55 smithi167 bash[23275]: cluster 2024-09-16T05:24:54.748488+0000 mon.a (mon.0) 820 : cluster [DBG] osdmap e41: 6 total, 5 up, 6 in 2024-09-16T05:24:55.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:55 smithi167 bash[23275]: audit 2024-09-16T05:24:54.749302+0000 mon.a (mon.0) 821 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T05:24:55.992 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:55 smithi167 bash[23275]: audit 2024-09-16T05:24:54.757897+0000 mon.a (mon.0) 822 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T05:24:55.993 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:55 smithi167 bash[23275]: audit 2024-09-16T05:24:54.836628+0000 mon.a (mon.0) 823 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:24:55.993 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:55 smithi167 bash[23275]: audit 2024-09-16T05:24:54.842151+0000 mon.a (mon.0) 824 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-16T05:24:55.993 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:55 smithi167 bash[23275]: audit 2024-09-16T05:24:54.861373+0000 mon.a (mon.0) 825 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:55.993 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:55 smithi167 bash[23275]: audit 2024-09-16T05:24:54.863948+0000 mon.a (mon.0) 826 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-16T05:24:55.993 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:55 smithi167 bash[23275]: audit 2024-09-16T05:24:54.909644+0000 mon.a (mon.0) 827 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:55.993 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:55 smithi167 bash[23275]: cephadm 2024-09-16T05:24:54.911134+0000 mgr.a (mgr.14150) 308 : cephadm [INF] Adjusting osd_memory_target on smithi167 to 10168M 2024-09-16T05:24:55.993 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:55 smithi167 bash[23275]: audit 2024-09-16T05:24:54.961776+0000 mon.a (mon.0) 828 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:55.993 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:55 smithi167 bash[23275]: audit 2024-09-16T05:24:54.964539+0000 mon.a (mon.0) 829 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:24:55.993 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:55 smithi167 bash[23275]: audit 2024-09-16T05:24:54.965975+0000 mon.a (mon.0) 830 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:24:55.993 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:55 smithi167 bash[23275]: audit 2024-09-16T05:24:55.007144+0000 mon.a (mon.0) 831 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:55.993 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:55 smithi167 bash[23275]: audit 2024-09-16T05:24:55.227584+0000 mon.a (mon.0) 832 : audit [INF] from='osd.5 ' entity='osd.5' 2024-09-16T05:24:55.996 DEBUG:teuthology.orchestra.run.smithi167:osd.5> sudo journalctl -f -n 0 -u ceph-825322c2-73ea-11ef-bceb-c7b262605968@osd.5.service 2024-09-16T05:24:56.000 INFO:tasks.cephadm:Waiting for 6 OSDs to come up... 2024-09-16T05:24:56.001 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-16T05:24:56.009 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:55 smithi029 bash[22744]: audit 2024-09-16T05:24:54.743289+0000 mon.a (mon.0) 819 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]': finished 2024-09-16T05:24:56.010 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:55 smithi029 bash[22744]: cluster 2024-09-16T05:24:54.748488+0000 mon.a (mon.0) 820 : cluster [DBG] osdmap e41: 6 total, 5 up, 6 in 2024-09-16T05:24:56.010 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:55 smithi029 bash[22744]: audit 2024-09-16T05:24:54.749302+0000 mon.a (mon.0) 821 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T05:24:56.010 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:55 smithi029 bash[22744]: audit 2024-09-16T05:24:54.757897+0000 mon.a (mon.0) 822 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T05:24:56.010 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:55 smithi029 bash[22744]: audit 2024-09-16T05:24:54.836628+0000 mon.a (mon.0) 823 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:24:56.010 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:55 smithi029 bash[22744]: audit 2024-09-16T05:24:54.842151+0000 mon.a (mon.0) 824 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-16T05:24:56.010 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:55 smithi029 bash[22744]: audit 2024-09-16T05:24:54.861373+0000 mon.a (mon.0) 825 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:56.010 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:55 smithi029 bash[22744]: audit 2024-09-16T05:24:54.863948+0000 mon.a (mon.0) 826 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-16T05:24:56.010 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:55 smithi029 bash[22744]: audit 2024-09-16T05:24:54.909644+0000 mon.a (mon.0) 827 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:56.011 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:55 smithi029 bash[22744]: cephadm 2024-09-16T05:24:54.911134+0000 mgr.a (mgr.14150) 308 : cephadm [INF] Adjusting osd_memory_target on smithi167 to 10168M 2024-09-16T05:24:56.011 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:55 smithi029 bash[22744]: audit 2024-09-16T05:24:54.961776+0000 mon.a (mon.0) 828 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:56.011 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:55 smithi029 bash[22744]: audit 2024-09-16T05:24:54.964539+0000 mon.a (mon.0) 829 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:24:56.011 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:55 smithi029 bash[22744]: audit 2024-09-16T05:24:54.965975+0000 mon.a (mon.0) 830 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:24:56.011 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:55 smithi029 bash[22744]: audit 2024-09-16T05:24:55.007144+0000 mon.a (mon.0) 831 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:56.011 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:55 smithi029 bash[22744]: audit 2024-09-16T05:24:55.227584+0000 mon.a (mon.0) 832 : audit [INF] from='osd.5 ' entity='osd.5' 2024-09-16T05:24:56.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:55 smithi081 bash[23455]: audit 2024-09-16T05:24:54.743289+0000 mon.a (mon.0) 819 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]': finished 2024-09-16T05:24:56.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:55 smithi081 bash[23455]: cluster 2024-09-16T05:24:54.748488+0000 mon.a (mon.0) 820 : cluster [DBG] osdmap e41: 6 total, 5 up, 6 in 2024-09-16T05:24:56.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:55 smithi081 bash[23455]: audit 2024-09-16T05:24:54.749302+0000 mon.a (mon.0) 821 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T05:24:56.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:55 smithi081 bash[23455]: audit 2024-09-16T05:24:54.757897+0000 mon.a (mon.0) 822 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T05:24:56.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:55 smithi081 bash[23455]: audit 2024-09-16T05:24:54.836628+0000 mon.a (mon.0) 823 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:24:56.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:55 smithi081 bash[23455]: audit 2024-09-16T05:24:54.842151+0000 mon.a (mon.0) 824 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-16T05:24:56.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:55 smithi081 bash[23455]: audit 2024-09-16T05:24:54.861373+0000 mon.a (mon.0) 825 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:56.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:55 smithi081 bash[23455]: audit 2024-09-16T05:24:54.863948+0000 mon.a (mon.0) 826 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-16T05:24:56.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:55 smithi081 bash[23455]: audit 2024-09-16T05:24:54.909644+0000 mon.a (mon.0) 827 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:56.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:55 smithi081 bash[23455]: cephadm 2024-09-16T05:24:54.911134+0000 mgr.a (mgr.14150) 308 : cephadm [INF] Adjusting osd_memory_target on smithi167 to 10168M 2024-09-16T05:24:56.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:55 smithi081 bash[23455]: audit 2024-09-16T05:24:54.961776+0000 mon.a (mon.0) 828 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:56.119 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:55 smithi081 bash[23455]: audit 2024-09-16T05:24:54.964539+0000 mon.a (mon.0) 829 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:24:56.119 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:55 smithi081 bash[23455]: audit 2024-09-16T05:24:54.965975+0000 mon.a (mon.0) 830 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:24:56.119 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:55 smithi081 bash[23455]: audit 2024-09-16T05:24:55.007144+0000 mon.a (mon.0) 831 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:24:56.119 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:55 smithi081 bash[23455]: audit 2024-09-16T05:24:55.227584+0000 mon.a (mon.0) 832 : audit [INF] from='osd.5 ' entity='osd.5' 2024-09-16T05:24:57.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:56 smithi029 bash[22744]: cluster 2024-09-16T05:24:54.672448+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T05:24:57.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:56 smithi029 bash[22744]: cluster 2024-09-16T05:24:54.672632+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T05:24:57.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:56 smithi029 bash[22744]: cluster 2024-09-16T05:24:55.393546+0000 mgr.a (mgr.14150) 309 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:57.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:56 smithi029 bash[22744]: audit 2024-09-16T05:24:55.757077+0000 mon.a (mon.0) 833 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T05:24:57.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:56 smithi029 bash[22744]: cluster 2024-09-16T05:24:55.762695+0000 mon.a (mon.0) 834 : cluster [INF] osd.5 [v2:172.21.15.167:6808/1389889963,v1:172.21.15.167:6809/1389889963] boot 2024-09-16T05:24:57.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:56 smithi029 bash[22744]: cluster 2024-09-16T05:24:55.762738+0000 mon.a (mon.0) 835 : cluster [DBG] osdmap e42: 6 total, 6 up, 6 in 2024-09-16T05:24:57.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:56 smithi029 bash[22744]: audit 2024-09-16T05:24:55.762878+0000 mon.a (mon.0) 836 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T05:24:57.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:56 smithi081 bash[23455]: cluster 2024-09-16T05:24:54.672448+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T05:24:57.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:56 smithi081 bash[23455]: cluster 2024-09-16T05:24:54.672632+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T05:24:57.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:56 smithi081 bash[23455]: cluster 2024-09-16T05:24:55.393546+0000 mgr.a (mgr.14150) 309 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:57.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:56 smithi081 bash[23455]: audit 2024-09-16T05:24:55.757077+0000 mon.a (mon.0) 833 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T05:24:57.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:56 smithi081 bash[23455]: cluster 2024-09-16T05:24:55.762695+0000 mon.a (mon.0) 834 : cluster [INF] osd.5 [v2:172.21.15.167:6808/1389889963,v1:172.21.15.167:6809/1389889963] boot 2024-09-16T05:24:57.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:56 smithi081 bash[23455]: cluster 2024-09-16T05:24:55.762738+0000 mon.a (mon.0) 835 : cluster [DBG] osdmap e42: 6 total, 6 up, 6 in 2024-09-16T05:24:57.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:56 smithi081 bash[23455]: audit 2024-09-16T05:24:55.762878+0000 mon.a (mon.0) 836 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T05:24:57.209 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:56 smithi167 bash[23275]: cluster 2024-09-16T05:24:54.672448+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T05:24:57.209 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:56 smithi167 bash[23275]: cluster 2024-09-16T05:24:54.672632+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T05:24:57.209 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:56 smithi167 bash[23275]: cluster 2024-09-16T05:24:55.393546+0000 mgr.a (mgr.14150) 309 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 156 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:24:57.209 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:56 smithi167 bash[23275]: audit 2024-09-16T05:24:55.757077+0000 mon.a (mon.0) 833 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T05:24:57.209 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:56 smithi167 bash[23275]: cluster 2024-09-16T05:24:55.762695+0000 mon.a (mon.0) 834 : cluster [INF] osd.5 [v2:172.21.15.167:6808/1389889963,v1:172.21.15.167:6809/1389889963] boot 2024-09-16T05:24:57.209 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:56 smithi167 bash[23275]: cluster 2024-09-16T05:24:55.762738+0000 mon.a (mon.0) 835 : cluster [DBG] osdmap e42: 6 total, 6 up, 6 in 2024-09-16T05:24:57.209 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:56 smithi167 bash[23275]: audit 2024-09-16T05:24:55.762878+0000 mon.a (mon.0) 836 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T05:24:58.056 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:57 smithi167 bash[23275]: cluster 2024-09-16T05:24:56.768525+0000 mon.a (mon.0) 837 : cluster [DBG] osdmap e43: 6 total, 6 up, 6 in 2024-09-16T05:24:58.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:57 smithi029 bash[22744]: cluster 2024-09-16T05:24:56.768525+0000 mon.a (mon.0) 837 : cluster [DBG] osdmap e43: 6 total, 6 up, 6 in 2024-09-16T05:24:58.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:57 smithi081 bash[23455]: cluster 2024-09-16T05:24:56.768525+0000 mon.a (mon.0) 837 : cluster [DBG] osdmap e43: 6 total, 6 up, 6 in 2024-09-16T05:24:59.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:58 smithi029 bash[22744]: cluster 2024-09-16T05:24:57.394010+0000 mgr.a (mgr.14150) 310 : cluster [DBG] pgmap v265: 1 pgs: 1 remapped+peering; 577 KiB data, 182 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:24:59.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:58 smithi029 bash[22744]: cluster 2024-09-16T05:24:57.777527+0000 mon.a (mon.0) 838 : cluster [DBG] osdmap e44: 6 total, 6 up, 6 in 2024-09-16T05:24:59.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:58 smithi081 bash[23455]: cluster 2024-09-16T05:24:57.394010+0000 mgr.a (mgr.14150) 310 : cluster [DBG] pgmap v265: 1 pgs: 1 remapped+peering; 577 KiB data, 182 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:24:59.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:58 smithi081 bash[23455]: cluster 2024-09-16T05:24:57.777527+0000 mon.a (mon.0) 838 : cluster [DBG] osdmap e44: 6 total, 6 up, 6 in 2024-09-16T05:24:59.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:58 smithi167 bash[23275]: cluster 2024-09-16T05:24:57.394010+0000 mgr.a (mgr.14150) 310 : cluster [DBG] pgmap v265: 1 pgs: 1 remapped+peering; 577 KiB data, 182 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:24:59.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:58 smithi167 bash[23275]: cluster 2024-09-16T05:24:57.777527+0000 mon.a (mon.0) 838 : cluster [DBG] osdmap e44: 6 total, 6 up, 6 in 2024-09-16T05:25:00.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:24:59 smithi029 bash[22744]: cluster 2024-09-16T05:24:58.776860+0000 mon.a (mon.0) 839 : cluster [DBG] osdmap e45: 6 total, 6 up, 6 in 2024-09-16T05:25:00.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:24:59 smithi081 bash[23455]: cluster 2024-09-16T05:24:58.776860+0000 mon.a (mon.0) 839 : cluster [DBG] osdmap e45: 6 total, 6 up, 6 in 2024-09-16T05:25:00.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:24:59 smithi167 bash[23275]: cluster 2024-09-16T05:24:58.776860+0000 mon.a (mon.0) 839 : cluster [DBG] osdmap e45: 6 total, 6 up, 6 in 2024-09-16T05:25:00.741 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:25:01.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:00 smithi029 bash[22744]: cluster 2024-09-16T05:24:59.394670+0000 mgr.a (mgr.14150) 311 : cluster [DBG] pgmap v268: 1 pgs: 1 remapped+peering; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:01.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:00 smithi029 bash[22744]: cluster 2024-09-16T05:24:59.794714+0000 mon.a (mon.0) 840 : cluster [DBG] osdmap e46: 6 total, 6 up, 6 in 2024-09-16T05:25:01.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:00 smithi081 bash[23455]: cluster 2024-09-16T05:24:59.394670+0000 mgr.a (mgr.14150) 311 : cluster [DBG] pgmap v268: 1 pgs: 1 remapped+peering; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:01.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:00 smithi081 bash[23455]: cluster 2024-09-16T05:24:59.794714+0000 mon.a (mon.0) 840 : cluster [DBG] osdmap e46: 6 total, 6 up, 6 in 2024-09-16T05:25:01.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:00 smithi167 bash[23275]: cluster 2024-09-16T05:24:59.394670+0000 mgr.a (mgr.14150) 311 : cluster [DBG] pgmap v268: 1 pgs: 1 remapped+peering; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:01.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:00 smithi167 bash[23275]: cluster 2024-09-16T05:24:59.794714+0000 mon.a (mon.0) 840 : cluster [DBG] osdmap e46: 6 total, 6 up, 6 in 2024-09-16T05:25:02.604 INFO:teuthology.orchestra.run.smithi029.stdout: 2024-09-16T05:25:03.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:02 smithi167 bash[23275]: cluster 2024-09-16T05:25:01.395292+0000 mgr.a (mgr.14150) 312 : cluster [DBG] pgmap v270: 1 pgs: 1 remapped+peering; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:03.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:02 smithi167 bash[23275]: audit 2024-09-16T05:25:01.874015+0000 mon.a (mon.0) 841 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:03.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:02 smithi167 bash[23275]: audit 2024-09-16T05:25:01.879109+0000 mon.a (mon.0) 842 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:03.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:02 smithi167 bash[23275]: audit 2024-09-16T05:25:01.886656+0000 mon.a (mon.0) 843 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:03.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:02 smithi167 bash[23275]: audit 2024-09-16T05:25:02.607525+0000 mon.a (mon.0) 844 : audit [DBG] from='client.? 172.21.15.29:0/1712586233' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-16T05:25:03.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:02 smithi029 bash[22744]: cluster 2024-09-16T05:25:01.395292+0000 mgr.a (mgr.14150) 312 : cluster [DBG] pgmap v270: 1 pgs: 1 remapped+peering; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:03.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:02 smithi029 bash[22744]: audit 2024-09-16T05:25:01.874015+0000 mon.a (mon.0) 841 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:03.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:02 smithi029 bash[22744]: audit 2024-09-16T05:25:01.879109+0000 mon.a (mon.0) 842 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:03.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:02 smithi029 bash[22744]: audit 2024-09-16T05:25:01.886656+0000 mon.a (mon.0) 843 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:03.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:02 smithi029 bash[22744]: audit 2024-09-16T05:25:02.607525+0000 mon.a (mon.0) 844 : audit [DBG] from='client.? 172.21.15.29:0/1712586233' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-16T05:25:03.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:02 smithi081 bash[23455]: cluster 2024-09-16T05:25:01.395292+0000 mgr.a (mgr.14150) 312 : cluster [DBG] pgmap v270: 1 pgs: 1 remapped+peering; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:03.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:02 smithi081 bash[23455]: audit 2024-09-16T05:25:01.874015+0000 mon.a (mon.0) 841 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:03.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:02 smithi081 bash[23455]: audit 2024-09-16T05:25:01.879109+0000 mon.a (mon.0) 842 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:03.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:02 smithi081 bash[23455]: audit 2024-09-16T05:25:01.886656+0000 mon.a (mon.0) 843 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:03.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:02 smithi081 bash[23455]: audit 2024-09-16T05:25:02.607525+0000 mon.a (mon.0) 844 : audit [DBG] from='client.? 172.21.15.29:0/1712586233' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-16T05:25:03.515 INFO:teuthology.orchestra.run.smithi029.stdout:{"epoch":46,"num_osds":6,"num_up_osds":6,"osd_up_since":1726464295,"num_in_osds":6,"osd_in_since":1726464265,"num_remapped_pgs":0} 2024-09-16T05:25:03.516 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-16T05:25:04.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:04 smithi167 bash[23275]: cluster 2024-09-16T05:25:03.395894+0000 mgr.a (mgr.14150) 313 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-16T05:25:04.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:04 smithi167 bash[23275]: audit 2024-09-16T05:25:03.719745+0000 mon.a (mon.0) 845 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:04.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:04 smithi167 bash[23275]: audit 2024-09-16T05:25:03.727583+0000 mon.a (mon.0) 846 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:04.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:04 smithi167 bash[23275]: audit 2024-09-16T05:25:03.732307+0000 mon.a (mon.0) 847 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:25:04.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:04 smithi167 bash[23275]: audit 2024-09-16T05:25:03.737346+0000 mon.a (mon.0) 848 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:04.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:04 smithi167 bash[23275]: audit 2024-09-16T05:25:03.742580+0000 mon.a (mon.0) 849 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:25:04.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:04 smithi167 bash[23275]: audit 2024-09-16T05:25:03.744082+0000 mon.a (mon.0) 850 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:25:04.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:04 smithi167 bash[23275]: audit 2024-09-16T05:25:03.752982+0000 mon.a (mon.0) 851 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:05.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:04 smithi029 bash[22744]: cluster 2024-09-16T05:25:03.395894+0000 mgr.a (mgr.14150) 313 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-16T05:25:05.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:04 smithi029 bash[22744]: audit 2024-09-16T05:25:03.719745+0000 mon.a (mon.0) 845 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:05.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:04 smithi029 bash[22744]: audit 2024-09-16T05:25:03.727583+0000 mon.a (mon.0) 846 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:05.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:04 smithi029 bash[22744]: audit 2024-09-16T05:25:03.732307+0000 mon.a (mon.0) 847 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:25:05.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:04 smithi029 bash[22744]: audit 2024-09-16T05:25:03.737346+0000 mon.a (mon.0) 848 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:05.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:04 smithi029 bash[22744]: audit 2024-09-16T05:25:03.742580+0000 mon.a (mon.0) 849 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:25:05.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:04 smithi029 bash[22744]: audit 2024-09-16T05:25:03.744082+0000 mon.a (mon.0) 850 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:25:05.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:04 smithi029 bash[22744]: audit 2024-09-16T05:25:03.752982+0000 mon.a (mon.0) 851 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:05.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:04 smithi081 bash[23455]: cluster 2024-09-16T05:25:03.395894+0000 mgr.a (mgr.14150) 313 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-16T05:25:05.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:04 smithi081 bash[23455]: audit 2024-09-16T05:25:03.719745+0000 mon.a (mon.0) 845 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:05.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:04 smithi081 bash[23455]: audit 2024-09-16T05:25:03.727583+0000 mon.a (mon.0) 846 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:05.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:04 smithi081 bash[23455]: audit 2024-09-16T05:25:03.732307+0000 mon.a (mon.0) 847 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:25:05.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:04 smithi081 bash[23455]: audit 2024-09-16T05:25:03.737346+0000 mon.a (mon.0) 848 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:05.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:04 smithi081 bash[23455]: audit 2024-09-16T05:25:03.742580+0000 mon.a (mon.0) 849 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:25:05.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:04 smithi081 bash[23455]: audit 2024-09-16T05:25:03.744082+0000 mon.a (mon.0) 850 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:25:05.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:04 smithi081 bash[23455]: audit 2024-09-16T05:25:03.752982+0000 mon.a (mon.0) 851 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:06.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:05 smithi029 bash[22744]: audit 2024-09-16T05:25:04.755880+0000 mon.a (mon.0) 852 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:06.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:05 smithi029 bash[22744]: audit 2024-09-16T05:25:04.764883+0000 mon.a (mon.0) 853 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:06.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:05 smithi029 bash[22744]: audit 2024-09-16T05:25:04.769545+0000 mon.a (mon.0) 854 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:25:06.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:05 smithi029 bash[22744]: audit 2024-09-16T05:25:04.774746+0000 mon.a (mon.0) 855 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:06.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:05 smithi029 bash[22744]: audit 2024-09-16T05:25:04.781075+0000 mon.a (mon.0) 856 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:25:06.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:05 smithi029 bash[22744]: audit 2024-09-16T05:25:04.782810+0000 mon.a (mon.0) 857 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:25:06.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:05 smithi029 bash[22744]: audit 2024-09-16T05:25:04.793756+0000 mon.a (mon.0) 858 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:06.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:05 smithi081 bash[23455]: audit 2024-09-16T05:25:04.755880+0000 mon.a (mon.0) 852 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:06.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:05 smithi081 bash[23455]: audit 2024-09-16T05:25:04.764883+0000 mon.a (mon.0) 853 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:06.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:05 smithi081 bash[23455]: audit 2024-09-16T05:25:04.769545+0000 mon.a (mon.0) 854 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:25:06.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:05 smithi081 bash[23455]: audit 2024-09-16T05:25:04.774746+0000 mon.a (mon.0) 855 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:06.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:05 smithi081 bash[23455]: audit 2024-09-16T05:25:04.781075+0000 mon.a (mon.0) 856 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:25:06.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:05 smithi081 bash[23455]: audit 2024-09-16T05:25:04.782810+0000 mon.a (mon.0) 857 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:25:06.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:05 smithi081 bash[23455]: audit 2024-09-16T05:25:04.793756+0000 mon.a (mon.0) 858 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:06.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:05 smithi167 bash[23275]: audit 2024-09-16T05:25:04.755880+0000 mon.a (mon.0) 852 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:06.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:05 smithi167 bash[23275]: audit 2024-09-16T05:25:04.764883+0000 mon.a (mon.0) 853 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:06.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:05 smithi167 bash[23275]: audit 2024-09-16T05:25:04.769545+0000 mon.a (mon.0) 854 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:25:06.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:05 smithi167 bash[23275]: audit 2024-09-16T05:25:04.774746+0000 mon.a (mon.0) 855 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:06.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:05 smithi167 bash[23275]: audit 2024-09-16T05:25:04.781075+0000 mon.a (mon.0) 856 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:25:06.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:05 smithi167 bash[23275]: audit 2024-09-16T05:25:04.782810+0000 mon.a (mon.0) 857 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:25:06.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:05 smithi167 bash[23275]: audit 2024-09-16T05:25:04.793756+0000 mon.a (mon.0) 858 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:07.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:06 smithi029 bash[22744]: cluster 2024-09-16T05:25:05.396623+0000 mgr.a (mgr.14150) 314 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 76 KiB/s, 0 objects/s recovering 2024-09-16T05:25:07.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:06 smithi081 bash[23455]: cluster 2024-09-16T05:25:05.396623+0000 mgr.a (mgr.14150) 314 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 76 KiB/s, 0 objects/s recovering 2024-09-16T05:25:07.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:06 smithi167 bash[23275]: cluster 2024-09-16T05:25:05.396623+0000 mgr.a (mgr.14150) 314 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 76 KiB/s, 0 objects/s recovering 2024-09-16T05:25:08.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:07 smithi167 bash[23275]: audit 2024-09-16T05:25:06.927055+0000 mon.a (mon.0) 859 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:08.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:07 smithi167 bash[23275]: audit 2024-09-16T05:25:06.935663+0000 mon.a (mon.0) 860 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:08.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:07 smithi167 bash[23275]: audit 2024-09-16T05:25:06.945112+0000 mon.a (mon.0) 861 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:08.315 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:25:08.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:07 smithi029 bash[22744]: audit 2024-09-16T05:25:06.927055+0000 mon.a (mon.0) 859 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:08.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:07 smithi029 bash[22744]: audit 2024-09-16T05:25:06.935663+0000 mon.a (mon.0) 860 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:08.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:07 smithi029 bash[22744]: audit 2024-09-16T05:25:06.945112+0000 mon.a (mon.0) 861 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:08.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:07 smithi081 bash[23455]: audit 2024-09-16T05:25:06.927055+0000 mon.a (mon.0) 859 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:08.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:07 smithi081 bash[23455]: audit 2024-09-16T05:25:06.935663+0000 mon.a (mon.0) 860 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:08.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:07 smithi081 bash[23455]: audit 2024-09-16T05:25:06.945112+0000 mon.a (mon.0) 861 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:09.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:08 smithi167 bash[23275]: cluster 2024-09-16T05:25:07.397234+0000 mgr.a (mgr.14150) 315 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 67 KiB/s, 0 objects/s recovering 2024-09-16T05:25:09.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:08 smithi029 bash[22744]: cluster 2024-09-16T05:25:07.397234+0000 mgr.a (mgr.14150) 315 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 67 KiB/s, 0 objects/s recovering 2024-09-16T05:25:09.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:08 smithi081 bash[23455]: cluster 2024-09-16T05:25:07.397234+0000 mgr.a (mgr.14150) 315 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 67 KiB/s, 0 objects/s recovering 2024-09-16T05:25:10.209 INFO:teuthology.orchestra.run.smithi029.stdout: 2024-09-16T05:25:10.209 INFO:teuthology.orchestra.run.smithi029.stdout:{"epoch":46,"fsid":"825322c2-73ea-11ef-bceb-c7b262605968","created":"2024-09-16T05:16:01.138186+0000","modified":"2024-09-16T05:24:59.781557+0000","last_up_change":"2024-09-16T05:24:55.750699+0000","last_in_change":"2024-09-16T05:24:25.468274+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-16T05:22:17.935195+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"22","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":"e86d4117-b8c2-4588-8d46-7b44e45cfb5b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":28,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.29:6802","nonce":742799578},{"type":"v1","addr":"172.21.15.29:6803","nonce":742799578}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.29:6804","nonce":742799578},{"type":"v1","addr":"172.21.15.29:6805","nonce":742799578}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.29:6808","nonce":742799578},{"type":"v1","addr":"172.21.15.29:6809","nonce":742799578}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.29:6806","nonce":742799578},{"type":"v1","addr":"172.21.15.29:6807","nonce":742799578}]},"public_addr":"172.21.15.29:6803/742799578","cluster_addr":"172.21.15.29:6805/742799578","heartbeat_back_addr":"172.21.15.29:6809/742799578","heartbeat_front_addr":"172.21.15.29:6807/742799578","state":["exists","up"]},{"osd":1,"uuid":"55340442-35d7-4ff3-bd34-1099318086ee","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.29:6810","nonce":3972944792},{"type":"v1","addr":"172.21.15.29:6811","nonce":3972944792}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.29:6812","nonce":3972944792},{"type":"v1","addr":"172.21.15.29:6813","nonce":3972944792}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.29:6816","nonce":3972944792},{"type":"v1","addr":"172.21.15.29:6817","nonce":3972944792}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.29:6814","nonce":3972944792},{"type":"v1","addr":"172.21.15.29:6815","nonce":3972944792}]},"public_addr":"172.21.15.29:6811/3972944792","cluster_addr":"172.21.15.29:6813/3972944792","heartbeat_back_addr":"172.21.15.29:6817/3972944792","heartbeat_front_addr":"172.21.15.29:6815/3972944792","state":["exists","up"]},{"osd":2,"uuid":"547b547b-d335-4a7a-b4a2-0e165a5c528d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":20,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.81:6800","nonce":1522975439},{"type":"v1","addr":"172.21.15.81:6801","nonce":1522975439}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.81:6802","nonce":1522975439},{"type":"v1","addr":"172.21.15.81:6803","nonce":1522975439}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.81:6806","nonce":1522975439},{"type":"v1","addr":"172.21.15.81:6807","nonce":1522975439}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.81:6804","nonce":1522975439},{"type":"v1","addr":"172.21.15.81:6805","nonce":1522975439}]},"public_addr":"172.21.15.81:6801/1522975439","cluster_addr":"172.21.15.81:6803/1522975439","heartbeat_back_addr":"172.21.15.81:6807/1522975439","heartbeat_front_addr":"172.21.15.81:6805/1522975439","state":["exists","up"]},{"osd":3,"uuid":"4127cde4-9ec3-4580-90dd-d3e2f05e1333","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":45,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.81:6808","nonce":274505392},{"type":"v1","addr":"172.21.15.81:6809","nonce":274505392}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.81:6810","nonce":274505392},{"type":"v1","addr":"172.21.15.81:6811","nonce":274505392}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.81:6814","nonce":274505392},{"type":"v1","addr":"172.21.15.81:6815","nonce":274505392}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.81:6812","nonce":274505392},{"type":"v1","addr":"172.21.15.81:6813","nonce":274505392}]},"public_addr":"172.21.15.81:6809/274505392","cluster_addr":"172.21.15.81:6811/274505392","heartbeat_back_addr":"172.21.15.81:6815/274505392","heartbeat_front_addr":"172.21.15.81:6813/274505392","state":["exists","up"]},{"osd":4,"uuid":"fc697d4d-a6f5-4472-82b6-d6e51ccbab6a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6800","nonce":690822019},{"type":"v1","addr":"172.21.15.167:6801","nonce":690822019}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6802","nonce":690822019},{"type":"v1","addr":"172.21.15.167:6803","nonce":690822019}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6806","nonce":690822019},{"type":"v1","addr":"172.21.15.167:6807","nonce":690822019}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6804","nonce":690822019},{"type":"v1","addr":"172.21.15.167:6805","nonce":690822019}]},"public_addr":"172.21.15.167:6801/690822019","cluster_addr":"172.21.15.167:6803/690822019","heartbeat_back_addr":"172.21.15.167:6807/690822019","heartbeat_front_addr":"172.21.15.167:6805/690822019","state":["exists","up"]},{"osd":5,"uuid":"ddca3109-6cda-4962-bec3-2a3271911f17","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":42,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6808","nonce":1389889963},{"type":"v1","addr":"172.21.15.167:6809","nonce":1389889963}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6810","nonce":1389889963},{"type":"v1","addr":"172.21.15.167:6811","nonce":1389889963}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6814","nonce":1389889963},{"type":"v1","addr":"172.21.15.167:6815","nonce":1389889963}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6812","nonce":1389889963},{"type":"v1","addr":"172.21.15.167:6813","nonce":1389889963}]},"public_addr":"172.21.15.167:6809/1389889963","cluster_addr":"172.21.15.167:6811/1389889963","heartbeat_back_addr":"172.21.15.167:6815/1389889963","heartbeat_front_addr":"172.21.15.167:6813/1389889963","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T05:20:10.806530+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T05:21:21.234285+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T05:22:14.010089+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T05:23:09.882581+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T05:23:59.211024+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T05:24:54.672640+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.29:6800/1070064573":"2024-09-17T05:17:13.279161+0000","172.21.15.29:0/699026538":"2024-09-17T05:17:13.279161+0000","172.21.15.29:0/3832564813":"2024-09-17T05:17:13.279161+0000","172.21.15.29:6801/1070064573":"2024-09-17T05:17:13.279161+0000","172.21.15.29:0/745761345":"2024-09-17T05:17:13.279161+0000","172.21.15.29:0/1978393501":"2024-09-17T05:16:33.552180+0000","172.21.15.29:0/2352672393":"2024-09-17T05:16:33.552180+0000","172.21.15.29:6801/1655411013":"2024-09-17T05:16:33.552180+0000","172.21.15.29:6800/1655411013":"2024-09-17T05:16:33.552180+0000","172.21.15.29:0/3840049165":"2024-09-17T05:16:33.552180+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-16T05:25:11.034 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-09-16T05:22:17.935195+0000', 'flags': 1, 'flags_names': 'hashpspool', 'type': 1, 'size': 3, 'min_size': 2, 'crush_rule': 0, 'peering_crush_bucket_count': 0, 'peering_crush_bucket_target': 0, 'peering_crush_bucket_barrier': 0, 'peering_crush_bucket_mandatory_member': 2147483647, 'is_stretch_pool': False, 'object_hash': 2, 'pg_autoscale_mode': 'off', 'pg_num': 1, 'pg_placement_num': 1, 'pg_placement_num_target': 1, 'pg_num_target': 1, 'pg_num_pending': 1, 'last_pg_merge_meta': {'source_pgid': '0.0', 'ready_epoch': 0, 'last_epoch_started': 0, 'last_epoch_clean': 0, 'source_version': "0'0", 'target_version': "0'0"}, 'last_change': '22', 'last_force_op_resend': '0', 'last_force_op_resend_prenautilus': '0', 'last_force_op_resend_preluminous': '0', 'auid': 0, 'snap_mode': 'selfmanaged', 'snap_seq': 0, 'snap_epoch': 0, 'pool_snaps': [], 'removed_snaps': '[]', 'quota_max_bytes': 0, 'quota_max_objects': 0, 'tiers': [], 'tier_of': -1, 'read_tier': -1, 'write_tier': -1, 'cache_mode': 'none', 'target_max_bytes': 0, 'target_max_objects': 0, 'cache_target_dirty_ratio_micro': 400000, 'cache_target_dirty_high_ratio_micro': 600000, 'cache_target_full_ratio_micro': 800000, 'cache_min_flush_age': 0, 'cache_min_evict_age': 0, 'erasure_code_profile': '', 'hit_set_params': {'type': 'none'}, 'hit_set_period': 0, 'hit_set_count': 0, 'use_gmt_hitset': True, 'min_read_recency_for_promote': 0, 'min_write_recency_for_promote': 0, 'hit_set_grade_decay_rate': 0, 'hit_set_search_last_n': 0, 'grade_table': [], 'stripe_width': 0, 'expected_num_objects': 0, 'fast_read': False, 'options': {'pg_num_max': 32, 'pg_num_min': 1}, 'application_metadata': {'mgr': {}}, 'read_balance': {'score_type': 'Fair distribution', 'score_acting': 6, 'score_stable': 6, 'optimal_score': 0.5, 'raw_score_acting': 3, 'raw_score_stable': 3, 'primary_affinity_weighted': 1, 'average_primary_affinity': 1, 'average_primary_affinity_weighted': 1}}] 2024-09-16T05:25:11.034 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph osd pool get .mgr pg_num 2024-09-16T05:25:11.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:10 smithi167 bash[23275]: cluster 2024-09-16T05:25:09.397927+0000 mgr.a (mgr.14150) 316 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-16T05:25:11.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:10 smithi167 bash[23275]: audit 2024-09-16T05:25:10.210157+0000 mon.a (mon.0) 862 : audit [DBG] from='client.? 172.21.15.29:0/2700513000' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-16T05:25:11.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:10 smithi029 bash[22744]: cluster 2024-09-16T05:25:09.397927+0000 mgr.a (mgr.14150) 316 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-16T05:25:11.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:10 smithi029 bash[22744]: audit 2024-09-16T05:25:10.210157+0000 mon.a (mon.0) 862 : audit [DBG] from='client.? 172.21.15.29:0/2700513000' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-16T05:25:11.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:10 smithi081 bash[23455]: cluster 2024-09-16T05:25:09.397927+0000 mgr.a (mgr.14150) 316 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-16T05:25:11.368 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:10 smithi081 bash[23455]: audit 2024-09-16T05:25:10.210157+0000 mon.a (mon.0) 862 : audit [DBG] from='client.? 172.21.15.29:0/2700513000' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-16T05:25:13.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:12 smithi167 bash[23275]: cluster 2024-09-16T05:25:11.398534+0000 mgr.a (mgr.14150) 317 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 50 KiB/s, 0 objects/s recovering 2024-09-16T05:25:13.284 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:12 smithi029 bash[22744]: cluster 2024-09-16T05:25:11.398534+0000 mgr.a (mgr.14150) 317 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 50 KiB/s, 0 objects/s recovering 2024-09-16T05:25:13.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:12 smithi081 bash[23455]: cluster 2024-09-16T05:25:11.398534+0000 mgr.a (mgr.14150) 317 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 50 KiB/s, 0 objects/s recovering 2024-09-16T05:25:15.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:14 smithi167 bash[23275]: cluster 2024-09-16T05:25:13.399041+0000 mgr.a (mgr.14150) 318 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-16T05:25:15.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:14 smithi029 bash[22744]: cluster 2024-09-16T05:25:13.399041+0000 mgr.a (mgr.14150) 318 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-16T05:25:15.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:14 smithi081 bash[23455]: cluster 2024-09-16T05:25:13.399041+0000 mgr.a (mgr.14150) 318 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-16T05:25:15.785 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:25:17.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:16 smithi167 bash[23275]: cluster 2024-09-16T05:25:15.399697+0000 mgr.a (mgr.14150) 319 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:17.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:16 smithi029 bash[22744]: cluster 2024-09-16T05:25:15.399697+0000 mgr.a (mgr.14150) 319 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:17.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:16 smithi081 bash[23455]: cluster 2024-09-16T05:25:15.399697+0000 mgr.a (mgr.14150) 319 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:18.417 INFO:teuthology.orchestra.run.smithi029.stdout:pg_num: 1 2024-09-16T05:25:19.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:18 smithi029 bash[22744]: cluster 2024-09-16T05:25:17.400355+0000 mgr.a (mgr.14150) 320 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:19.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:18 smithi029 bash[22744]: audit 2024-09-16T05:25:18.419605+0000 mon.a (mon.0) 863 : audit [DBG] from='client.? 172.21.15.29:0/148562643' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-16T05:25:19.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:18 smithi167 bash[23275]: cluster 2024-09-16T05:25:17.400355+0000 mgr.a (mgr.14150) 320 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:19.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:18 smithi167 bash[23275]: audit 2024-09-16T05:25:18.419605+0000 mon.a (mon.0) 863 : audit [DBG] from='client.? 172.21.15.29:0/148562643' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-16T05:25:19.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:18 smithi081 bash[23455]: cluster 2024-09-16T05:25:17.400355+0000 mgr.a (mgr.14150) 320 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:19.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:18 smithi081 bash[23455]: audit 2024-09-16T05:25:18.419605+0000 mon.a (mon.0) 863 : audit [DBG] from='client.? 172.21.15.29:0/148562643' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-16T05:25:19.375 INFO:tasks.cephadm:Setting up client nodes... 2024-09-16T05:25:19.375 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-09-16T05:25:19.375 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-09-16T05:25:19.376 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph mgr dump --format=json 2024-09-16T05:25:21.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:20 smithi167 bash[23275]: cluster 2024-09-16T05:25:19.400820+0000 mgr.a (mgr.14150) 321 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:21.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:20 smithi029 bash[22744]: cluster 2024-09-16T05:25:19.400820+0000 mgr.a (mgr.14150) 321 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:21.366 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:20 smithi081 bash[23455]: cluster 2024-09-16T05:25:19.400820+0000 mgr.a (mgr.14150) 321 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:23.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:23 smithi029 bash[22744]: cluster 2024-09-16T05:25:21.401412+0000 mgr.a (mgr.14150) 322 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:23.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:23 smithi029 bash[22744]: audit 2024-09-16T05:25:22.072024+0000 mon.a (mon.0) 864 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:23.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:23 smithi029 bash[22744]: audit 2024-09-16T05:25:22.080332+0000 mon.a (mon.0) 865 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:23.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:23 smithi029 bash[22744]: audit 2024-09-16T05:25:22.089673+0000 mon.a (mon.0) 866 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:23.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:23 smithi081 bash[23455]: cluster 2024-09-16T05:25:21.401412+0000 mgr.a (mgr.14150) 322 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:23.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:23 smithi081 bash[23455]: audit 2024-09-16T05:25:22.072024+0000 mon.a (mon.0) 864 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:23.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:23 smithi081 bash[23455]: audit 2024-09-16T05:25:22.080332+0000 mon.a (mon.0) 865 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:23.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:23 smithi081 bash[23455]: audit 2024-09-16T05:25:22.089673+0000 mon.a (mon.0) 866 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:23.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:23 smithi167 bash[23275]: cluster 2024-09-16T05:25:21.401412+0000 mgr.a (mgr.14150) 322 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:23.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:23 smithi167 bash[23275]: audit 2024-09-16T05:25:22.072024+0000 mon.a (mon.0) 864 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:23.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:23 smithi167 bash[23275]: audit 2024-09-16T05:25:22.080332+0000 mon.a (mon.0) 865 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:23.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:23 smithi167 bash[23275]: audit 2024-09-16T05:25:22.089673+0000 mon.a (mon.0) 866 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:24.127 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:25:25.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:25 smithi081 bash[23455]: cluster 2024-09-16T05:25:23.401983+0000 mgr.a (mgr.14150) 323 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:25.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:25 smithi081 bash[23455]: audit 2024-09-16T05:25:24.356516+0000 mon.a (mon.0) 867 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:25.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:25 smithi081 bash[23455]: audit 2024-09-16T05:25:24.364632+0000 mon.a (mon.0) 868 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:25.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:25 smithi081 bash[23455]: audit 2024-09-16T05:25:24.373989+0000 mon.a (mon.0) 869 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:25.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:25 smithi029 bash[22744]: cluster 2024-09-16T05:25:23.401983+0000 mgr.a (mgr.14150) 323 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:25.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:25 smithi029 bash[22744]: audit 2024-09-16T05:25:24.356516+0000 mon.a (mon.0) 867 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:25.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:25 smithi029 bash[22744]: audit 2024-09-16T05:25:24.364632+0000 mon.a (mon.0) 868 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:25.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:25 smithi029 bash[22744]: audit 2024-09-16T05:25:24.373989+0000 mon.a (mon.0) 869 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:25.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:25 smithi167 bash[23275]: cluster 2024-09-16T05:25:23.401983+0000 mgr.a (mgr.14150) 323 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:25.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:25 smithi167 bash[23275]: audit 2024-09-16T05:25:24.356516+0000 mon.a (mon.0) 867 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:25.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:25 smithi167 bash[23275]: audit 2024-09-16T05:25:24.364632+0000 mon.a (mon.0) 868 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:25.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:25 smithi167 bash[23275]: audit 2024-09-16T05:25:24.373989+0000 mon.a (mon.0) 869 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:25.984 INFO:teuthology.orchestra.run.smithi029.stdout: 2024-09-16T05:25:26.261 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:26 smithi029 bash[22744]: audit 2024-09-16T05:25:25.976814+0000 mon.a (mon.0) 870 : audit [DBG] from='client.? 172.21.15.29:0/2823304296' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-16T05:25:26.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:26 smithi081 bash[23455]: audit 2024-09-16T05:25:25.976814+0000 mon.a (mon.0) 870 : audit [DBG] from='client.? 172.21.15.29:0/2823304296' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-16T05:25:26.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:26 smithi167 bash[23275]: audit 2024-09-16T05:25:25.976814+0000 mon.a (mon.0) 870 : audit [DBG] from='client.? 172.21.15.29:0/2823304296' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-16T05:25:26.925 INFO:teuthology.orchestra.run.smithi029.stdout:{"epoch":15,"flags":0,"active_gid":14150,"active_name":"a","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.29:6800","nonce":3310769577},{"type":"v1","addr":"172.21.15.29:6801","nonce":3310769577}]},"active_addr":"172.21.15.29:6801/3310769577","active_change":"2024-09-16T05:17:13.279369+0000","active_mgr_features":4540701547738038271,"available":true,"standbys":[{"gid":24107,"name":"b","mgr_features":4540701547738038271,"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.25.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:9.4.12","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.5.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.2.5","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.43.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}]}],"modules":["cephadm","dashboard","iostat","nfs","restful"],"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.25.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:9.4.12","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.5.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.2.5","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.43.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}],"services":{"dashboard":"https://172.21.15.29: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.29:0","nonce":4262735425}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.29:0","nonce":3156274718}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.29:0","nonce":3613899861}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.29:0","nonce":2757552233}]}]} 2024-09-16T05:25:26.929 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-09-16T05:25:26.930 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-09-16T05:25:26.930 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-16T05:25:27.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:27 smithi029 bash[22744]: cluster 2024-09-16T05:25:25.402489+0000 mgr.a (mgr.14150) 324 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:27.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:27 smithi081 bash[23455]: cluster 2024-09-16T05:25:25.402489+0000 mgr.a (mgr.14150) 324 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:27.493 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:27 smithi167 bash[23275]: cluster 2024-09-16T05:25:25.402489+0000 mgr.a (mgr.14150) 324 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:28.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:28 smithi167 bash[23275]: audit 2024-09-16T05:25:27.151754+0000 mon.a (mon.0) 871 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:28.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:28 smithi167 bash[23275]: audit 2024-09-16T05:25:27.157135+0000 mon.a (mon.0) 872 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:28.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:28 smithi167 bash[23275]: audit 2024-09-16T05:25:27.162239+0000 mon.a (mon.0) 873 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:28.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:28 smithi029 bash[22744]: audit 2024-09-16T05:25:27.151754+0000 mon.a (mon.0) 871 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:28.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:28 smithi029 bash[22744]: audit 2024-09-16T05:25:27.157135+0000 mon.a (mon.0) 872 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:28.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:28 smithi029 bash[22744]: audit 2024-09-16T05:25:27.162239+0000 mon.a (mon.0) 873 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:28.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:28 smithi081 bash[23455]: audit 2024-09-16T05:25:27.151754+0000 mon.a (mon.0) 871 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:28.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:28 smithi081 bash[23455]: audit 2024-09-16T05:25:27.157135+0000 mon.a (mon.0) 872 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:28.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:28 smithi081 bash[23455]: audit 2024-09-16T05:25:27.162239+0000 mon.a (mon.0) 873 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:29.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:29 smithi167 bash[23275]: cluster 2024-09-16T05:25:27.403025+0000 mgr.a (mgr.14150) 325 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:29.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:29 smithi029 bash[22744]: cluster 2024-09-16T05:25:27.403025+0000 mgr.a (mgr.14150) 325 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:29.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:29 smithi081 bash[23455]: cluster 2024-09-16T05:25:27.403025+0000 mgr.a (mgr.14150) 325 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:31.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:31 smithi167 bash[23275]: cluster 2024-09-16T05:25:29.403573+0000 mgr.a (mgr.14150) 326 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:31.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:31 smithi029 bash[22744]: cluster 2024-09-16T05:25:29.403573+0000 mgr.a (mgr.14150) 326 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:31.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:31 smithi081 bash[23455]: cluster 2024-09-16T05:25:29.403573+0000 mgr.a (mgr.14150) 326 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:31.687 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:25:33.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:33 smithi167 bash[23275]: cluster 2024-09-16T05:25:31.404126+0000 mgr.a (mgr.14150) 327 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:33.554 INFO:teuthology.orchestra.run.smithi029.stdout: 2024-09-16T05:25:33.555 INFO:teuthology.orchestra.run.smithi029.stdout:{"epoch":46,"fsid":"825322c2-73ea-11ef-bceb-c7b262605968","created":"2024-09-16T05:16:01.138186+0000","modified":"2024-09-16T05:24:59.781557+0000","last_up_change":"2024-09-16T05:24:55.750699+0000","last_in_change":"2024-09-16T05:24:25.468274+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-16T05:22:17.935195+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"22","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":"e86d4117-b8c2-4588-8d46-7b44e45cfb5b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":28,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.29:6802","nonce":742799578},{"type":"v1","addr":"172.21.15.29:6803","nonce":742799578}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.29:6804","nonce":742799578},{"type":"v1","addr":"172.21.15.29:6805","nonce":742799578}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.29:6808","nonce":742799578},{"type":"v1","addr":"172.21.15.29:6809","nonce":742799578}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.29:6806","nonce":742799578},{"type":"v1","addr":"172.21.15.29:6807","nonce":742799578}]},"public_addr":"172.21.15.29:6803/742799578","cluster_addr":"172.21.15.29:6805/742799578","heartbeat_back_addr":"172.21.15.29:6809/742799578","heartbeat_front_addr":"172.21.15.29:6807/742799578","state":["exists","up"]},{"osd":1,"uuid":"55340442-35d7-4ff3-bd34-1099318086ee","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.29:6810","nonce":3972944792},{"type":"v1","addr":"172.21.15.29:6811","nonce":3972944792}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.29:6812","nonce":3972944792},{"type":"v1","addr":"172.21.15.29:6813","nonce":3972944792}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.29:6816","nonce":3972944792},{"type":"v1","addr":"172.21.15.29:6817","nonce":3972944792}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.29:6814","nonce":3972944792},{"type":"v1","addr":"172.21.15.29:6815","nonce":3972944792}]},"public_addr":"172.21.15.29:6811/3972944792","cluster_addr":"172.21.15.29:6813/3972944792","heartbeat_back_addr":"172.21.15.29:6817/3972944792","heartbeat_front_addr":"172.21.15.29:6815/3972944792","state":["exists","up"]},{"osd":2,"uuid":"547b547b-d335-4a7a-b4a2-0e165a5c528d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":20,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.81:6800","nonce":1522975439},{"type":"v1","addr":"172.21.15.81:6801","nonce":1522975439}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.81:6802","nonce":1522975439},{"type":"v1","addr":"172.21.15.81:6803","nonce":1522975439}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.81:6806","nonce":1522975439},{"type":"v1","addr":"172.21.15.81:6807","nonce":1522975439}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.81:6804","nonce":1522975439},{"type":"v1","addr":"172.21.15.81:6805","nonce":1522975439}]},"public_addr":"172.21.15.81:6801/1522975439","cluster_addr":"172.21.15.81:6803/1522975439","heartbeat_back_addr":"172.21.15.81:6807/1522975439","heartbeat_front_addr":"172.21.15.81:6805/1522975439","state":["exists","up"]},{"osd":3,"uuid":"4127cde4-9ec3-4580-90dd-d3e2f05e1333","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":45,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.81:6808","nonce":274505392},{"type":"v1","addr":"172.21.15.81:6809","nonce":274505392}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.81:6810","nonce":274505392},{"type":"v1","addr":"172.21.15.81:6811","nonce":274505392}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.81:6814","nonce":274505392},{"type":"v1","addr":"172.21.15.81:6815","nonce":274505392}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.81:6812","nonce":274505392},{"type":"v1","addr":"172.21.15.81:6813","nonce":274505392}]},"public_addr":"172.21.15.81:6809/274505392","cluster_addr":"172.21.15.81:6811/274505392","heartbeat_back_addr":"172.21.15.81:6815/274505392","heartbeat_front_addr":"172.21.15.81:6813/274505392","state":["exists","up"]},{"osd":4,"uuid":"fc697d4d-a6f5-4472-82b6-d6e51ccbab6a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6800","nonce":690822019},{"type":"v1","addr":"172.21.15.167:6801","nonce":690822019}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6802","nonce":690822019},{"type":"v1","addr":"172.21.15.167:6803","nonce":690822019}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6806","nonce":690822019},{"type":"v1","addr":"172.21.15.167:6807","nonce":690822019}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6804","nonce":690822019},{"type":"v1","addr":"172.21.15.167:6805","nonce":690822019}]},"public_addr":"172.21.15.167:6801/690822019","cluster_addr":"172.21.15.167:6803/690822019","heartbeat_back_addr":"172.21.15.167:6807/690822019","heartbeat_front_addr":"172.21.15.167:6805/690822019","state":["exists","up"]},{"osd":5,"uuid":"ddca3109-6cda-4962-bec3-2a3271911f17","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":42,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6808","nonce":1389889963},{"type":"v1","addr":"172.21.15.167:6809","nonce":1389889963}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6810","nonce":1389889963},{"type":"v1","addr":"172.21.15.167:6811","nonce":1389889963}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6814","nonce":1389889963},{"type":"v1","addr":"172.21.15.167:6815","nonce":1389889963}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6812","nonce":1389889963},{"type":"v1","addr":"172.21.15.167:6813","nonce":1389889963}]},"public_addr":"172.21.15.167:6809/1389889963","cluster_addr":"172.21.15.167:6811/1389889963","heartbeat_back_addr":"172.21.15.167:6815/1389889963","heartbeat_front_addr":"172.21.15.167:6813/1389889963","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T05:20:10.806530+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T05:21:21.234285+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T05:22:14.010089+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T05:23:09.882581+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T05:23:59.211024+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T05:24:54.672640+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.29:6800/1070064573":"2024-09-17T05:17:13.279161+0000","172.21.15.29:0/699026538":"2024-09-17T05:17:13.279161+0000","172.21.15.29:0/3832564813":"2024-09-17T05:17:13.279161+0000","172.21.15.29:6801/1070064573":"2024-09-17T05:17:13.279161+0000","172.21.15.29:0/745761345":"2024-09-17T05:17:13.279161+0000","172.21.15.29:0/1978393501":"2024-09-17T05:16:33.552180+0000","172.21.15.29:0/2352672393":"2024-09-17T05:16:33.552180+0000","172.21.15.29:6801/1655411013":"2024-09-17T05:16:33.552180+0000","172.21.15.29:6800/1655411013":"2024-09-17T05:16:33.552180+0000","172.21.15.29:0/3840049165":"2024-09-17T05:16:33.552180+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-16T05:25:33.566 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:33 smithi029 bash[22744]: cluster 2024-09-16T05:25:31.404126+0000 mgr.a (mgr.14150) 327 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:33.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:33 smithi081 bash[23455]: cluster 2024-09-16T05:25:31.404126+0000 mgr.a (mgr.14150) 327 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:34.483 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:34 smithi167 bash[23275]: audit 2024-09-16T05:25:33.556291+0000 mon.a (mon.0) 874 : audit [DBG] from='client.? 172.21.15.29:0/1539139323' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-16T05:25:34.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:34 smithi029 bash[22744]: audit 2024-09-16T05:25:33.556291+0000 mon.a (mon.0) 874 : audit [DBG] from='client.? 172.21.15.29:0/1539139323' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-16T05:25:34.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:34 smithi081 bash[23455]: audit 2024-09-16T05:25:33.556291+0000 mon.a (mon.0) 874 : audit [DBG] from='client.? 172.21.15.29:0/1539139323' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-16T05:25:35.173 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-09-16T05:25:35.173 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-16T05:25:35.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:35 smithi167 bash[23275]: cluster 2024-09-16T05:25:33.404477+0000 mgr.a (mgr.14150) 328 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:35.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:35 smithi029 bash[22744]: cluster 2024-09-16T05:25:33.404477+0000 mgr.a (mgr.14150) 328 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:35.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:35 smithi081 bash[23455]: cluster 2024-09-16T05:25:33.404477+0000 mgr.a (mgr.14150) 328 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:37.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:37 smithi167 bash[23275]: cluster 2024-09-16T05:25:35.404782+0000 mgr.a (mgr.14150) 329 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:37.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:37 smithi029 bash[22744]: cluster 2024-09-16T05:25:35.404782+0000 mgr.a (mgr.14150) 329 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:37.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:37 smithi081 bash[23455]: cluster 2024-09-16T05:25:35.404782+0000 mgr.a (mgr.14150) 329 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:39.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:39 smithi167 bash[23275]: cluster 2024-09-16T05:25:37.405275+0000 mgr.a (mgr.14150) 330 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:39.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:39 smithi029 bash[22744]: cluster 2024-09-16T05:25:37.405275+0000 mgr.a (mgr.14150) 330 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:39.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:39 smithi081 bash[23455]: cluster 2024-09-16T05:25:37.405275+0000 mgr.a (mgr.14150) 330 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:40.736 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:25:41.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:41 smithi167 bash[23275]: cluster 2024-09-16T05:25:39.405857+0000 mgr.a (mgr.14150) 331 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:41.534 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:41 smithi081 bash[23455]: cluster 2024-09-16T05:25:39.405857+0000 mgr.a (mgr.14150) 331 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:41.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:41 smithi029 bash[22744]: cluster 2024-09-16T05:25:39.405857+0000 mgr.a (mgr.14150) 331 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:42.461 INFO:teuthology.orchestra.run.smithi029.stdout: 2024-09-16T05:25:42.461 INFO:teuthology.orchestra.run.smithi029.stdout:{"epoch":46,"fsid":"825322c2-73ea-11ef-bceb-c7b262605968","created":"2024-09-16T05:16:01.138186+0000","modified":"2024-09-16T05:24:59.781557+0000","last_up_change":"2024-09-16T05:24:55.750699+0000","last_in_change":"2024-09-16T05:24:25.468274+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-16T05:22:17.935195+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"22","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":"e86d4117-b8c2-4588-8d46-7b44e45cfb5b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":28,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.29:6802","nonce":742799578},{"type":"v1","addr":"172.21.15.29:6803","nonce":742799578}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.29:6804","nonce":742799578},{"type":"v1","addr":"172.21.15.29:6805","nonce":742799578}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.29:6808","nonce":742799578},{"type":"v1","addr":"172.21.15.29:6809","nonce":742799578}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.29:6806","nonce":742799578},{"type":"v1","addr":"172.21.15.29:6807","nonce":742799578}]},"public_addr":"172.21.15.29:6803/742799578","cluster_addr":"172.21.15.29:6805/742799578","heartbeat_back_addr":"172.21.15.29:6809/742799578","heartbeat_front_addr":"172.21.15.29:6807/742799578","state":["exists","up"]},{"osd":1,"uuid":"55340442-35d7-4ff3-bd34-1099318086ee","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.29:6810","nonce":3972944792},{"type":"v1","addr":"172.21.15.29:6811","nonce":3972944792}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.29:6812","nonce":3972944792},{"type":"v1","addr":"172.21.15.29:6813","nonce":3972944792}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.29:6816","nonce":3972944792},{"type":"v1","addr":"172.21.15.29:6817","nonce":3972944792}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.29:6814","nonce":3972944792},{"type":"v1","addr":"172.21.15.29:6815","nonce":3972944792}]},"public_addr":"172.21.15.29:6811/3972944792","cluster_addr":"172.21.15.29:6813/3972944792","heartbeat_back_addr":"172.21.15.29:6817/3972944792","heartbeat_front_addr":"172.21.15.29:6815/3972944792","state":["exists","up"]},{"osd":2,"uuid":"547b547b-d335-4a7a-b4a2-0e165a5c528d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":20,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.81:6800","nonce":1522975439},{"type":"v1","addr":"172.21.15.81:6801","nonce":1522975439}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.81:6802","nonce":1522975439},{"type":"v1","addr":"172.21.15.81:6803","nonce":1522975439}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.81:6806","nonce":1522975439},{"type":"v1","addr":"172.21.15.81:6807","nonce":1522975439}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.81:6804","nonce":1522975439},{"type":"v1","addr":"172.21.15.81:6805","nonce":1522975439}]},"public_addr":"172.21.15.81:6801/1522975439","cluster_addr":"172.21.15.81:6803/1522975439","heartbeat_back_addr":"172.21.15.81:6807/1522975439","heartbeat_front_addr":"172.21.15.81:6805/1522975439","state":["exists","up"]},{"osd":3,"uuid":"4127cde4-9ec3-4580-90dd-d3e2f05e1333","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":45,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.81:6808","nonce":274505392},{"type":"v1","addr":"172.21.15.81:6809","nonce":274505392}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.81:6810","nonce":274505392},{"type":"v1","addr":"172.21.15.81:6811","nonce":274505392}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.81:6814","nonce":274505392},{"type":"v1","addr":"172.21.15.81:6815","nonce":274505392}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.81:6812","nonce":274505392},{"type":"v1","addr":"172.21.15.81:6813","nonce":274505392}]},"public_addr":"172.21.15.81:6809/274505392","cluster_addr":"172.21.15.81:6811/274505392","heartbeat_back_addr":"172.21.15.81:6815/274505392","heartbeat_front_addr":"172.21.15.81:6813/274505392","state":["exists","up"]},{"osd":4,"uuid":"fc697d4d-a6f5-4472-82b6-d6e51ccbab6a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6800","nonce":690822019},{"type":"v1","addr":"172.21.15.167:6801","nonce":690822019}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6802","nonce":690822019},{"type":"v1","addr":"172.21.15.167:6803","nonce":690822019}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6806","nonce":690822019},{"type":"v1","addr":"172.21.15.167:6807","nonce":690822019}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6804","nonce":690822019},{"type":"v1","addr":"172.21.15.167:6805","nonce":690822019}]},"public_addr":"172.21.15.167:6801/690822019","cluster_addr":"172.21.15.167:6803/690822019","heartbeat_back_addr":"172.21.15.167:6807/690822019","heartbeat_front_addr":"172.21.15.167:6805/690822019","state":["exists","up"]},{"osd":5,"uuid":"ddca3109-6cda-4962-bec3-2a3271911f17","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":42,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6808","nonce":1389889963},{"type":"v1","addr":"172.21.15.167:6809","nonce":1389889963}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6810","nonce":1389889963},{"type":"v1","addr":"172.21.15.167:6811","nonce":1389889963}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6814","nonce":1389889963},{"type":"v1","addr":"172.21.15.167:6815","nonce":1389889963}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6812","nonce":1389889963},{"type":"v1","addr":"172.21.15.167:6813","nonce":1389889963}]},"public_addr":"172.21.15.167:6809/1389889963","cluster_addr":"172.21.15.167:6811/1389889963","heartbeat_back_addr":"172.21.15.167:6815/1389889963","heartbeat_front_addr":"172.21.15.167:6813/1389889963","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T05:20:10.806530+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T05:21:21.234285+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T05:22:14.010089+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T05:23:09.882581+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T05:23:59.211024+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T05:24:54.672640+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.29:6800/1070064573":"2024-09-17T05:17:13.279161+0000","172.21.15.29:0/699026538":"2024-09-17T05:17:13.279161+0000","172.21.15.29:0/3832564813":"2024-09-17T05:17:13.279161+0000","172.21.15.29:6801/1070064573":"2024-09-17T05:17:13.279161+0000","172.21.15.29:0/745761345":"2024-09-17T05:17:13.279161+0000","172.21.15.29:0/1978393501":"2024-09-17T05:16:33.552180+0000","172.21.15.29:0/2352672393":"2024-09-17T05:16:33.552180+0000","172.21.15.29:6801/1655411013":"2024-09-17T05:16:33.552180+0000","172.21.15.29:6800/1655411013":"2024-09-17T05:16:33.552180+0000","172.21.15.29:0/3840049165":"2024-09-17T05:16:33.552180+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-16T05:25:43.266 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph tell osd.0 flush_pg_stats 2024-09-16T05:25:43.267 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph tell osd.1 flush_pg_stats 2024-09-16T05:25:43.267 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph tell osd.2 flush_pg_stats 2024-09-16T05:25:43.267 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph tell osd.3 flush_pg_stats 2024-09-16T05:25:43.268 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph tell osd.4 flush_pg_stats 2024-09-16T05:25:43.268 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph tell osd.5 flush_pg_stats 2024-09-16T05:25:43.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:43 smithi167 bash[23275]: cluster 2024-09-16T05:25:41.406365+0000 mgr.a (mgr.14150) 332 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:43.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:43 smithi167 bash[23275]: audit 2024-09-16T05:25:42.235525+0000 mon.a (mon.0) 875 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:43.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:43 smithi167 bash[23275]: audit 2024-09-16T05:25:42.240305+0000 mon.a (mon.0) 876 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:43.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:43 smithi167 bash[23275]: audit 2024-09-16T05:25:42.246647+0000 mon.a (mon.0) 877 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:43.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:43 smithi167 bash[23275]: audit 2024-09-16T05:25:42.462912+0000 mon.a (mon.0) 878 : audit [DBG] from='client.? 172.21.15.29:0/855688513' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-16T05:25:43.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:43 smithi029 bash[22744]: cluster 2024-09-16T05:25:41.406365+0000 mgr.a (mgr.14150) 332 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:43.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:43 smithi029 bash[22744]: audit 2024-09-16T05:25:42.235525+0000 mon.a (mon.0) 875 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:43.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:43 smithi029 bash[22744]: audit 2024-09-16T05:25:42.240305+0000 mon.a (mon.0) 876 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:43.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:43 smithi029 bash[22744]: audit 2024-09-16T05:25:42.246647+0000 mon.a (mon.0) 877 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:43.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:43 smithi029 bash[22744]: audit 2024-09-16T05:25:42.462912+0000 mon.a (mon.0) 878 : audit [DBG] from='client.? 172.21.15.29:0/855688513' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-16T05:25:43.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:43 smithi081 bash[23455]: cluster 2024-09-16T05:25:41.406365+0000 mgr.a (mgr.14150) 332 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:43.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:43 smithi081 bash[23455]: audit 2024-09-16T05:25:42.235525+0000 mon.a (mon.0) 875 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:43.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:43 smithi081 bash[23455]: audit 2024-09-16T05:25:42.240305+0000 mon.a (mon.0) 876 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:43.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:43 smithi081 bash[23455]: audit 2024-09-16T05:25:42.246647+0000 mon.a (mon.0) 877 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:43.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:43 smithi081 bash[23455]: audit 2024-09-16T05:25:42.462912+0000 mon.a (mon.0) 878 : audit [DBG] from='client.? 172.21.15.29:0/855688513' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-16T05:25:45.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:45 smithi167 bash[23275]: cluster 2024-09-16T05:25:43.406799+0000 mgr.a (mgr.14150) 333 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:45.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:45 smithi167 bash[23275]: audit 2024-09-16T05:25:44.584012+0000 mon.a (mon.0) 879 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:45.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:45 smithi167 bash[23275]: audit 2024-09-16T05:25:44.592577+0000 mon.a (mon.0) 880 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:45.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:45 smithi167 bash[23275]: audit 2024-09-16T05:25:44.602383+0000 mon.a (mon.0) 881 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:45.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:45 smithi029 bash[22744]: cluster 2024-09-16T05:25:43.406799+0000 mgr.a (mgr.14150) 333 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:45.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:45 smithi029 bash[22744]: audit 2024-09-16T05:25:44.584012+0000 mon.a (mon.0) 879 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:45.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:45 smithi029 bash[22744]: audit 2024-09-16T05:25:44.592577+0000 mon.a (mon.0) 880 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:45.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:45 smithi029 bash[22744]: audit 2024-09-16T05:25:44.602383+0000 mon.a (mon.0) 881 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:45.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:45 smithi081 bash[23455]: cluster 2024-09-16T05:25:43.406799+0000 mgr.a (mgr.14150) 333 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:45.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:45 smithi081 bash[23455]: audit 2024-09-16T05:25:44.584012+0000 mon.a (mon.0) 879 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:45.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:45 smithi081 bash[23455]: audit 2024-09-16T05:25:44.592577+0000 mon.a (mon.0) 880 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:45.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:45 smithi081 bash[23455]: audit 2024-09-16T05:25:44.602383+0000 mon.a (mon.0) 881 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:47.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:47 smithi029 bash[22744]: cluster 2024-09-16T05:25:45.407318+0000 mgr.a (mgr.14150) 334 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:47.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:47 smithi081 bash[23455]: cluster 2024-09-16T05:25:45.407318+0000 mgr.a (mgr.14150) 334 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:47.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:47 smithi167 bash[23275]: cluster 2024-09-16T05:25:45.407318+0000 mgr.a (mgr.14150) 334 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:48.043 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:25:48.043 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:25:48.044 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:25:48.044 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:25:48.044 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:25:48.045 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:25:48.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:48 smithi029 bash[22744]: audit 2024-09-16T05:25:47.372543+0000 mon.a (mon.0) 882 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:48.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:48 smithi029 bash[22744]: audit 2024-09-16T05:25:47.381425+0000 mon.a (mon.0) 883 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:48.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:48 smithi029 bash[22744]: audit 2024-09-16T05:25:47.390941+0000 mon.a (mon.0) 884 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:48.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:48 smithi029 bash[22744]: cluster 2024-09-16T05:25:47.407983+0000 mgr.a (mgr.14150) 335 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:48.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:48 smithi167 bash[23275]: audit 2024-09-16T05:25:47.372543+0000 mon.a (mon.0) 882 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:48.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:48 smithi167 bash[23275]: audit 2024-09-16T05:25:47.381425+0000 mon.a (mon.0) 883 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:48.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:48 smithi167 bash[23275]: audit 2024-09-16T05:25:47.390941+0000 mon.a (mon.0) 884 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:48.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:48 smithi167 bash[23275]: cluster 2024-09-16T05:25:47.407983+0000 mgr.a (mgr.14150) 335 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:48.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:48 smithi081 bash[23455]: audit 2024-09-16T05:25:47.372543+0000 mon.a (mon.0) 882 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:48.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:48 smithi081 bash[23455]: audit 2024-09-16T05:25:47.381425+0000 mon.a (mon.0) 883 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:48.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:48 smithi081 bash[23455]: audit 2024-09-16T05:25:47.390941+0000 mon.a (mon.0) 884 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:25:48.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:48 smithi081 bash[23455]: cluster 2024-09-16T05:25:47.407983+0000 mgr.a (mgr.14150) 335 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:50.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:50 smithi167 bash[23275]: cluster 2024-09-16T05:25:49.408677+0000 mgr.a (mgr.14150) 336 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:50.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:50 smithi029 bash[22744]: cluster 2024-09-16T05:25:49.408677+0000 mgr.a (mgr.14150) 336 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:50.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:50 smithi081 bash[23455]: cluster 2024-09-16T05:25:49.408677+0000 mgr.a (mgr.14150) 336 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:52.716 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:52 smithi029 bash[22744]: cluster 2024-09-16T05:25:51.409094+0000 mgr.a (mgr.14150) 337 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:52.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:52 smithi167 bash[23275]: cluster 2024-09-16T05:25:51.409094+0000 mgr.a (mgr.14150) 337 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:52.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:52 smithi081 bash[23455]: cluster 2024-09-16T05:25:51.409094+0000 mgr.a (mgr.14150) 337 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:53.817 INFO:teuthology.orchestra.run.smithi029.stdout:111669149730 2024-09-16T05:25:53.817 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.3 2024-09-16T05:25:54.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:54 smithi167 bash[23275]: cluster 2024-09-16T05:25:53.409511+0000 mgr.a (mgr.14150) 338 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:54.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:54 smithi081 bash[23455]: cluster 2024-09-16T05:25:53.409511+0000 mgr.a (mgr.14150) 338 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:54.921 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:54 smithi029 bash[22744]: cluster 2024-09-16T05:25:53.409511+0000 mgr.a (mgr.14150) 338 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:55.123 INFO:teuthology.orchestra.run.smithi029.stdout:146028888088 2024-09-16T05:25:55.124 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.4 2024-09-16T05:25:56.175 INFO:teuthology.orchestra.run.smithi029.stdout:55834574905 2024-09-16T05:25:56.175 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.1 2024-09-16T05:25:56.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:56 smithi167 bash[23275]: cluster 2024-09-16T05:25:55.409798+0000 mgr.a (mgr.14150) 339 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:56.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:56 smithi029 bash[22744]: cluster 2024-09-16T05:25:55.409798+0000 mgr.a (mgr.14150) 339 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:56.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:56 smithi081 bash[23455]: cluster 2024-09-16T05:25:55.409798+0000 mgr.a (mgr.14150) 339 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:57.392 INFO:teuthology.orchestra.run.smithi029.stdout:77309411375 2024-09-16T05:25:57.393 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.2 2024-09-16T05:25:57.422 INFO:teuthology.orchestra.run.smithi029.stdout:180388626447 2024-09-16T05:25:57.422 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.5 2024-09-16T05:25:57.432 INFO:teuthology.orchestra.run.smithi029.stdout:34359738439 2024-09-16T05:25:57.433 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.0 2024-09-16T05:25:58.740 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:25:58 smithi167 bash[23275]: cluster 2024-09-16T05:25:57.410295+0000 mgr.a (mgr.14150) 340 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:58.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:25:58 smithi029 bash[22744]: cluster 2024-09-16T05:25:57.410295+0000 mgr.a (mgr.14150) 340 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:58.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:25:58 smithi081 bash[23455]: cluster 2024-09-16T05:25:57.410295+0000 mgr.a (mgr.14150) 340 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:25:59.592 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:25:59.595 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:26:01.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:00 smithi029 bash[22744]: cluster 2024-09-16T05:25:59.410855+0000 mgr.a (mgr.14150) 341 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:01.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:00 smithi081 bash[23455]: cluster 2024-09-16T05:25:59.410855+0000 mgr.a (mgr.14150) 341 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:01.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:00 smithi167 bash[23275]: cluster 2024-09-16T05:25:59.410855+0000 mgr.a (mgr.14150) 341 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:02.424 INFO:teuthology.orchestra.run.smithi029.stdout:146028888090 2024-09-16T05:26:02.627 INFO:teuthology.orchestra.run.smithi029.stdout:111669149732 2024-09-16T05:26:03.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:02 smithi029 bash[22744]: cluster 2024-09-16T05:26:01.411321+0000 mgr.a (mgr.14150) 342 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:03.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:02 smithi029 bash[22744]: audit 2024-09-16T05:26:02.377278+0000 mon.a (mon.0) 885 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:03.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:02 smithi029 bash[22744]: audit 2024-09-16T05:26:02.382775+0000 mon.a (mon.0) 886 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:03.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:02 smithi029 bash[22744]: audit 2024-09-16T05:26:02.389259+0000 mon.a (mon.0) 887 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:03.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:02 smithi029 bash[22744]: audit 2024-09-16T05:26:02.426100+0000 mon.a (mon.0) 888 : audit [DBG] from='client.? 172.21.15.29:0/3238741604' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-16T05:26:03.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:02 smithi029 bash[22744]: audit 2024-09-16T05:26:02.630628+0000 mon.a (mon.0) 889 : audit [DBG] from='client.? 172.21.15.29:0/1862606998' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-16T05:26:03.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:02 smithi081 bash[23455]: cluster 2024-09-16T05:26:01.411321+0000 mgr.a (mgr.14150) 342 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:03.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:02 smithi081 bash[23455]: audit 2024-09-16T05:26:02.377278+0000 mon.a (mon.0) 885 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:03.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:02 smithi081 bash[23455]: audit 2024-09-16T05:26:02.382775+0000 mon.a (mon.0) 886 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:03.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:02 smithi081 bash[23455]: audit 2024-09-16T05:26:02.389259+0000 mon.a (mon.0) 887 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:03.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:02 smithi081 bash[23455]: audit 2024-09-16T05:26:02.426100+0000 mon.a (mon.0) 888 : audit [DBG] from='client.? 172.21.15.29:0/3238741604' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-16T05:26:03.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:02 smithi081 bash[23455]: audit 2024-09-16T05:26:02.630628+0000 mon.a (mon.0) 889 : audit [DBG] from='client.? 172.21.15.29:0/1862606998' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-16T05:26:03.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:02 smithi167 bash[23275]: cluster 2024-09-16T05:26:01.411321+0000 mgr.a (mgr.14150) 342 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:03.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:02 smithi167 bash[23275]: audit 2024-09-16T05:26:02.377278+0000 mon.a (mon.0) 885 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:03.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:02 smithi167 bash[23275]: audit 2024-09-16T05:26:02.382775+0000 mon.a (mon.0) 886 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:03.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:02 smithi167 bash[23275]: audit 2024-09-16T05:26:02.389259+0000 mon.a (mon.0) 887 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:03.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:02 smithi167 bash[23275]: audit 2024-09-16T05:26:02.426100+0000 mon.a (mon.0) 888 : audit [DBG] from='client.? 172.21.15.29:0/3238741604' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-16T05:26:03.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:02 smithi167 bash[23275]: audit 2024-09-16T05:26:02.630628+0000 mon.a (mon.0) 889 : audit [DBG] from='client.? 172.21.15.29:0/1862606998' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-16T05:26:03.844 INFO:tasks.cephadm.ceph_manager.ceph:need seq 146028888088 got 146028888090 for osd.4 2024-09-16T05:26:03.845 DEBUG:teuthology.parallel:result is None 2024-09-16T05:26:03.915 INFO:tasks.cephadm.ceph_manager.ceph:need seq 111669149730 got 111669149732 for osd.3 2024-09-16T05:26:03.915 DEBUG:teuthology.parallel:result is None 2024-09-16T05:26:04.309 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:26:04.310 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:26:04.310 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:26:04.310 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:26:05.051 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:04 smithi081 bash[23455]: cluster 2024-09-16T05:26:03.411869+0000 mgr.a (mgr.14150) 343 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:05.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:04 smithi029 bash[22744]: cluster 2024-09-16T05:26:03.411869+0000 mgr.a (mgr.14150) 343 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:05.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:04 smithi167 bash[23275]: cluster 2024-09-16T05:26:03.411869+0000 mgr.a (mgr.14150) 343 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:06.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:05 smithi029 bash[22744]: audit 2024-09-16T05:26:04.809265+0000 mon.a (mon.0) 890 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:06.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:05 smithi029 bash[22744]: audit 2024-09-16T05:26:04.817434+0000 mon.a (mon.0) 891 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:06.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:05 smithi029 bash[22744]: audit 2024-09-16T05:26:04.826621+0000 mon.a (mon.0) 892 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:06.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:05 smithi029 bash[22744]: audit 2024-09-16T05:26:04.882085+0000 mon.a (mon.0) 893 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:26:06.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:05 smithi029 bash[22744]: audit 2024-09-16T05:26:04.887187+0000 mon.a (mon.0) 894 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:26:06.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:05 smithi029 bash[22744]: audit 2024-09-16T05:26:04.888895+0000 mon.a (mon.0) 895 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:26:06.088 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:05 smithi029 bash[22744]: audit 2024-09-16T05:26:04.898782+0000 mon.a (mon.0) 896 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:06.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:05 smithi081 bash[23455]: audit 2024-09-16T05:26:04.809265+0000 mon.a (mon.0) 890 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:06.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:05 smithi081 bash[23455]: audit 2024-09-16T05:26:04.817434+0000 mon.a (mon.0) 891 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:06.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:05 smithi081 bash[23455]: audit 2024-09-16T05:26:04.826621+0000 mon.a (mon.0) 892 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:06.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:05 smithi081 bash[23455]: audit 2024-09-16T05:26:04.882085+0000 mon.a (mon.0) 893 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:26:06.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:05 smithi081 bash[23455]: audit 2024-09-16T05:26:04.887187+0000 mon.a (mon.0) 894 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:26:06.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:05 smithi081 bash[23455]: audit 2024-09-16T05:26:04.888895+0000 mon.a (mon.0) 895 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:26:06.118 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:05 smithi081 bash[23455]: audit 2024-09-16T05:26:04.898782+0000 mon.a (mon.0) 896 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:06.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:05 smithi167 bash[23275]: audit 2024-09-16T05:26:04.809265+0000 mon.a (mon.0) 890 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:06.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:05 smithi167 bash[23275]: audit 2024-09-16T05:26:04.817434+0000 mon.a (mon.0) 891 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:06.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:05 smithi167 bash[23275]: audit 2024-09-16T05:26:04.826621+0000 mon.a (mon.0) 892 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:06.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:05 smithi167 bash[23275]: audit 2024-09-16T05:26:04.882085+0000 mon.a (mon.0) 893 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:26:06.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:05 smithi167 bash[23275]: audit 2024-09-16T05:26:04.887187+0000 mon.a (mon.0) 894 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:26:06.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:05 smithi167 bash[23275]: audit 2024-09-16T05:26:04.888895+0000 mon.a (mon.0) 895 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:26:06.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:05 smithi167 bash[23275]: audit 2024-09-16T05:26:04.898782+0000 mon.a (mon.0) 896 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:07.150 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:06 smithi029 bash[22744]: cluster 2024-09-16T05:26:05.412411+0000 mgr.a (mgr.14150) 344 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:07.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:06 smithi167 bash[23275]: cluster 2024-09-16T05:26:05.412411+0000 mgr.a (mgr.14150) 344 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:07.366 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:06 smithi081 bash[23455]: cluster 2024-09-16T05:26:05.412411+0000 mgr.a (mgr.14150) 344 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:07.488 INFO:teuthology.orchestra.run.smithi029.stdout:180388626449 2024-09-16T05:26:07.511 INFO:teuthology.orchestra.run.smithi029.stdout:55834574908 2024-09-16T05:26:07.736 INFO:teuthology.orchestra.run.smithi029.stdout:77309411377 2024-09-16T05:26:07.768 INFO:teuthology.orchestra.run.smithi029.stdout:34359738442 2024-09-16T05:26:08.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:07 smithi029 bash[22744]: audit 2024-09-16T05:26:07.491398+0000 mon.a (mon.0) 897 : audit [DBG] from='client.? 172.21.15.29:0/1871041079' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-16T05:26:08.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:07 smithi029 bash[22744]: audit 2024-09-16T05:26:07.513271+0000 mon.a (mon.0) 898 : audit [DBG] from='client.? 172.21.15.29:0/2625331901' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-16T05:26:08.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:07 smithi029 bash[22744]: audit 2024-09-16T05:26:07.560774+0000 mon.a (mon.0) 899 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:08.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:07 smithi029 bash[22744]: audit 2024-09-16T05:26:07.566398+0000 mon.a (mon.0) 900 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:08.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:07 smithi029 bash[22744]: audit 2024-09-16T05:26:07.571223+0000 mon.a (mon.0) 901 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:08.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:07 smithi029 bash[22744]: audit 2024-09-16T05:26:07.739879+0000 mon.a (mon.0) 902 : audit [DBG] from='client.? 172.21.15.29:0/3448720616' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-16T05:26:08.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:07 smithi029 bash[22744]: audit 2024-09-16T05:26:07.772122+0000 mon.a (mon.0) 903 : audit [DBG] from='client.? 172.21.15.29:0/3600386947' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-16T05:26:08.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:07 smithi167 bash[23275]: audit 2024-09-16T05:26:07.491398+0000 mon.a (mon.0) 897 : audit [DBG] from='client.? 172.21.15.29:0/1871041079' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-16T05:26:08.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:07 smithi167 bash[23275]: audit 2024-09-16T05:26:07.513271+0000 mon.a (mon.0) 898 : audit [DBG] from='client.? 172.21.15.29:0/2625331901' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-16T05:26:08.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:07 smithi167 bash[23275]: audit 2024-09-16T05:26:07.560774+0000 mon.a (mon.0) 899 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:08.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:07 smithi167 bash[23275]: audit 2024-09-16T05:26:07.566398+0000 mon.a (mon.0) 900 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:08.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:07 smithi167 bash[23275]: audit 2024-09-16T05:26:07.571223+0000 mon.a (mon.0) 901 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:08.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:07 smithi167 bash[23275]: audit 2024-09-16T05:26:07.739879+0000 mon.a (mon.0) 902 : audit [DBG] from='client.? 172.21.15.29:0/3448720616' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-16T05:26:08.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:07 smithi167 bash[23275]: audit 2024-09-16T05:26:07.772122+0000 mon.a (mon.0) 903 : audit [DBG] from='client.? 172.21.15.29:0/3600386947' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-16T05:26:08.366 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:07 smithi081 bash[23455]: audit 2024-09-16T05:26:07.491398+0000 mon.a (mon.0) 897 : audit [DBG] from='client.? 172.21.15.29:0/1871041079' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-16T05:26:08.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:07 smithi081 bash[23455]: audit 2024-09-16T05:26:07.513271+0000 mon.a (mon.0) 898 : audit [DBG] from='client.? 172.21.15.29:0/2625331901' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-16T05:26:08.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:07 smithi081 bash[23455]: audit 2024-09-16T05:26:07.560774+0000 mon.a (mon.0) 899 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:08.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:07 smithi081 bash[23455]: audit 2024-09-16T05:26:07.566398+0000 mon.a (mon.0) 900 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:08.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:07 smithi081 bash[23455]: audit 2024-09-16T05:26:07.571223+0000 mon.a (mon.0) 901 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:08.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:07 smithi081 bash[23455]: audit 2024-09-16T05:26:07.739879+0000 mon.a (mon.0) 902 : audit [DBG] from='client.? 172.21.15.29:0/3448720616' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-16T05:26:08.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:07 smithi081 bash[23455]: audit 2024-09-16T05:26:07.772122+0000 mon.a (mon.0) 903 : audit [DBG] from='client.? 172.21.15.29:0/3600386947' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-16T05:26:09.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:08 smithi167 bash[23275]: cluster 2024-09-16T05:26:07.412815+0000 mgr.a (mgr.14150) 345 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:09.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:08 smithi029 bash[22744]: cluster 2024-09-16T05:26:07.412815+0000 mgr.a (mgr.14150) 345 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:09.366 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:08 smithi081 bash[23455]: cluster 2024-09-16T05:26:07.412815+0000 mgr.a (mgr.14150) 345 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:09.758 INFO:tasks.cephadm.ceph_manager.ceph:need seq 180388626447 got 180388626449 for osd.5 2024-09-16T05:26:09.758 DEBUG:teuthology.parallel:result is None 2024-09-16T05:26:09.840 INFO:tasks.cephadm.ceph_manager.ceph:need seq 55834574905 got 55834574908 for osd.1 2024-09-16T05:26:09.841 DEBUG:teuthology.parallel:result is None 2024-09-16T05:26:10.618 INFO:tasks.cephadm.ceph_manager.ceph:need seq 77309411375 got 77309411377 for osd.2 2024-09-16T05:26:10.618 DEBUG:teuthology.parallel:result is None 2024-09-16T05:26:10.638 INFO:tasks.cephadm.ceph_manager.ceph:need seq 34359738439 got 34359738442 for osd.0 2024-09-16T05:26:10.638 DEBUG:teuthology.parallel:result is None 2024-09-16T05:26:10.639 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-09-16T05:26:10.639 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph pg dump --format=json 2024-09-16T05:26:11.241 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:10 smithi167 bash[23275]: cluster 2024-09-16T05:26:09.413328+0000 mgr.a (mgr.14150) 346 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:11.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:10 smithi029 bash[22744]: cluster 2024-09-16T05:26:09.413328+0000 mgr.a (mgr.14150) 346 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:11.366 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:10 smithi081 bash[23455]: cluster 2024-09-16T05:26:09.413328+0000 mgr.a (mgr.14150) 346 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:13.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:12 smithi167 bash[23275]: cluster 2024-09-16T05:26:11.413903+0000 mgr.a (mgr.14150) 347 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:13.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:12 smithi029 bash[22744]: cluster 2024-09-16T05:26:11.413903+0000 mgr.a (mgr.14150) 347 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:13.366 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:12 smithi081 bash[23455]: cluster 2024-09-16T05:26:11.413903+0000 mgr.a (mgr.14150) 347 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:15.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:14 smithi167 bash[23275]: cluster 2024-09-16T05:26:13.414486+0000 mgr.a (mgr.14150) 348 : cluster [DBG] pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:15.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:14 smithi029 bash[22744]: cluster 2024-09-16T05:26:13.414486+0000 mgr.a (mgr.14150) 348 : cluster [DBG] pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:15.366 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:14 smithi081 bash[23455]: cluster 2024-09-16T05:26:13.414486+0000 mgr.a (mgr.14150) 348 : cluster [DBG] pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:15.438 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:26:17.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:16 smithi029 bash[22744]: cluster 2024-09-16T05:26:15.415122+0000 mgr.a (mgr.14150) 349 : cluster [DBG] pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:17.154 INFO:teuthology.orchestra.run.smithi029.stdout: 2024-09-16T05:26:17.154 INFO:teuthology.orchestra.run.smithi029.stderr:dumped all 2024-09-16T05:26:17.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:16 smithi167 bash[23275]: cluster 2024-09-16T05:26:15.415122+0000 mgr.a (mgr.14150) 349 : cluster [DBG] pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:17.366 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:16 smithi081 bash[23455]: cluster 2024-09-16T05:26:15.415122+0000 mgr.a (mgr.14150) 349 : cluster [DBG] pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:18.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:17 smithi167 bash[23275]: audit 2024-09-16T05:26:17.155387+0000 mgr.a (mgr.14150) 350 : audit [DBG] from='client.14442 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T05:26:18.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:17 smithi029 bash[22744]: audit 2024-09-16T05:26:17.155387+0000 mgr.a (mgr.14150) 350 : audit [DBG] from='client.14442 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T05:26:18.366 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:17 smithi081 bash[23455]: audit 2024-09-16T05:26:17.155387+0000 mgr.a (mgr.14150) 350 : audit [DBG] from='client.14442 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T05:26:18.920 INFO:teuthology.orchestra.run.smithi029.stdout:{"pg_ready":true,"pg_map":{"version":307,"stamp":"2024-09-16T05:26:15.414786+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":187172,"kb_used_data":4188,"kb_used_omap":9,"kb_used_meta":182838,"kb_avail":562283740,"statfs":{"total":575970213888,"available":575778549760,"internally_reserved":0,"allocated":4288512,"data_stored":2750106,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9567,"internal_metadata":187226785},"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.003191"},"pg_stats":[{"pgid":"1.0","version":"22'137","reported_seq":263,"reported_epoch":46,"state":"active+clean","last_fresh":"2024-09-16T05:24:59.802278+0000","last_change":"2024-09-16T05:24:59.801593+0000","last_active":"2024-09-16T05:24:59.802278+0000","last_peered":"2024-09-16T05:24:59.802278+0000","last_clean":"2024-09-16T05:24:59.802278+0000","last_became_active":"2024-09-16T05:24:59.800790+0000","last_became_peered":"2024-09-16T05:24:59.800790+0000","last_unstale":"2024-09-16T05:24:59.802278+0000","last_undegraded":"2024-09-16T05:24:59.802278+0000","last_fullsized":"2024-09-16T05:24:59.802278+0000","mapping_epoch":45,"log_start":"0'0","ondisk_log_start":"0'0","created":20,"last_epoch_clean":46,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-16T05:22:18.222259+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-16T05:22:18.222259+0000","last_clean_scrub_stamp":"2024-09-16T05:22:18.222259+0000","objects_scrubbed":0,"log_size":137,"log_dups_size":0,"ondisk_log_size":137,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"last_scrub_duration":0,"scrub_schedule":"periodic scrub scheduled @ 2024-09-17T09:41:06.600884+0000","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[3,5,2],"acting":[3,5,2],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":3,"acting_primary":3,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":3563520,"data_stored":3542208,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":137,"ondisk_log_size":137,"up":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":42,"seq":180388626451,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28020,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717132,"statfs":{"total":95995035648,"available":95966343168,"internally_reserved":0,"allocated":1011712,"data_stored":753535,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,4],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":34,"seq":146028888093,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31604,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713548,"statfs":{"total":95995035648,"available":95962673152,"internally_reserved":0,"allocated":417792,"data_stored":163167,"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":26,"seq":111669149735,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":32176,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93712976,"statfs":{"total":95995035648,"available":95962087424,"internally_reserved":0,"allocated":1011712,"data_stored":753535,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1592,"internal_metadata":31914440},"hb_peers":[0,1,2,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":18,"seq":77309411379,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":32176,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93712976,"statfs":{"total":95995035648,"available":95962087424,"internally_reserved":0,"allocated":1011712,"data_stored":753535,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":13,"seq":55834574910,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31596,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713556,"statfs":{"total":95995035648,"available":95962681344,"internally_reserved":0,"allocated":417792,"data_stored":163167,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":8,"seq":34359738444,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31600,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713552,"statfs":{"total":95995035648,"available":95962677248,"internally_reserved":0,"allocated":417792,"data_stored":163167,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[1,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":4,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":5,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-09-16T05:26:18.922 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph pg dump --format=json 2024-09-16T05:26:19.170 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:18 smithi029 bash[22744]: cluster 2024-09-16T05:26:17.415705+0000 mgr.a (mgr.14150) 351 : cluster [DBG] pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:19.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:18 smithi167 bash[23275]: cluster 2024-09-16T05:26:17.415705+0000 mgr.a (mgr.14150) 351 : cluster [DBG] pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:19.366 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:18 smithi081 bash[23455]: cluster 2024-09-16T05:26:17.415705+0000 mgr.a (mgr.14150) 351 : cluster [DBG] pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:21.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:20 smithi167 bash[23275]: cluster 2024-09-16T05:26:19.416317+0000 mgr.a (mgr.14150) 352 : cluster [DBG] pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:21.261 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:20 smithi029 bash[22744]: cluster 2024-09-16T05:26:19.416317+0000 mgr.a (mgr.14150) 352 : cluster [DBG] pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:21.366 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:20 smithi081 bash[23455]: cluster 2024-09-16T05:26:19.416317+0000 mgr.a (mgr.14150) 352 : cluster [DBG] pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:23.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:22 smithi167 bash[23275]: cluster 2024-09-16T05:26:21.416748+0000 mgr.a (mgr.14150) 353 : cluster [DBG] pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:23.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:22 smithi167 bash[23275]: audit 2024-09-16T05:26:22.496063+0000 mon.a (mon.0) 904 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:23.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:22 smithi167 bash[23275]: audit 2024-09-16T05:26:22.501521+0000 mon.a (mon.0) 905 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:23.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:22 smithi167 bash[23275]: audit 2024-09-16T05:26:22.507078+0000 mon.a (mon.0) 906 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:23.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:22 smithi029 bash[22744]: cluster 2024-09-16T05:26:21.416748+0000 mgr.a (mgr.14150) 353 : cluster [DBG] pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:23.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:22 smithi029 bash[22744]: audit 2024-09-16T05:26:22.496063+0000 mon.a (mon.0) 904 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:23.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:22 smithi029 bash[22744]: audit 2024-09-16T05:26:22.501521+0000 mon.a (mon.0) 905 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:23.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:22 smithi029 bash[22744]: audit 2024-09-16T05:26:22.507078+0000 mon.a (mon.0) 906 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:23.366 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:22 smithi081 bash[23455]: cluster 2024-09-16T05:26:21.416748+0000 mgr.a (mgr.14150) 353 : cluster [DBG] pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:23.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:22 smithi081 bash[23455]: audit 2024-09-16T05:26:22.496063+0000 mon.a (mon.0) 904 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:23.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:22 smithi081 bash[23455]: audit 2024-09-16T05:26:22.501521+0000 mon.a (mon.0) 905 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:23.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:22 smithi081 bash[23455]: audit 2024-09-16T05:26:22.507078+0000 mon.a (mon.0) 906 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:24.254 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:26:25.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:24 smithi167 bash[23275]: cluster 2024-09-16T05:26:23.417298+0000 mgr.a (mgr.14150) 354 : cluster [DBG] pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:25.306 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:24 smithi029 bash[22744]: cluster 2024-09-16T05:26:23.417298+0000 mgr.a (mgr.14150) 354 : cluster [DBG] pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:25.366 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:24 smithi081 bash[23455]: cluster 2024-09-16T05:26:23.417298+0000 mgr.a (mgr.14150) 354 : cluster [DBG] pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:26.093 INFO:teuthology.orchestra.run.smithi029.stdout: 2024-09-16T05:26:26.093 INFO:teuthology.orchestra.run.smithi029.stderr:dumped all 2024-09-16T05:26:26.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:26 smithi029 bash[22744]: audit 2024-09-16T05:26:25.027744+0000 mon.a (mon.0) 907 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:26.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:26 smithi029 bash[22744]: audit 2024-09-16T05:26:25.035615+0000 mon.a (mon.0) 908 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:26.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:26 smithi029 bash[22744]: audit 2024-09-16T05:26:25.044873+0000 mon.a (mon.0) 909 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:26.366 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:26 smithi081 bash[23455]: audit 2024-09-16T05:26:25.027744+0000 mon.a (mon.0) 907 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:26.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:26 smithi081 bash[23455]: audit 2024-09-16T05:26:25.035615+0000 mon.a (mon.0) 908 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:26.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:26 smithi081 bash[23455]: audit 2024-09-16T05:26:25.044873+0000 mon.a (mon.0) 909 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:26.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:26 smithi167 bash[23275]: audit 2024-09-16T05:26:25.027744+0000 mon.a (mon.0) 907 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:26.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:26 smithi167 bash[23275]: audit 2024-09-16T05:26:25.035615+0000 mon.a (mon.0) 908 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:26.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:26 smithi167 bash[23275]: audit 2024-09-16T05:26:25.044873+0000 mon.a (mon.0) 909 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:26.991 INFO:teuthology.orchestra.run.smithi029.stdout:{"pg_ready":true,"pg_map":{"version":312,"stamp":"2024-09-16T05:26:25.417628+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":187172,"kb_used_data":4188,"kb_used_omap":9,"kb_used_meta":182838,"kb_avail":562283740,"statfs":{"total":575970213888,"available":575778549760,"internally_reserved":0,"allocated":4288512,"data_stored":2750106,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9567,"internal_metadata":187226785},"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.003453"},"pg_stats":[{"pgid":"1.0","version":"22'137","reported_seq":263,"reported_epoch":46,"state":"active+clean","last_fresh":"2024-09-16T05:24:59.802278+0000","last_change":"2024-09-16T05:24:59.801593+0000","last_active":"2024-09-16T05:24:59.802278+0000","last_peered":"2024-09-16T05:24:59.802278+0000","last_clean":"2024-09-16T05:24:59.802278+0000","last_became_active":"2024-09-16T05:24:59.800790+0000","last_became_peered":"2024-09-16T05:24:59.800790+0000","last_unstale":"2024-09-16T05:24:59.802278+0000","last_undegraded":"2024-09-16T05:24:59.802278+0000","last_fullsized":"2024-09-16T05:24:59.802278+0000","mapping_epoch":45,"log_start":"0'0","ondisk_log_start":"0'0","created":20,"last_epoch_clean":46,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-16T05:22:18.222259+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-16T05:22:18.222259+0000","last_clean_scrub_stamp":"2024-09-16T05:22:18.222259+0000","objects_scrubbed":0,"log_size":137,"log_dups_size":0,"ondisk_log_size":137,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"last_scrub_duration":0,"scrub_schedule":"periodic scrub scheduled @ 2024-09-17T09:41:06.600884+0000","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[3,5,2],"acting":[3,5,2],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":3,"acting_primary":3,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":3563520,"data_stored":3542208,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":137,"ondisk_log_size":137,"up":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":42,"seq":180388626453,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28020,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717132,"statfs":{"total":95995035648,"available":95966343168,"internally_reserved":0,"allocated":1011712,"data_stored":753535,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,4],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":34,"seq":146028888095,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31604,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713548,"statfs":{"total":95995035648,"available":95962673152,"internally_reserved":0,"allocated":417792,"data_stored":163167,"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":26,"seq":111669149737,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":32176,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93712976,"statfs":{"total":95995035648,"available":95962087424,"internally_reserved":0,"allocated":1011712,"data_stored":753535,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1592,"internal_metadata":31914440},"hb_peers":[0,1,2,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":18,"seq":77309411381,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":32176,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93712976,"statfs":{"total":95995035648,"available":95962087424,"internally_reserved":0,"allocated":1011712,"data_stored":753535,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":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":31596,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713556,"statfs":{"total":95995035648,"available":95962681344,"internally_reserved":0,"allocated":417792,"data_stored":163167,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":8,"seq":34359738446,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31600,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713552,"statfs":{"total":95995035648,"available":95962677248,"internally_reserved":0,"allocated":417792,"data_stored":163167,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[1,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":4,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":5,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-09-16T05:26:26.992 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-09-16T05:26:26.992 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-09-16T05:26:26.992 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-09-16T05:26:26.993 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- ceph health --format=json 2024-09-16T05:26:27.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:27 smithi029 bash[22744]: cluster 2024-09-16T05:26:25.417986+0000 mgr.a (mgr.14150) 355 : cluster [DBG] pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:27.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:27 smithi029 bash[22744]: audit 2024-09-16T05:26:26.095035+0000 mgr.a (mgr.14150) 356 : audit [DBG] from='client.14448 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T05:26:27.366 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:27 smithi081 bash[23455]: cluster 2024-09-16T05:26:25.417986+0000 mgr.a (mgr.14150) 355 : cluster [DBG] pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:27.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:27 smithi081 bash[23455]: audit 2024-09-16T05:26:26.095035+0000 mgr.a (mgr.14150) 356 : audit [DBG] from='client.14448 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T05:26:27.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:27 smithi167 bash[23275]: cluster 2024-09-16T05:26:25.417986+0000 mgr.a (mgr.14150) 355 : cluster [DBG] pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:27.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:27 smithi167 bash[23275]: audit 2024-09-16T05:26:26.095035+0000 mgr.a (mgr.14150) 356 : audit [DBG] from='client.14448 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T05:26:29.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:28 smithi029 bash[22744]: cluster 2024-09-16T05:26:27.418609+0000 mgr.a (mgr.14150) 357 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:29.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:28 smithi029 bash[22744]: audit 2024-09-16T05:26:27.754590+0000 mon.a (mon.0) 910 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:29.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:28 smithi029 bash[22744]: audit 2024-09-16T05:26:27.762900+0000 mon.a (mon.0) 911 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:29.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:28 smithi029 bash[22744]: audit 2024-09-16T05:26:27.772438+0000 mon.a (mon.0) 912 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:29.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:28 smithi081 bash[23455]: cluster 2024-09-16T05:26:27.418609+0000 mgr.a (mgr.14150) 357 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:29.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:28 smithi081 bash[23455]: audit 2024-09-16T05:26:27.754590+0000 mon.a (mon.0) 910 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:29.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:28 smithi081 bash[23455]: audit 2024-09-16T05:26:27.762900+0000 mon.a (mon.0) 911 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:29.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:28 smithi081 bash[23455]: audit 2024-09-16T05:26:27.772438+0000 mon.a (mon.0) 912 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:29.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:28 smithi167 bash[23275]: cluster 2024-09-16T05:26:27.418609+0000 mgr.a (mgr.14150) 357 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:29.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:28 smithi167 bash[23275]: audit 2024-09-16T05:26:27.754590+0000 mon.a (mon.0) 910 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:29.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:28 smithi167 bash[23275]: audit 2024-09-16T05:26:27.762900+0000 mon.a (mon.0) 911 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:29.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:28 smithi167 bash[23275]: audit 2024-09-16T05:26:27.772438+0000 mon.a (mon.0) 912 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:31.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:30 smithi029 bash[22744]: cluster 2024-09-16T05:26:29.419160+0000 mgr.a (mgr.14150) 358 : cluster [DBG] pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:31.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:30 smithi081 bash[23455]: cluster 2024-09-16T05:26:29.419160+0000 mgr.a (mgr.14150) 358 : cluster [DBG] pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:31.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:30 smithi167 bash[23275]: cluster 2024-09-16T05:26:29.419160+0000 mgr.a (mgr.14150) 358 : cluster [DBG] pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:31.745 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:26:33.086 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:32 smithi029 bash[22744]: cluster 2024-09-16T05:26:31.419714+0000 mgr.a (mgr.14150) 359 : cluster [DBG] pgmap v315: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:33.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:32 smithi081 bash[23455]: cluster 2024-09-16T05:26:31.419714+0000 mgr.a (mgr.14150) 359 : cluster [DBG] pgmap v315: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:33.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:32 smithi167 bash[23275]: cluster 2024-09-16T05:26:31.419714+0000 mgr.a (mgr.14150) 359 : cluster [DBG] pgmap v315: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:33.559 INFO:teuthology.orchestra.run.smithi029.stdout: 2024-09-16T05:26:33.559 INFO:teuthology.orchestra.run.smithi029.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-09-16T05:26:33.836 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:33 smithi029 bash[22744]: audit 2024-09-16T05:26:33.562609+0000 mon.a (mon.0) 913 : audit [DBG] from='client.? 172.21.15.29:0/278818132' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-16T05:26:34.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:33 smithi081 bash[23455]: audit 2024-09-16T05:26:33.562609+0000 mon.a (mon.0) 913 : audit [DBG] from='client.? 172.21.15.29:0/278818132' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-16T05:26:34.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:33 smithi167 bash[23275]: audit 2024-09-16T05:26:33.562609+0000 mon.a (mon.0) 913 : audit [DBG] from='client.? 172.21.15.29:0/278818132' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-16T05:26:34.444 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-09-16T05:26:34.445 INFO:tasks.cephadm:Setup complete, yielding 2024-09-16T05:26:34.445 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-16T05:26:34.456 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi029.front.sepia.ceph.com 2024-09-16T05:26:34.456 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8921c8ef947807b717db041d85f0761b7914d5fc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 825322c2-73ea-11ef-bceb-c7b262605968 -- bash -c 'set -ex 2024-09-16T05:26:34.456 DEBUG:teuthology.orchestra.run.smithi029:> HOSTNAMES=$(ceph orch host ls --format json | jq -r '"'"'.[] | .hostname'"'"') 2024-09-16T05:26:34.456 DEBUG:teuthology.orchestra.run.smithi029:> for host in $HOSTNAMES; do 2024-09-16T05:26:34.456 DEBUG:teuthology.orchestra.run.smithi029:> # find the hostname for "host.c" which will have no mgr 2024-09-16T05:26:34.456 DEBUG:teuthology.orchestra.run.smithi029:> HAS_MGRS=$(ceph orch ps --hostname ${host} --format json | jq '"'"'any(.daemon_type == "mgr")'"'"') 2024-09-16T05:26:34.456 DEBUG:teuthology.orchestra.run.smithi029:> if [ "$HAS_MGRS" == "false" ]; then 2024-09-16T05:26:34.456 DEBUG:teuthology.orchestra.run.smithi029:> HOST_C="${host}" 2024-09-16T05:26:34.456 DEBUG:teuthology.orchestra.run.smithi029:> fi 2024-09-16T05:26:34.457 DEBUG:teuthology.orchestra.run.smithi029:> done 2024-09-16T05:26:34.457 DEBUG:teuthology.orchestra.run.smithi029:> # One last thing to worry about before draining the host 2024-09-16T05:26:34.457 DEBUG:teuthology.orchestra.run.smithi029:> # is that the teuthology test tends to put the explicit 2024-09-16T05:26:34.457 DEBUG:teuthology.orchestra.run.smithi029:> # hostnames in the placement for the mon service. 2024-09-16T05:26:34.457 DEBUG:teuthology.orchestra.run.smithi029:> # We want to make sure we can drain without providing 2024-09-16T05:26:34.457 DEBUG:teuthology.orchestra.run.smithi029:> # --force and there is a check for the host being removed 2024-09-16T05:26:34.457 DEBUG:teuthology.orchestra.run.smithi029:> # being listed explicitly in the placements. Therefore, 2024-09-16T05:26:34.457 DEBUG:teuthology.orchestra.run.smithi029:> # we should remove it from the mon placement. 2024-09-16T05:26:34.457 DEBUG:teuthology.orchestra.run.smithi029:> ceph orch ls mon --export > mon.yaml 2024-09-16T05:26:34.457 DEBUG:teuthology.orchestra.run.smithi029:> sed /"$HOST_C"/d mon.yaml > mon_adjusted.yaml 2024-09-16T05:26:34.457 DEBUG:teuthology.orchestra.run.smithi029:> ceph orch apply -i mon_adjusted.yaml 2024-09-16T05:26:34.457 DEBUG:teuthology.orchestra.run.smithi029:> # now drain that host 2024-09-16T05:26:34.457 DEBUG:teuthology.orchestra.run.smithi029:> ceph orch host drain $HOST_C --zap-osd-devices 2024-09-16T05:26:34.457 DEBUG:teuthology.orchestra.run.smithi029:> # wait for drain to complete 2024-09-16T05:26:34.458 DEBUG:teuthology.orchestra.run.smithi029:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-09-16T05:26:34.458 DEBUG:teuthology.orchestra.run.smithi029:> while [ "$HOST_C_DAEMONS" != "No daemons reported" ]; do 2024-09-16T05:26:34.458 DEBUG:teuthology.orchestra.run.smithi029:> sleep 15 2024-09-16T05:26:34.458 DEBUG:teuthology.orchestra.run.smithi029:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-09-16T05:26:34.458 DEBUG:teuthology.orchestra.run.smithi029:> done 2024-09-16T05:26:34.458 DEBUG:teuthology.orchestra.run.smithi029:> # we want to check the ability to remove the host from 2024-09-16T05:26:34.458 DEBUG:teuthology.orchestra.run.smithi029:> # the CRUSH map, so we should first verify the host is in 2024-09-16T05:26:34.458 DEBUG:teuthology.orchestra.run.smithi029:> # the CRUSH map. 2024-09-16T05:26:34.458 DEBUG:teuthology.orchestra.run.smithi029:> ceph osd getcrushmap -o compiled-crushmap 2024-09-16T05:26:34.458 DEBUG:teuthology.orchestra.run.smithi029:> crushtool -d compiled-crushmap -o crushmap.txt 2024-09-16T05:26:34.458 DEBUG:teuthology.orchestra.run.smithi029:> CRUSH_MAP=$(cat crushmap.txt) 2024-09-16T05:26:34.458 DEBUG:teuthology.orchestra.run.smithi029:> if ! grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-09-16T05:26:34.458 DEBUG:teuthology.orchestra.run.smithi029:> printf "Expected to see $HOST_C in CRUSH map. Saw:\n\n$CRUSH_MAP" 2024-09-16T05:26:34.458 DEBUG:teuthology.orchestra.run.smithi029:> exit 1 2024-09-16T05:26:34.458 DEBUG:teuthology.orchestra.run.smithi029:> fi 2024-09-16T05:26:34.459 DEBUG:teuthology.orchestra.run.smithi029:> # If the drain was successful, we should be able to remove the 2024-09-16T05:26:34.459 DEBUG:teuthology.orchestra.run.smithi029:> # host without force with no issues. If there are still daemons 2024-09-16T05:26:34.459 DEBUG:teuthology.orchestra.run.smithi029:> # we will get a response telling us to drain the host and a 2024-09-16T05:26:34.459 DEBUG:teuthology.orchestra.run.smithi029:> # non-zero return code 2024-09-16T05:26:34.459 DEBUG:teuthology.orchestra.run.smithi029:> ceph orch host rm $HOST_C --rm-crush-entry 2024-09-16T05:26:34.459 DEBUG:teuthology.orchestra.run.smithi029:> # verify we'"'"'ve successfully removed the host from the CRUSH map 2024-09-16T05:26:34.459 DEBUG:teuthology.orchestra.run.smithi029:> sleep 30 2024-09-16T05:26:34.459 DEBUG:teuthology.orchestra.run.smithi029:> ceph osd getcrushmap -o compiled-crushmap 2024-09-16T05:26:34.459 DEBUG:teuthology.orchestra.run.smithi029:> crushtool -d compiled-crushmap -o crushmap.txt 2024-09-16T05:26:34.459 DEBUG:teuthology.orchestra.run.smithi029:> CRUSH_MAP=$(cat crushmap.txt) 2024-09-16T05:26:34.459 DEBUG:teuthology.orchestra.run.smithi029:> if grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-09-16T05:26:34.459 DEBUG:teuthology.orchestra.run.smithi029:> printf "Saw $HOST_C in CRUSH map after it should have been removed.\n\n$CRUSH_MAP" 2024-09-16T05:26:34.459 DEBUG:teuthology.orchestra.run.smithi029:> exit 1 2024-09-16T05:26:34.459 DEBUG:teuthology.orchestra.run.smithi029:> fi 2024-09-16T05:26:34.459 DEBUG:teuthology.orchestra.run.smithi029:> ' 2024-09-16T05:26:35.086 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:34 smithi029 bash[22744]: cluster 2024-09-16T05:26:33.420251+0000 mgr.a (mgr.14150) 360 : cluster [DBG] pgmap v316: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:35.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:34 smithi081 bash[23455]: cluster 2024-09-16T05:26:33.420251+0000 mgr.a (mgr.14150) 360 : cluster [DBG] pgmap v316: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:35.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:34 smithi167 bash[23275]: cluster 2024-09-16T05:26:33.420251+0000 mgr.a (mgr.14150) 360 : cluster [DBG] pgmap v316: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:36.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:36 smithi167 bash[23275]: cluster 2024-09-16T05:26:35.420805+0000 mgr.a (mgr.14150) 361 : cluster [DBG] pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:37.086 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:36 smithi029 bash[22744]: cluster 2024-09-16T05:26:35.420805+0000 mgr.a (mgr.14150) 361 : cluster [DBG] pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:37.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:36 smithi081 bash[23455]: cluster 2024-09-16T05:26:35.420805+0000 mgr.a (mgr.14150) 361 : cluster [DBG] pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:38.836 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:38 smithi029 bash[22744]: cluster 2024-09-16T05:26:37.421382+0000 mgr.a (mgr.14150) 362 : cluster [DBG] pgmap v318: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:38.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:38 smithi167 bash[23275]: cluster 2024-09-16T05:26:37.421382+0000 mgr.a (mgr.14150) 362 : cluster [DBG] pgmap v318: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:39.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:38 smithi081 bash[23455]: cluster 2024-09-16T05:26:37.421382+0000 mgr.a (mgr.14150) 362 : cluster [DBG] pgmap v318: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:39.541 INFO:teuthology.orchestra.run.smithi029.stderr:Inferring config /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T05:26:41.086 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:40 smithi029 bash[22744]: cluster 2024-09-16T05:26:39.422069+0000 mgr.a (mgr.14150) 363 : cluster [DBG] pgmap v319: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:41.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:40 smithi081 bash[23455]: cluster 2024-09-16T05:26:39.422069+0000 mgr.a (mgr.14150) 363 : cluster [DBG] pgmap v319: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:41.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:40 smithi167 bash[23275]: cluster 2024-09-16T05:26:39.422069+0000 mgr.a (mgr.14150) 363 : cluster [DBG] pgmap v319: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:41.314 INFO:teuthology.orchestra.run.smithi029.stderr:++ ceph orch host ls --format json 2024-09-16T05:26:41.314 INFO:teuthology.orchestra.run.smithi029.stderr:++ jq -r '.[] | .hostname' 2024-09-16T05:26:41.609 INFO:teuthology.orchestra.run.smithi029.stderr:+ HOSTNAMES='smithi029 2024-09-16T05:26:41.610 INFO:teuthology.orchestra.run.smithi029.stderr:smithi081 2024-09-16T05:26:41.610 INFO:teuthology.orchestra.run.smithi029.stderr:smithi167' 2024-09-16T05:26:41.610 INFO:teuthology.orchestra.run.smithi029.stderr:+ for host in $HOSTNAMES 2024-09-16T05:26:41.610 INFO:teuthology.orchestra.run.smithi029.stderr:++ ceph orch ps --hostname smithi029 --format json 2024-09-16T05:26:41.610 INFO:teuthology.orchestra.run.smithi029.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-16T05:26:41.902 INFO:teuthology.orchestra.run.smithi029.stderr:+ HAS_MGRS=true 2024-09-16T05:26:41.902 INFO:teuthology.orchestra.run.smithi029.stderr:+ '[' true == false ']' 2024-09-16T05:26:41.902 INFO:teuthology.orchestra.run.smithi029.stderr:+ for host in $HOSTNAMES 2024-09-16T05:26:41.902 INFO:teuthology.orchestra.run.smithi029.stderr:++ ceph orch ps --hostname smithi081 --format json 2024-09-16T05:26:41.902 INFO:teuthology.orchestra.run.smithi029.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-16T05:26:42.198 INFO:teuthology.orchestra.run.smithi029.stderr:+ HAS_MGRS=true 2024-09-16T05:26:42.198 INFO:teuthology.orchestra.run.smithi029.stderr:+ '[' true == false ']' 2024-09-16T05:26:42.199 INFO:teuthology.orchestra.run.smithi029.stderr:+ for host in $HOSTNAMES 2024-09-16T05:26:42.199 INFO:teuthology.orchestra.run.smithi029.stderr:++ ceph orch ps --hostname smithi167 --format json 2024-09-16T05:26:42.199 INFO:teuthology.orchestra.run.smithi029.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-16T05:26:42.493 INFO:teuthology.orchestra.run.smithi029.stderr:+ HAS_MGRS=false 2024-09-16T05:26:42.494 INFO:teuthology.orchestra.run.smithi029.stderr:+ '[' false == false ']' 2024-09-16T05:26:42.494 INFO:teuthology.orchestra.run.smithi029.stderr:+ HOST_C=smithi167 2024-09-16T05:26:42.494 INFO:teuthology.orchestra.run.smithi029.stderr:+ ceph orch ls mon --export 2024-09-16T05:26:42.790 INFO:teuthology.orchestra.run.smithi029.stderr:+ sed /smithi167/d mon.yaml 2024-09-16T05:26:42.791 INFO:teuthology.orchestra.run.smithi029.stderr:+ ceph orch apply -i mon_adjusted.yaml 2024-09-16T05:26:42.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:42 smithi167 bash[23275]: cluster 2024-09-16T05:26:41.422439+0000 mgr.a (mgr.14150) 364 : cluster [DBG] pgmap v320: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:42.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:42 smithi167 bash[23275]: audit 2024-09-16T05:26:41.600259+0000 mgr.a (mgr.14150) 365 : audit [DBG] from='client.14460 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T05:26:42.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:42 smithi167 bash[23275]: audit 2024-09-16T05:26:41.891181+0000 mgr.a (mgr.14150) 366 : audit [DBG] from='client.14466 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi029", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T05:26:42.990 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:42 smithi167 bash[23275]: audit 2024-09-16T05:26:42.182047+0000 mgr.a (mgr.14150) 367 : audit [DBG] from='client.14472 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi081", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T05:26:42.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:42 smithi167 bash[23275]: audit 2024-09-16T05:26:42.633503+0000 mon.a (mon.0) 914 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:42.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:42 smithi167 bash[23275]: audit 2024-09-16T05:26:42.639231+0000 mon.a (mon.0) 915 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:42.991 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:42 smithi167 bash[23275]: audit 2024-09-16T05:26:42.644349+0000 mon.a (mon.0) 916 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:43.020 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:42 smithi081 bash[23455]: cluster 2024-09-16T05:26:41.422439+0000 mgr.a (mgr.14150) 364 : cluster [DBG] pgmap v320: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:43.021 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:42 smithi081 bash[23455]: audit 2024-09-16T05:26:41.600259+0000 mgr.a (mgr.14150) 365 : audit [DBG] from='client.14460 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T05:26:43.021 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:42 smithi081 bash[23455]: audit 2024-09-16T05:26:41.891181+0000 mgr.a (mgr.14150) 366 : audit [DBG] from='client.14466 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi029", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T05:26:43.021 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:42 smithi081 bash[23455]: audit 2024-09-16T05:26:42.182047+0000 mgr.a (mgr.14150) 367 : audit [DBG] from='client.14472 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi081", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T05:26:43.021 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:42 smithi081 bash[23455]: audit 2024-09-16T05:26:42.633503+0000 mon.a (mon.0) 914 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:43.021 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:42 smithi081 bash[23455]: audit 2024-09-16T05:26:42.639231+0000 mon.a (mon.0) 915 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:43.021 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:42 smithi081 bash[23455]: audit 2024-09-16T05:26:42.644349+0000 mon.a (mon.0) 916 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:43.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:42 smithi029 bash[22744]: cluster 2024-09-16T05:26:41.422439+0000 mgr.a (mgr.14150) 364 : cluster [DBG] pgmap v320: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:43.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:42 smithi029 bash[22744]: audit 2024-09-16T05:26:41.600259+0000 mgr.a (mgr.14150) 365 : audit [DBG] from='client.14460 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T05:26:43.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:42 smithi029 bash[22744]: audit 2024-09-16T05:26:41.891181+0000 mgr.a (mgr.14150) 366 : audit [DBG] from='client.14466 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi029", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T05:26:43.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:42 smithi029 bash[22744]: audit 2024-09-16T05:26:42.182047+0000 mgr.a (mgr.14150) 367 : audit [DBG] from='client.14472 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi081", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T05:26:43.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:42 smithi029 bash[22744]: audit 2024-09-16T05:26:42.633503+0000 mon.a (mon.0) 914 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:43.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:42 smithi029 bash[22744]: audit 2024-09-16T05:26:42.639231+0000 mon.a (mon.0) 915 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:43.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:42 smithi029 bash[22744]: audit 2024-09-16T05:26:42.644349+0000 mon.a (mon.0) 916 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:43.099 INFO:teuthology.orchestra.run.smithi029.stdout:Scheduled mon update... 2024-09-16T05:26:43.113 INFO:teuthology.orchestra.run.smithi029.stderr:+ ceph orch host drain smithi167 --zap-osd-devices 2024-09-16T05:26:44.240 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:43 smithi167 systemd[1]: ceph-825322c2-73ea-11ef-bceb-c7b262605968@mon.c.service: Deactivated successfully. 2024-09-16T05:26:45.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:45 smithi029 bash[22744]: audit 2024-09-16T05:26:42.480875+0000 mgr.a (mgr.14150) 368 : audit [DBG] from='client.14478 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi167", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T05:26:45.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:45 smithi029 bash[22744]: audit 2024-09-16T05:26:42.776053+0000 mgr.a (mgr.14150) 369 : audit [DBG] from='client.14484 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:26:45.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:45 smithi029 bash[22744]: audit 2024-09-16T05:26:43.095286+0000 mgr.a (mgr.14150) 370 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:26:45.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:45 smithi029 bash[22744]: cephadm 2024-09-16T05:26:43.097766+0000 mgr.a (mgr.14150) 371 : cephadm [INF] Saving service mon spec with placement smithi029:172.21.15.29=a;smithi081:172.21.15.81=b;count:3 2024-09-16T05:26:45.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:45 smithi029 bash[22744]: cephadm 2024-09-16T05:26:43.121037+0000 mgr.a (mgr.14150) 372 : cephadm [INF] Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-16T05:26:45.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:45 smithi029 bash[22744]: cephadm 2024-09-16T05:26:43.121139+0000 mgr.a (mgr.14150) 373 : cephadm [INF] Removing monitor c from monmap... 2024-09-16T05:26:45.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:45 smithi029 bash[22744]: audit 2024-09-16T05:26:43.122717+0000 mon.a (mon.0) 925 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2024-09-16T05:26:45.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:45 smithi029 bash[22744]: audit 2024-09-16T05:26:43.125838+0000 mon.a (mon.0) 926 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T05:26:45.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:45 smithi029 bash[22744]: audit 2024-09-16T05:26:43.126518+0000 mon.a (mon.0) 927 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:26:45.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:45 smithi029 bash[22744]: cluster 2024-09-16T05:26:43.134154+0000 mon.b (mon.1) 16 : cluster [INF] mon.b calling monitor election 2024-09-16T05:26:45.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:45 smithi029 bash[22744]: cluster 2024-09-16T05:26:43.422971+0000 mgr.a (mgr.14150) 374 : cluster [DBG] pgmap v321: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:45.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:45 smithi029 bash[22744]: cluster 2024-09-16T05:26:45.126448+0000 mon.a (mon.0) 928 : cluster [INF] mon.a calling monitor election 2024-09-16T05:26:45.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:45 smithi029 bash[22744]: cluster 2024-09-16T05:26:45.147052+0000 mon.a (mon.0) 929 : cluster [INF] mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-16T05:26:45.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:45 smithi029 bash[22744]: cluster 2024-09-16T05:26:45.153232+0000 mon.a (mon.0) 930 : cluster [DBG] monmap epoch 4 2024-09-16T05:26:45.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:45 smithi029 bash[22744]: cluster 2024-09-16T05:26:45.153261+0000 mon.a (mon.0) 931 : cluster [DBG] fsid 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:26:45.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:45 smithi029 bash[22744]: cluster 2024-09-16T05:26:45.153290+0000 mon.a (mon.0) 932 : cluster [DBG] last_changed 2024-09-16T05:26:43.121414+0000 2024-09-16T05:26:45.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:45 smithi029 bash[22744]: cluster 2024-09-16T05:26:45.153322+0000 mon.a (mon.0) 933 : cluster [DBG] created 2024-09-16T05:15:55.257784+0000 2024-09-16T05:26:45.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:45 smithi029 bash[22744]: cluster 2024-09-16T05:26:45.153354+0000 mon.a (mon.0) 934 : cluster [DBG] min_mon_release 19 (squid) 2024-09-16T05:26:45.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:45 smithi029 bash[22744]: cluster 2024-09-16T05:26:45.153384+0000 mon.a (mon.0) 935 : cluster [DBG] election_strategy: 1 2024-09-16T05:26:45.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:45 smithi029 bash[22744]: cluster 2024-09-16T05:26:45.153413+0000 mon.a (mon.0) 936 : cluster [DBG] 0: [v2:172.21.15.29:3300/0,v1:172.21.15.29:6789/0] mon.a 2024-09-16T05:26:45.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:45 smithi029 bash[22744]: cluster 2024-09-16T05:26:45.153443+0000 mon.a (mon.0) 937 : cluster [DBG] 1: [v2:172.21.15.81:3300/0,v1:172.21.15.81:6789/0] mon.b 2024-09-16T05:26:45.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:45 smithi029 bash[22744]: cluster 2024-09-16T05:26:45.154535+0000 mon.a (mon.0) 938 : cluster [DBG] fsmap 2024-09-16T05:26:45.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:45 smithi029 bash[22744]: cluster 2024-09-16T05:26:45.154612+0000 mon.a (mon.0) 939 : cluster [DBG] osdmap e46: 6 total, 6 up, 6 in 2024-09-16T05:26:45.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:45 smithi029 bash[22744]: cluster 2024-09-16T05:26:45.155423+0000 mon.a (mon.0) 940 : cluster [DBG] mgrmap e15: a(active, since 9m), standbys: b 2024-09-16T05:26:45.589 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:45 smithi029 bash[22744]: cluster 2024-09-16T05:26:45.155684+0000 mon.a (mon.0) 941 : cluster [INF] overall HEALTH_OK 2024-09-16T05:26:45.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:45 smithi081 bash[23455]: audit 2024-09-16T05:26:42.480875+0000 mgr.a (mgr.14150) 368 : audit [DBG] from='client.14478 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi167", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T05:26:45.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:45 smithi081 bash[23455]: audit 2024-09-16T05:26:42.776053+0000 mgr.a (mgr.14150) 369 : audit [DBG] from='client.14484 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:26:45.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:45 smithi081 bash[23455]: audit 2024-09-16T05:26:43.095286+0000 mgr.a (mgr.14150) 370 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:26:45.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:45 smithi081 bash[23455]: cephadm 2024-09-16T05:26:43.097766+0000 mgr.a (mgr.14150) 371 : cephadm [INF] Saving service mon spec with placement smithi029:172.21.15.29=a;smithi081:172.21.15.81=b;count:3 2024-09-16T05:26:45.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:45 smithi081 bash[23455]: cephadm 2024-09-16T05:26:43.121037+0000 mgr.a (mgr.14150) 372 : cephadm [INF] Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-16T05:26:45.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:45 smithi081 bash[23455]: cephadm 2024-09-16T05:26:43.121139+0000 mgr.a (mgr.14150) 373 : cephadm [INF] Removing monitor c from monmap... 2024-09-16T05:26:45.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:45 smithi081 bash[23455]: audit 2024-09-16T05:26:43.122717+0000 mon.a (mon.0) 925 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2024-09-16T05:26:45.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:45 smithi081 bash[23455]: audit 2024-09-16T05:26:43.125838+0000 mon.a (mon.0) 926 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T05:26:45.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:45 smithi081 bash[23455]: audit 2024-09-16T05:26:43.126518+0000 mon.a (mon.0) 927 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T05:26:45.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:45 smithi081 bash[23455]: cluster 2024-09-16T05:26:43.134154+0000 mon.b (mon.1) 16 : cluster [INF] mon.b calling monitor election 2024-09-16T05:26:45.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:45 smithi081 bash[23455]: cluster 2024-09-16T05:26:43.422971+0000 mgr.a (mgr.14150) 374 : cluster [DBG] pgmap v321: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:45.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:45 smithi081 bash[23455]: cluster 2024-09-16T05:26:45.126448+0000 mon.a (mon.0) 928 : cluster [INF] mon.a calling monitor election 2024-09-16T05:26:45.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:45 smithi081 bash[23455]: cluster 2024-09-16T05:26:45.147052+0000 mon.a (mon.0) 929 : cluster [INF] mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-16T05:26:45.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:45 smithi081 bash[23455]: cluster 2024-09-16T05:26:45.153232+0000 mon.a (mon.0) 930 : cluster [DBG] monmap epoch 4 2024-09-16T05:26:45.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:45 smithi081 bash[23455]: cluster 2024-09-16T05:26:45.153261+0000 mon.a (mon.0) 931 : cluster [DBG] fsid 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:26:45.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:45 smithi081 bash[23455]: cluster 2024-09-16T05:26:45.153290+0000 mon.a (mon.0) 932 : cluster [DBG] last_changed 2024-09-16T05:26:43.121414+0000 2024-09-16T05:26:45.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:45 smithi081 bash[23455]: cluster 2024-09-16T05:26:45.153322+0000 mon.a (mon.0) 933 : cluster [DBG] created 2024-09-16T05:15:55.257784+0000 2024-09-16T05:26:45.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:45 smithi081 bash[23455]: cluster 2024-09-16T05:26:45.153354+0000 mon.a (mon.0) 934 : cluster [DBG] min_mon_release 19 (squid) 2024-09-16T05:26:45.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:45 smithi081 bash[23455]: cluster 2024-09-16T05:26:45.153384+0000 mon.a (mon.0) 935 : cluster [DBG] election_strategy: 1 2024-09-16T05:26:45.618 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:45 smithi081 bash[23455]: cluster 2024-09-16T05:26:45.153413+0000 mon.a (mon.0) 936 : cluster [DBG] 0: [v2:172.21.15.29:3300/0,v1:172.21.15.29:6789/0] mon.a 2024-09-16T05:26:45.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:45 smithi081 bash[23455]: cluster 2024-09-16T05:26:45.153443+0000 mon.a (mon.0) 937 : cluster [DBG] 1: [v2:172.21.15.81:3300/0,v1:172.21.15.81:6789/0] mon.b 2024-09-16T05:26:45.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:45 smithi081 bash[23455]: cluster 2024-09-16T05:26:45.154535+0000 mon.a (mon.0) 938 : cluster [DBG] fsmap 2024-09-16T05:26:45.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:45 smithi081 bash[23455]: cluster 2024-09-16T05:26:45.154612+0000 mon.a (mon.0) 939 : cluster [DBG] osdmap e46: 6 total, 6 up, 6 in 2024-09-16T05:26:45.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:45 smithi081 bash[23455]: cluster 2024-09-16T05:26:45.155423+0000 mon.a (mon.0) 940 : cluster [DBG] mgrmap e15: a(active, since 9m), standbys: b 2024-09-16T05:26:45.619 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:45 smithi081 bash[23455]: cluster 2024-09-16T05:26:45.155684+0000 mon.a (mon.0) 941 : cluster [INF] overall HEALTH_OK 2024-09-16T05:26:46.437 INFO:teuthology.orchestra.run.smithi029.stdout:Scheduled to remove the following daemons from host 'smithi167' 2024-09-16T05:26:46.438 INFO:teuthology.orchestra.run.smithi029.stdout:type id 2024-09-16T05:26:46.438 INFO:teuthology.orchestra.run.smithi029.stdout:-------------------- --------------- 2024-09-16T05:26:46.438 INFO:teuthology.orchestra.run.smithi029.stdout:agent smithi167 2024-09-16T05:26:46.438 INFO:teuthology.orchestra.run.smithi029.stdout:mon c 2024-09-16T05:26:46.438 INFO:teuthology.orchestra.run.smithi029.stdout:osd 4 2024-09-16T05:26:46.438 INFO:teuthology.orchestra.run.smithi029.stdout:osd 5 2024-09-16T05:26:46.451 INFO:teuthology.orchestra.run.smithi029.stderr:++ ceph orch ps --hostname smithi167 2024-09-16T05:26:46.586 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:46 smithi029 bash[22744]: cephadm 2024-09-16T05:26:45.157953+0000 mgr.a (mgr.14150) 375 : cephadm [INF] Removing daemon mon.c from smithi167 -- ports [] 2024-09-16T05:26:46.586 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:46 smithi029 bash[22744]: audit 2024-09-16T05:26:45.255566+0000 mon.a (mon.0) 942 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:46.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:46 smithi029 bash[22744]: audit 2024-09-16T05:26:45.263643+0000 mon.a (mon.0) 943 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:46.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:46 smithi029 bash[22744]: audit 2024-09-16T05:26:45.272597+0000 mon.a (mon.0) 944 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:46.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:46 smithi081 bash[23455]: cephadm 2024-09-16T05:26:45.157953+0000 mgr.a (mgr.14150) 375 : cephadm [INF] Removing daemon mon.c from smithi167 -- ports [] 2024-09-16T05:26:46.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:46 smithi081 bash[23455]: audit 2024-09-16T05:26:45.255566+0000 mon.a (mon.0) 942 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:46.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:46 smithi081 bash[23455]: audit 2024-09-16T05:26:45.263643+0000 mon.a (mon.0) 943 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:46.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:46 smithi081 bash[23455]: audit 2024-09-16T05:26:45.272597+0000 mon.a (mon.0) 944 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:46.777 INFO:teuthology.orchestra.run.smithi029.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-16T05:26:46.777 INFO:teuthology.orchestra.run.smithi029.stderr:agent.smithi167 smithi167 running 1s ago 8m - - 2024-09-16T05:26:46.777 INFO:teuthology.orchestra.run.smithi029.stderr:mon.c smithi167 running (8m) 1s ago 8m 34.2M 2048M 19.1.1-326-g8921c8ef f1455bd0219c 335efa25d0c3 2024-09-16T05:26:46.777 INFO:teuthology.orchestra.run.smithi029.stderr:osd.4 smithi167 running (2m) 1s ago 2m 45.0M 9.93G 19.1.1-326-g8921c8ef f1455bd0219c e0cc368adf22 2024-09-16T05:26:46.777 INFO:teuthology.orchestra.run.smithi029.stderr:osd.5 smithi167 running (119s) 1s ago 2m 45.0M 9.93G 19.1.1-326-g8921c8ef f1455bd0219c e38a1897791d ' 2024-09-16T05:26:46.777 INFO:teuthology.orchestra.run.smithi029.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-16T05:26:46.778 INFO:teuthology.orchestra.run.smithi029.stderr:agent.smithi167 smithi167 running 1s ago 8m - - 2024-09-16T05:26:46.778 INFO:teuthology.orchestra.run.smithi029.stderr:mon.c smithi167 running (8m) 1s ago 8m 34.2M 2048M 19.1.1-326-g8921c8ef f1455bd0219c 335efa25d0c3 2024-09-16T05:26:46.778 INFO:teuthology.orchestra.run.smithi029.stderr:osd.4 smithi167 running (2m) 1s ago 2m 45.0M 9.93G 19.1.1-326-g8921c8ef f1455bd0219c e0cc368adf22 2024-09-16T05:26:46.778 INFO:teuthology.orchestra.run.smithi029.stderr:osd.5 smithi167 running (119s) 1s ago 2m 45.0M 9.93G 19.1.1-326-g8921c8ef f1455bd0219c e38a1897791d ' '!=' 'No daemons reported' ']' 2024-09-16T05:26:46.778 INFO:teuthology.orchestra.run.smithi029.stderr:+ sleep 15 2024-09-16T05:26:47.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:47 smithi029 bash[22744]: cluster 2024-09-16T05:26:45.423516+0000 mgr.a (mgr.14150) 376 : cluster [DBG] pgmap v322: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:47.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:47 smithi029 bash[22744]: audit 2024-09-16T05:26:46.429351+0000 mon.a (mon.0) 945 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:47.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:47 smithi029 bash[22744]: audit 2024-09-16T05:26:46.435443+0000 mon.a (mon.0) 946 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:47.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:47 smithi029 bash[22744]: audit 2024-09-16T05:26:46.437262+0000 mon.a (mon.0) 947 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-16T05:26:47.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:47 smithi029 bash[22744]: audit 2024-09-16T05:26:46.439416+0000 mon.a (mon.0) 948 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-16T05:26:47.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:47 smithi081 bash[23455]: cluster 2024-09-16T05:26:45.423516+0000 mgr.a (mgr.14150) 376 : cluster [DBG] pgmap v322: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:47.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:47 smithi081 bash[23455]: audit 2024-09-16T05:26:46.429351+0000 mon.a (mon.0) 945 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:47.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:47 smithi081 bash[23455]: audit 2024-09-16T05:26:46.435443+0000 mon.a (mon.0) 946 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:47.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:47 smithi081 bash[23455]: audit 2024-09-16T05:26:46.437262+0000 mon.a (mon.0) 947 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-16T05:26:47.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:47 smithi081 bash[23455]: audit 2024-09-16T05:26:46.439416+0000 mon.a (mon.0) 948 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-16T05:26:48.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:48 smithi029 bash[22744]: audit 2024-09-16T05:26:46.422762+0000 mgr.a (mgr.14150) 377 : audit [DBG] from='client.14494 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi167", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:26:48.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:48 smithi029 bash[22744]: cephadm 2024-09-16T05:26:46.430053+0000 mgr.a (mgr.14150) 378 : cephadm [INF] Added label _no_schedule to host smithi167 2024-09-16T05:26:48.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:48 smithi029 bash[22744]: cephadm 2024-09-16T05:26:46.435926+0000 mgr.a (mgr.14150) 379 : cephadm [INF] Added label _no_conf_keyring to host smithi167 2024-09-16T05:26:48.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:48 smithi029 bash[22744]: cephadm 2024-09-16T05:26:46.438329+0000 mgr.a (mgr.14150) 380 : cephadm [INF] osd.4 crush weight is 0.0872955322265625 2024-09-16T05:26:48.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:48 smithi029 bash[22744]: cephadm 2024-09-16T05:26:46.440618+0000 mgr.a (mgr.14150) 381 : cephadm [INF] osd.5 crush weight is 0.0872955322265625 2024-09-16T05:26:48.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:48 smithi029 bash[22744]: audit 2024-09-16T05:26:46.753172+0000 mgr.a (mgr.14150) 382 : audit [DBG] from='client.14498 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi167", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:26:48.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:48 smithi029 bash[22744]: audit 2024-09-16T05:26:47.983357+0000 mon.a (mon.0) 949 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:48.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:48 smithi029 bash[22744]: audit 2024-09-16T05:26:47.991454+0000 mon.a (mon.0) 950 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:48.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:48 smithi029 bash[22744]: audit 2024-09-16T05:26:48.000750+0000 mon.a (mon.0) 951 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:48.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:48 smithi081 bash[23455]: audit 2024-09-16T05:26:46.422762+0000 mgr.a (mgr.14150) 377 : audit [DBG] from='client.14494 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi167", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:26:48.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:48 smithi081 bash[23455]: cephadm 2024-09-16T05:26:46.430053+0000 mgr.a (mgr.14150) 378 : cephadm [INF] Added label _no_schedule to host smithi167 2024-09-16T05:26:48.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:48 smithi081 bash[23455]: cephadm 2024-09-16T05:26:46.435926+0000 mgr.a (mgr.14150) 379 : cephadm [INF] Added label _no_conf_keyring to host smithi167 2024-09-16T05:26:48.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:48 smithi081 bash[23455]: cephadm 2024-09-16T05:26:46.438329+0000 mgr.a (mgr.14150) 380 : cephadm [INF] osd.4 crush weight is 0.0872955322265625 2024-09-16T05:26:48.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:48 smithi081 bash[23455]: cephadm 2024-09-16T05:26:46.440618+0000 mgr.a (mgr.14150) 381 : cephadm [INF] osd.5 crush weight is 0.0872955322265625 2024-09-16T05:26:48.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:48 smithi081 bash[23455]: audit 2024-09-16T05:26:46.753172+0000 mgr.a (mgr.14150) 382 : audit [DBG] from='client.14498 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi167", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:26:48.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:48 smithi081 bash[23455]: audit 2024-09-16T05:26:47.983357+0000 mon.a (mon.0) 949 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:48.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:48 smithi081 bash[23455]: audit 2024-09-16T05:26:47.991454+0000 mon.a (mon.0) 950 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:48.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:48 smithi081 bash[23455]: audit 2024-09-16T05:26:48.000750+0000 mon.a (mon.0) 951 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:49.586 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:49 smithi029 bash[22744]: cluster 2024-09-16T05:26:47.424082+0000 mgr.a (mgr.14150) 383 : cluster [DBG] pgmap v323: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:49.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:49 smithi081 bash[23455]: cluster 2024-09-16T05:26:47.424082+0000 mgr.a (mgr.14150) 383 : cluster [DBG] pgmap v323: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:50.490 INFO:journalctl@ceph.mon.c.smithi167.stdout:Sep 16 05:26:50 smithi167 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:26:50.490 INFO:journalctl@ceph.osd.4.smithi167.stdout:Sep 16 05:26:50 smithi167 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:26:50.490 INFO:journalctl@ceph.osd.5.smithi167.stdout:Sep 16 05:26:50 smithi167 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:26:51.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:51 smithi029 bash[22744]: cluster 2024-09-16T05:26:49.424647+0000 mgr.a (mgr.14150) 384 : cluster [DBG] pgmap v324: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:51.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:51 smithi029 bash[22744]: audit 2024-09-16T05:26:50.550207+0000 mon.a (mon.0) 952 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:51.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:51 smithi029 bash[22744]: audit 2024-09-16T05:26:50.557643+0000 mon.a (mon.0) 953 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:51.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:51 smithi029 bash[22744]: audit 2024-09-16T05:26:50.645975+0000 mon.a (mon.0) 954 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:26:51.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:51 smithi029 bash[22744]: audit 2024-09-16T05:26:50.926045+0000 mon.a (mon.0) 955 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:51.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:51 smithi081 bash[23455]: cluster 2024-09-16T05:26:49.424647+0000 mgr.a (mgr.14150) 384 : cluster [DBG] pgmap v324: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:51.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:51 smithi081 bash[23455]: audit 2024-09-16T05:26:50.550207+0000 mon.a (mon.0) 952 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:51.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:51 smithi081 bash[23455]: audit 2024-09-16T05:26:50.557643+0000 mon.a (mon.0) 953 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:51.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:51 smithi081 bash[23455]: audit 2024-09-16T05:26:50.645975+0000 mon.a (mon.0) 954 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:26:51.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:51 smithi081 bash[23455]: audit 2024-09-16T05:26:50.926045+0000 mon.a (mon.0) 955 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:53.586 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:53 smithi029 bash[22744]: cluster 2024-09-16T05:26:51.425195+0000 mgr.a (mgr.14150) 385 : cluster [DBG] pgmap v325: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:53.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:53 smithi081 bash[23455]: cluster 2024-09-16T05:26:51.425195+0000 mgr.a (mgr.14150) 385 : cluster [DBG] pgmap v325: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:55.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:55 smithi029 bash[22744]: cluster 2024-09-16T05:26:53.425774+0000 mgr.a (mgr.14150) 386 : cluster [DBG] pgmap v326: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:55.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:55 smithi081 bash[23455]: cluster 2024-09-16T05:26:53.425774+0000 mgr.a (mgr.14150) 386 : cluster [DBG] pgmap v326: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:57.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:56 smithi029 bash[22744]: cluster 2024-09-16T05:26:55.426280+0000 mgr.a (mgr.14150) 387 : cluster [DBG] pgmap v327: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:57.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:56 smithi029 bash[22744]: audit 2024-09-16T05:26:55.928935+0000 mon.a (mon.0) 956 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:57.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:56 smithi029 bash[22744]: audit 2024-09-16T05:26:55.936694+0000 mon.a (mon.0) 957 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:57.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:56 smithi029 bash[22744]: audit 2024-09-16T05:26:56.450302+0000 mon.a (mon.0) 958 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:57.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:56 smithi029 bash[22744]: audit 2024-09-16T05:26:56.458442+0000 mon.a (mon.0) 959 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:57.366 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:56 smithi081 bash[23455]: cluster 2024-09-16T05:26:55.426280+0000 mgr.a (mgr.14150) 387 : cluster [DBG] pgmap v327: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:57.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:56 smithi081 bash[23455]: audit 2024-09-16T05:26:55.928935+0000 mon.a (mon.0) 956 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:57.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:56 smithi081 bash[23455]: audit 2024-09-16T05:26:55.936694+0000 mon.a (mon.0) 957 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:57.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:56 smithi081 bash[23455]: audit 2024-09-16T05:26:56.450302+0000 mon.a (mon.0) 958 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:57.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:56 smithi081 bash[23455]: audit 2024-09-16T05:26:56.458442+0000 mon.a (mon.0) 959 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:26:59.336 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:26:58 smithi029 bash[22744]: cluster 2024-09-16T05:26:57.426937+0000 mgr.a (mgr.14150) 388 : cluster [DBG] pgmap v328: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:26:59.366 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:26:58 smithi081 bash[23455]: cluster 2024-09-16T05:26:57.426937+0000 mgr.a (mgr.14150) 388 : cluster [DBG] pgmap v328: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:27:01.086 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:00 smithi029 bash[22744]: cluster 2024-09-16T05:26:59.427438+0000 mgr.a (mgr.14150) 389 : cluster [DBG] pgmap v329: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:27:01.366 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:00 smithi081 bash[23455]: cluster 2024-09-16T05:26:59.427438+0000 mgr.a (mgr.14150) 389 : cluster [DBG] pgmap v329: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:27:01.780 INFO:teuthology.orchestra.run.smithi029.stderr:++ ceph orch ps --hostname smithi167 2024-09-16T05:27:02.110 INFO:teuthology.orchestra.run.smithi029.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-16T05:27:02.110 INFO:teuthology.orchestra.run.smithi029.stderr:agent.smithi167 smithi167 running 6s ago 8m - - 2024-09-16T05:27:02.110 INFO:teuthology.orchestra.run.smithi029.stderr:osd.4 smithi167 running (3m) 6s ago 3m 45.2M 9.93G 19.1.1-326-g8921c8ef f1455bd0219c e0cc368adf22 2024-09-16T05:27:02.110 INFO:teuthology.orchestra.run.smithi029.stderr:osd.5 smithi167 running (2m) 6s ago 2m 45.2M 9.93G 19.1.1-326-g8921c8ef f1455bd0219c e38a1897791d ' 2024-09-16T05:27:02.110 INFO:teuthology.orchestra.run.smithi029.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-16T05:27:02.110 INFO:teuthology.orchestra.run.smithi029.stderr:agent.smithi167 smithi167 running 6s ago 8m - - 2024-09-16T05:27:02.110 INFO:teuthology.orchestra.run.smithi029.stderr:osd.4 smithi167 running (3m) 6s ago 3m 45.2M 9.93G 19.1.1-326-g8921c8ef f1455bd0219c e0cc368adf22 2024-09-16T05:27:02.110 INFO:teuthology.orchestra.run.smithi029.stderr:osd.5 smithi167 running (2m) 6s ago 2m 45.2M 9.93G 19.1.1-326-g8921c8ef f1455bd0219c e38a1897791d ' '!=' 'No daemons reported' ']' 2024-09-16T05:27:02.110 INFO:teuthology.orchestra.run.smithi029.stderr:+ sleep 15 2024-09-16T05:27:03.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:02 smithi029 bash[22744]: cluster 2024-09-16T05:27:01.427891+0000 mgr.a (mgr.14150) 390 : cluster [DBG] pgmap v330: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:27:03.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:02 smithi029 bash[22744]: audit 2024-09-16T05:27:02.088473+0000 mgr.a (mgr.14150) 391 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi167", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:27:03.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:02 smithi029 bash[22744]: audit 2024-09-16T05:27:02.815579+0000 mon.a (mon.0) 960 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:03.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:02 smithi029 bash[22744]: audit 2024-09-16T05:27:02.820933+0000 mon.a (mon.0) 961 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:03.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:02 smithi029 bash[22744]: audit 2024-09-16T05:27:02.827121+0000 mon.a (mon.0) 962 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:03.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:02 smithi081 bash[23455]: cluster 2024-09-16T05:27:01.427891+0000 mgr.a (mgr.14150) 390 : cluster [DBG] pgmap v330: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:27:03.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:02 smithi081 bash[23455]: audit 2024-09-16T05:27:02.088473+0000 mgr.a (mgr.14150) 391 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi167", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:27:03.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:02 smithi081 bash[23455]: audit 2024-09-16T05:27:02.815579+0000 mon.a (mon.0) 960 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:03.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:02 smithi081 bash[23455]: audit 2024-09-16T05:27:02.820933+0000 mon.a (mon.0) 961 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:03.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:02 smithi081 bash[23455]: audit 2024-09-16T05:27:02.827121+0000 mon.a (mon.0) 962 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:05.222 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:04 smithi081 bash[23455]: cluster 2024-09-16T05:27:03.428537+0000 mgr.a (mgr.14150) 392 : cluster [DBG] pgmap v331: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:27:05.336 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:04 smithi029 bash[22744]: cluster 2024-09-16T05:27:03.428537+0000 mgr.a (mgr.14150) 392 : cluster [DBG] pgmap v331: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:27:06.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:06 smithi029 bash[22744]: audit 2024-09-16T05:27:05.406431+0000 mon.a (mon.0) 963 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:06.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:06 smithi029 bash[22744]: audit 2024-09-16T05:27:05.414447+0000 mon.a (mon.0) 964 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:06.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:06 smithi029 bash[22744]: audit 2024-09-16T05:27:05.423796+0000 mon.a (mon.0) 965 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:06.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:06 smithi029 bash[22744]: cluster 2024-09-16T05:27:05.429166+0000 mgr.a (mgr.14150) 393 : cluster [DBG] pgmap v332: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:27:06.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:06 smithi029 bash[22744]: cephadm 2024-09-16T05:27:05.891347+0000 mgr.a (mgr.14150) 394 : cephadm [INF] Detected new or changed devices on smithi167 2024-09-16T05:27:06.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:06 smithi029 bash[22744]: audit 2024-09-16T05:27:05.899680+0000 mon.a (mon.0) 966 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:06.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:06 smithi029 bash[22744]: audit 2024-09-16T05:27:05.907758+0000 mon.a (mon.0) 967 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:06.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:06 smithi029 bash[22744]: audit 2024-09-16T05:27:05.909482+0000 mon.a (mon.0) 968 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:27:06.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:06 smithi029 bash[22744]: audit 2024-09-16T05:27:05.911452+0000 mon.a (mon.0) 969 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:27:06.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:06 smithi029 bash[22744]: cephadm 2024-09-16T05:27:05.913844+0000 mgr.a (mgr.14150) 395 : cephadm [INF] Updating smithi029:/etc/ceph/ceph.conf 2024-09-16T05:27:06.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:06 smithi029 bash[22744]: cephadm 2024-09-16T05:27:05.914546+0000 mgr.a (mgr.14150) 396 : cephadm [INF] Updating smithi081:/etc/ceph/ceph.conf 2024-09-16T05:27:06.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:06 smithi029 bash[22744]: cephadm 2024-09-16T05:27:05.915904+0000 mgr.a (mgr.14150) 397 : cephadm [INF] Removing smithi167:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T05:27:06.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:06 smithi029 bash[22744]: cephadm 2024-09-16T05:27:05.982503+0000 mgr.a (mgr.14150) 398 : cephadm [INF] Removing smithi167:/etc/ceph/ceph.client.admin.keyring 2024-09-16T05:27:06.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:06 smithi029 bash[22744]: cephadm 2024-09-16T05:27:06.038889+0000 mgr.a (mgr.14150) 399 : cephadm [INF] Removing smithi167:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-16T05:27:06.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:06 smithi029 bash[22744]: audit 2024-09-16T05:27:06.087243+0000 mon.a (mon.0) 970 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:06.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:06 smithi029 bash[22744]: audit 2024-09-16T05:27:06.095347+0000 mon.a (mon.0) 971 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:06.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:06 smithi029 bash[22744]: cephadm 2024-09-16T05:27:06.160623+0000 mgr.a (mgr.14150) 400 : cephadm [INF] Updating smithi081:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T05:27:06.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:06 smithi029 bash[22744]: cephadm 2024-09-16T05:27:06.160915+0000 mgr.a (mgr.14150) 401 : cephadm [INF] Updating smithi029:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T05:27:06.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:06 smithi029 bash[22744]: audit 2024-09-16T05:27:06.319402+0000 mon.a (mon.0) 972 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:06.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:06 smithi029 bash[22744]: audit 2024-09-16T05:27:06.324464+0000 mon.a (mon.0) 973 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:06.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:06 smithi029 bash[22744]: audit 2024-09-16T05:27:06.329883+0000 mon.a (mon.0) 974 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:06.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:06 smithi029 bash[22744]: audit 2024-09-16T05:27:06.335113+0000 mon.a (mon.0) 975 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:06.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:06 smithi029 bash[22744]: audit 2024-09-16T05:27:06.337881+0000 mon.a (mon.0) 976 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T05:27:06.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:06 smithi029 bash[22744]: audit 2024-09-16T05:27:06.338070+0000 mgr.a (mgr.14150) 402 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T05:27:06.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:06 smithi029 bash[22744]: audit 2024-09-16T05:27:06.339353+0000 mon.a (mon.0) 977 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T05:27:06.839 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:06 smithi029 bash[22744]: audit 2024-09-16T05:27:06.339506+0000 mgr.a (mgr.14150) 403 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T05:27:06.840 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:06 smithi029 bash[22744]: audit 2024-09-16T05:27:06.341004+0000 mon.a (mon.0) 978 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-16T05:27:06.840 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:06 smithi029 bash[22744]: audit 2024-09-16T05:27:06.341156+0000 mgr.a (mgr.14150) 404 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-16T05:27:06.840 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:06 smithi029 bash[22744]: audit 2024-09-16T05:27:06.342196+0000 mon.a (mon.0) 979 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-09-16T05:27:06.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:06 smithi081 bash[23455]: audit 2024-09-16T05:27:05.406431+0000 mon.a (mon.0) 963 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:06.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:06 smithi081 bash[23455]: audit 2024-09-16T05:27:05.414447+0000 mon.a (mon.0) 964 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:06.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:06 smithi081 bash[23455]: audit 2024-09-16T05:27:05.423796+0000 mon.a (mon.0) 965 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:06.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:06 smithi081 bash[23455]: cluster 2024-09-16T05:27:05.429166+0000 mgr.a (mgr.14150) 393 : cluster [DBG] pgmap v332: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:27:06.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:06 smithi081 bash[23455]: cephadm 2024-09-16T05:27:05.891347+0000 mgr.a (mgr.14150) 394 : cephadm [INF] Detected new or changed devices on smithi167 2024-09-16T05:27:06.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:06 smithi081 bash[23455]: audit 2024-09-16T05:27:05.899680+0000 mon.a (mon.0) 966 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:06.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:06 smithi081 bash[23455]: audit 2024-09-16T05:27:05.907758+0000 mon.a (mon.0) 967 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:06.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:06 smithi081 bash[23455]: audit 2024-09-16T05:27:05.909482+0000 mon.a (mon.0) 968 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:27:06.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:06 smithi081 bash[23455]: audit 2024-09-16T05:27:05.911452+0000 mon.a (mon.0) 969 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:27:06.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:06 smithi081 bash[23455]: cephadm 2024-09-16T05:27:05.913844+0000 mgr.a (mgr.14150) 395 : cephadm [INF] Updating smithi029:/etc/ceph/ceph.conf 2024-09-16T05:27:06.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:06 smithi081 bash[23455]: cephadm 2024-09-16T05:27:05.914546+0000 mgr.a (mgr.14150) 396 : cephadm [INF] Updating smithi081:/etc/ceph/ceph.conf 2024-09-16T05:27:06.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:06 smithi081 bash[23455]: cephadm 2024-09-16T05:27:05.915904+0000 mgr.a (mgr.14150) 397 : cephadm [INF] Removing smithi167:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T05:27:06.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:06 smithi081 bash[23455]: cephadm 2024-09-16T05:27:05.982503+0000 mgr.a (mgr.14150) 398 : cephadm [INF] Removing smithi167:/etc/ceph/ceph.client.admin.keyring 2024-09-16T05:27:06.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:06 smithi081 bash[23455]: cephadm 2024-09-16T05:27:06.038889+0000 mgr.a (mgr.14150) 399 : cephadm [INF] Removing smithi167:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-16T05:27:06.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:06 smithi081 bash[23455]: audit 2024-09-16T05:27:06.087243+0000 mon.a (mon.0) 970 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:06.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:06 smithi081 bash[23455]: audit 2024-09-16T05:27:06.095347+0000 mon.a (mon.0) 971 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:06.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:06 smithi081 bash[23455]: cephadm 2024-09-16T05:27:06.160623+0000 mgr.a (mgr.14150) 400 : cephadm [INF] Updating smithi081:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T05:27:06.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:06 smithi081 bash[23455]: cephadm 2024-09-16T05:27:06.160915+0000 mgr.a (mgr.14150) 401 : cephadm [INF] Updating smithi029:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T05:27:06.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:06 smithi081 bash[23455]: audit 2024-09-16T05:27:06.319402+0000 mon.a (mon.0) 972 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:06.868 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:06 smithi081 bash[23455]: audit 2024-09-16T05:27:06.324464+0000 mon.a (mon.0) 973 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:06.869 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:06 smithi081 bash[23455]: audit 2024-09-16T05:27:06.329883+0000 mon.a (mon.0) 974 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:06.869 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:06 smithi081 bash[23455]: audit 2024-09-16T05:27:06.335113+0000 mon.a (mon.0) 975 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:06.869 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:06 smithi081 bash[23455]: audit 2024-09-16T05:27:06.337881+0000 mon.a (mon.0) 976 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T05:27:06.869 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:06 smithi081 bash[23455]: audit 2024-09-16T05:27:06.338070+0000 mgr.a (mgr.14150) 402 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T05:27:06.869 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:06 smithi081 bash[23455]: audit 2024-09-16T05:27:06.339353+0000 mon.a (mon.0) 977 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T05:27:06.869 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:06 smithi081 bash[23455]: audit 2024-09-16T05:27:06.339506+0000 mgr.a (mgr.14150) 403 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T05:27:06.869 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:06 smithi081 bash[23455]: audit 2024-09-16T05:27:06.341004+0000 mon.a (mon.0) 978 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-16T05:27:06.869 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:06 smithi081 bash[23455]: audit 2024-09-16T05:27:06.341156+0000 mgr.a (mgr.14150) 404 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-16T05:27:06.869 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:06 smithi081 bash[23455]: audit 2024-09-16T05:27:06.342196+0000 mon.a (mon.0) 979 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-09-16T05:27:07.836 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:07 smithi029 bash[22744]: debug 2024-09-16T05:27:07.345+0000 7fb2eff61640 -1 mon.a@0(leader).osd e47 definitely_dead 0 2024-09-16T05:27:08.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:08 smithi029 bash[22744]: audit 2024-09-16T05:27:07.047206+0000 mon.a (mon.0) 980 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:08.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:08 smithi029 bash[22744]: audit 2024-09-16T05:27:07.055047+0000 mon.a (mon.0) 981 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:08.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:08 smithi029 bash[22744]: cephadm 2024-09-16T05:27:07.057726+0000 mgr.a (mgr.14150) 405 : cephadm [INF] Detected new or changed devices on smithi167 2024-09-16T05:27:08.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:08 smithi029 bash[22744]: audit 2024-09-16T05:27:07.064888+0000 mon.a (mon.0) 982 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:08.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:08 smithi029 bash[22744]: audit 2024-09-16T05:27:07.336044+0000 mon.a (mon.0) 983 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-16T05:27:08.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:08 smithi029 bash[22744]: cluster 2024-09-16T05:27:07.340509+0000 mon.a (mon.0) 984 : cluster [DBG] osdmap e47: 6 total, 6 up, 6 in 2024-09-16T05:27:08.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:08 smithi029 bash[22744]: cephadm 2024-09-16T05:27:07.341546+0000 mgr.a (mgr.14150) 406 : cephadm [INF] osd.5 weight is now 0.0 2024-09-16T05:27:08.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:08 smithi029 bash[22744]: audit 2024-09-16T05:27:07.342338+0000 mon.a (mon.0) 985 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T05:27:08.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:08 smithi029 bash[22744]: audit 2024-09-16T05:27:07.342729+0000 mgr.a (mgr.14150) 407 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T05:27:08.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:08 smithi029 bash[22744]: audit 2024-09-16T05:27:07.345392+0000 mon.a (mon.0) 986 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-16T05:27:08.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:08 smithi029 bash[22744]: audit 2024-09-16T05:27:07.345791+0000 mgr.a (mgr.14150) 408 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-16T05:27:08.338 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:08 smithi029 bash[22744]: audit 2024-09-16T05:27:07.347834+0000 mon.a (mon.0) 987 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-09-16T05:27:08.366 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:08 smithi081 bash[23455]: audit 2024-09-16T05:27:07.047206+0000 mon.a (mon.0) 980 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:08.366 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:08 smithi081 bash[23455]: audit 2024-09-16T05:27:07.055047+0000 mon.a (mon.0) 981 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:08.366 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:08 smithi081 bash[23455]: cephadm 2024-09-16T05:27:07.057726+0000 mgr.a (mgr.14150) 405 : cephadm [INF] Detected new or changed devices on smithi167 2024-09-16T05:27:08.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:08 smithi081 bash[23455]: audit 2024-09-16T05:27:07.064888+0000 mon.a (mon.0) 982 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:08.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:08 smithi081 bash[23455]: audit 2024-09-16T05:27:07.336044+0000 mon.a (mon.0) 983 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-16T05:27:08.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:08 smithi081 bash[23455]: cluster 2024-09-16T05:27:07.340509+0000 mon.a (mon.0) 984 : cluster [DBG] osdmap e47: 6 total, 6 up, 6 in 2024-09-16T05:27:08.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:08 smithi081 bash[23455]: cephadm 2024-09-16T05:27:07.341546+0000 mgr.a (mgr.14150) 406 : cephadm [INF] osd.5 weight is now 0.0 2024-09-16T05:27:08.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:08 smithi081 bash[23455]: audit 2024-09-16T05:27:07.342338+0000 mon.a (mon.0) 985 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T05:27:08.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:08 smithi081 bash[23455]: audit 2024-09-16T05:27:07.342729+0000 mgr.a (mgr.14150) 407 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T05:27:08.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:08 smithi081 bash[23455]: audit 2024-09-16T05:27:07.345392+0000 mon.a (mon.0) 986 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-16T05:27:08.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:08 smithi081 bash[23455]: audit 2024-09-16T05:27:07.345791+0000 mgr.a (mgr.14150) 408 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-16T05:27:08.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:08 smithi081 bash[23455]: audit 2024-09-16T05:27:07.347834+0000 mon.a (mon.0) 987 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-09-16T05:27:09.240 INFO:journalctl@ceph.osd.4.smithi167.stdout:Sep 16 05:27:08 smithi167 systemd[1]: Stopping Ceph osd.4 for 825322c2-73ea-11ef-bceb-c7b262605968... 2024-09-16T05:27:09.240 INFO:journalctl@ceph.osd.4.smithi167.stdout:Sep 16 05:27:08 smithi167 bash[29859]: debug 2024-09-16T05:27:08.951+0000 7fd19c98b640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-osd -n osd.4 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug (PID: 1) UID: 0 2024-09-16T05:27:09.240 INFO:journalctl@ceph.osd.4.smithi167.stdout:Sep 16 05:27:08 smithi167 bash[29859]: debug 2024-09-16T05:27:08.951+0000 7fd19c98b640 -1 osd.4 48 *** Got signal Terminated *** 2024-09-16T05:27:09.240 INFO:journalctl@ceph.osd.4.smithi167.stdout:Sep 16 05:27:08 smithi167 bash[29859]: debug 2024-09-16T05:27:08.951+0000 7fd19c98b640 -1 osd.4 48 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-16T05:27:09.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:09 smithi029 bash[22744]: cluster 2024-09-16T05:27:07.429762+0000 mgr.a (mgr.14150) 409 : cluster [DBG] pgmap v334: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:27:09.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:09 smithi029 bash[22744]: audit 2024-09-16T05:27:08.177235+0000 mon.a (mon.0) 988 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:09.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:09 smithi029 bash[22744]: audit 2024-09-16T05:27:08.185866+0000 mon.a (mon.0) 989 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:09.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:09 smithi029 bash[22744]: audit 2024-09-16T05:27:08.195365+0000 mon.a (mon.0) 990 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:09.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:09 smithi029 bash[22744]: cluster 2024-09-16T05:27:08.336865+0000 mon.a (mon.0) 991 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-16T05:27:09.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:09 smithi029 bash[22744]: audit 2024-09-16T05:27:08.343718+0000 mon.a (mon.0) 992 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-16T05:27:09.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:09 smithi029 bash[22744]: cluster 2024-09-16T05:27:08.348391+0000 mon.a (mon.0) 993 : cluster [DBG] osdmap e48: 6 total, 5 up, 6 in 2024-09-16T05:27:09.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:09 smithi029 bash[22744]: cephadm 2024-09-16T05:27:08.349649+0000 mgr.a (mgr.14150) 410 : cephadm [INF] osd.4 now down 2024-09-16T05:27:09.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:09 smithi029 bash[22744]: cephadm 2024-09-16T05:27:08.350230+0000 mgr.a (mgr.14150) 411 : cephadm [INF] Removing daemon osd.4 from smithi167 -- ports [] 2024-09-16T05:27:09.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:09 smithi029 bash[22744]: cluster 2024-09-16T05:27:08.769378+0000 mon.a (mon.0) 994 : cluster [INF] osd.4 marked itself dead as of e48 2024-09-16T05:27:09.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:09 smithi081 bash[23455]: cluster 2024-09-16T05:27:07.429762+0000 mgr.a (mgr.14150) 409 : cluster [DBG] pgmap v334: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:27:09.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:09 smithi081 bash[23455]: audit 2024-09-16T05:27:08.177235+0000 mon.a (mon.0) 988 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:09.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:09 smithi081 bash[23455]: audit 2024-09-16T05:27:08.185866+0000 mon.a (mon.0) 989 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:09.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:09 smithi081 bash[23455]: audit 2024-09-16T05:27:08.195365+0000 mon.a (mon.0) 990 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:09.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:09 smithi081 bash[23455]: cluster 2024-09-16T05:27:08.336865+0000 mon.a (mon.0) 991 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-16T05:27:09.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:09 smithi081 bash[23455]: audit 2024-09-16T05:27:08.343718+0000 mon.a (mon.0) 992 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-16T05:27:09.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:09 smithi081 bash[23455]: cluster 2024-09-16T05:27:08.348391+0000 mon.a (mon.0) 993 : cluster [DBG] osdmap e48: 6 total, 5 up, 6 in 2024-09-16T05:27:09.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:09 smithi081 bash[23455]: cephadm 2024-09-16T05:27:08.349649+0000 mgr.a (mgr.14150) 410 : cephadm [INF] osd.4 now down 2024-09-16T05:27:09.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:09 smithi081 bash[23455]: cephadm 2024-09-16T05:27:08.350230+0000 mgr.a (mgr.14150) 411 : cephadm [INF] Removing daemon osd.4 from smithi167 -- ports [] 2024-09-16T05:27:09.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:09 smithi081 bash[23455]: cluster 2024-09-16T05:27:08.769378+0000 mon.a (mon.0) 994 : cluster [INF] osd.4 marked itself dead as of e48 2024-09-16T05:27:10.202 INFO:journalctl@ceph.osd.4.smithi167.stdout:Sep 16 05:27:09 smithi167 bash[39044]: ceph-825322c2-73ea-11ef-bceb-c7b262605968-osd-4 2024-09-16T05:27:10.202 INFO:journalctl@ceph.osd.4.smithi167.stdout:Sep 16 05:27:10 smithi167 bash[39106]: Error response from daemon: No such container: ceph-825322c2-73ea-11ef-bceb-c7b262605968-osd-4 2024-09-16T05:27:10.586 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:10 smithi029 bash[22744]: cluster 2024-09-16T05:27:08.768460+0000 osd.4 (osd.4) 3 : cluster [WRN] Monitor daemon marked osd.4 down, but it is still running 2024-09-16T05:27:10.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:10 smithi029 bash[22744]: cluster 2024-09-16T05:27:08.768468+0000 osd.4 (osd.4) 4 : cluster [DBG] map e48 wrongly marked me down at e48 2024-09-16T05:27:10.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:10 smithi029 bash[22744]: cluster 2024-09-16T05:27:09.351474+0000 mon.a (mon.0) 995 : cluster [DBG] osdmap e49: 6 total, 5 up, 6 in 2024-09-16T05:27:10.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:10 smithi081 bash[23455]: cluster 2024-09-16T05:27:08.768460+0000 osd.4 (osd.4) 3 : cluster [WRN] Monitor daemon marked osd.4 down, but it is still running 2024-09-16T05:27:10.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:10 smithi081 bash[23455]: cluster 2024-09-16T05:27:08.768468+0000 osd.4 (osd.4) 4 : cluster [DBG] map e48 wrongly marked me down at e48 2024-09-16T05:27:10.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:10 smithi081 bash[23455]: cluster 2024-09-16T05:27:09.351474+0000 mon.a (mon.0) 995 : cluster [DBG] osdmap e49: 6 total, 5 up, 6 in 2024-09-16T05:27:11.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:11 smithi081 bash[23455]: cluster 2024-09-16T05:27:09.430239+0000 mgr.a (mgr.14150) 412 : cluster [DBG] pgmap v337: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:27:11.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:11 smithi081 bash[23455]: cluster 2024-09-16T05:27:10.357717+0000 mon.a (mon.0) 996 : cluster [DBG] osdmap e50: 6 total, 5 up, 6 in 2024-09-16T05:27:11.836 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:11 smithi029 bash[22744]: cluster 2024-09-16T05:27:09.430239+0000 mgr.a (mgr.14150) 412 : cluster [DBG] pgmap v337: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:27:11.836 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:11 smithi029 bash[22744]: cluster 2024-09-16T05:27:10.357717+0000 mon.a (mon.0) 996 : cluster [DBG] osdmap e50: 6 total, 5 up, 6 in 2024-09-16T05:27:12.240 INFO:journalctl@ceph.osd.4.smithi167.stdout:Sep 16 05:27:11 smithi167 systemd[1]: ceph-825322c2-73ea-11ef-bceb-c7b262605968@osd.4.service: Deactivated successfully. 2024-09-16T05:27:12.240 INFO:journalctl@ceph.osd.4.smithi167.stdout:Sep 16 05:27:11 smithi167 systemd[1]: Stopped Ceph osd.4 for 825322c2-73ea-11ef-bceb-c7b262605968. 2024-09-16T05:27:12.240 INFO:journalctl@ceph.osd.4.smithi167.stdout:Sep 16 05:27:12 smithi167 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:27:12.240 INFO:journalctl@ceph.osd.5.smithi167.stdout:Sep 16 05:27:11 smithi167 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:27:12.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:12 smithi081 bash[23455]: audit 2024-09-16T05:27:12.125936+0000 mon.a (mon.0) 997 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-09-16T05:27:12.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:12 smithi081 bash[23455]: audit 2024-09-16T05:27:12.128772+0000 mon.a (mon.0) 998 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-16T05:27:12.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:12 smithi081 bash[23455]: audit 2024-09-16T05:27:12.134752+0000 mon.a (mon.0) 999 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-09-16T05:27:12.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:12 smithi081 bash[23455]: cluster 2024-09-16T05:27:12.136207+0000 mon.a (mon.0) 1000 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-16T05:27:12.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:12 smithi081 bash[23455]: cluster 2024-09-16T05:27:12.136270+0000 mon.a (mon.0) 1001 : cluster [INF] Cluster is now healthy 2024-09-16T05:27:12.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:12 smithi081 bash[23455]: audit 2024-09-16T05:27:12.138306+0000 mon.a (mon.0) 1002 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-16T05:27:12.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:12 smithi081 bash[23455]: cluster 2024-09-16T05:27:12.143090+0000 mon.a (mon.0) 1003 : cluster [DBG] osdmap e51: 5 total, 5 up, 5 in 2024-09-16T05:27:12.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:12 smithi029 bash[22744]: audit 2024-09-16T05:27:12.125936+0000 mon.a (mon.0) 997 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-09-16T05:27:12.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:12 smithi029 bash[22744]: audit 2024-09-16T05:27:12.128772+0000 mon.a (mon.0) 998 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-16T05:27:12.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:12 smithi029 bash[22744]: audit 2024-09-16T05:27:12.134752+0000 mon.a (mon.0) 999 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-09-16T05:27:12.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:12 smithi029 bash[22744]: cluster 2024-09-16T05:27:12.136207+0000 mon.a (mon.0) 1000 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-16T05:27:12.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:12 smithi029 bash[22744]: cluster 2024-09-16T05:27:12.136270+0000 mon.a (mon.0) 1001 : cluster [INF] Cluster is now healthy 2024-09-16T05:27:12.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:12 smithi029 bash[22744]: audit 2024-09-16T05:27:12.138306+0000 mon.a (mon.0) 1002 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-16T05:27:12.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:12 smithi029 bash[22744]: cluster 2024-09-16T05:27:12.143090+0000 mon.a (mon.0) 1003 : cluster [DBG] osdmap e51: 5 total, 5 up, 5 in 2024-09-16T05:27:13.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:13 smithi081 bash[23455]: cluster 2024-09-16T05:27:11.430758+0000 mgr.a (mgr.14150) 413 : cluster [DBG] pgmap v339: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:27:13.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:13 smithi081 bash[23455]: cephadm 2024-09-16T05:27:12.125277+0000 mgr.a (mgr.14150) 414 : cephadm [INF] Removing key for osd.4 2024-09-16T05:27:13.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:13 smithi081 bash[23455]: cephadm 2024-09-16T05:27:12.134015+0000 mgr.a (mgr.14150) 415 : cephadm [INF] Successfully removed osd.4 on smithi167 2024-09-16T05:27:13.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:13 smithi081 bash[23455]: cephadm 2024-09-16T05:27:12.144236+0000 mgr.a (mgr.14150) 416 : cephadm [INF] Successfully purged osd.4 on smithi167 2024-09-16T05:27:13.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:13 smithi081 bash[23455]: cephadm 2024-09-16T05:27:12.144453+0000 mgr.a (mgr.14150) 417 : cephadm [INF] Zapping devices for osd.4 on smithi167 2024-09-16T05:27:13.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:13 smithi081 bash[23455]: cluster 2024-09-16T05:27:13.145423+0000 mon.a (mon.0) 1004 : cluster [DBG] osdmap e52: 5 total, 5 up, 5 in 2024-09-16T05:27:13.836 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:13 smithi029 bash[22744]: cluster 2024-09-16T05:27:11.430758+0000 mgr.a (mgr.14150) 413 : cluster [DBG] pgmap v339: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-16T05:27:13.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:13 smithi029 bash[22744]: cephadm 2024-09-16T05:27:12.125277+0000 mgr.a (mgr.14150) 414 : cephadm [INF] Removing key for osd.4 2024-09-16T05:27:13.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:13 smithi029 bash[22744]: cephadm 2024-09-16T05:27:12.134015+0000 mgr.a (mgr.14150) 415 : cephadm [INF] Successfully removed osd.4 on smithi167 2024-09-16T05:27:13.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:13 smithi029 bash[22744]: cephadm 2024-09-16T05:27:12.144236+0000 mgr.a (mgr.14150) 416 : cephadm [INF] Successfully purged osd.4 on smithi167 2024-09-16T05:27:13.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:13 smithi029 bash[22744]: cephadm 2024-09-16T05:27:12.144453+0000 mgr.a (mgr.14150) 417 : cephadm [INF] Zapping devices for osd.4 on smithi167 2024-09-16T05:27:13.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:13 smithi029 bash[22744]: cluster 2024-09-16T05:27:13.145423+0000 mon.a (mon.0) 1004 : cluster [DBG] osdmap e52: 5 total, 5 up, 5 in 2024-09-16T05:27:15.586 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:15 smithi029 bash[22744]: cluster 2024-09-16T05:27:13.431303+0000 mgr.a (mgr.14150) 418 : cluster [DBG] pgmap v342: 1 pgs: 1 active+clean+remapped; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-16T05:27:15.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:15 smithi029 bash[22744]: cluster 2024-09-16T05:27:14.147831+0000 mon.a (mon.0) 1005 : cluster [DBG] osdmap e53: 5 total, 5 up, 5 in 2024-09-16T05:27:15.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:15 smithi029 bash[22744]: cluster 2024-09-16T05:27:14.798501+0000 mon.a (mon.0) 1006 : cluster [DBG] osdmap e54: 5 total, 5 up, 5 in 2024-09-16T05:27:15.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:15 smithi081 bash[23455]: cluster 2024-09-16T05:27:13.431303+0000 mgr.a (mgr.14150) 418 : cluster [DBG] pgmap v342: 1 pgs: 1 active+clean+remapped; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-16T05:27:15.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:15 smithi081 bash[23455]: cluster 2024-09-16T05:27:14.147831+0000 mon.a (mon.0) 1005 : cluster [DBG] osdmap e53: 5 total, 5 up, 5 in 2024-09-16T05:27:15.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:15 smithi081 bash[23455]: cluster 2024-09-16T05:27:14.798501+0000 mon.a (mon.0) 1006 : cluster [DBG] osdmap e54: 5 total, 5 up, 5 in 2024-09-16T05:27:17.086 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:16 smithi029 bash[22744]: cluster 2024-09-16T05:27:15.431848+0000 mgr.a (mgr.14150) 419 : cluster [DBG] pgmap v345: 1 pgs: 1 active+clean+remapped; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-16T05:27:17.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:16 smithi029 bash[22744]: cluster 2024-09-16T05:27:15.801162+0000 mon.a (mon.0) 1007 : cluster [DBG] osdmap e55: 5 total, 5 up, 5 in 2024-09-16T05:27:17.112 INFO:teuthology.orchestra.run.smithi029.stderr:++ ceph orch ps --hostname smithi167 2024-09-16T05:27:17.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:16 smithi081 bash[23455]: cluster 2024-09-16T05:27:15.431848+0000 mgr.a (mgr.14150) 419 : cluster [DBG] pgmap v345: 1 pgs: 1 active+clean+remapped; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-16T05:27:17.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:16 smithi081 bash[23455]: cluster 2024-09-16T05:27:15.801162+0000 mon.a (mon.0) 1007 : cluster [DBG] osdmap e55: 5 total, 5 up, 5 in 2024-09-16T05:27:17.437 INFO:teuthology.orchestra.run.smithi029.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-16T05:27:17.437 INFO:teuthology.orchestra.run.smithi029.stderr:agent.smithi167 smithi167 running 10s ago 8m - - 2024-09-16T05:27:17.437 INFO:teuthology.orchestra.run.smithi029.stderr:osd.5 smithi167 running (2m) 10s ago 2m 45.1M 9.93G 19.1.1-326-g8921c8ef f1455bd0219c e38a1897791d ' 2024-09-16T05:27:17.437 INFO:teuthology.orchestra.run.smithi029.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-16T05:27:17.437 INFO:teuthology.orchestra.run.smithi029.stderr:agent.smithi167 smithi167 running 10s ago 8m - - 2024-09-16T05:27:17.437 INFO:teuthology.orchestra.run.smithi029.stderr:osd.5 smithi167 running (2m) 10s ago 2m 45.1M 9.93G 19.1.1-326-g8921c8ef f1455bd0219c e38a1897791d ' '!=' 'No daemons reported' ']' 2024-09-16T05:27:17.437 INFO:teuthology.orchestra.run.smithi029.stderr:+ sleep 15 2024-09-16T05:27:19.086 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:18 smithi029 bash[22744]: audit 2024-09-16T05:27:17.416843+0000 mgr.a (mgr.14150) 420 : audit [DBG] from='client.14506 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi167", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:27:19.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:18 smithi029 bash[22744]: cluster 2024-09-16T05:27:17.432241+0000 mgr.a (mgr.14150) 421 : cluster [DBG] pgmap v347: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 134 KiB/s, 0 objects/s recovering 2024-09-16T05:27:19.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:18 smithi081 bash[23455]: audit 2024-09-16T05:27:17.416843+0000 mgr.a (mgr.14150) 420 : audit [DBG] from='client.14506 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi167", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:27:19.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:18 smithi081 bash[23455]: cluster 2024-09-16T05:27:17.432241+0000 mgr.a (mgr.14150) 421 : cluster [DBG] pgmap v347: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 134 KiB/s, 0 objects/s recovering 2024-09-16T05:27:21.086 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:20 smithi029 bash[22744]: cluster 2024-09-16T05:27:19.432751+0000 mgr.a (mgr.14150) 422 : cluster [DBG] pgmap v348: 1 pgs: 1 active+clean; 577 KiB data, 153 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-16T05:27:21.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:20 smithi081 bash[23455]: cluster 2024-09-16T05:27:19.432751+0000 mgr.a (mgr.14150) 422 : cluster [DBG] pgmap v348: 1 pgs: 1 active+clean; 577 KiB data, 153 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-16T05:27:22.206 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:21 smithi029 bash[22744]: debug 2024-09-16T05:27:21.977+0000 7fb2eff61640 -1 mon.a@0(leader).osd e55 definitely_dead 0 2024-09-16T05:27:23.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:22 smithi029 bash[22744]: cluster 2024-09-16T05:27:21.433311+0000 mgr.a (mgr.14150) 423 : cluster [DBG] pgmap v349: 1 pgs: 1 active+clean; 577 KiB data, 153 MiB used, 447 GiB / 447 GiB avail; 79 KiB/s, 0 objects/s recovering 2024-09-16T05:27:23.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:22 smithi029 bash[22744]: cephadm 2024-09-16T05:27:21.974959+0000 mgr.a (mgr.14150) 424 : cephadm [INF] Successfully zapped devices for osd.4 on smithi167 2024-09-16T05:27:23.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:22 smithi029 bash[22744]: audit 2024-09-16T05:27:21.975479+0000 mon.a (mon.0) 1008 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T05:27:23.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:22 smithi029 bash[22744]: audit 2024-09-16T05:27:21.975712+0000 mgr.a (mgr.14150) 425 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T05:27:23.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:22 smithi029 bash[22744]: audit 2024-09-16T05:27:21.976893+0000 mon.a (mon.0) 1009 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-16T05:27:23.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:22 smithi029 bash[22744]: audit 2024-09-16T05:27:21.977072+0000 mgr.a (mgr.14150) 426 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-16T05:27:23.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:22 smithi029 bash[22744]: audit 2024-09-16T05:27:21.978089+0000 mon.a (mon.0) 1010 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-09-16T05:27:23.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:22 smithi081 bash[23455]: cluster 2024-09-16T05:27:21.433311+0000 mgr.a (mgr.14150) 423 : cluster [DBG] pgmap v349: 1 pgs: 1 active+clean; 577 KiB data, 153 MiB used, 447 GiB / 447 GiB avail; 79 KiB/s, 0 objects/s recovering 2024-09-16T05:27:23.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:22 smithi081 bash[23455]: cephadm 2024-09-16T05:27:21.974959+0000 mgr.a (mgr.14150) 424 : cephadm [INF] Successfully zapped devices for osd.4 on smithi167 2024-09-16T05:27:23.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:22 smithi081 bash[23455]: audit 2024-09-16T05:27:21.975479+0000 mon.a (mon.0) 1008 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T05:27:23.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:22 smithi081 bash[23455]: audit 2024-09-16T05:27:21.975712+0000 mgr.a (mgr.14150) 425 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T05:27:23.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:22 smithi081 bash[23455]: audit 2024-09-16T05:27:21.976893+0000 mon.a (mon.0) 1009 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-16T05:27:23.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:22 smithi081 bash[23455]: audit 2024-09-16T05:27:21.977072+0000 mgr.a (mgr.14150) 426 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-16T05:27:23.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:22 smithi081 bash[23455]: audit 2024-09-16T05:27:21.978089+0000 mon.a (mon.0) 1010 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-09-16T05:27:23.740 INFO:journalctl@ceph.osd.5.smithi167.stdout:Sep 16 05:27:23 smithi167 systemd[1]: Stopping Ceph osd.5 for 825322c2-73ea-11ef-bceb-c7b262605968... 2024-09-16T05:27:23.740 INFO:journalctl@ceph.osd.5.smithi167.stdout:Sep 16 05:27:23 smithi167 bash[33655]: debug 2024-09-16T05:27:23.423+0000 7f98df98b640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-osd -n osd.5 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug (PID: 1) UID: 0 2024-09-16T05:27:23.740 INFO:journalctl@ceph.osd.5.smithi167.stdout:Sep 16 05:27:23 smithi167 bash[33655]: debug 2024-09-16T05:27:23.423+0000 7f98df98b640 -1 osd.5 55 *** Got signal Terminated *** 2024-09-16T05:27:23.740 INFO:journalctl@ceph.osd.5.smithi167.stdout:Sep 16 05:27:23 smithi167 bash[33655]: debug 2024-09-16T05:27:23.423+0000 7f98df98b640 -1 osd.5 55 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-16T05:27:24.086 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:23 smithi029 bash[22744]: cluster 2024-09-16T05:27:22.808026+0000 mon.a (mon.0) 1011 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-16T05:27:24.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:23 smithi029 bash[22744]: cluster 2024-09-16T05:27:22.808075+0000 mon.a (mon.0) 1012 : cluster [WRN] Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-16T05:27:24.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:23 smithi029 bash[22744]: audit 2024-09-16T05:27:22.809955+0000 mon.a (mon.0) 1013 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-16T05:27:24.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:23 smithi029 bash[22744]: cluster 2024-09-16T05:27:22.813260+0000 mon.a (mon.0) 1014 : cluster [DBG] osdmap e56: 5 total, 4 up, 5 in 2024-09-16T05:27:24.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:23 smithi029 bash[22744]: cephadm 2024-09-16T05:27:22.814479+0000 mgr.a (mgr.14150) 427 : cephadm [INF] osd.5 now down 2024-09-16T05:27:24.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:23 smithi029 bash[22744]: cephadm 2024-09-16T05:27:22.815021+0000 mgr.a (mgr.14150) 428 : cephadm [INF] Removing daemon osd.5 from smithi167 -- ports [] 2024-09-16T05:27:24.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:23 smithi029 bash[22744]: audit 2024-09-16T05:27:23.014809+0000 mon.a (mon.0) 1015 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:24.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:23 smithi029 bash[22744]: audit 2024-09-16T05:27:23.021889+0000 mon.a (mon.0) 1016 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:24.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:23 smithi029 bash[22744]: audit 2024-09-16T05:27:23.029457+0000 mon.a (mon.0) 1017 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:24.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:23 smithi081 bash[23455]: cluster 2024-09-16T05:27:22.808026+0000 mon.a (mon.0) 1011 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-16T05:27:24.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:23 smithi081 bash[23455]: cluster 2024-09-16T05:27:22.808075+0000 mon.a (mon.0) 1012 : cluster [WRN] Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-16T05:27:24.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:23 smithi081 bash[23455]: audit 2024-09-16T05:27:22.809955+0000 mon.a (mon.0) 1013 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-16T05:27:24.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:23 smithi081 bash[23455]: cluster 2024-09-16T05:27:22.813260+0000 mon.a (mon.0) 1014 : cluster [DBG] osdmap e56: 5 total, 4 up, 5 in 2024-09-16T05:27:24.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:23 smithi081 bash[23455]: cephadm 2024-09-16T05:27:22.814479+0000 mgr.a (mgr.14150) 427 : cephadm [INF] osd.5 now down 2024-09-16T05:27:24.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:23 smithi081 bash[23455]: cephadm 2024-09-16T05:27:22.815021+0000 mgr.a (mgr.14150) 428 : cephadm [INF] Removing daemon osd.5 from smithi167 -- ports [] 2024-09-16T05:27:24.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:23 smithi081 bash[23455]: audit 2024-09-16T05:27:23.014809+0000 mon.a (mon.0) 1015 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:24.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:23 smithi081 bash[23455]: audit 2024-09-16T05:27:23.021889+0000 mon.a (mon.0) 1016 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:24.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:23 smithi081 bash[23455]: audit 2024-09-16T05:27:23.029457+0000 mon.a (mon.0) 1017 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:24.700 INFO:journalctl@ceph.osd.5.smithi167.stdout:Sep 16 05:27:24 smithi167 bash[39624]: ceph-825322c2-73ea-11ef-bceb-c7b262605968-osd-5 2024-09-16T05:27:24.700 INFO:journalctl@ceph.osd.5.smithi167.stdout:Sep 16 05:27:24 smithi167 bash[39703]: Error response from daemon: No such container: ceph-825322c2-73ea-11ef-bceb-c7b262605968-osd-5 2024-09-16T05:27:25.303 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:25 smithi081 bash[23455]: cluster 2024-09-16T05:27:23.433863+0000 mgr.a (mgr.14150) 429 : cluster [DBG] pgmap v351: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-16T05:27:25.336 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:25 smithi029 bash[22744]: cluster 2024-09-16T05:27:23.433863+0000 mgr.a (mgr.14150) 429 : cluster [DBG] pgmap v351: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-16T05:27:26.612 INFO:journalctl@ceph.osd.5.smithi167.stdout:Sep 16 05:27:26 smithi167 systemd[1]: ceph-825322c2-73ea-11ef-bceb-c7b262605968@osd.5.service: Deactivated successfully. 2024-09-16T05:27:26.612 INFO:journalctl@ceph.osd.5.smithi167.stdout:Sep 16 05:27:26 smithi167 systemd[1]: Stopped Ceph osd.5 for 825322c2-73ea-11ef-bceb-c7b262605968. 2024-09-16T05:27:26.613 INFO:journalctl@ceph.osd.5.smithi167.stdout:Sep 16 05:27:26 smithi167 systemd[1]: /etc/systemd/system/ceph-825322c2-73ea-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T05:27:27.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:27 smithi029 bash[22744]: cluster 2024-09-16T05:27:25.434437+0000 mgr.a (mgr.14150) 430 : cluster [DBG] pgmap v352: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 60 KiB/s, 0 objects/s recovering 2024-09-16T05:27:27.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:27 smithi029 bash[22744]: audit 2024-09-16T05:27:26.288966+0000 mon.a (mon.0) 1018 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:27.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:27 smithi029 bash[22744]: audit 2024-09-16T05:27:26.296133+0000 mon.a (mon.0) 1019 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:27.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:27 smithi029 bash[22744]: cluster 2024-09-16T05:27:26.297456+0000 mgr.a (mgr.14150) 431 : cluster [DBG] pgmap v353: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:27:27.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:27 smithi029 bash[22744]: audit 2024-09-16T05:27:26.305779+0000 mon.a (mon.0) 1020 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:27.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:27 smithi029 bash[22744]: audit 2024-09-16T05:27:26.692938+0000 mon.a (mon.0) 1021 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-09-16T05:27:27.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:27 smithi029 bash[22744]: audit 2024-09-16T05:27:26.696028+0000 mon.a (mon.0) 1022 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-16T05:27:27.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:27 smithi029 bash[22744]: audit 2024-09-16T05:27:26.701799+0000 mon.a (mon.0) 1023 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-09-16T05:27:27.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:27 smithi029 bash[22744]: cluster 2024-09-16T05:27:26.702955+0000 mon.a (mon.0) 1024 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-16T05:27:27.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:27 smithi029 bash[22744]: cluster 2024-09-16T05:27:26.703003+0000 mon.a (mon.0) 1025 : cluster [INF] Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-16T05:27:27.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:27 smithi029 bash[22744]: cluster 2024-09-16T05:27:26.703059+0000 mon.a (mon.0) 1026 : cluster [INF] Cluster is now healthy 2024-09-16T05:27:27.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:27 smithi029 bash[22744]: audit 2024-09-16T05:27:26.704910+0000 mon.a (mon.0) 1027 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-16T05:27:27.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:27 smithi029 bash[22744]: cluster 2024-09-16T05:27:26.709843+0000 mon.a (mon.0) 1028 : cluster [DBG] osdmap e57: 4 total, 4 up, 4 in 2024-09-16T05:27:27.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:27 smithi081 bash[23455]: cluster 2024-09-16T05:27:25.434437+0000 mgr.a (mgr.14150) 430 : cluster [DBG] pgmap v352: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 60 KiB/s, 0 objects/s recovering 2024-09-16T05:27:27.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:27 smithi081 bash[23455]: audit 2024-09-16T05:27:26.288966+0000 mon.a (mon.0) 1018 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:27.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:27 smithi081 bash[23455]: audit 2024-09-16T05:27:26.296133+0000 mon.a (mon.0) 1019 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:27.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:27 smithi081 bash[23455]: cluster 2024-09-16T05:27:26.297456+0000 mgr.a (mgr.14150) 431 : cluster [DBG] pgmap v353: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail 2024-09-16T05:27:27.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:27 smithi081 bash[23455]: audit 2024-09-16T05:27:26.305779+0000 mon.a (mon.0) 1020 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:27.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:27 smithi081 bash[23455]: audit 2024-09-16T05:27:26.692938+0000 mon.a (mon.0) 1021 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-09-16T05:27:27.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:27 smithi081 bash[23455]: audit 2024-09-16T05:27:26.696028+0000 mon.a (mon.0) 1022 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-16T05:27:27.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:27 smithi081 bash[23455]: audit 2024-09-16T05:27:26.701799+0000 mon.a (mon.0) 1023 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-09-16T05:27:27.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:27 smithi081 bash[23455]: cluster 2024-09-16T05:27:26.702955+0000 mon.a (mon.0) 1024 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-16T05:27:27.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:27 smithi081 bash[23455]: cluster 2024-09-16T05:27:26.703003+0000 mon.a (mon.0) 1025 : cluster [INF] Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-16T05:27:27.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:27 smithi081 bash[23455]: cluster 2024-09-16T05:27:26.703059+0000 mon.a (mon.0) 1026 : cluster [INF] Cluster is now healthy 2024-09-16T05:27:27.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:27 smithi081 bash[23455]: audit 2024-09-16T05:27:26.704910+0000 mon.a (mon.0) 1027 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-16T05:27:27.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:27 smithi081 bash[23455]: cluster 2024-09-16T05:27:26.709843+0000 mon.a (mon.0) 1028 : cluster [DBG] osdmap e57: 4 total, 4 up, 4 in 2024-09-16T05:27:28.586 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:28 smithi029 bash[22744]: cephadm 2024-09-16T05:27:26.692401+0000 mgr.a (mgr.14150) 432 : cephadm [INF] Removing key for osd.5 2024-09-16T05:27:28.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:28 smithi029 bash[22744]: cephadm 2024-09-16T05:27:26.701240+0000 mgr.a (mgr.14150) 433 : cephadm [INF] Successfully removed osd.5 on smithi167 2024-09-16T05:27:28.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:28 smithi029 bash[22744]: cephadm 2024-09-16T05:27:26.711064+0000 mgr.a (mgr.14150) 434 : cephadm [INF] Successfully purged osd.5 on smithi167 2024-09-16T05:27:28.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:28 smithi029 bash[22744]: cephadm 2024-09-16T05:27:26.711226+0000 mgr.a (mgr.14150) 435 : cephadm [INF] Zapping devices for osd.5 on smithi167 2024-09-16T05:27:28.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:28 smithi029 bash[22744]: cluster 2024-09-16T05:27:27.293483+0000 mon.a (mon.0) 1029 : cluster [WRN] Health check failed: 1 failed cephadm daemon(s) (CEPHADM_FAILED_DAEMON) 2024-09-16T05:27:28.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:28 smithi081 bash[23455]: cephadm 2024-09-16T05:27:26.692401+0000 mgr.a (mgr.14150) 432 : cephadm [INF] Removing key for osd.5 2024-09-16T05:27:28.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:28 smithi081 bash[23455]: cephadm 2024-09-16T05:27:26.701240+0000 mgr.a (mgr.14150) 433 : cephadm [INF] Successfully removed osd.5 on smithi167 2024-09-16T05:27:28.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:28 smithi081 bash[23455]: cephadm 2024-09-16T05:27:26.711064+0000 mgr.a (mgr.14150) 434 : cephadm [INF] Successfully purged osd.5 on smithi167 2024-09-16T05:27:28.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:28 smithi081 bash[23455]: cephadm 2024-09-16T05:27:26.711226+0000 mgr.a (mgr.14150) 435 : cephadm [INF] Zapping devices for osd.5 on smithi167 2024-09-16T05:27:28.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:28 smithi081 bash[23455]: cluster 2024-09-16T05:27:27.293483+0000 mon.a (mon.0) 1029 : cluster [WRN] Health check failed: 1 failed cephadm daemon(s) (CEPHADM_FAILED_DAEMON) 2024-09-16T05:27:29.836 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:29 smithi029 bash[22744]: cluster 2024-09-16T05:27:28.298032+0000 mgr.a (mgr.14150) 436 : cluster [DBG] pgmap v355: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:27:29.836 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:29 smithi029 bash[22744]: audit 2024-09-16T05:27:28.378375+0000 mon.a (mon.0) 1030 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:29.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:29 smithi029 bash[22744]: audit 2024-09-16T05:27:28.386924+0000 mon.a (mon.0) 1031 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:29.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:29 smithi029 bash[22744]: audit 2024-09-16T05:27:28.396930+0000 mon.a (mon.0) 1032 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:29.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:29 smithi029 bash[22744]: cluster 2024-09-16T05:27:29.288761+0000 mon.a (mon.0) 1033 : cluster [INF] Health check cleared: CEPHADM_FAILED_DAEMON (was: 1 failed cephadm daemon(s)) 2024-09-16T05:27:29.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:29 smithi029 bash[22744]: cluster 2024-09-16T05:27:29.288831+0000 mon.a (mon.0) 1034 : cluster [INF] Cluster is now healthy 2024-09-16T05:27:29.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:29 smithi081 bash[23455]: cluster 2024-09-16T05:27:28.298032+0000 mgr.a (mgr.14150) 436 : cluster [DBG] pgmap v355: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:27:29.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:29 smithi081 bash[23455]: audit 2024-09-16T05:27:28.378375+0000 mon.a (mon.0) 1030 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:29.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:29 smithi081 bash[23455]: audit 2024-09-16T05:27:28.386924+0000 mon.a (mon.0) 1031 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:29.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:29 smithi081 bash[23455]: audit 2024-09-16T05:27:28.396930+0000 mon.a (mon.0) 1032 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:29.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:29 smithi081 bash[23455]: cluster 2024-09-16T05:27:29.288761+0000 mon.a (mon.0) 1033 : cluster [INF] Health check cleared: CEPHADM_FAILED_DAEMON (was: 1 failed cephadm daemon(s)) 2024-09-16T05:27:29.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:29 smithi081 bash[23455]: cluster 2024-09-16T05:27:29.288831+0000 mon.a (mon.0) 1034 : cluster [INF] Cluster is now healthy 2024-09-16T05:27:30.836 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:30 smithi029 bash[22744]: cluster 2024-09-16T05:27:28.388272+0000 mgr.a (mgr.14150) 437 : cluster [DBG] pgmap v356: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:27:30.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:30 smithi081 bash[23455]: cluster 2024-09-16T05:27:28.388272+0000 mgr.a (mgr.14150) 437 : cluster [DBG] pgmap v356: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:27:31.836 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:31 smithi029 bash[22744]: cluster 2024-09-16T05:27:30.388866+0000 mgr.a (mgr.14150) 438 : cluster [DBG] pgmap v357: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:27:31.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:31 smithi081 bash[23455]: cluster 2024-09-16T05:27:30.388866+0000 mgr.a (mgr.14150) 438 : cluster [DBG] pgmap v357: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:27:32.439 INFO:teuthology.orchestra.run.smithi029.stderr:++ ceph orch ps --hostname smithi167 2024-09-16T05:27:32.765 INFO:teuthology.orchestra.run.smithi029.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID 2024-09-16T05:27:32.765 INFO:teuthology.orchestra.run.smithi029.stderr:agent.smithi167 smithi167 running 6s ago 9m - - ' 2024-09-16T05:27:32.765 INFO:teuthology.orchestra.run.smithi029.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID 2024-09-16T05:27:32.765 INFO:teuthology.orchestra.run.smithi029.stderr:agent.smithi167 smithi167 running 6s ago 9m - - ' '!=' 'No daemons reported' ']' 2024-09-16T05:27:32.766 INFO:teuthology.orchestra.run.smithi029.stderr:+ sleep 15 2024-09-16T05:27:34.086 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:33 smithi029 bash[22744]: cluster 2024-09-16T05:27:32.389439+0000 mgr.a (mgr.14150) 439 : cluster [DBG] pgmap v358: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:27:34.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:33 smithi029 bash[22744]: cephadm 2024-09-16T05:27:32.668677+0000 mgr.a (mgr.14150) 440 : cephadm [INF] Successfully zapped devices for osd.5 on smithi167 2024-09-16T05:27:34.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:33 smithi029 bash[22744]: audit 2024-09-16T05:27:32.675185+0000 mon.a (mon.0) 1035 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:34.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:33 smithi029 bash[22744]: cephadm 2024-09-16T05:27:32.678390+0000 mgr.a (mgr.14150) 441 : cephadm [INF] Removing daemon agent.smithi167 from smithi167 -- ports [] 2024-09-16T05:27:34.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:33 smithi029 bash[22744]: audit 2024-09-16T05:27:32.747280+0000 mgr.a (mgr.14150) 442 : audit [DBG] from='client.14510 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi167", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:27:34.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:33 smithi029 bash[22744]: audit 2024-09-16T05:27:33.476869+0000 mon.a (mon.0) 1036 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "client.agent.smithi167"}]: dispatch 2024-09-16T05:27:34.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:33 smithi029 bash[22744]: audit 2024-09-16T05:27:33.479660+0000 mon.a (mon.0) 1037 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "client.agent.smithi167"}]': finished 2024-09-16T05:27:34.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:33 smithi029 bash[22744]: audit 2024-09-16T05:27:33.491382+0000 mon.a (mon.0) 1038 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:34.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:33 smithi029 bash[22744]: audit 2024-09-16T05:27:33.498196+0000 mon.a (mon.0) 1039 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:34.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:33 smithi029 bash[22744]: audit 2024-09-16T05:27:33.589085+0000 mon.a (mon.0) 1040 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:27:34.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:33 smithi081 bash[23455]: cluster 2024-09-16T05:27:32.389439+0000 mgr.a (mgr.14150) 439 : cluster [DBG] pgmap v358: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:27:34.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:33 smithi081 bash[23455]: cephadm 2024-09-16T05:27:32.668677+0000 mgr.a (mgr.14150) 440 : cephadm [INF] Successfully zapped devices for osd.5 on smithi167 2024-09-16T05:27:34.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:33 smithi081 bash[23455]: audit 2024-09-16T05:27:32.675185+0000 mon.a (mon.0) 1035 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:34.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:33 smithi081 bash[23455]: cephadm 2024-09-16T05:27:32.678390+0000 mgr.a (mgr.14150) 441 : cephadm [INF] Removing daemon agent.smithi167 from smithi167 -- ports [] 2024-09-16T05:27:34.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:33 smithi081 bash[23455]: audit 2024-09-16T05:27:32.747280+0000 mgr.a (mgr.14150) 442 : audit [DBG] from='client.14510 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi167", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:27:34.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:33 smithi081 bash[23455]: audit 2024-09-16T05:27:33.476869+0000 mon.a (mon.0) 1036 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "client.agent.smithi167"}]: dispatch 2024-09-16T05:27:34.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:33 smithi081 bash[23455]: audit 2024-09-16T05:27:33.479660+0000 mon.a (mon.0) 1037 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "client.agent.smithi167"}]': finished 2024-09-16T05:27:34.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:33 smithi081 bash[23455]: audit 2024-09-16T05:27:33.491382+0000 mon.a (mon.0) 1038 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:34.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:33 smithi081 bash[23455]: audit 2024-09-16T05:27:33.498196+0000 mon.a (mon.0) 1039 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:34.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:33 smithi081 bash[23455]: audit 2024-09-16T05:27:33.589085+0000 mon.a (mon.0) 1040 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:27:35.586 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:35 smithi029 bash[22744]: cephadm 2024-09-16T05:27:33.476244+0000 mgr.a (mgr.14150) 443 : cephadm [INF] Removing key for client.agent.smithi167 2024-09-16T05:27:35.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:35 smithi029 bash[22744]: audit 2024-09-16T05:27:34.201733+0000 mon.a (mon.0) 1041 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:35.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:35 smithi029 bash[22744]: audit 2024-09-16T05:27:34.206511+0000 mon.a (mon.0) 1042 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:35.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:35 smithi081 bash[23455]: cephadm 2024-09-16T05:27:33.476244+0000 mgr.a (mgr.14150) 443 : cephadm [INF] Removing key for client.agent.smithi167 2024-09-16T05:27:35.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:35 smithi081 bash[23455]: audit 2024-09-16T05:27:34.201733+0000 mon.a (mon.0) 1041 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:35.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:35 smithi081 bash[23455]: audit 2024-09-16T05:27:34.206511+0000 mon.a (mon.0) 1042 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:36.586 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:36 smithi029 bash[22744]: cluster 2024-09-16T05:27:34.390014+0000 mgr.a (mgr.14150) 444 : cluster [DBG] pgmap v359: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:27:36.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:36 smithi029 bash[22744]: audit 2024-09-16T05:27:35.218830+0000 mon.a (mon.0) 1043 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:36.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:36 smithi029 bash[22744]: audit 2024-09-16T05:27:35.225663+0000 mon.a (mon.0) 1044 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:36.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:36 smithi029 bash[22744]: audit 2024-09-16T05:27:35.935439+0000 mon.a (mon.0) 1045 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:36.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:36 smithi081 bash[23455]: cluster 2024-09-16T05:27:34.390014+0000 mgr.a (mgr.14150) 444 : cluster [DBG] pgmap v359: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:27:36.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:36 smithi081 bash[23455]: audit 2024-09-16T05:27:35.218830+0000 mon.a (mon.0) 1043 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:36.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:36 smithi081 bash[23455]: audit 2024-09-16T05:27:35.225663+0000 mon.a (mon.0) 1044 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:36.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:36 smithi081 bash[23455]: audit 2024-09-16T05:27:35.935439+0000 mon.a (mon.0) 1045 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:38.586 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:38 smithi029 bash[22744]: cluster 2024-09-16T05:27:36.390568+0000 mgr.a (mgr.14150) 445 : cluster [DBG] pgmap v360: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:27:38.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:38 smithi081 bash[23455]: cluster 2024-09-16T05:27:36.390568+0000 mgr.a (mgr.14150) 445 : cluster [DBG] pgmap v360: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:27:40.534 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:40 smithi029 bash[22744]: cluster 2024-09-16T05:27:38.391118+0000 mgr.a (mgr.14150) 446 : cluster [DBG] pgmap v361: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:27:40.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:40 smithi081 bash[23455]: cluster 2024-09-16T05:27:38.391118+0000 mgr.a (mgr.14150) 446 : cluster [DBG] pgmap v361: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:27:41.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:41 smithi029 bash[22744]: cluster 2024-09-16T05:27:40.391506+0000 mgr.a (mgr.14150) 447 : cluster [DBG] pgmap v362: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:27:41.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:41 smithi029 bash[22744]: cephadm 2024-09-16T05:27:40.473374+0000 mgr.a (mgr.14150) 448 : cephadm [INF] Detected new or changed devices on smithi167 2024-09-16T05:27:41.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:41 smithi029 bash[22744]: audit 2024-09-16T05:27:40.479368+0000 mon.a (mon.0) 1046 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:41.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:41 smithi029 bash[22744]: audit 2024-09-16T05:27:40.485011+0000 mon.a (mon.0) 1047 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:41.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:41 smithi029 bash[22744]: audit 2024-09-16T05:27:40.486275+0000 mon.a (mon.0) 1048 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:27:41.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:41 smithi029 bash[22744]: audit 2024-09-16T05:27:40.487728+0000 mon.a (mon.0) 1049 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:27:41.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:41 smithi029 bash[22744]: audit 2024-09-16T05:27:40.495047+0000 mon.a (mon.0) 1050 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:41.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:41 smithi029 bash[22744]: cephadm 2024-09-16T05:27:40.574826+0000 mgr.a (mgr.14150) 449 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-09-16T05:27:41.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:41 smithi029 bash[22744]: audit 2024-09-16T05:27:40.575517+0000 mon.a (mon.0) 1051 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T05:27:41.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:41 smithi029 bash[22744]: audit 2024-09-16T05:27:40.577209+0000 mon.a (mon.0) 1052 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T05:27:41.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:41 smithi029 bash[22744]: audit 2024-09-16T05:27:40.578802+0000 mon.a (mon.0) 1053 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:27:41.838 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:41 smithi029 bash[22744]: cephadm 2024-09-16T05:27:40.580554+0000 mgr.a (mgr.14150) 450 : cephadm [INF] Reconfiguring daemon mon.a on smithi029 2024-09-16T05:27:41.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:41 smithi081 bash[23455]: cluster 2024-09-16T05:27:40.391506+0000 mgr.a (mgr.14150) 447 : cluster [DBG] pgmap v362: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:27:41.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:41 smithi081 bash[23455]: cephadm 2024-09-16T05:27:40.473374+0000 mgr.a (mgr.14150) 448 : cephadm [INF] Detected new or changed devices on smithi167 2024-09-16T05:27:41.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:41 smithi081 bash[23455]: audit 2024-09-16T05:27:40.479368+0000 mon.a (mon.0) 1046 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:41.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:41 smithi081 bash[23455]: audit 2024-09-16T05:27:40.485011+0000 mon.a (mon.0) 1047 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:41.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:41 smithi081 bash[23455]: audit 2024-09-16T05:27:40.486275+0000 mon.a (mon.0) 1048 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:27:41.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:41 smithi081 bash[23455]: audit 2024-09-16T05:27:40.487728+0000 mon.a (mon.0) 1049 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:27:41.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:41 smithi081 bash[23455]: audit 2024-09-16T05:27:40.495047+0000 mon.a (mon.0) 1050 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:41.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:41 smithi081 bash[23455]: cephadm 2024-09-16T05:27:40.574826+0000 mgr.a (mgr.14150) 449 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-09-16T05:27:41.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:41 smithi081 bash[23455]: audit 2024-09-16T05:27:40.575517+0000 mon.a (mon.0) 1051 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T05:27:41.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:41 smithi081 bash[23455]: audit 2024-09-16T05:27:40.577209+0000 mon.a (mon.0) 1052 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T05:27:41.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:41 smithi081 bash[23455]: audit 2024-09-16T05:27:40.578802+0000 mon.a (mon.0) 1053 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:27:41.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:41 smithi081 bash[23455]: cephadm 2024-09-16T05:27:40.580554+0000 mgr.a (mgr.14150) 450 : cephadm [INF] Reconfiguring daemon mon.a on smithi029 2024-09-16T05:27:44.586 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:44 smithi029 bash[22744]: cluster 2024-09-16T05:27:42.391926+0000 mgr.a (mgr.14150) 451 : cluster [DBG] pgmap v363: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:27:44.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:44 smithi029 bash[22744]: audit 2024-09-16T05:27:43.203171+0000 mon.a (mon.0) 1054 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:44.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:44 smithi029 bash[22744]: audit 2024-09-16T05:27:43.208529+0000 mon.a (mon.0) 1055 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:44.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:44 smithi029 bash[22744]: audit 2024-09-16T05:27:43.213103+0000 mon.a (mon.0) 1056 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:44.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:44 smithi081 bash[23455]: cluster 2024-09-16T05:27:42.391926+0000 mgr.a (mgr.14150) 451 : cluster [DBG] pgmap v363: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:27:44.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:44 smithi081 bash[23455]: audit 2024-09-16T05:27:43.203171+0000 mon.a (mon.0) 1054 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:44.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:44 smithi081 bash[23455]: audit 2024-09-16T05:27:43.208529+0000 mon.a (mon.0) 1055 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:44.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:44 smithi081 bash[23455]: audit 2024-09-16T05:27:43.213103+0000 mon.a (mon.0) 1056 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:46.470 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:46 smithi081 bash[23455]: cluster 2024-09-16T05:27:44.392456+0000 mgr.a (mgr.14150) 452 : cluster [DBG] pgmap v364: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:27:46.470 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:46 smithi081 bash[23455]: audit 2024-09-16T05:27:46.127285+0000 mon.a (mon.0) 1057 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:46.471 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:46 smithi081 bash[23455]: audit 2024-09-16T05:27:46.135345+0000 mon.a (mon.0) 1058 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:46.471 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:46 smithi081 bash[23455]: audit 2024-09-16T05:27:46.137528+0000 mon.a (mon.0) 1059 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-16T05:27:46.471 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:46 smithi081 bash[23455]: audit 2024-09-16T05:27:46.139625+0000 mon.a (mon.0) 1060 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-16T05:27:46.471 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:46 smithi081 bash[23455]: audit 2024-09-16T05:27:46.141479+0000 mon.a (mon.0) 1061 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:27:46.586 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:46 smithi029 bash[22744]: cluster 2024-09-16T05:27:44.392456+0000 mgr.a (mgr.14150) 452 : cluster [DBG] pgmap v364: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:27:46.586 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:46 smithi029 bash[22744]: audit 2024-09-16T05:27:46.127285+0000 mon.a (mon.0) 1057 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:46.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:46 smithi029 bash[22744]: audit 2024-09-16T05:27:46.135345+0000 mon.a (mon.0) 1058 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:46.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:46 smithi029 bash[22744]: audit 2024-09-16T05:27:46.137528+0000 mon.a (mon.0) 1059 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-16T05:27:46.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:46 smithi029 bash[22744]: audit 2024-09-16T05:27:46.139625+0000 mon.a (mon.0) 1060 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-16T05:27:46.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:46 smithi029 bash[22744]: audit 2024-09-16T05:27:46.141479+0000 mon.a (mon.0) 1061 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:27:47.586 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:47 smithi029 bash[22744]: cephadm 2024-09-16T05:27:46.136850+0000 mgr.a (mgr.14150) 453 : cephadm [INF] Reconfiguring mgr.a (monmap changed)... 2024-09-16T05:27:47.586 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:47 smithi029 bash[22744]: cephadm 2024-09-16T05:27:46.143401+0000 mgr.a (mgr.14150) 454 : cephadm [INF] Reconfiguring daemon mgr.a on smithi029 2024-09-16T05:27:47.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:47 smithi081 bash[23455]: cephadm 2024-09-16T05:27:46.136850+0000 mgr.a (mgr.14150) 453 : cephadm [INF] Reconfiguring mgr.a (monmap changed)... 2024-09-16T05:27:47.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:47 smithi081 bash[23455]: cephadm 2024-09-16T05:27:46.143401+0000 mgr.a (mgr.14150) 454 : cephadm [INF] Reconfiguring daemon mgr.a on smithi029 2024-09-16T05:27:47.768 INFO:teuthology.orchestra.run.smithi029.stderr:++ ceph orch ps --hostname smithi167 2024-09-16T05:27:48.085 INFO:teuthology.orchestra.run.smithi029.stderr:+ HOST_C_DAEMONS='No daemons reported' 2024-09-16T05:27:48.085 INFO:teuthology.orchestra.run.smithi029.stderr:+ '[' 'No daemons reported' '!=' 'No daemons reported' ']' 2024-09-16T05:27:48.085 INFO:teuthology.orchestra.run.smithi029.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-09-16T05:27:48.376 INFO:teuthology.orchestra.run.smithi029.stderr:17 2024-09-16T05:27:48.387 INFO:teuthology.orchestra.run.smithi029.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-09-16T05:27:48.399 INFO:teuthology.orchestra.run.smithi029.stderr:++ cat crushmap.txt 2024-09-16T05:27:48.400 INFO:teuthology.orchestra.run.smithi029.stderr:+ CRUSH_MAP='# begin crush map 2024-09-16T05:27:48.400 INFO:teuthology.orchestra.run.smithi029.stderr:tunable choose_local_tries 0 2024-09-16T05:27:48.400 INFO:teuthology.orchestra.run.smithi029.stderr:tunable choose_local_fallback_tries 0 2024-09-16T05:27:48.400 INFO:teuthology.orchestra.run.smithi029.stderr:tunable choose_total_tries 50 2024-09-16T05:27:48.400 INFO:teuthology.orchestra.run.smithi029.stderr:tunable chooseleaf_descend_once 1 2024-09-16T05:27:48.401 INFO:teuthology.orchestra.run.smithi029.stderr:tunable chooseleaf_vary_r 1 2024-09-16T05:27:48.401 INFO:teuthology.orchestra.run.smithi029.stderr:tunable chooseleaf_stable 1 2024-09-16T05:27:48.401 INFO:teuthology.orchestra.run.smithi029.stderr:tunable straw_calc_version 1 2024-09-16T05:27:48.401 INFO:teuthology.orchestra.run.smithi029.stderr:tunable allowed_bucket_algs 54 2024-09-16T05:27:48.401 INFO:teuthology.orchestra.run.smithi029.stderr: 2024-09-16T05:27:48.401 INFO:teuthology.orchestra.run.smithi029.stderr:# devices 2024-09-16T05:27:48.401 INFO:teuthology.orchestra.run.smithi029.stderr:device 0 osd.0 class ssd 2024-09-16T05:27:48.401 INFO:teuthology.orchestra.run.smithi029.stderr:device 1 osd.1 class ssd 2024-09-16T05:27:48.401 INFO:teuthology.orchestra.run.smithi029.stderr:device 2 osd.2 class ssd 2024-09-16T05:27:48.401 INFO:teuthology.orchestra.run.smithi029.stderr:device 3 osd.3 class ssd 2024-09-16T05:27:48.401 INFO:teuthology.orchestra.run.smithi029.stderr: 2024-09-16T05:27:48.401 INFO:teuthology.orchestra.run.smithi029.stderr:# types 2024-09-16T05:27:48.401 INFO:teuthology.orchestra.run.smithi029.stderr:type 0 osd 2024-09-16T05:27:48.402 INFO:teuthology.orchestra.run.smithi029.stderr:type 1 host 2024-09-16T05:27:48.402 INFO:teuthology.orchestra.run.smithi029.stderr:type 2 chassis 2024-09-16T05:27:48.402 INFO:teuthology.orchestra.run.smithi029.stderr:type 3 rack 2024-09-16T05:27:48.402 INFO:teuthology.orchestra.run.smithi029.stderr:type 4 row 2024-09-16T05:27:48.402 INFO:teuthology.orchestra.run.smithi029.stderr:type 5 pdu 2024-09-16T05:27:48.402 INFO:teuthology.orchestra.run.smithi029.stderr:type 6 pod 2024-09-16T05:27:48.402 INFO:teuthology.orchestra.run.smithi029.stderr:type 7 room 2024-09-16T05:27:48.402 INFO:teuthology.orchestra.run.smithi029.stderr:type 8 datacenter 2024-09-16T05:27:48.402 INFO:teuthology.orchestra.run.smithi029.stderr:type 9 zone 2024-09-16T05:27:48.402 INFO:teuthology.orchestra.run.smithi029.stderr:type 10 region 2024-09-16T05:27:48.402 INFO:teuthology.orchestra.run.smithi029.stderr:type 11 root 2024-09-16T05:27:48.402 INFO:teuthology.orchestra.run.smithi029.stderr: 2024-09-16T05:27:48.402 INFO:teuthology.orchestra.run.smithi029.stderr:# buckets 2024-09-16T05:27:48.402 INFO:teuthology.orchestra.run.smithi029.stderr:host smithi029 { 2024-09-16T05:27:48.403 INFO:teuthology.orchestra.run.smithi029.stderr: id -3 # do not change unnecessarily 2024-09-16T05:27:48.403 INFO:teuthology.orchestra.run.smithi029.stderr: id -4 class ssd # do not change unnecessarily 2024-09-16T05:27:48.403 INFO:teuthology.orchestra.run.smithi029.stderr: # weight 0.17459 2024-09-16T05:27:48.403 INFO:teuthology.orchestra.run.smithi029.stderr: alg straw2 2024-09-16T05:27:48.403 INFO:teuthology.orchestra.run.smithi029.stderr: hash 0 # rjenkins1 2024-09-16T05:27:48.403 INFO:teuthology.orchestra.run.smithi029.stderr: item osd.0 weight 0.08730 2024-09-16T05:27:48.403 INFO:teuthology.orchestra.run.smithi029.stderr: item osd.1 weight 0.08730 2024-09-16T05:27:48.403 INFO:teuthology.orchestra.run.smithi029.stderr:} 2024-09-16T05:27:48.403 INFO:teuthology.orchestra.run.smithi029.stderr:host smithi081 { 2024-09-16T05:27:48.403 INFO:teuthology.orchestra.run.smithi029.stderr: id -5 # do not change unnecessarily 2024-09-16T05:27:48.403 INFO:teuthology.orchestra.run.smithi029.stderr: id -6 class ssd # do not change unnecessarily 2024-09-16T05:27:48.403 INFO:teuthology.orchestra.run.smithi029.stderr: # weight 0.17459 2024-09-16T05:27:48.403 INFO:teuthology.orchestra.run.smithi029.stderr: alg straw2 2024-09-16T05:27:48.403 INFO:teuthology.orchestra.run.smithi029.stderr: hash 0 # rjenkins1 2024-09-16T05:27:48.404 INFO:teuthology.orchestra.run.smithi029.stderr: item osd.2 weight 0.08730 2024-09-16T05:27:48.404 INFO:teuthology.orchestra.run.smithi029.stderr: item osd.3 weight 0.08730 2024-09-16T05:27:48.404 INFO:teuthology.orchestra.run.smithi029.stderr:} 2024-09-16T05:27:48.404 INFO:teuthology.orchestra.run.smithi029.stderr:host smithi167 { 2024-09-16T05:27:48.404 INFO:teuthology.orchestra.run.smithi029.stderr: id -7 # do not change unnecessarily 2024-09-16T05:27:48.404 INFO:teuthology.orchestra.run.smithi029.stderr: id -8 class ssd # do not change unnecessarily 2024-09-16T05:27:48.404 INFO:teuthology.orchestra.run.smithi029.stderr: # weight 0.00000 2024-09-16T05:27:48.404 INFO:teuthology.orchestra.run.smithi029.stderr: alg straw2 2024-09-16T05:27:48.404 INFO:teuthology.orchestra.run.smithi029.stderr: hash 0 # rjenkins1 2024-09-16T05:27:48.404 INFO:teuthology.orchestra.run.smithi029.stderr:} 2024-09-16T05:27:48.404 INFO:teuthology.orchestra.run.smithi029.stderr:root default { 2024-09-16T05:27:48.404 INFO:teuthology.orchestra.run.smithi029.stderr: id -1 # do not change unnecessarily 2024-09-16T05:27:48.404 INFO:teuthology.orchestra.run.smithi029.stderr: id -2 class ssd # do not change unnecessarily 2024-09-16T05:27:48.405 INFO:teuthology.orchestra.run.smithi029.stderr: # weight 0.34918 2024-09-16T05:27:48.405 INFO:teuthology.orchestra.run.smithi029.stderr: alg straw2 2024-09-16T05:27:48.405 INFO:teuthology.orchestra.run.smithi029.stderr: hash 0 # rjenkins1 2024-09-16T05:27:48.405 INFO:teuthology.orchestra.run.smithi029.stderr: item smithi029 weight 0.17459 2024-09-16T05:27:48.405 INFO:teuthology.orchestra.run.smithi029.stderr: item smithi081 weight 0.17459 2024-09-16T05:27:48.405 INFO:teuthology.orchestra.run.smithi029.stderr: item smithi167 weight 0.00000 2024-09-16T05:27:48.405 INFO:teuthology.orchestra.run.smithi029.stderr:} 2024-09-16T05:27:48.405 INFO:teuthology.orchestra.run.smithi029.stderr: 2024-09-16T05:27:48.405 INFO:teuthology.orchestra.run.smithi029.stderr:# rules 2024-09-16T05:27:48.405 INFO:teuthology.orchestra.run.smithi029.stderr:rule replicated_rule { 2024-09-16T05:27:48.405 INFO:teuthology.orchestra.run.smithi029.stderr: id 0 2024-09-16T05:27:48.405 INFO:teuthology.orchestra.run.smithi029.stderr: type replicated 2024-09-16T05:27:48.405 INFO:teuthology.orchestra.run.smithi029.stderr: step take default 2024-09-16T05:27:48.405 INFO:teuthology.orchestra.run.smithi029.stderr: step choose firstn 0 type osd 2024-09-16T05:27:48.405 INFO:teuthology.orchestra.run.smithi029.stderr: step emit 2024-09-16T05:27:48.406 INFO:teuthology.orchestra.run.smithi029.stderr:} 2024-09-16T05:27:48.406 INFO:teuthology.orchestra.run.smithi029.stderr: 2024-09-16T05:27:48.406 INFO:teuthology.orchestra.run.smithi029.stderr:# end crush map' 2024-09-16T05:27:48.406 INFO:teuthology.orchestra.run.smithi029.stderr:+ grep -q smithi167 2024-09-16T05:27:48.406 INFO:teuthology.orchestra.run.smithi029.stderr:+ ceph orch host rm smithi167 --rm-crush-entry 2024-09-16T05:27:48.578 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:48 smithi029 bash[22744]: cluster 2024-09-16T05:27:46.392953+0000 mgr.a (mgr.14150) 455 : cluster [DBG] pgmap v365: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:27:48.589 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:48 smithi081 bash[23455]: cluster 2024-09-16T05:27:46.392953+0000 mgr.a (mgr.14150) 455 : cluster [DBG] pgmap v365: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:27:49.586 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:49 smithi029 bash[22744]: audit 2024-09-16T05:27:48.070542+0000 mgr.a (mgr.14150) 456 : audit [DBG] from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi167", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:27:49.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:49 smithi029 bash[22744]: audit 2024-09-16T05:27:48.380105+0000 mon.a (mon.0) 1062 : audit [DBG] from='client.? 172.21.15.29:0/2843921352' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-16T05:27:49.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:49 smithi029 bash[22744]: audit 2024-09-16T05:27:48.572845+0000 mon.a (mon.0) 1063 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:49.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:49 smithi029 bash[22744]: audit 2024-09-16T05:27:48.581118+0000 mon.a (mon.0) 1064 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:49.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:49 smithi029 bash[22744]: audit 2024-09-16T05:27:48.591143+0000 mon.a (mon.0) 1065 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:49.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:49 smithi029 bash[22744]: audit 2024-09-16T05:27:48.696639+0000 mon.a (mon.0) 1066 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi167"}]: dispatch 2024-09-16T05:27:49.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:49 smithi029 bash[22744]: audit 2024-09-16T05:27:49.214736+0000 mon.a (mon.0) 1067 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:49.608 INFO:teuthology.orchestra.run.smithi029.stdout:Removed host 'smithi167' 2024-09-16T05:27:49.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:49 smithi081 bash[23455]: audit 2024-09-16T05:27:48.070542+0000 mgr.a (mgr.14150) 456 : audit [DBG] from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi167", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:27:49.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:49 smithi081 bash[23455]: audit 2024-09-16T05:27:48.380105+0000 mon.a (mon.0) 1062 : audit [DBG] from='client.? 172.21.15.29:0/2843921352' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-16T05:27:49.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:49 smithi081 bash[23455]: audit 2024-09-16T05:27:48.572845+0000 mon.a (mon.0) 1063 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:49.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:49 smithi081 bash[23455]: audit 2024-09-16T05:27:48.581118+0000 mon.a (mon.0) 1064 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:49.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:49 smithi081 bash[23455]: audit 2024-09-16T05:27:48.591143+0000 mon.a (mon.0) 1065 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:49.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:49 smithi081 bash[23455]: audit 2024-09-16T05:27:48.696639+0000 mon.a (mon.0) 1066 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi167"}]: dispatch 2024-09-16T05:27:49.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:49 smithi081 bash[23455]: audit 2024-09-16T05:27:49.214736+0000 mon.a (mon.0) 1067 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:49.620 INFO:teuthology.orchestra.run.smithi029.stderr:+ sleep 30 2024-09-16T05:27:50.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:50 smithi029 bash[22744]: cluster 2024-09-16T05:27:48.393286+0000 mgr.a (mgr.14150) 457 : cluster [DBG] pgmap v366: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:27:50.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:50 smithi029 bash[22744]: audit 2024-09-16T05:27:48.695594+0000 mgr.a (mgr.14150) 458 : audit [DBG] from='client.14522 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi167", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:27:50.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:50 smithi029 bash[22744]: audit 2024-09-16T05:27:49.228215+0000 mon.a (mon.0) 1068 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:50.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:50 smithi029 bash[22744]: cephadm 2024-09-16T05:27:49.230232+0000 mgr.a (mgr.14150) 459 : cephadm [INF] Reconfiguring osd.0 (monmap changed)... 2024-09-16T05:27:50.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:50 smithi029 bash[22744]: audit 2024-09-16T05:27:49.230722+0000 mon.a (mon.0) 1069 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-16T05:27:50.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:50 smithi029 bash[22744]: audit 2024-09-16T05:27:49.231921+0000 mon.a (mon.0) 1070 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:27:50.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:50 smithi029 bash[22744]: cephadm 2024-09-16T05:27:49.234160+0000 mgr.a (mgr.14150) 460 : cephadm [INF] Reconfiguring daemon osd.0 on smithi029 2024-09-16T05:27:50.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:50 smithi029 bash[22744]: audit 2024-09-16T05:27:49.589861+0000 mon.a (mon.0) 1071 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi167"}]': finished 2024-09-16T05:27:50.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:50 smithi029 bash[22744]: cluster 2024-09-16T05:27:49.594734+0000 mon.a (mon.0) 1072 : cluster [DBG] osdmap e58: 4 total, 4 up, 4 in 2024-09-16T05:27:50.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:50 smithi029 bash[22744]: audit 2024-09-16T05:27:49.601429+0000 mon.a (mon.0) 1073 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:50.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:50 smithi029 bash[22744]: audit 2024-09-16T05:27:49.602451+0000 mon.a (mon.0) 1074 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi167"}]: dispatch 2024-09-16T05:27:50.588 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:50 smithi029 bash[22744]: audit 2024-09-16T05:27:49.607776+0000 mon.a (mon.0) 1075 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi167"}]': finished 2024-09-16T05:27:50.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:50 smithi081 bash[23455]: cluster 2024-09-16T05:27:48.393286+0000 mgr.a (mgr.14150) 457 : cluster [DBG] pgmap v366: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:27:50.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:50 smithi081 bash[23455]: audit 2024-09-16T05:27:48.695594+0000 mgr.a (mgr.14150) 458 : audit [DBG] from='client.14522 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi167", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T05:27:50.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:50 smithi081 bash[23455]: audit 2024-09-16T05:27:49.228215+0000 mon.a (mon.0) 1068 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:50.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:50 smithi081 bash[23455]: cephadm 2024-09-16T05:27:49.230232+0000 mgr.a (mgr.14150) 459 : cephadm [INF] Reconfiguring osd.0 (monmap changed)... 2024-09-16T05:27:50.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:50 smithi081 bash[23455]: audit 2024-09-16T05:27:49.230722+0000 mon.a (mon.0) 1069 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-16T05:27:50.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:50 smithi081 bash[23455]: audit 2024-09-16T05:27:49.231921+0000 mon.a (mon.0) 1070 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:27:50.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:50 smithi081 bash[23455]: cephadm 2024-09-16T05:27:49.234160+0000 mgr.a (mgr.14150) 460 : cephadm [INF] Reconfiguring daemon osd.0 on smithi029 2024-09-16T05:27:50.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:50 smithi081 bash[23455]: audit 2024-09-16T05:27:49.589861+0000 mon.a (mon.0) 1071 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi167"}]': finished 2024-09-16T05:27:50.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:50 smithi081 bash[23455]: cluster 2024-09-16T05:27:49.594734+0000 mon.a (mon.0) 1072 : cluster [DBG] osdmap e58: 4 total, 4 up, 4 in 2024-09-16T05:27:50.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:50 smithi081 bash[23455]: audit 2024-09-16T05:27:49.601429+0000 mon.a (mon.0) 1073 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:50.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:50 smithi081 bash[23455]: audit 2024-09-16T05:27:49.602451+0000 mon.a (mon.0) 1074 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi167"}]: dispatch 2024-09-16T05:27:50.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:50 smithi081 bash[23455]: audit 2024-09-16T05:27:49.607776+0000 mon.a (mon.0) 1075 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi167"}]': finished 2024-09-16T05:27:51.485 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:51 smithi029 bash[22744]: cephadm 2024-09-16T05:27:49.611233+0000 mgr.a (mgr.14150) 461 : cephadm [INF] Removed host smithi167 2024-09-16T05:27:51.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:51 smithi081 bash[23455]: cephadm 2024-09-16T05:27:49.611233+0000 mgr.a (mgr.14150) 461 : cephadm [INF] Removed host smithi167 2024-09-16T05:27:52.586 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:52 smithi029 bash[22744]: cluster 2024-09-16T05:27:50.393893+0000 mgr.a (mgr.14150) 462 : cluster [DBG] pgmap v368: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:27:52.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:52 smithi081 bash[23455]: cluster 2024-09-16T05:27:50.393893+0000 mgr.a (mgr.14150) 462 : cluster [DBG] pgmap v368: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:27:53.836 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:53 smithi029 bash[22744]: cluster 2024-09-16T05:27:52.394308+0000 mgr.a (mgr.14150) 463 : cluster [DBG] pgmap v369: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:27:53.836 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:53 smithi029 bash[22744]: audit 2024-09-16T05:27:52.476898+0000 mon.a (mon.0) 1076 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:53.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:53 smithi029 bash[22744]: audit 2024-09-16T05:27:52.484106+0000 mon.a (mon.0) 1077 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:53.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:53 smithi029 bash[22744]: cephadm 2024-09-16T05:27:52.485705+0000 mgr.a (mgr.14150) 464 : cephadm [INF] Reconfiguring osd.1 (monmap changed)... 2024-09-16T05:27:53.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:53 smithi029 bash[22744]: audit 2024-09-16T05:27:52.486275+0000 mon.a (mon.0) 1078 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-16T05:27:53.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:53 smithi029 bash[22744]: audit 2024-09-16T05:27:52.487640+0000 mon.a (mon.0) 1079 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:27:53.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:53 smithi029 bash[22744]: cephadm 2024-09-16T05:27:52.490127+0000 mgr.a (mgr.14150) 465 : cephadm [INF] Reconfiguring daemon osd.1 on smithi029 2024-09-16T05:27:53.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:53 smithi081 bash[23455]: cluster 2024-09-16T05:27:52.394308+0000 mgr.a (mgr.14150) 463 : cluster [DBG] pgmap v369: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:27:53.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:53 smithi081 bash[23455]: audit 2024-09-16T05:27:52.476898+0000 mon.a (mon.0) 1076 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:53.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:53 smithi081 bash[23455]: audit 2024-09-16T05:27:52.484106+0000 mon.a (mon.0) 1077 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:53.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:53 smithi081 bash[23455]: cephadm 2024-09-16T05:27:52.485705+0000 mgr.a (mgr.14150) 464 : cephadm [INF] Reconfiguring osd.1 (monmap changed)... 2024-09-16T05:27:53.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:53 smithi081 bash[23455]: audit 2024-09-16T05:27:52.486275+0000 mon.a (mon.0) 1078 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-16T05:27:53.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:53 smithi081 bash[23455]: audit 2024-09-16T05:27:52.487640+0000 mon.a (mon.0) 1079 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:27:53.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:53 smithi081 bash[23455]: cephadm 2024-09-16T05:27:52.490127+0000 mgr.a (mgr.14150) 465 : cephadm [INF] Reconfiguring daemon osd.1 on smithi029 2024-09-16T05:27:55.836 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:55 smithi029 bash[22744]: cluster 2024-09-16T05:27:54.394828+0000 mgr.a (mgr.14150) 466 : cluster [DBG] pgmap v370: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:27:55.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:55 smithi081 bash[23455]: cluster 2024-09-16T05:27:54.394828+0000 mgr.a (mgr.14150) 466 : cluster [DBG] pgmap v370: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:27:57.086 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:56 smithi029 bash[22744]: audit 2024-09-16T05:27:55.692971+0000 mon.a (mon.0) 1080 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:57.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:56 smithi029 bash[22744]: audit 2024-09-16T05:27:55.700984+0000 mon.a (mon.0) 1081 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:57.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:56 smithi029 bash[22744]: cephadm 2024-09-16T05:27:55.702937+0000 mgr.a (mgr.14150) 467 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-16T05:27:57.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:56 smithi029 bash[22744]: audit 2024-09-16T05:27:55.703474+0000 mon.a (mon.0) 1082 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T05:27:57.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:56 smithi029 bash[22744]: audit 2024-09-16T05:27:55.705108+0000 mon.a (mon.0) 1083 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T05:27:57.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:56 smithi029 bash[22744]: audit 2024-09-16T05:27:55.706866+0000 mon.a (mon.0) 1084 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:27:57.087 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:56 smithi029 bash[22744]: cephadm 2024-09-16T05:27:55.708879+0000 mgr.a (mgr.14150) 468 : cephadm [INF] Reconfiguring daemon mon.b on smithi081 2024-09-16T05:27:57.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:56 smithi081 bash[23455]: audit 2024-09-16T05:27:55.692971+0000 mon.a (mon.0) 1080 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:57.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:56 smithi081 bash[23455]: audit 2024-09-16T05:27:55.700984+0000 mon.a (mon.0) 1081 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:57.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:56 smithi081 bash[23455]: cephadm 2024-09-16T05:27:55.702937+0000 mgr.a (mgr.14150) 467 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-16T05:27:57.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:56 smithi081 bash[23455]: audit 2024-09-16T05:27:55.703474+0000 mon.a (mon.0) 1082 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T05:27:57.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:56 smithi081 bash[23455]: audit 2024-09-16T05:27:55.705108+0000 mon.a (mon.0) 1083 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T05:27:57.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:56 smithi081 bash[23455]: audit 2024-09-16T05:27:55.706866+0000 mon.a (mon.0) 1084 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:27:57.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:56 smithi081 bash[23455]: cephadm 2024-09-16T05:27:55.708879+0000 mgr.a (mgr.14150) 468 : cephadm [INF] Reconfiguring daemon mon.b on smithi081 2024-09-16T05:27:57.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:57 smithi081 bash[23455]: cluster 2024-09-16T05:27:56.395386+0000 mgr.a (mgr.14150) 469 : cluster [DBG] pgmap v371: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:27:58.086 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:57 smithi029 bash[22744]: cluster 2024-09-16T05:27:56.395386+0000 mgr.a (mgr.14150) 469 : cluster [DBG] pgmap v371: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:27:59.336 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:59 smithi029 bash[22744]: audit 2024-09-16T05:27:58.039513+0000 mon.a (mon.0) 1085 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:59.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:59 smithi029 bash[22744]: audit 2024-09-16T05:27:58.047879+0000 mon.a (mon.0) 1086 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:59.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:59 smithi029 bash[22744]: cephadm 2024-09-16T05:27:58.049492+0000 mgr.a (mgr.14150) 470 : cephadm [INF] Reconfiguring mgr.b (monmap changed)... 2024-09-16T05:27:59.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:59 smithi029 bash[22744]: audit 2024-09-16T05:27:58.050183+0000 mon.a (mon.0) 1087 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-16T05:27:59.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:59 smithi029 bash[22744]: audit 2024-09-16T05:27:58.052239+0000 mon.a (mon.0) 1088 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-16T05:27:59.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:59 smithi029 bash[22744]: audit 2024-09-16T05:27:58.054028+0000 mon.a (mon.0) 1089 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:27:59.337 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:27:59 smithi029 bash[22744]: cephadm 2024-09-16T05:27:58.056136+0000 mgr.a (mgr.14150) 471 : cephadm [INF] Reconfiguring daemon mgr.b on smithi081 2024-09-16T05:27:59.366 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:59 smithi081 bash[23455]: audit 2024-09-16T05:27:58.039513+0000 mon.a (mon.0) 1085 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:59.366 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:59 smithi081 bash[23455]: audit 2024-09-16T05:27:58.047879+0000 mon.a (mon.0) 1086 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:27:59.366 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:59 smithi081 bash[23455]: cephadm 2024-09-16T05:27:58.049492+0000 mgr.a (mgr.14150) 470 : cephadm [INF] Reconfiguring mgr.b (monmap changed)... 2024-09-16T05:27:59.366 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:59 smithi081 bash[23455]: audit 2024-09-16T05:27:58.050183+0000 mon.a (mon.0) 1087 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-16T05:27:59.366 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:59 smithi081 bash[23455]: audit 2024-09-16T05:27:58.052239+0000 mon.a (mon.0) 1088 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-16T05:27:59.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:59 smithi081 bash[23455]: audit 2024-09-16T05:27:58.054028+0000 mon.a (mon.0) 1089 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:27:59.367 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:27:59 smithi081 bash[23455]: cephadm 2024-09-16T05:27:58.056136+0000 mgr.a (mgr.14150) 471 : cephadm [INF] Reconfiguring daemon mgr.b on smithi081 2024-09-16T05:28:00.336 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:00 smithi029 bash[22744]: cluster 2024-09-16T05:27:58.395927+0000 mgr.a (mgr.14150) 472 : cluster [DBG] pgmap v372: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:28:00.366 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:00 smithi081 bash[23455]: cluster 2024-09-16T05:27:58.395927+0000 mgr.a (mgr.14150) 472 : cluster [DBG] pgmap v372: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:28:01.586 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:01 smithi029 bash[22744]: cluster 2024-09-16T05:28:00.396482+0000 mgr.a (mgr.14150) 473 : cluster [DBG] pgmap v373: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:28:01.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:01 smithi029 bash[22744]: audit 2024-09-16T05:28:00.428824+0000 mon.a (mon.0) 1090 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:28:01.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:01 smithi029 bash[22744]: audit 2024-09-16T05:28:00.437412+0000 mon.a (mon.0) 1091 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:28:01.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:01 smithi029 bash[22744]: cephadm 2024-09-16T05:28:00.439714+0000 mgr.a (mgr.14150) 474 : cephadm [INF] Reconfiguring osd.2 (monmap changed)... 2024-09-16T05:28:01.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:01 smithi029 bash[22744]: audit 2024-09-16T05:28:00.440277+0000 mon.a (mon.0) 1092 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-16T05:28:01.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:01 smithi029 bash[22744]: audit 2024-09-16T05:28:00.442224+0000 mon.a (mon.0) 1093 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:28:01.587 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:01 smithi029 bash[22744]: cephadm 2024-09-16T05:28:00.447768+0000 mgr.a (mgr.14150) 475 : cephadm [INF] Reconfiguring daemon osd.2 on smithi081 2024-09-16T05:28:01.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:01 smithi081 bash[23455]: cluster 2024-09-16T05:28:00.396482+0000 mgr.a (mgr.14150) 473 : cluster [DBG] pgmap v373: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:28:01.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:01 smithi081 bash[23455]: audit 2024-09-16T05:28:00.428824+0000 mon.a (mon.0) 1090 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:28:01.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:01 smithi081 bash[23455]: audit 2024-09-16T05:28:00.437412+0000 mon.a (mon.0) 1091 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:28:01.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:01 smithi081 bash[23455]: cephadm 2024-09-16T05:28:00.439714+0000 mgr.a (mgr.14150) 474 : cephadm [INF] Reconfiguring osd.2 (monmap changed)... 2024-09-16T05:28:01.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:01 smithi081 bash[23455]: audit 2024-09-16T05:28:00.440277+0000 mon.a (mon.0) 1092 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-16T05:28:01.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:01 smithi081 bash[23455]: audit 2024-09-16T05:28:00.442224+0000 mon.a (mon.0) 1093 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:28:01.867 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:01 smithi081 bash[23455]: cephadm 2024-09-16T05:28:00.447768+0000 mgr.a (mgr.14150) 475 : cephadm [INF] Reconfiguring daemon osd.2 on smithi081 2024-09-16T05:28:04.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:04 smithi081 bash[23455]: cluster 2024-09-16T05:28:02.397031+0000 mgr.a (mgr.14150) 476 : cluster [DBG] pgmap v374: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:28:04.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:04 smithi081 bash[23455]: audit 2024-09-16T05:28:03.359850+0000 mon.a (mon.0) 1094 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:28:04.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:04 smithi081 bash[23455]: audit 2024-09-16T05:28:03.364318+0000 mon.a (mon.0) 1095 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:28:04.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:04 smithi081 bash[23455]: cephadm 2024-09-16T05:28:03.365053+0000 mgr.a (mgr.14150) 477 : cephadm [INF] Reconfiguring osd.3 (monmap changed)... 2024-09-16T05:28:04.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:04 smithi081 bash[23455]: audit 2024-09-16T05:28:03.366715+0000 mon.a (mon.0) 1096 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:28:04.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:04 smithi081 bash[23455]: audit 2024-09-16T05:28:03.366944+0000 mon.a (mon.0) 1097 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-16T05:28:04.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:04 smithi081 bash[23455]: audit 2024-09-16T05:28:03.367913+0000 mon.a (mon.0) 1098 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:28:04.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:04 smithi081 bash[23455]: cephadm 2024-09-16T05:28:03.369053+0000 mgr.a (mgr.14150) 478 : cephadm [INF] Reconfiguring daemon osd.3 on smithi081 2024-09-16T05:28:04.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:04 smithi081 bash[23455]: audit 2024-09-16T05:28:03.370333+0000 mon.a (mon.0) 1099 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:28:04.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:04 smithi081 bash[23455]: audit 2024-09-16T05:28:03.374446+0000 mon.a (mon.0) 1100 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:28:04.836 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:04 smithi029 bash[22744]: cluster 2024-09-16T05:28:02.397031+0000 mgr.a (mgr.14150) 476 : cluster [DBG] pgmap v374: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:28:04.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:04 smithi029 bash[22744]: audit 2024-09-16T05:28:03.359850+0000 mon.a (mon.0) 1094 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:28:04.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:04 smithi029 bash[22744]: audit 2024-09-16T05:28:03.364318+0000 mon.a (mon.0) 1095 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:28:04.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:04 smithi029 bash[22744]: cephadm 2024-09-16T05:28:03.365053+0000 mgr.a (mgr.14150) 477 : cephadm [INF] Reconfiguring osd.3 (monmap changed)... 2024-09-16T05:28:04.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:04 smithi029 bash[22744]: audit 2024-09-16T05:28:03.366715+0000 mon.a (mon.0) 1096 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:28:04.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:04 smithi029 bash[22744]: audit 2024-09-16T05:28:03.366944+0000 mon.a (mon.0) 1097 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-16T05:28:04.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:04 smithi029 bash[22744]: audit 2024-09-16T05:28:03.367913+0000 mon.a (mon.0) 1098 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:28:04.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:04 smithi029 bash[22744]: cephadm 2024-09-16T05:28:03.369053+0000 mgr.a (mgr.14150) 478 : cephadm [INF] Reconfiguring daemon osd.3 on smithi081 2024-09-16T05:28:04.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:04 smithi029 bash[22744]: audit 2024-09-16T05:28:03.370333+0000 mon.a (mon.0) 1099 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:28:04.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:04 smithi029 bash[22744]: audit 2024-09-16T05:28:03.374446+0000 mon.a (mon.0) 1100 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:28:06.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:06 smithi081 bash[23455]: cluster 2024-09-16T05:28:04.397556+0000 mgr.a (mgr.14150) 479 : cluster [DBG] pgmap v375: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:28:06.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:06 smithi081 bash[23455]: audit 2024-09-16T05:28:05.806780+0000 mon.a (mon.0) 1101 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:28:06.616 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:06 smithi081 bash[23455]: audit 2024-09-16T05:28:05.815001+0000 mon.a (mon.0) 1102 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:28:06.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:06 smithi081 bash[23455]: audit 2024-09-16T05:28:05.817725+0000 mon.a (mon.0) 1103 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:28:06.617 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:06 smithi081 bash[23455]: audit 2024-09-16T05:28:06.360639+0000 mon.a (mon.0) 1104 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:28:06.836 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:06 smithi029 bash[22744]: cluster 2024-09-16T05:28:04.397556+0000 mgr.a (mgr.14150) 479 : cluster [DBG] pgmap v375: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:28:06.836 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:06 smithi029 bash[22744]: audit 2024-09-16T05:28:05.806780+0000 mon.a (mon.0) 1101 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:28:06.836 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:06 smithi029 bash[22744]: audit 2024-09-16T05:28:05.815001+0000 mon.a (mon.0) 1102 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:28:06.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:06 smithi029 bash[22744]: audit 2024-09-16T05:28:05.817725+0000 mon.a (mon.0) 1103 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T05:28:06.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:06 smithi029 bash[22744]: audit 2024-09-16T05:28:06.360639+0000 mon.a (mon.0) 1104 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:28:07.719 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:07 smithi081 bash[23455]: audit 2024-09-16T05:28:06.370285+0000 mon.a (mon.0) 1105 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:28:07.719 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:07 smithi081 bash[23455]: audit 2024-09-16T05:28:06.371579+0000 mon.a (mon.0) 1106 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:28:07.719 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:07 smithi081 bash[23455]: audit 2024-09-16T05:28:06.372530+0000 mon.a (mon.0) 1107 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:28:07.719 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:07 smithi081 bash[23455]: audit 2024-09-16T05:28:06.378260+0000 mon.a (mon.0) 1108 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:28:07.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:07 smithi029 bash[22744]: audit 2024-09-16T05:28:06.370285+0000 mon.a (mon.0) 1105 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:28:07.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:07 smithi029 bash[22744]: audit 2024-09-16T05:28:06.371579+0000 mon.a (mon.0) 1106 : audit [DBG] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T05:28:07.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:07 smithi029 bash[22744]: audit 2024-09-16T05:28:06.372530+0000 mon.a (mon.0) 1107 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T05:28:07.837 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:07 smithi029 bash[22744]: audit 2024-09-16T05:28:06.378260+0000 mon.a (mon.0) 1108 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:28:08.792 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:08 smithi081 bash[23455]: cluster 2024-09-16T05:28:06.397930+0000 mgr.a (mgr.14150) 480 : cluster [DBG] pgmap v376: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:28:08.836 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:08 smithi029 bash[22744]: cluster 2024-09-16T05:28:06.397930+0000 mgr.a (mgr.14150) 480 : cluster [DBG] pgmap v376: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:28:10.086 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:09 smithi029 bash[22744]: cluster 2024-09-16T05:28:08.398415+0000 mgr.a (mgr.14150) 481 : cluster [DBG] pgmap v377: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:28:10.086 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:09 smithi029 bash[22744]: audit 2024-09-16T05:28:08.775906+0000 mon.a (mon.0) 1109 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:28:10.086 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:09 smithi029 bash[22744]: audit 2024-09-16T05:28:08.784283+0000 mon.a (mon.0) 1110 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:28:10.086 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:09 smithi029 bash[22744]: audit 2024-09-16T05:28:08.793717+0000 mon.a (mon.0) 1111 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:28:10.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:09 smithi081 bash[23455]: cluster 2024-09-16T05:28:08.398415+0000 mgr.a (mgr.14150) 481 : cluster [DBG] pgmap v377: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:28:10.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:09 smithi081 bash[23455]: audit 2024-09-16T05:28:08.775906+0000 mon.a (mon.0) 1109 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:28:10.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:09 smithi081 bash[23455]: audit 2024-09-16T05:28:08.784283+0000 mon.a (mon.0) 1110 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:28:10.117 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:09 smithi081 bash[23455]: audit 2024-09-16T05:28:08.793717+0000 mon.a (mon.0) 1111 : audit [INF] from='mgr.14150 172.21.15.29:0/3838947711' entity='mgr.a' 2024-09-16T05:28:12.086 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:11 smithi029 bash[22744]: cluster 2024-09-16T05:28:10.398945+0000 mgr.a (mgr.14150) 482 : cluster [DBG] pgmap v378: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:28:12.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:11 smithi081 bash[23455]: cluster 2024-09-16T05:28:10.398945+0000 mgr.a (mgr.14150) 482 : cluster [DBG] pgmap v378: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:28:14.086 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:13 smithi029 bash[22744]: cluster 2024-09-16T05:28:12.399498+0000 mgr.a (mgr.14150) 483 : cluster [DBG] pgmap v379: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:28:14.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:13 smithi081 bash[23455]: cluster 2024-09-16T05:28:12.399498+0000 mgr.a (mgr.14150) 483 : cluster [DBG] pgmap v379: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:28:16.086 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:15 smithi029 bash[22744]: cluster 2024-09-16T05:28:14.400031+0000 mgr.a (mgr.14150) 484 : cluster [DBG] pgmap v380: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:28:16.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:15 smithi081 bash[23455]: cluster 2024-09-16T05:28:14.400031+0000 mgr.a (mgr.14150) 484 : cluster [DBG] pgmap v380: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:28:18.086 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:17 smithi029 bash[22744]: cluster 2024-09-16T05:28:16.400584+0000 mgr.a (mgr.14150) 485 : cluster [DBG] pgmap v381: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:28:18.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:17 smithi081 bash[23455]: cluster 2024-09-16T05:28:16.400584+0000 mgr.a (mgr.14150) 485 : cluster [DBG] pgmap v381: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:28:19.622 INFO:teuthology.orchestra.run.smithi029.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-09-16T05:28:19.916 INFO:teuthology.orchestra.run.smithi029.stderr:18 2024-09-16T05:28:19.929 INFO:teuthology.orchestra.run.smithi029.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-09-16T05:28:19.946 INFO:teuthology.orchestra.run.smithi029.stderr:++ cat crushmap.txt 2024-09-16T05:28:19.948 INFO:teuthology.orchestra.run.smithi029.stderr:+ CRUSH_MAP='# begin crush map 2024-09-16T05:28:19.948 INFO:teuthology.orchestra.run.smithi029.stderr:tunable choose_local_tries 0 2024-09-16T05:28:19.948 INFO:teuthology.orchestra.run.smithi029.stderr:tunable choose_local_fallback_tries 0 2024-09-16T05:28:19.948 INFO:teuthology.orchestra.run.smithi029.stderr:tunable choose_total_tries 50 2024-09-16T05:28:19.948 INFO:teuthology.orchestra.run.smithi029.stderr:tunable chooseleaf_descend_once 1 2024-09-16T05:28:19.948 INFO:teuthology.orchestra.run.smithi029.stderr:tunable chooseleaf_vary_r 1 2024-09-16T05:28:19.949 INFO:teuthology.orchestra.run.smithi029.stderr:tunable chooseleaf_stable 1 2024-09-16T05:28:19.949 INFO:teuthology.orchestra.run.smithi029.stderr:tunable straw_calc_version 1 2024-09-16T05:28:19.949 INFO:teuthology.orchestra.run.smithi029.stderr:tunable allowed_bucket_algs 54 2024-09-16T05:28:19.949 INFO:teuthology.orchestra.run.smithi029.stderr: 2024-09-16T05:28:19.949 INFO:teuthology.orchestra.run.smithi029.stderr:# devices 2024-09-16T05:28:19.949 INFO:teuthology.orchestra.run.smithi029.stderr:device 0 osd.0 class ssd 2024-09-16T05:28:19.949 INFO:teuthology.orchestra.run.smithi029.stderr:device 1 osd.1 class ssd 2024-09-16T05:28:19.949 INFO:teuthology.orchestra.run.smithi029.stderr:device 2 osd.2 class ssd 2024-09-16T05:28:19.949 INFO:teuthology.orchestra.run.smithi029.stderr:device 3 osd.3 class ssd 2024-09-16T05:28:19.949 INFO:teuthology.orchestra.run.smithi029.stderr: 2024-09-16T05:28:19.949 INFO:teuthology.orchestra.run.smithi029.stderr:# types 2024-09-16T05:28:19.949 INFO:teuthology.orchestra.run.smithi029.stderr:type 0 osd 2024-09-16T05:28:19.949 INFO:teuthology.orchestra.run.smithi029.stderr:type 1 host 2024-09-16T05:28:19.949 INFO:teuthology.orchestra.run.smithi029.stderr:type 2 chassis 2024-09-16T05:28:19.950 INFO:teuthology.orchestra.run.smithi029.stderr:type 3 rack 2024-09-16T05:28:19.950 INFO:teuthology.orchestra.run.smithi029.stderr:type 4 row 2024-09-16T05:28:19.950 INFO:teuthology.orchestra.run.smithi029.stderr:type 5 pdu 2024-09-16T05:28:19.950 INFO:teuthology.orchestra.run.smithi029.stderr:type 6 pod 2024-09-16T05:28:19.950 INFO:teuthology.orchestra.run.smithi029.stderr:type 7 room 2024-09-16T05:28:19.950 INFO:teuthology.orchestra.run.smithi029.stderr:type 8 datacenter 2024-09-16T05:28:19.950 INFO:teuthology.orchestra.run.smithi029.stderr:type 9 zone 2024-09-16T05:28:19.950 INFO:teuthology.orchestra.run.smithi029.stderr:type 10 region 2024-09-16T05:28:19.950 INFO:teuthology.orchestra.run.smithi029.stderr:type 11 root 2024-09-16T05:28:19.950 INFO:teuthology.orchestra.run.smithi029.stderr: 2024-09-16T05:28:19.950 INFO:teuthology.orchestra.run.smithi029.stderr:# buckets 2024-09-16T05:28:19.950 INFO:teuthology.orchestra.run.smithi029.stderr:host smithi029 { 2024-09-16T05:28:19.950 INFO:teuthology.orchestra.run.smithi029.stderr: id -3 # do not change unnecessarily 2024-09-16T05:28:19.950 INFO:teuthology.orchestra.run.smithi029.stderr: id -4 class ssd # do not change unnecessarily 2024-09-16T05:28:19.951 INFO:teuthology.orchestra.run.smithi029.stderr: # weight 0.17459 2024-09-16T05:28:19.951 INFO:teuthology.orchestra.run.smithi029.stderr: alg straw2 2024-09-16T05:28:19.951 INFO:teuthology.orchestra.run.smithi029.stderr: hash 0 # rjenkins1 2024-09-16T05:28:19.951 INFO:teuthology.orchestra.run.smithi029.stderr: item osd.0 weight 0.08730 2024-09-16T05:28:19.951 INFO:teuthology.orchestra.run.smithi029.stderr: item osd.1 weight 0.08730 2024-09-16T05:28:19.951 INFO:teuthology.orchestra.run.smithi029.stderr:} 2024-09-16T05:28:19.951 INFO:teuthology.orchestra.run.smithi029.stderr:host smithi081 { 2024-09-16T05:28:19.951 INFO:teuthology.orchestra.run.smithi029.stderr: id -5 # do not change unnecessarily 2024-09-16T05:28:19.951 INFO:teuthology.orchestra.run.smithi029.stderr: id -6 class ssd # do not change unnecessarily 2024-09-16T05:28:19.951 INFO:teuthology.orchestra.run.smithi029.stderr: # weight 0.17459 2024-09-16T05:28:19.951 INFO:teuthology.orchestra.run.smithi029.stderr: alg straw2 2024-09-16T05:28:19.952 INFO:teuthology.orchestra.run.smithi029.stderr: hash 0 # rjenkins1 2024-09-16T05:28:19.952 INFO:teuthology.orchestra.run.smithi029.stderr: item osd.2 weight 0.08730 2024-09-16T05:28:19.952 INFO:teuthology.orchestra.run.smithi029.stderr: item osd.3 weight 0.08730 2024-09-16T05:28:19.952 INFO:teuthology.orchestra.run.smithi029.stderr:} 2024-09-16T05:28:19.952 INFO:teuthology.orchestra.run.smithi029.stderr:root default { 2024-09-16T05:28:19.952 INFO:teuthology.orchestra.run.smithi029.stderr: id -1 # do not change unnecessarily 2024-09-16T05:28:19.952 INFO:teuthology.orchestra.run.smithi029.stderr: id -2 class ssd # do not change unnecessarily 2024-09-16T05:28:19.952 INFO:teuthology.orchestra.run.smithi029.stderr: # weight 0.34918 2024-09-16T05:28:19.952 INFO:teuthology.orchestra.run.smithi029.stderr: alg straw2 2024-09-16T05:28:19.952 INFO:teuthology.orchestra.run.smithi029.stderr: hash 0 # rjenkins1 2024-09-16T05:28:19.952 INFO:teuthology.orchestra.run.smithi029.stderr: item smithi029 weight 0.17459 2024-09-16T05:28:19.952 INFO:teuthology.orchestra.run.smithi029.stderr: item smithi081 weight 0.17459 2024-09-16T05:28:19.952 INFO:teuthology.orchestra.run.smithi029.stderr:} 2024-09-16T05:28:19.953 INFO:teuthology.orchestra.run.smithi029.stderr: 2024-09-16T05:28:19.953 INFO:teuthology.orchestra.run.smithi029.stderr:# rules 2024-09-16T05:28:19.953 INFO:teuthology.orchestra.run.smithi029.stderr:rule replicated_rule { 2024-09-16T05:28:19.953 INFO:teuthology.orchestra.run.smithi029.stderr: id 0 2024-09-16T05:28:19.953 INFO:teuthology.orchestra.run.smithi029.stderr: type replicated 2024-09-16T05:28:19.953 INFO:teuthology.orchestra.run.smithi029.stderr: step take default 2024-09-16T05:28:19.953 INFO:teuthology.orchestra.run.smithi029.stderr: step choose firstn 0 type osd 2024-09-16T05:28:19.953 INFO:teuthology.orchestra.run.smithi029.stderr: step emit 2024-09-16T05:28:19.953 INFO:teuthology.orchestra.run.smithi029.stderr:} 2024-09-16T05:28:19.953 INFO:teuthology.orchestra.run.smithi029.stderr: 2024-09-16T05:28:19.953 INFO:teuthology.orchestra.run.smithi029.stderr:# end crush map' 2024-09-16T05:28:19.953 INFO:teuthology.orchestra.run.smithi029.stderr:+ grep -q smithi167 2024-09-16T05:28:20.086 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:19 smithi029 bash[22744]: cluster 2024-09-16T05:28:18.401115+0000 mgr.a (mgr.14150) 486 : cluster [DBG] pgmap v382: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:28:20.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:19 smithi081 bash[23455]: cluster 2024-09-16T05:28:18.401115+0000 mgr.a (mgr.14150) 486 : cluster [DBG] pgmap v382: 1 pgs: 1 active+clean; 577 KiB data, 126 MiB used, 357 GiB / 358 GiB avail 2024-09-16T05:28:21.086 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:20 smithi029 bash[22744]: audit 2024-09-16T05:28:19.920353+0000 mon.a (mon.0) 1112 : audit [DBG] from='client.? 172.21.15.29:0/3968635841' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-16T05:28:21.116 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:20 smithi081 bash[23455]: audit 2024-09-16T05:28:19.920353+0000 mon.a (mon.0) 1112 : audit [DBG] from='client.? 172.21.15.29:0/3968635841' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-16T05:28:21.360 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-09-16T05:28:21.369 INFO:tasks.cephadm:Teardown begin 2024-09-16T05:28:21.370 DEBUG:teuthology.orchestra.run.smithi029:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-16T05:28:21.381 DEBUG:teuthology.orchestra.run.smithi081:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-16T05:28:21.396 DEBUG:teuthology.orchestra.run.smithi167:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-16T05:28:21.410 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-09-16T05:28:21.411 DEBUG:teuthology.orchestra.run.smithi029:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-16T05:28:21.429 DEBUG:teuthology.orchestra.run.smithi081:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-16T05:28:21.442 DEBUG:teuthology.orchestra.run.smithi167:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-16T05:28:21.457 INFO:tasks.cephadm:Stopping all daemons... 2024-09-16T05:28:21.457 INFO:tasks.cephadm.mon.a:Stopping mon.a... 2024-09-16T05:28:21.457 DEBUG:teuthology.orchestra.run.smithi029:> sudo systemctl stop ceph-825322c2-73ea-11ef-bceb-c7b262605968@mon.a 2024-09-16T05:28:21.586 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:21 smithi029 systemd[1]: Stopping Ceph mon.a for 825322c2-73ea-11ef-bceb-c7b262605968... 2024-09-16T05:28:21.941 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:21 smithi029 bash[22744]: debug 2024-09-16T05:28:21.664+0000 7fb2f576c640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2024-09-16T05:28:21.941 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:21 smithi029 bash[22744]: debug 2024-09-16T05:28:21.664+0000 7fb2f576c640 -1 mon.a@0(leader) e4 *** Got Signal Terminated *** 2024-09-16T05:28:23.336 INFO:journalctl@ceph.mon.a.smithi029.stdout:Sep 16 05:28:22 smithi029 bash[45380]: ceph-825322c2-73ea-11ef-bceb-c7b262605968-mon-a 2024-09-16T05:28:23.555 DEBUG:teuthology.orchestra.run.smithi029:> sudo pkill -f 'journalctl -f -n 0 -u ceph-825322c2-73ea-11ef-bceb-c7b262605968@mon.a.service' 2024-09-16T05:28:23.695 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-16T05:28:23.695 INFO:tasks.cephadm.mon.a:Stopped mon.a 2024-09-16T05:28:23.695 INFO:tasks.cephadm.mon.c:Stopping mon.b... 2024-09-16T05:28:23.695 DEBUG:teuthology.orchestra.run.smithi081:> sudo systemctl stop ceph-825322c2-73ea-11ef-bceb-c7b262605968@mon.b 2024-09-16T05:28:24.029 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:23 smithi081 systemd[1]: Stopping Ceph mon.b for 825322c2-73ea-11ef-bceb-c7b262605968... 2024-09-16T05:28:24.029 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:23 smithi081 bash[23455]: debug 2024-09-16T05:28:23.855+0000 7fa4cc509640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.b -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2024-09-16T05:28:24.029 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:23 smithi081 bash[23455]: debug 2024-09-16T05:28:23.855+0000 7fa4cc509640 -1 mon.b@1(peon) e4 *** Got Signal Terminated *** 2024-09-16T05:28:24.866 INFO:journalctl@ceph.mon.b.smithi081.stdout:Sep 16 05:28:24 smithi081 bash[37729]: ceph-825322c2-73ea-11ef-bceb-c7b262605968-mon-b 2024-09-16T05:28:25.201 DEBUG:teuthology.orchestra.run.smithi081:> sudo pkill -f 'journalctl -f -n 0 -u ceph-825322c2-73ea-11ef-bceb-c7b262605968@mon.b.service' 2024-09-16T05:28:25.313 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-16T05:28:25.314 INFO:tasks.cephadm.mon.c:Stopped mon.b 2024-09-16T05:28:25.314 INFO:tasks.cephadm.mon.c:Stopping mon.c... 2024-09-16T05:28:25.314 DEBUG:teuthology.orchestra.run.smithi167:> sudo systemctl stop ceph-825322c2-73ea-11ef-bceb-c7b262605968@mon.c 2024-09-16T05:28:25.346 DEBUG:teuthology.orchestra.run.smithi167:> sudo pkill -f 'journalctl -f -n 0 -u ceph-825322c2-73ea-11ef-bceb-c7b262605968@mon.c.service' 2024-09-16T05:28:25.425 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-16T05:28:25.425 INFO:tasks.cephadm.mon.c:Stopped mon.c 2024-09-16T05:28:25.426 INFO:tasks.cephadm.mgr.a:Stopping mgr.a... 2024-09-16T05:28:25.426 DEBUG:teuthology.orchestra.run.smithi029:> sudo systemctl stop ceph-825322c2-73ea-11ef-bceb-c7b262605968@mgr.a 2024-09-16T05:28:25.691 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:28:25 smithi029 systemd[1]: Stopping Ceph mgr.a for 825322c2-73ea-11ef-bceb-c7b262605968... 2024-09-16T05:28:26.086 INFO:journalctl@ceph.mgr.a.smithi029.stdout:Sep 16 05:28:25 smithi029 bash[22996]: debug 2024-09-16T05:28:25.796+0000 7fa62cab8640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mgr -n mgr.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug (PID: 1) UID: 0 2024-09-16T05:28:27.308 DEBUG:teuthology.orchestra.run.smithi029:> sudo pkill -f 'journalctl -f -n 0 -u ceph-825322c2-73ea-11ef-bceb-c7b262605968@mgr.a.service' 2024-09-16T05:28:27.329 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-16T05:28:27.329 INFO:tasks.cephadm.mgr.a:Stopped mgr.a 2024-09-16T05:28:27.329 INFO:tasks.cephadm.mgr.b:Stopping mgr.b... 2024-09-16T05:28:27.330 DEBUG:teuthology.orchestra.run.smithi081:> sudo systemctl stop ceph-825322c2-73ea-11ef-bceb-c7b262605968@mgr.b 2024-09-16T05:28:27.603 INFO:journalctl@ceph.mgr.b.smithi081.stdout:Sep 16 05:28:27 smithi081 systemd[1]: Stopping Ceph mgr.b for 825322c2-73ea-11ef-bceb-c7b262605968... 2024-09-16T05:28:28.412 DEBUG:teuthology.orchestra.run.smithi081:> sudo pkill -f 'journalctl -f -n 0 -u ceph-825322c2-73ea-11ef-bceb-c7b262605968@mgr.b.service' 2024-09-16T05:28:28.431 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-16T05:28:28.432 INFO:tasks.cephadm.mgr.b:Stopped mgr.b 2024-09-16T05:28:28.432 INFO:tasks.cephadm.osd.0:Stopping osd.0... 2024-09-16T05:28:28.432 DEBUG:teuthology.orchestra.run.smithi029:> sudo systemctl stop ceph-825322c2-73ea-11ef-bceb-c7b262605968@osd.0 2024-09-16T05:28:28.836 INFO:journalctl@ceph.osd.0.smithi029.stdout:Sep 16 05:28:28 smithi029 systemd[1]: Stopping Ceph osd.0 for 825322c2-73ea-11ef-bceb-c7b262605968... 2024-09-16T05:28:28.836 INFO:journalctl@ceph.osd.0.smithi029.stdout:Sep 16 05:28:28 smithi029 bash[32014]: debug 2024-09-16T05:28:28.584+0000 7fa22d262640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-osd -n osd.0 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug (PID: 1) UID: 0 2024-09-16T05:28:28.836 INFO:journalctl@ceph.osd.0.smithi029.stdout:Sep 16 05:28:28 smithi029 bash[32014]: debug 2024-09-16T05:28:28.584+0000 7fa22d262640 -1 osd.0 58 *** Got signal Terminated *** 2024-09-16T05:28:28.836 INFO:journalctl@ceph.osd.0.smithi029.stdout:Sep 16 05:28:28 smithi029 bash[32014]: debug 2024-09-16T05:28:28.584+0000 7fa22d262640 -1 osd.0 58 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-16T05:28:35.079 INFO:journalctl@ceph.osd.0.smithi029.stdout:Sep 16 05:28:34 smithi029 bash[45710]: ceph-825322c2-73ea-11ef-bceb-c7b262605968-osd-0 2024-09-16T05:28:35.079 INFO:journalctl@ceph.osd.0.smithi029.stdout:Sep 16 05:28:34 smithi029 bash[46026]: Error response from daemon: No such container: ceph-825322c2-73ea-11ef-bceb-c7b262605968-osd-0 2024-09-16T05:28:37.315 DEBUG:teuthology.orchestra.run.smithi029:> sudo pkill -f 'journalctl -f -n 0 -u ceph-825322c2-73ea-11ef-bceb-c7b262605968@osd.0.service' 2024-09-16T05:28:37.343 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-16T05:28:37.344 INFO:tasks.cephadm.osd.0:Stopped osd.0 2024-09-16T05:28:37.344 INFO:tasks.cephadm.osd.1:Stopping osd.1... 2024-09-16T05:28:37.344 DEBUG:teuthology.orchestra.run.smithi029:> sudo systemctl stop ceph-825322c2-73ea-11ef-bceb-c7b262605968@osd.1 2024-09-16T05:28:37.586 INFO:journalctl@ceph.osd.1.smithi029.stdout:Sep 16 05:28:37 smithi029 systemd[1]: Stopping Ceph osd.1 for 825322c2-73ea-11ef-bceb-c7b262605968... 2024-09-16T05:28:37.586 INFO:journalctl@ceph.osd.1.smithi029.stdout:Sep 16 05:28:37 smithi029 bash[35955]: debug 2024-09-16T05:28:37.512+0000 7f15fe5d1640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-osd -n osd.1 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug (PID: 1) UID: 0 2024-09-16T05:28:37.586 INFO:journalctl@ceph.osd.1.smithi029.stdout:Sep 16 05:28:37 smithi029 bash[35955]: debug 2024-09-16T05:28:37.512+0000 7f15fe5d1640 -1 osd.1 58 *** Got signal Terminated *** 2024-09-16T05:28:37.586 INFO:journalctl@ceph.osd.1.smithi029.stdout:Sep 16 05:28:37 smithi029 bash[35955]: debug 2024-09-16T05:28:37.512+0000 7f15fe5d1640 -1 osd.1 58 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-16T05:28:44.086 INFO:journalctl@ceph.osd.1.smithi029.stdout:Sep 16 05:28:43 smithi029 bash[46158]: ceph-825322c2-73ea-11ef-bceb-c7b262605968-osd-1 2024-09-16T05:28:44.836 INFO:journalctl@ceph.osd.1.smithi029.stdout:Sep 16 05:28:44 smithi029 bash[46306]: Error response from daemon: No such container: ceph-825322c2-73ea-11ef-bceb-c7b262605968-osd-1 2024-09-16T05:28:51.569 DEBUG:teuthology.orchestra.run.smithi029:> sudo pkill -f 'journalctl -f -n 0 -u ceph-825322c2-73ea-11ef-bceb-c7b262605968@osd.1.service' 2024-09-16T05:28:51.610 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-16T05:28:51.611 INFO:tasks.cephadm.osd.1:Stopped osd.1 2024-09-16T05:28:51.611 INFO:tasks.cephadm.osd.2:Stopping osd.2... 2024-09-16T05:28:51.611 DEBUG:teuthology.orchestra.run.smithi081:> sudo systemctl stop ceph-825322c2-73ea-11ef-bceb-c7b262605968@osd.2 2024-09-16T05:28:52.116 INFO:journalctl@ceph.osd.2.smithi081.stdout:Sep 16 05:28:51 smithi081 systemd[1]: Stopping Ceph osd.2 for 825322c2-73ea-11ef-bceb-c7b262605968... 2024-09-16T05:28:52.117 INFO:journalctl@ceph.osd.2.smithi081.stdout:Sep 16 05:28:51 smithi081 bash[29009]: debug 2024-09-16T05:28:51.751+0000 7fb1be925640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-osd -n osd.2 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug (PID: 1) UID: 0 2024-09-16T05:28:52.117 INFO:journalctl@ceph.osd.2.smithi081.stdout:Sep 16 05:28:51 smithi081 bash[29009]: debug 2024-09-16T05:28:51.751+0000 7fb1be925640 -1 osd.2 58 *** Got signal Terminated *** 2024-09-16T05:28:52.117 INFO:journalctl@ceph.osd.2.smithi081.stdout:Sep 16 05:28:51 smithi081 bash[29009]: debug 2024-09-16T05:28:51.751+0000 7fb1be925640 -1 osd.2 58 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-16T05:28:57.617 INFO:journalctl@ceph.osd.3.smithi081.stdout:Sep 16 05:28:57 smithi081 bash[32718]: debug 2024-09-16T05:28:57.146+0000 7f063d323640 -1 osd.3 58 heartbeat_check: no reply from 172.21.15.29:6806 osd.0 since back 2024-09-16T05:28:33.348514+0000 front 2024-09-16T05:28:33.348450+0000 (oldest deadline 2024-09-16T05:28:56.248109+0000) 2024-09-16T05:28:58.116 INFO:journalctl@ceph.osd.2.smithi081.stdout:Sep 16 05:28:57 smithi081 bash[38621]: ceph-825322c2-73ea-11ef-bceb-c7b262605968-osd-2 2024-09-16T05:28:58.117 INFO:journalctl@ceph.osd.2.smithi081.stdout:Sep 16 05:28:57 smithi081 bash[38690]: Error response from daemon: No such container: ceph-825322c2-73ea-11ef-bceb-c7b262605968-osd-2 2024-09-16T05:28:58.617 INFO:journalctl@ceph.osd.3.smithi081.stdout:Sep 16 05:28:58 smithi081 bash[32718]: debug 2024-09-16T05:28:58.118+0000 7f063d323640 -1 osd.3 58 heartbeat_check: no reply from 172.21.15.29:6806 osd.0 since back 2024-09-16T05:28:33.348514+0000 front 2024-09-16T05:28:33.348450+0000 (oldest deadline 2024-09-16T05:28:56.248109+0000) 2024-09-16T05:28:59.366 INFO:journalctl@ceph.osd.3.smithi081.stdout:Sep 16 05:28:59 smithi081 bash[32718]: debug 2024-09-16T05:28:59.078+0000 7f063d323640 -1 osd.3 58 heartbeat_check: no reply from 172.21.15.29:6806 osd.0 since back 2024-09-16T05:28:33.348514+0000 front 2024-09-16T05:28:33.348450+0000 (oldest deadline 2024-09-16T05:28:56.248109+0000) 2024-09-16T05:28:59.645 DEBUG:teuthology.orchestra.run.smithi081:> sudo pkill -f 'journalctl -f -n 0 -u ceph-825322c2-73ea-11ef-bceb-c7b262605968@osd.2.service' 2024-09-16T05:28:59.671 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-16T05:28:59.671 INFO:tasks.cephadm.osd.2:Stopped osd.2 2024-09-16T05:28:59.671 INFO:tasks.cephadm.osd.3:Stopping osd.3... 2024-09-16T05:28:59.671 DEBUG:teuthology.orchestra.run.smithi081:> sudo systemctl stop ceph-825322c2-73ea-11ef-bceb-c7b262605968@osd.3 2024-09-16T05:29:00.032 INFO:journalctl@ceph.osd.3.smithi081.stdout:Sep 16 05:28:59 smithi081 systemd[1]: Stopping Ceph osd.3 for 825322c2-73ea-11ef-bceb-c7b262605968... 2024-09-16T05:29:00.033 INFO:journalctl@ceph.osd.3.smithi081.stdout:Sep 16 05:28:59 smithi081 bash[32718]: debug 2024-09-16T05:28:59.854+0000 7f0644d15640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-osd -n osd.3 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug (PID: 1) UID: 0 2024-09-16T05:29:00.033 INFO:journalctl@ceph.osd.3.smithi081.stdout:Sep 16 05:28:59 smithi081 bash[32718]: debug 2024-09-16T05:28:59.854+0000 7f0644d15640 -1 osd.3 58 *** Got signal Terminated *** 2024-09-16T05:29:00.033 INFO:journalctl@ceph.osd.3.smithi081.stdout:Sep 16 05:28:59 smithi081 bash[32718]: debug 2024-09-16T05:28:59.854+0000 7f0644d15640 -1 osd.3 58 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-16T05:29:00.033 INFO:journalctl@ceph.osd.3.smithi081.stdout:Sep 16 05:29:00 smithi081 bash[32718]: debug 2024-09-16T05:29:00.034+0000 7f063d323640 -1 osd.3 58 heartbeat_check: no reply from 172.21.15.29:6806 osd.0 since back 2024-09-16T05:28:33.348514+0000 front 2024-09-16T05:28:33.348450+0000 (oldest deadline 2024-09-16T05:28:56.248109+0000) 2024-09-16T05:29:01.366 INFO:journalctl@ceph.osd.3.smithi081.stdout:Sep 16 05:29:01 smithi081 bash[32718]: debug 2024-09-16T05:29:00.998+0000 7f063d323640 -1 osd.3 58 heartbeat_check: no reply from 172.21.15.29:6806 osd.0 since back 2024-09-16T05:28:33.348514+0000 front 2024-09-16T05:28:33.348450+0000 (oldest deadline 2024-09-16T05:28:56.248109+0000) 2024-09-16T05:29:02.366 INFO:journalctl@ceph.osd.3.smithi081.stdout:Sep 16 05:29:02 smithi081 bash[32718]: debug 2024-09-16T05:29:01.998+0000 7f063d323640 -1 osd.3 58 heartbeat_check: no reply from 172.21.15.29:6806 osd.0 since back 2024-09-16T05:28:33.348514+0000 front 2024-09-16T05:28:33.348450+0000 (oldest deadline 2024-09-16T05:28:56.248109+0000) 2024-09-16T05:29:03.366 INFO:journalctl@ceph.osd.3.smithi081.stdout:Sep 16 05:29:03 smithi081 bash[32718]: debug 2024-09-16T05:29:03.034+0000 7f063d323640 -1 osd.3 58 heartbeat_check: no reply from 172.21.15.29:6806 osd.0 since back 2024-09-16T05:28:33.348514+0000 front 2024-09-16T05:28:33.348450+0000 (oldest deadline 2024-09-16T05:28:56.248109+0000) 2024-09-16T05:29:04.327 INFO:journalctl@ceph.osd.3.smithi081.stdout:Sep 16 05:29:04 smithi081 bash[32718]: debug 2024-09-16T05:29:04.070+0000 7f063d323640 -1 osd.3 58 heartbeat_check: no reply from 172.21.15.29:6806 osd.0 since back 2024-09-16T05:28:33.348514+0000 front 2024-09-16T05:28:33.348450+0000 (oldest deadline 2024-09-16T05:28:56.248109+0000) 2024-09-16T05:29:04.327 INFO:journalctl@ceph.osd.3.smithi081.stdout:Sep 16 05:29:04 smithi081 bash[32718]: debug 2024-09-16T05:29:04.070+0000 7f063d323640 -1 osd.3 58 heartbeat_check: no reply from 172.21.15.29:6814 osd.1 since back 2024-09-16T05:28:40.348986+0000 front 2024-09-16T05:28:40.349066+0000 (oldest deadline 2024-09-16T05:29:03.848800+0000) 2024-09-16T05:29:06.091 INFO:journalctl@ceph.osd.3.smithi081.stdout:Sep 16 05:29:05 smithi081 bash[38820]: ceph-825322c2-73ea-11ef-bceb-c7b262605968-osd-3 2024-09-16T05:29:06.366 INFO:journalctl@ceph.osd.3.smithi081.stdout:Sep 16 05:29:06 smithi081 bash[38973]: Error response from daemon: No such container: ceph-825322c2-73ea-11ef-bceb-c7b262605968-osd-3 2024-09-16T05:29:08.010 DEBUG:teuthology.orchestra.run.smithi081:> sudo pkill -f 'journalctl -f -n 0 -u ceph-825322c2-73ea-11ef-bceb-c7b262605968@osd.3.service' 2024-09-16T05:29:08.051 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-16T05:29:08.052 INFO:tasks.cephadm.osd.3:Stopped osd.3 2024-09-16T05:29:08.052 INFO:tasks.cephadm.osd.4:Stopping osd.4... 2024-09-16T05:29:08.052 DEBUG:teuthology.orchestra.run.smithi167:> sudo systemctl stop ceph-825322c2-73ea-11ef-bceb-c7b262605968@osd.4 2024-09-16T05:29:08.085 DEBUG:teuthology.orchestra.run.smithi167:> sudo pkill -f 'journalctl -f -n 0 -u ceph-825322c2-73ea-11ef-bceb-c7b262605968@osd.4.service' 2024-09-16T05:29:08.153 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-16T05:29:08.153 INFO:tasks.cephadm.osd.4:Stopped osd.4 2024-09-16T05:29:08.153 INFO:tasks.cephadm.osd.5:Stopping osd.5... 2024-09-16T05:29:08.153 DEBUG:teuthology.orchestra.run.smithi167:> sudo systemctl stop ceph-825322c2-73ea-11ef-bceb-c7b262605968@osd.5 2024-09-16T05:29:08.231 DEBUG:teuthology.orchestra.run.smithi167:> sudo pkill -f 'journalctl -f -n 0 -u ceph-825322c2-73ea-11ef-bceb-c7b262605968@osd.5.service' 2024-09-16T05:29:08.302 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-16T05:29:08.302 INFO:tasks.cephadm.osd.5:Stopped osd.5 2024-09-16T05:29:08.303 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 825322c2-73ea-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-16T05:29:08.494 INFO:teuthology.orchestra.run.smithi029.stdout:Deleting cluster with fsid: 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:29:11.189 DEBUG:teuthology.orchestra.run.smithi081:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 825322c2-73ea-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-16T05:29:11.372 INFO:teuthology.orchestra.run.smithi081.stdout:Deleting cluster with fsid: 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:29:14.116 DEBUG:teuthology.orchestra.run.smithi167:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 825322c2-73ea-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-16T05:29:14.300 INFO:teuthology.orchestra.run.smithi167.stdout:Deleting cluster with fsid: 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:29:15.827 DEBUG:teuthology.orchestra.run.smithi029:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-16T05:29:15.842 DEBUG:teuthology.orchestra.run.smithi081:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-16T05:29:15.856 DEBUG:teuthology.orchestra.run.smithi167:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-16T05:29:15.868 INFO:tasks.cephadm:Archiving crash dumps... 2024-09-16T05:29:15.870 DEBUG:teuthology.misc:Transferring archived files from smithi029:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-09-15_21:00:02-rados-squid-distro-default-smithi/7906112/remote/smithi029/crash 2024-09-16T05:29:15.871 DEBUG:teuthology.orchestra.run.smithi029:> sudo tar c -f - -C /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/crash -- . 2024-09-16T05:29:15.896 INFO:teuthology.orchestra.run.smithi029.stderr:tar: /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-16T05:29:15.896 INFO:teuthology.orchestra.run.smithi029.stderr:tar: Error is not recoverable: exiting now 2024-09-16T05:29:15.899 DEBUG:teuthology.misc:Transferring archived files from smithi081:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-09-15_21:00:02-rados-squid-distro-default-smithi/7906112/remote/smithi081/crash 2024-09-16T05:29:15.899 DEBUG:teuthology.orchestra.run.smithi081:> sudo tar c -f - -C /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/crash -- . 2024-09-16T05:29:15.911 INFO:teuthology.orchestra.run.smithi081.stderr:tar: /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-16T05:29:15.911 INFO:teuthology.orchestra.run.smithi081.stderr:tar: Error is not recoverable: exiting now 2024-09-16T05:29:15.913 DEBUG:teuthology.misc:Transferring archived files from smithi167:/var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-09-15_21:00:02-rados-squid-distro-default-smithi/7906112/remote/smithi167/crash 2024-09-16T05:29:15.914 DEBUG:teuthology.orchestra.run.smithi167:> sudo tar c -f - -C /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/crash -- . 2024-09-16T05:29:15.924 INFO:teuthology.orchestra.run.smithi167.stderr:tar: /var/lib/ceph/825322c2-73ea-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-16T05:29:15.924 INFO:teuthology.orchestra.run.smithi167.stderr:tar: Error is not recoverable: exiting now 2024-09-16T05:29:15.925 INFO:tasks.cephadm:Checking cluster log for badness... 2024-09-16T05:29:15.926 DEBUG:teuthology.orchestra.run.smithi029:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | egrep -v 'mons down' | egrep -v 'mon down' | egrep -v 'out of quorum' | egrep -v CEPHADM_STRAY_HOST | egrep -v CEPHADM_STRAY_DAEMON | egrep -v CEPHADM_FAILED_DAEMON | head -n 1 2024-09-16T05:29:15.956 INFO:tasks.cephadm:Compressing logs... 2024-09-16T05:29:15.956 DEBUG:teuthology.orchestra.run.smithi029:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-16T05:29:15.998 DEBUG:teuthology.orchestra.run.smithi081:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-16T05:29:16.001 DEBUG:teuthology.orchestra.run.smithi167:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-16T05:29:16.007 INFO:teuthology.orchestra.run.smithi029.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-16T05:29:16.012 INFO:teuthology.orchestra.run.smithi081.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-16T05:29:16.015 INFO:teuthology.orchestra.run.smithi167.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-16T05:29:16.017 INFO:teuthology.orchestra.run.smithi029.stderr:gzip -5 --verbose -- /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-osd.0.log 2024-09-16T05:29:16.017 INFO:teuthology.orchestra.run.smithi029.stderr:gzip -5 --verbose -- /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-mon.a.log 2024-09-16T05:29:16.018 INFO:teuthology.orchestra.run.smithi029.stderr:/var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph.cephadm.log 2024-09-16T05:29:16.018 INFO:teuthology.orchestra.run.smithi029.stderr:/var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-mon.a.log: gzip -5 --verbose -- /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-osd.1.log 2024-09-16T05:29:16.018 INFO:teuthology.orchestra.run.smithi029.stderr:/var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph.log 2024-09-16T05:29:16.018 INFO:teuthology.orchestra.run.smithi029.stderr: 82.8%/var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-osd.1.log: -- replaced with /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph.cephadm.log.gz 2024-09-16T05:29:16.019 INFO:teuthology.orchestra.run.smithi029.stderr:gzip -5 --verbose -- /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-volume.log 2024-09-16T05:29:16.019 INFO:teuthology.orchestra.run.smithi029.stderr:gzip -5 --verbose -- /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph.audit.log 2024-09-16T05:29:16.022 INFO:teuthology.orchestra.run.smithi029.stderr:/var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph.log: /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-mgr.a.log 2024-09-16T05:29:16.022 INFO:teuthology.orchestra.run.smithi029.stderr:/var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-16T05:29:16.022 INFO:teuthology.orchestra.run.smithi029.stderr:/var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-mgr.a.log: /var/log/ceph/cephadm.log: 86.9% -- replaced with /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph.log.gz 2024-09-16T05:29:16.023 INFO:teuthology.orchestra.run.smithi029.stderr: 90.4% -- replaced with /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph.audit.log.gz 2024-09-16T05:29:16.025 INFO:teuthology.orchestra.run.smithi081.stderr:gzip -5 --verbose -- /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-osd.2.log 2024-09-16T05:29:16.026 INFO:teuthology.orchestra.run.smithi081.stderr:gzip -5 --verbose -- /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph.cephadm.log 2024-09-16T05:29:16.026 INFO:teuthology.orchestra.run.smithi081.stderr:/var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-osd.3.log 2024-09-16T05:29:16.027 INFO:teuthology.orchestra.run.smithi029.stderr: 87.1% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-16T05:29:16.028 INFO:teuthology.orchestra.run.smithi081.stderr:/var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph.cephadm.log: 82.5% -- replaced with /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph.cephadm.log.gz 2024-09-16T05:29:16.028 INFO:teuthology.orchestra.run.smithi081.stderr:gzip -5 --verbose -- /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph.log 2024-09-16T05:29:16.028 INFO:teuthology.orchestra.run.smithi081.stderr:/var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-osd.3.log: gzip -5 --verbose -- /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-volume.log 2024-09-16T05:29:16.028 INFO:teuthology.orchestra.run.smithi081.stderr:/var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph.log: gzip -5 --verbose -- /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-mgr.b.log 2024-09-16T05:29:16.030 INFO:teuthology.orchestra.run.smithi081.stderr:/var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph.audit.log 2024-09-16T05:29:16.030 INFO:teuthology.orchestra.run.smithi081.stderr: 86.8% -- replaced with /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph.log.gz 2024-09-16T05:29:16.030 INFO:teuthology.orchestra.run.smithi081.stderr:/var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-mgr.b.log: gzip -5 --verbose -- /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-mon.b.log 2024-09-16T05:29:16.030 INFO:teuthology.orchestra.run.smithi081.stderr:/var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-16T05:29:16.031 INFO:teuthology.orchestra.run.smithi081.stderr:/var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-mon.b.log: /var/log/ceph/cephadm.log: 90.6% -- replaced with /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph.audit.log.gz 2024-09-16T05:29:16.032 INFO:teuthology.orchestra.run.smithi081.stderr: 86.7% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-16T05:29:16.034 INFO:teuthology.orchestra.run.smithi081.stderr: 91.7% -- replaced with /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-mgr.b.log.gz 2024-09-16T05:29:16.055 INFO:teuthology.orchestra.run.smithi081.stderr: 91.7% -- replaced with /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-16T05:29:16.055 INFO:teuthology.orchestra.run.smithi029.stderr: 91.5% -- replaced with /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-16T05:29:16.075 INFO:teuthology.orchestra.run.smithi029.stderr: 93.3% -- replaced with /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-osd.1.log.gz 2024-09-16T05:29:16.088 INFO:teuthology.orchestra.run.smithi029.stderr: 93.1% -- replaced with /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-osd.0.log.gz 2024-09-16T05:29:16.104 INFO:teuthology.orchestra.run.smithi081.stderr: 92.8% -- replaced with /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-osd.3.log.gz 2024-09-16T05:29:16.113 INFO:teuthology.orchestra.run.smithi167.stderr:gzip -5 --verbose -- /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph.cephadm.log 2024-09-16T05:29:16.117 INFO:teuthology.orchestra.run.smithi167.stderr:gzip -5 --verbose -- /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-osd.5.log 2024-09-16T05:29:16.118 INFO:teuthology.orchestra.run.smithi167.stderr:gzip -5 --verbose -- /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph.log 2024-09-16T05:29:16.118 INFO:teuthology.orchestra.run.smithi167.stderr:/var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-volume.log 2024-09-16T05:29:16.118 INFO:teuthology.orchestra.run.smithi167.stderr:/var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-osd.5.log: 80.3% -- replaced with /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph.cephadm.log.gz 2024-09-16T05:29:16.118 INFO:teuthology.orchestra.run.smithi167.stderr:/var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph.log: gzip -5 --verbose -- /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-mon.c.log 2024-09-16T05:29:16.118 INFO:teuthology.orchestra.run.smithi167.stderr:/var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph.audit.log 2024-09-16T05:29:16.119 INFO:teuthology.orchestra.run.smithi167.stderr:/var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-mon.c.log: 87.3% -- replaced with /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph.log.gz 2024-09-16T05:29:16.119 INFO:teuthology.orchestra.run.smithi167.stderr:gzip -5 --verbose -- /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-osd.4.log 2024-09-16T05:29:16.119 INFO:teuthology.orchestra.run.smithi167.stderr:/var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-16T05:29:16.120 INFO:teuthology.orchestra.run.smithi167.stderr:/var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-osd.4.log: /var/log/ceph/cephadm.log: 90.7% -- replaced with /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph.audit.log.gz 2024-09-16T05:29:16.121 INFO:teuthology.orchestra.run.smithi167.stderr: 85.4% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-16T05:29:16.122 INFO:teuthology.orchestra.run.smithi081.stderr: 93.3% -- replaced with /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-osd.2.log.gz 2024-09-16T05:29:16.138 INFO:teuthology.orchestra.run.smithi167.stderr: 91.7% -- replaced with /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-16T05:29:16.149 INFO:teuthology.orchestra.run.smithi029.stderr: 87.9% -- replaced with /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-mgr.a.log.gz 2024-09-16T05:29:16.150 INFO:teuthology.orchestra.run.smithi167.stderr: 92.7% -- replaced with /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-osd.5.log.gz 2024-09-16T05:29:16.159 INFO:teuthology.orchestra.run.smithi081.stderr: 92.7% -- replaced with /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-mon.b.log.gz 2024-09-16T05:29:16.160 INFO:teuthology.orchestra.run.smithi081.stderr: 2024-09-16T05:29:16.161 INFO:teuthology.orchestra.run.smithi081.stderr:real 0m0.157s 2024-09-16T05:29:16.161 INFO:teuthology.orchestra.run.smithi081.stderr:user 0m0.348s 2024-09-16T05:29:16.161 INFO:teuthology.orchestra.run.smithi081.stderr:sys 0m0.025s 2024-09-16T05:29:16.168 INFO:teuthology.orchestra.run.smithi167.stderr: 92.7% -- replaced with /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-osd.4.log.gz 2024-09-16T05:29:16.209 INFO:teuthology.orchestra.run.smithi167.stderr: 93.0% -- replaced with /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-mon.c.log.gz 2024-09-16T05:29:16.210 INFO:teuthology.orchestra.run.smithi167.stderr: 2024-09-16T05:29:16.210 INFO:teuthology.orchestra.run.smithi167.stderr:real 0m0.203s 2024-09-16T05:29:16.210 INFO:teuthology.orchestra.run.smithi167.stderr:user 0m0.216s 2024-09-16T05:29:16.210 INFO:teuthology.orchestra.run.smithi167.stderr:sys 0m0.021s 2024-09-16T05:29:16.392 INFO:teuthology.orchestra.run.smithi029.stderr: 91.3% -- replaced with /var/log/ceph/825322c2-73ea-11ef-bceb-c7b262605968/ceph-mon.a.log.gz 2024-09-16T05:29:16.393 INFO:teuthology.orchestra.run.smithi029.stderr: 2024-09-16T05:29:16.393 INFO:teuthology.orchestra.run.smithi029.stderr:real 0m0.393s 2024-09-16T05:29:16.393 INFO:teuthology.orchestra.run.smithi029.stderr:user 0m0.646s 2024-09-16T05:29:16.393 INFO:teuthology.orchestra.run.smithi029.stderr:sys 0m0.053s 2024-09-16T05:29:16.394 INFO:tasks.cephadm:Archiving logs... 2024-09-16T05:29:16.394 DEBUG:teuthology.misc:Transferring archived files from smithi029:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-09-15_21:00:02-rados-squid-distro-default-smithi/7906112/remote/smithi029/log 2024-09-16T05:29:16.395 DEBUG:teuthology.orchestra.run.smithi029:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-16T05:29:16.565 DEBUG:teuthology.misc:Transferring archived files from smithi081:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-09-15_21:00:02-rados-squid-distro-default-smithi/7906112/remote/smithi081/log 2024-09-16T05:29:16.566 DEBUG:teuthology.orchestra.run.smithi081:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-16T05:29:16.629 DEBUG:teuthology.misc:Transferring archived files from smithi167:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-09-15_21:00:02-rados-squid-distro-default-smithi/7906112/remote/smithi167/log 2024-09-16T05:29:16.630 DEBUG:teuthology.orchestra.run.smithi167:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-16T05:29:16.676 INFO:tasks.cephadm:Removing cluster... 2024-09-16T05:29:16.676 DEBUG:teuthology.orchestra.run.smithi029:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 825322c2-73ea-11ef-bceb-c7b262605968 --force 2024-09-16T05:29:16.862 INFO:teuthology.orchestra.run.smithi029.stdout:Deleting cluster with fsid: 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:29:18.174 DEBUG:teuthology.orchestra.run.smithi081:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 825322c2-73ea-11ef-bceb-c7b262605968 --force 2024-09-16T05:29:18.358 INFO:teuthology.orchestra.run.smithi081.stdout:Deleting cluster with fsid: 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:29:19.701 DEBUG:teuthology.orchestra.run.smithi167:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 825322c2-73ea-11ef-bceb-c7b262605968 --force 2024-09-16T05:29:19.883 INFO:teuthology.orchestra.run.smithi167.stdout:Deleting cluster with fsid: 825322c2-73ea-11ef-bceb-c7b262605968 2024-09-16T05:29:21.231 INFO:tasks.cephadm:Removing cephadm ... 2024-09-16T05:29:21.231 DEBUG:teuthology.orchestra.run.smithi029:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-16T05:29:21.237 DEBUG:teuthology.orchestra.run.smithi081:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-16T05:29:21.244 DEBUG:teuthology.orchestra.run.smithi167:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-16T05:29:21.249 INFO:tasks.cephadm:Teardown complete 2024-09-16T05:29:21.249 DEBUG:teuthology.run_tasks:Unwinding manager install 2024-09-16T05:29:21.260 INFO:teuthology.task.install.util:Removing shipped files: /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer... 2024-09-16T05:29:21.260 DEBUG:teuthology.orchestra.run.smithi029:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-16T05:29:21.282 DEBUG:teuthology.orchestra.run.smithi081:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-16T05:29:21.291 DEBUG:teuthology.orchestra.run.smithi167:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-16T05:29:21.359 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-09-16T05:29:21.375 INFO:teuthology.task.clock:Checking final clock skew... 2024-09-16T05:29:21.375 DEBUG:teuthology.orchestra.run.smithi029:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-16T05:29:21.378 DEBUG:teuthology.orchestra.run.smithi081:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-16T05:29:21.380 DEBUG:teuthology.orchestra.run.smithi167:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-16T05:29:21.387 INFO:teuthology.orchestra.run.smithi029.stdout: remote refid st t when poll reach delay offset jitter 2024-09-16T05:29:21.387 INFO:teuthology.orchestra.run.smithi029.stdout:============================================================================== 2024-09-16T05:29:21.387 INFO:teuthology.orchestra.run.smithi029.stdout:+hv01.front.sepi 67.205.162.81 3 u 47 64 377 0.108 -4.000 1.006 2024-09-16T05:29:21.387 INFO:teuthology.orchestra.run.smithi029.stdout:*hv02.front.sepi 63.231.80.2 3 u 41 64 377 0.078 -2.490 1.685 2024-09-16T05:29:21.387 INFO:teuthology.orchestra.run.smithi029.stdout:+hv03.front.sepi 74.6.168.72 3 u 45 64 377 0.096 +0.001 1.682 2024-09-16T05:29:21.388 INFO:teuthology.orchestra.run.smithi029.stdout: hv04.front.sepi .INIT. 16 u - 512 0 0.000 +0.000 0.000 2024-09-16T05:29:21.393 INFO:teuthology.orchestra.run.smithi167.stdout: remote refid st t when poll reach delay offset jitter 2024-09-16T05:29:21.393 INFO:teuthology.orchestra.run.smithi167.stdout:============================================================================== 2024-09-16T05:29:21.393 INFO:teuthology.orchestra.run.smithi167.stdout:*hv01.front.sepi 67.205.162.81 3 u 45 64 377 0.098 -2.777 1.019 2024-09-16T05:29:21.393 INFO:teuthology.orchestra.run.smithi167.stdout:+hv02.front.sepi 63.231.80.2 3 u 47 64 377 0.070 -4.177 0.521 2024-09-16T05:29:21.393 INFO:teuthology.orchestra.run.smithi167.stdout:+hv03.front.sepi 74.6.168.72 3 u 41 64 377 0.080 -1.702 0.503 2024-09-16T05:29:21.393 INFO:teuthology.orchestra.run.smithi167.stdout: hv04.front.sepi .INIT. 16 u - 512 0 0.000 +0.000 0.000 2024-09-16T05:29:21.395 INFO:teuthology.orchestra.run.smithi081.stdout: remote refid st t when poll reach delay offset jitter 2024-09-16T05:29:21.395 INFO:teuthology.orchestra.run.smithi081.stdout:============================================================================== 2024-09-16T05:29:21.395 INFO:teuthology.orchestra.run.smithi081.stdout:*hv01.front.sepi 67.205.162.81 3 u 42 64 377 0.105 -5.336 1.338 2024-09-16T05:29:21.395 INFO:teuthology.orchestra.run.smithi081.stdout:+hv02.front.sepi 63.231.80.2 3 u 43 64 377 0.119 -6.439 0.777 2024-09-16T05:29:21.395 INFO:teuthology.orchestra.run.smithi081.stdout:+hv03.front.sepi 74.6.168.72 3 u 46 64 377 0.091 -3.237 1.255 2024-09-16T05:29:21.395 INFO:teuthology.orchestra.run.smithi081.stdout: hv04.front.sepi .INIT. 16 u - 512 0 0.000 +0.000 0.000 2024-09-16T05:29:21.396 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-09-16T05:29:21.421 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-09-16T05:29:21.422 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-09-16T05:29:21.452 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-09-16T05:29:21.526 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-09-16T05:29:21.566 INFO:teuthology.task.internal:Duration was 1510.849035 seconds 2024-09-16T05:29:21.567 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-09-16T05:29:21.591 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-09-16T05:29:21.591 DEBUG:teuthology.orchestra.run.smithi029:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-16T05:29:21.594 DEBUG:teuthology.orchestra.run.smithi081:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-16T05:29:21.596 DEBUG:teuthology.orchestra.run.smithi167:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-16T05:29:21.632 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-09-16T05:29:21.632 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi029.front.sepia.ceph.com 2024-09-16T05:29:21.632 DEBUG:teuthology.orchestra.run.smithi029:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-09-16T05:29:21.682 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi081.front.sepia.ceph.com 2024-09-16T05:29:21.683 DEBUG:teuthology.orchestra.run.smithi081:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-09-16T05:29:21.693 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi167.front.sepia.ceph.com 2024-09-16T05:29:21.693 DEBUG:teuthology.orchestra.run.smithi167:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-09-16T05:29:21.702 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-09-16T05:29:21.703 DEBUG:teuthology.orchestra.run.smithi029:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-16T05:29:21.727 DEBUG:teuthology.orchestra.run.smithi081:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-16T05:29:21.735 DEBUG:teuthology.orchestra.run.smithi167:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-16T05:29:21.779 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-09-16T05:29:21.780 DEBUG:teuthology.orchestra.run.smithi029:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-16T05:29:21.811 DEBUG:teuthology.orchestra.run.smithi081:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-16T05:29:21.815 DEBUG:teuthology.orchestra.run.smithi167:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-16T05:29:21.904 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-09-16T05:29:21.917 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-09-16T05:29:21.918 DEBUG:teuthology.orchestra.run.smithi029:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-16T05:29:21.930 DEBUG:teuthology.orchestra.run.smithi081:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-16T05:29:21.943 DEBUG:teuthology.orchestra.run.smithi167:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-16T05:29:21.954 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-09-16T05:29:21.967 DEBUG:teuthology.orchestra.run.smithi029:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-09-16T05:29:21.974 DEBUG:teuthology.orchestra.run.smithi081:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-09-16T05:29:21.981 INFO:teuthology.orchestra.run.smithi029.stdout:kernel.core_pattern = core 2024-09-16T05:29:21.987 DEBUG:teuthology.orchestra.run.smithi167:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-09-16T05:29:21.996 INFO:teuthology.orchestra.run.smithi081.stdout:kernel.core_pattern = core 2024-09-16T05:29:22.004 INFO:teuthology.orchestra.run.smithi167.stdout:kernel.core_pattern = core 2024-09-16T05:29:22.100 DEBUG:teuthology.orchestra.run.smithi029:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-16T05:29:22.105 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-16T05:29:22.105 DEBUG:teuthology.orchestra.run.smithi081:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-16T05:29:22.110 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-16T05:29:22.110 DEBUG:teuthology.orchestra.run.smithi167:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-16T05:29:22.148 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-16T05:29:22.149 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-09-16T05:29:22.158 INFO:teuthology.task.internal:Transferring archived files... 2024-09-16T05:29:22.159 DEBUG:teuthology.misc:Transferring archived files from smithi029:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-09-15_21:00:02-rados-squid-distro-default-smithi/7906112/remote/smithi029 2024-09-16T05:29:22.159 DEBUG:teuthology.orchestra.run.smithi029:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-16T05:29:22.186 DEBUG:teuthology.misc:Transferring archived files from smithi081:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-09-15_21:00:02-rados-squid-distro-default-smithi/7906112/remote/smithi081 2024-09-16T05:29:22.187 DEBUG:teuthology.orchestra.run.smithi081:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-16T05:29:22.210 DEBUG:teuthology.misc:Transferring archived files from smithi167:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-09-15_21:00:02-rados-squid-distro-default-smithi/7906112/remote/smithi167 2024-09-16T05:29:22.211 DEBUG:teuthology.orchestra.run.smithi167:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-16T05:29:22.234 INFO:teuthology.task.internal:Removing archive directory... 2024-09-16T05:29:22.234 DEBUG:teuthology.orchestra.run.smithi029:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-16T05:29:22.236 DEBUG:teuthology.orchestra.run.smithi081:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-16T05:29:22.252 DEBUG:teuthology.orchestra.run.smithi167:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-16T05:29:22.281 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-09-16T05:29:22.293 INFO:teuthology.task.internal:Not uploading archives. 2024-09-16T05:29:22.293 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-09-16T05:29:22.318 INFO:teuthology.task.internal:Tidying up after the test... 2024-09-16T05:29:22.319 DEBUG:teuthology.orchestra.run.smithi029:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-16T05:29:22.321 DEBUG:teuthology.orchestra.run.smithi081:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-16T05:29:22.324 DEBUG:teuthology.orchestra.run.smithi167:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-16T05:29:22.325 INFO:teuthology.orchestra.run.smithi029.stdout: 658638 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 16 05:29 /home/ubuntu/cephtest 2024-09-16T05:29:22.327 INFO:teuthology.orchestra.run.smithi081.stdout: 658623 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 16 05:29 /home/ubuntu/cephtest 2024-09-16T05:29:22.329 INFO:teuthology.orchestra.run.smithi167.stdout: 658623 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 16 05:29 /home/ubuntu/cephtest 2024-09-16T05:29:22.330 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-09-16T05:29:22.362 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-09-16T05:29:22.424 INFO:teuthology.run:Summary data: description: rados/cephadm/workunits/{0-distro/ubuntu_22.04 agent/on mon_election/connectivity task/test_host_drain} duration: 1510.8490345478058 flavor: default owner: scheduled_teuthology@teuthology success: true 2024-09-16T05:29:22.424 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-16T05:29:22.514 INFO:teuthology.run:pass